r53084 - in /branches/upstream/libconfig-augeas-perl/current: ChangeLog META.yml lib/Config/Augeas.pm lib/Config/Augeas.xs

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sat Feb 20 15:15:24 UTC 2010


Author: jawnsy-guest
Date: Sat Feb 20 15:11:23 2010
New Revision: 53084

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=53084
Log:
[svn-upgrade] Integrating new upstream version, libconfig-augeas-perl (0.701)

Modified:
    branches/upstream/libconfig-augeas-perl/current/ChangeLog
    branches/upstream/libconfig-augeas-perl/current/META.yml
    branches/upstream/libconfig-augeas-perl/current/lib/Config/Augeas.pm
    branches/upstream/libconfig-augeas-perl/current/lib/Config/Augeas.xs

Modified: branches/upstream/libconfig-augeas-perl/current/ChangeLog
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-augeas-perl/current/ChangeLog?rev=53084&op=diff
==============================================================================
--- branches/upstream/libconfig-augeas-perl/current/ChangeLog (original)
+++ branches/upstream/libconfig-augeas-perl/current/ChangeLog Sat Feb 20 15:11:23 2010
@@ -1,3 +1,11 @@
+2010-02-18  Dominique Dumont  <domi.dumont at free.fr> v0.701
+
+	* lib/Config/Augeas.pm: Added new error strings from Augeas 0.7.0
+
+	* lib/Config/Augeas.xs: fix core dump in get (initialise RETVAL
+	before calling aug_get). Added new error constants from Augeas
+	0.7.0
+
 2009-12-21  Dominique Dumont  <domi.dumont at free.fr> v0.601
 
 	* lib/Config/Augeas.pm : Added methods load, error, error_message,

Modified: branches/upstream/libconfig-augeas-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-augeas-perl/current/META.yml?rev=53084&op=diff
==============================================================================
--- branches/upstream/libconfig-augeas-perl/current/META.yml (original)
+++ branches/upstream/libconfig-augeas-perl/current/META.yml Sat Feb 20 15:11:23 2010
@@ -1,22 +1,23 @@
 ---
-name: Config-Augeas
-version: 0.601
+abstract: 'Edit configuration files through Augeas C library'
 author:
-  - Dominique Dumont (ddumont at cpan dot org)
-abstract: Edit configuration files through Augeas C library
-license: lgpl
-resources:
-  license: http://opensource.org/licenses/lgpl-license.php
+  - 'Dominique Dumont (ddumont at cpan dot org)'
 build_requires:
+  ExtUtils::CBuilder: 0
   Test::More: 0
 configure_requires:
-  Module::Build: 0.35
+  Module::Build: 0.36
 dynamic_config: 1
+generated_by: 'Module::Build version 0.3603'
+license: lgpl
+meta-spec:
+  url: http://module-build.sourceforge.net/META-spec-v1.4.html
+  version: 1.4
+name: Config-Augeas
 provides:
   Config::Augeas:
     file: lib/Config/Augeas.pm
-    version: 0.601
-generated_by: Module::Build version 0.35
-meta-spec:
-  url: http://module-build.sourceforge.net/META-spec-v1.4.html
-  version: 1.4
+    version: 0.701
+resources:
+  license: http://opensource.org/licenses/lgpl-license.php
+version: 0.701

Modified: branches/upstream/libconfig-augeas-perl/current/lib/Config/Augeas.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-augeas-perl/current/lib/Config/Augeas.pm?rev=53084&op=diff
==============================================================================
--- branches/upstream/libconfig-augeas-perl/current/lib/Config/Augeas.pm (original)
+++ branches/upstream/libconfig-augeas-perl/current/lib/Config/Augeas.pm Sat Feb 20 15:11:23 2010
@@ -1,4 +1,4 @@
-#    Copyright (c) 2008-2009 Dominique Dumont.
+#    Copyright (c) 2008-2010 Dominique Dumont.
 #
 #    This library is free software; you can redistribute it and/or
 #    modify it under the terms of the GNU Lesser Public License as
@@ -22,7 +22,7 @@
 use Carp;
 use IO::File ;
 
-our $VERSION = '0.601';
+our $VERSION = '0.701';
 
 require XSLoader;
 XSLoader::load('Config::Augeas', $VERSION);
@@ -477,11 +477,13 @@
 =head2 error
 
 Returns the error code from the last API call as a short string:
-noerror, nomem, internal, pathx, nomatch, manymatch, syntax
-
-=cut
-
-my @errcode = qw/noerror nomem internal pathx nomatch manymatch syntax/;
+noerror, nomem, internal, pathx, nomatch, manymatch, syntax, nolens,
+multiple_transforms
+
+=cut
+
+my @errcode = qw/noerror nomem internal pathx nomatch manymatch syntax nolens 
+		multiple_transforms/;
 
 sub error {
     my $self   = shift ;
@@ -561,7 +563,7 @@
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (C) 2008 by Dominique Dumont
+Copyright (C) 2008-2010 by Dominique Dumont
 
 This library is free software; you can redistribute it and/or modify
 it under the LGPL terms.

Modified: branches/upstream/libconfig-augeas-perl/current/lib/Config/Augeas.xs
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-augeas-perl/current/lib/Config/Augeas.xs?rev=53084&op=diff
==============================================================================
--- branches/upstream/libconfig-augeas-perl/current/lib/Config/Augeas.xs (original)
+++ branches/upstream/libconfig-augeas-perl/current/lib/Config/Augeas.xs Sat Feb 20 15:11:23 2010
@@ -1,4 +1,4 @@
-//    Copyright (c) 2008 Dominique Dumont.
+//    Copyright (c) 2008-2010 Dominique Dumont.
 // 
 //    This library is free software; you can redistribute it and/or
 //    modify it under the terms of the GNU Lesser Public License as
@@ -60,6 +60,8 @@
     newCONSTSUB(stash, "AUG_ENOMATCH",  newSViv(AUG_ENOMATCH));
     newCONSTSUB(stash, "AUG_EMMATCH",   newSViv(AUG_EMMATCH));
     newCONSTSUB(stash, "AUG_ESYNTAX",   newSViv(AUG_ESYNTAX));
+    newCONSTSUB(stash, "AUG_ENOLENS",   newSViv(AUG_ENOLENS));
+    newCONSTSUB(stash, "AUG_EMXFM",     newSViv(AUG_EMXFM));
 
   }
 
@@ -110,6 +112,7 @@
     PREINIT:
       int ret ;
     CODE:
+      RETVAL = NULL ;
       ret = aug_get(aug, path, &RETVAL);
     OUTPUT:
       RETVAL




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