r33957 - in /branches/upstream/libcss-squish-perl/current: CHANGES META.yml Makefile.PL lib/CSS/Squish.pm

ryan52-guest at users.alioth.debian.org ryan52-guest at users.alioth.debian.org
Fri Apr 24 15:30:15 UTC 2009


Author: ryan52-guest
Date: Fri Apr 24 15:30:10 2009
New Revision: 33957

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=33957
Log:
[svn-upgrade] Integrating new upstream version, libcss-squish-perl (0.08)

Modified:
    branches/upstream/libcss-squish-perl/current/CHANGES
    branches/upstream/libcss-squish-perl/current/META.yml
    branches/upstream/libcss-squish-perl/current/Makefile.PL
    branches/upstream/libcss-squish-perl/current/lib/CSS/Squish.pm

Modified: branches/upstream/libcss-squish-perl/current/CHANGES
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcss-squish-perl/current/CHANGES?rev=33957&op=diff
==============================================================================
--- branches/upstream/libcss-squish-perl/current/CHANGES (original)
+++ branches/upstream/libcss-squish-perl/current/CHANGES Fri Apr 24 15:30:10 2009
@@ -1,4 +1,9 @@
 Revision history for Perl extension CSS::Squish.
+
+0.08  Mon Apr 20 2009
+    
+    * module doesn't work on perl 5.6.x and older
+    * update docs
 
 0.07  Fri Nov 9 2007
     

Modified: branches/upstream/libcss-squish-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcss-squish-perl/current/META.yml?rev=33957&op=diff
==============================================================================
--- branches/upstream/libcss-squish-perl/current/META.yml (original)
+++ branches/upstream/libcss-squish-perl/current/META.yml Fri Apr 24 15:30:10 2009
@@ -1,18 +1,25 @@
 --- #YAML:1.0
-name:                CSS-Squish
-version:             0.07
-abstract:            Compact many CSS files into one big file
-license:             ~
-generated_by:        ExtUtils::MakeMaker version 6.36
-distribution_type:   module
-requires:     
-    File::Spec:                    0
-    Scalar::Util:                  0
-    Test::LongString:              0
-    URI:                           0
-    URI::file:                     0
-meta-spec:
-    url:     http://module-build.sourceforge.net/META-spec-v1.2.html
-    version: 1.2
+name:               CSS-Squish
+version:            0.08
+abstract:           Compact many CSS files into one big file
 author:
     - Thomas Sibley <trs at bestpractical.com>
+license:            unknown
+distribution_type:  module
+configure_requires:
+    ExtUtils::MakeMaker:  0
+requires:
+    File::Spec:        0
+    perl:              5.008
+    Scalar::Util:      0
+    Test::LongString:  0
+    URI:               0
+    URI::file:         0
+no_index:
+    directory:
+        - t
+        - inc
+generated_by:       ExtUtils::MakeMaker version 6.48
+meta-spec:
+    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
+    version:  1.4

Modified: branches/upstream/libcss-squish-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcss-squish-perl/current/Makefile.PL?rev=33957&op=diff
==============================================================================
--- branches/upstream/libcss-squish-perl/current/Makefile.PL (original)
+++ branches/upstream/libcss-squish-perl/current/Makefile.PL Fri Apr 24 15:30:10 2009
@@ -1,9 +1,12 @@
+use 5.008;
 use strict;
 use ExtUtils::MakeMaker;
 
 WriteMakefile(
     NAME              => 'CSS::Squish',
+    ABSTRACT_FROM     => 'lib/CSS/Squish.pm',
     VERSION_FROM      => 'lib/CSS/Squish.pm',
+    MIN_PERL_VERSION  => 5.008,
     PREREQ_PM         => {
         'File::Spec'        => 0,
         'URI'               => 0,
@@ -11,8 +14,6 @@
         'Scalar::Util'      => 0,
         'Test::LongString'  => 0,
     },
-    ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
-      (ABSTRACT_FROM  => 'lib/CSS/Squish.pm',
-       AUTHOR         => 'Thomas Sibley <trs at bestpractical.com>') : ()),
+    AUTHOR            => 'Thomas Sibley <trs at bestpractical.com>',
 );
 

Modified: branches/upstream/libcss-squish-perl/current/lib/CSS/Squish.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcss-squish-perl/current/lib/CSS/Squish.pm?rev=33957&op=diff
==============================================================================
--- branches/upstream/libcss-squish-perl/current/lib/CSS/Squish.pm (original)
+++ branches/upstream/libcss-squish-perl/current/lib/CSS/Squish.pm Fri Apr 24 15:30:10 2009
@@ -1,9 +1,10 @@
+use 5.008;
 use strict;
 use warnings;
 
 package CSS::Squish;
 
-$CSS::Squish::VERSION = '0.07';
+$CSS::Squish::VERSION = '0.08';
 
 # Setting this to true will enable lots of debug logging about what
 # CSS::Squish is doing
@@ -30,6 +31,10 @@
 
 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.
 
 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




More information about the Pkg-perl-cvs-commits mailing list