r29213 - in /branches/upstream/libconfig-augeas-perl/current: ChangeLog META.yml README lib/Config/Augeas.pm t/Config-AugeasC.t
ddumont-guest at users.alioth.debian.org
ddumont-guest at users.alioth.debian.org
Sun Jan 4 10:56:17 UTC 2009
Author: ddumont-guest
Date: Sun Jan 4 10:56:14 2009
New Revision: 29213
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=29213
Log:
[svn-upgrade] Integrating new upstream version, libconfig-augeas-perl (0.305)
Modified:
branches/upstream/libconfig-augeas-perl/current/ChangeLog
branches/upstream/libconfig-augeas-perl/current/META.yml
branches/upstream/libconfig-augeas-perl/current/README
branches/upstream/libconfig-augeas-perl/current/lib/Config/Augeas.pm
branches/upstream/libconfig-augeas-perl/current/t/Config-AugeasC.t
Modified: branches/upstream/libconfig-augeas-perl/current/ChangeLog
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-augeas-perl/current/ChangeLog?rev=29213&op=diff
==============================================================================
--- branches/upstream/libconfig-augeas-perl/current/ChangeLog (original)
+++ branches/upstream/libconfig-augeas-perl/current/ChangeLog Sun Jan 4 10:56:14 2009
@@ -1,3 +1,9 @@
+2009-01-02 Domi <domi at bilbo.maison> v0.305
+
+ * t/Config-AugeasC.t: Removed test involving AUGROOT environment
+ variable (Lead to FTBS on Debian amd64). The removed tests are
+ already performed passing augeas root through aug_init.
+
2008-11-21 Dominique Dumont <dominique.dumont at hp.com> v0.304
* lib/Config/Augeas.pm (print): Improved print method. Can now
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=29213&op=diff
==============================================================================
--- branches/upstream/libconfig-augeas-perl/current/META.yml (original)
+++ branches/upstream/libconfig-augeas-perl/current/META.yml Sun Jan 4 10:56:14 2009
@@ -1,6 +1,6 @@
---
name: Config-Augeas
-version: 0.304
+version: 0.305
author:
- Dominique Dumont (ddumont at cpan dot org)
abstract: Edit configuration files through Augeas C library
@@ -13,7 +13,7 @@
provides:
Config::Augeas:
file: lib/Config/Augeas.pm
- version: 0.304
+ version: 0.305
generated_by: Module::Build version 0.3
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.2.html
Modified: branches/upstream/libconfig-augeas-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-augeas-perl/current/README?rev=29213&op=diff
==============================================================================
--- branches/upstream/libconfig-augeas-perl/current/README (original)
+++ branches/upstream/libconfig-augeas-perl/current/README Sun Jan 4 10:56:14 2009
@@ -39,7 +39,7 @@
COPYRIGHT AND LICENCE
-Copyright (C) 2008 by Dominique Dumont
+Copyright (C) 2008-2009 by 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
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=29213&op=diff
==============================================================================
--- branches/upstream/libconfig-augeas-perl/current/lib/Config/Augeas.pm (original)
+++ branches/upstream/libconfig-augeas-perl/current/lib/Config/Augeas.pm Sun Jan 4 10:56:14 2009
@@ -1,4 +1,4 @@
-# Copyright (c) 2008 Dominique Dumont.
+# Copyright (c) 2008-2009 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.304';
+our $VERSION = '0.305';
require XSLoader;
XSLoader::load('Config::Augeas', $VERSION);
Modified: branches/upstream/libconfig-augeas-perl/current/t/Config-AugeasC.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-augeas-perl/current/t/Config-AugeasC.t?rev=29213&op=diff
==============================================================================
--- branches/upstream/libconfig-augeas-perl/current/t/Config-AugeasC.t (original)
+++ branches/upstream/libconfig-augeas-perl/current/t/Config-AugeasC.t Sun Jan 4 10:56:14 2009
@@ -6,7 +6,7 @@
# change 'tests => 2' to 'tests => last_test_to_print';
-use Test::More tests => 27;
+use Test::More tests => 25;
use ExtUtils::testlib;
use File::Path ;
use File::Copy ;
@@ -162,14 +162,3 @@
ok( -e $wr_file, "$wr_file exists" );
-$ENV{AUG_ROOT} = $aug_root;
-
-# test may fail with augeas 0.2.0 installed in /usr/local
-my $augc2 = Config::Augeas::init() ;
-
-ok($augc2,"Created 2nd Augeas object");
-
-$ret = $augc2->get("/files/etc/hosts/1/ipaddr") ;
-
-is($ret,'127.0.0.1',"Called get (returned $ret )");
-
More information about the Pkg-perl-cvs-commits
mailing list