r75477 - in /trunk/libquota-perl: CHANGES META.yml Quota.pm README debian/changelog test.pl

periapt-guest at users.alioth.debian.org periapt-guest at users.alioth.debian.org
Sun Jun 12 12:48:14 UTC 2011


Author: periapt-guest
Date: Sun Jun 12 12:48:07 2011
New Revision: 75477

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=75477
Log:
New upstream release

Modified:
    trunk/libquota-perl/CHANGES
    trunk/libquota-perl/META.yml
    trunk/libquota-perl/Quota.pm
    trunk/libquota-perl/README
    trunk/libquota-perl/debian/changelog
    trunk/libquota-perl/test.pl

Modified: trunk/libquota-perl/CHANGES
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libquota-perl/CHANGES?rev=75477&op=diff
==============================================================================
--- trunk/libquota-perl/CHANGES (original)
+++ trunk/libquota-perl/CHANGES Sun Jun 12 12:48:07 2011
@@ -1,3 +1,10 @@
+Changes in 1.6.6 (June 2011)
+- Ignore "rootfs" filesystem in Quota::getqcarg() on Linux, which always
+  is a duplicate.  Thanks to "abaturin" for providing this patch.
+- Made test.pl exit immediately when AUTOMATED_TESTING is set in the
+  environment (same as when called not from a tty), as all tests require
+  user interaction. Changed on request of TODDR of cpan.org
+
 Changes in 1.6.5 (January 2011)
 - Fixed syntax error and missing init for params to setqlim()
   Thanks to Heinrich Mislik for reporting the bugs

Modified: trunk/libquota-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libquota-perl/META.yml?rev=75477&op=diff
==============================================================================
--- trunk/libquota-perl/META.yml (original)
+++ trunk/libquota-perl/META.yml Sun Jun 12 12:48:07 2011
@@ -1,7 +1,7 @@
 --- #YAML:1.0
 name: Quota
 abstract: Quota - Perl interface to file system quotas
-version: 1.6.5
+version: 1.6.6
 author:
   - Tom Zoerner <tomzo at users.sourceforge.net>
 license: perl

Modified: trunk/libquota-perl/Quota.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libquota-perl/Quota.pm?rev=75477&op=diff
==============================================================================
--- trunk/libquota-perl/Quota.pm (original)
+++ trunk/libquota-perl/Quota.pm Sun Jun 12 12:48:07 2011
@@ -22,7 +22,7 @@
 @ISA = qw(Exporter DynaLoader);
 @EXPORT = ();
 
-$VERSION = '1.6.5';
+$VERSION = '1.6.6';
 
 bootstrap Quota;
 
@@ -69,7 +69,7 @@
 
   if(defined($dev) && ($target ne "") && !Quota::setmntent()) {
     while(($fsname,$path,$fstyp,$fsopt) = Quota::getmntent()) {
-      next if $fstyp =~ /^(lofs|ignore|auto.*|proc)$/;
+      next if $fstyp =~ /^(lofs|ignore|auto.*|proc|rootfs)$/;
       my($pdev) = (stat($path))[0];
       if (defined($pdev) && ($dev == $pdev)) {
         if ($fsname =~ m|^[^/]+:/|) {

Modified: trunk/libquota-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libquota-perl/README?rev=75477&op=diff
==============================================================================
--- trunk/libquota-perl/README (original)
+++ trunk/libquota-perl/README Sun Jun 12 12:48:07 2011
@@ -3,8 +3,8 @@
 
 Author:    Tom Zoerner (tomzo AT users.sourceforge.net)
 
-Version:   1.6.5
-Date:      January 2011
+Version:   1.6.6
+Date:      June 2011
 DLSIP-Code:Rcdfg
            - stable release
            - C compiler required for installation

Modified: trunk/libquota-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libquota-perl/debian/changelog?rev=75477&op=diff
==============================================================================
--- trunk/libquota-perl/debian/changelog (original)
+++ trunk/libquota-perl/debian/changelog Sun Jun 12 12:48:07 2011
@@ -1,3 +1,9 @@
+libquota-perl (1.6.6+dfsg-1) UNRELEASED; urgency=low
+
+  * New upstream release
+
+ -- Nicholas Bamber <nicholas at periapt.co.uk>  Sun, 12 Jun 2011 13:51:35 +0100
+
 libquota-perl (1.6.5+dfsg-1) unstable; urgency=low
 
   [ Nicholas Bamber ]

Modified: trunk/libquota-perl/test.pl
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libquota-perl/test.pl?rev=75477&op=diff
==============================================================================
--- trunk/libquota-perl/test.pl (original)
+++ trunk/libquota-perl/test.pl Sun Jun 12 12:48:07 2011
@@ -17,6 +17,10 @@
 
 if (! -t) {
    print STDERR "\nThis is an interactive test script - input must be a tty\nExiting now.\n";
+   exit;
+}
+if ($ENV{AUTOMATED_TESTING}) {
+   print STDERR "\nNo tests available for AUTOMATED_TESTING - Exiting now.\n";
    exit;
 }
 




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