- updated to 0.10
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-CSS-Squish?expand=0&rev=5
This commit is contained in:
committed by
Git OBS Bridge
parent
32ee0302eb
commit
8082dd3a13
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:41ff61e7dfb6df6211cf4eed3d486b148ed3c6f3180e502f2a9ad5684d4d65b7
|
||||
size 7923
|
||||
3
CSS-Squish-0.10.tar.gz
Normal file
3
CSS-Squish-0.10.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:65fc0d69acd1fa33d9a4c3b09cce0fbd737d747b1fcc4e9d87ebd91050cbcb4e
|
||||
size 8646
|
||||
@@ -1,3 +1,8 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Nov 17 14:14:36 UTC 2011 - coolo@suse.com
|
||||
|
||||
- updated to 0.10
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 1 13:31:22 UTC 2010 - coolo@novell.com
|
||||
|
||||
|
||||
@@ -1,70 +1,77 @@
|
||||
#
|
||||
# spec file for package perl-CSS-Squish
|
||||
#
|
||||
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
# upon. The license for this file, and modifications and additions to the
|
||||
# file, is the same license as for the pristine package itself (unless the
|
||||
# license for the pristine package is not an Open Source License, in which
|
||||
# case the license is the MIT License). An "Open Source License" is a
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
# norootforbuild
|
||||
|
||||
Name: perl-CSS-Squish
|
||||
%define real_name %( echo %{name} | %{__sed} -e 's,perl-,,' )
|
||||
Summary: Compact many CSS files into one big file
|
||||
Url: http://search.cpan.org/perldoc?CSS:Squish
|
||||
Group: Development/Libraries/Perl
|
||||
License: Artistic License
|
||||
Version: 0.08
|
||||
Version: 0.10
|
||||
Release: 1
|
||||
Vendor: openSUSE-Education
|
||||
Source: %{real_name}-%{version}.tar.bz2
|
||||
BuildRequires: perl-macros
|
||||
BuildRequires: perl-Test-LongString
|
||||
BuildRequires: perl-URI
|
||||
BuildRequires: perl(Test::Pod::Coverage)
|
||||
BuildRequires: perl(Test::Pod)
|
||||
License: GPL+ or Artistic
|
||||
%define cpan_name CSS-Squish
|
||||
Summary: Compact many CSS files into one big file
|
||||
Url: http://search.cpan.org/dist/CSS-Squish/
|
||||
Group: Development/Libraries/Perl
|
||||
Source: http://www.cpan.org/authors/id/T/TS/TSIBLEY/%{cpan_name}-%{version}.tar.gz
|
||||
BuildArch: noarch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl-macros
|
||||
BuildRequires: perl(Test::LongString)
|
||||
BuildRequires: perl(URI)
|
||||
BuildRequires: perl(URI::file)
|
||||
Requires: perl(URI)
|
||||
Requires: perl(URI::file)
|
||||
%{perl_requires}
|
||||
|
||||
%description
|
||||
This module takes a list of CSS files and concatenates them, making sure to
|
||||
honor any valid @import statements included in the files.
|
||||
|
||||
The benefit of this is that you get to keep your CSS as individual files, but
|
||||
can serve it to users in one big file, saving the overhead of possibly dozens
|
||||
of HTTP requests.
|
||||
The benefit of this is that you get to keep your CSS as individual files,
|
||||
but can serve it to users in one big file, saving the overhead of possibly
|
||||
dozens of HTTP requests.
|
||||
|
||||
Following the CSS 2.1 spec, @import statements must be the first rules in a CSS
|
||||
file. Media-specific @import statements will be honored by enclosing the
|
||||
included file in an @media rule. This has the side effect of actually improving
|
||||
compatibility in Internet Explorer, which ignores media-specific @import rules
|
||||
but understands @media rules.
|
||||
Following the CSS 2.1 spec, @import statements must be the first rules in a
|
||||
CSS file. Media-specific @import statements will be honored by enclosing
|
||||
the included file in an @media rule. This has the side effect of actually
|
||||
_improving_ compatibility in Internet Explorer, which ignores
|
||||
media-specific @import rules but understands @media rules.
|
||||
|
||||
It is possible that future versions will include methods to compact whitespace
|
||||
and other parts of the CSS itself, but this functionality is not supported at
|
||||
the current time.
|
||||
|
||||
Authors:
|
||||
--------
|
||||
Thomas Sibley <trs@bestpractical.com>,
|
||||
Ruslan Zakirov <ruz@bestpractical.com>
|
||||
It is possible that future versions will include methods to compact
|
||||
whitespace and other parts of the CSS itself, but this functionality is not
|
||||
supported at the current time.
|
||||
|
||||
%prep
|
||||
%setup -n %{real_name}-%{version}
|
||||
%setup -q -n %{cpan_name}-%{version}
|
||||
|
||||
%build
|
||||
perl Makefile.PL
|
||||
make %{?jobs:-j%jobs}
|
||||
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
||||
%{__make} %{?_smp_mflags}
|
||||
|
||||
%check
|
||||
make test
|
||||
%{__make} test
|
||||
|
||||
%install
|
||||
%perl_make_install
|
||||
%perl_process_packlist
|
||||
%perl_gen_filelist
|
||||
|
||||
%clean
|
||||
rm -rf %{buildroot}
|
||||
|
||||
%files -f %{name}.files
|
||||
%defattr(-, root, root)
|
||||
%doc CHANGES README MANIFEST
|
||||
%defattr(-,root,root,755)
|
||||
%doc CHANGES README
|
||||
|
||||
%changelog
|
||||
|
||||
Reference in New Issue
Block a user