[libnet-dbus-perl] 44/335: Bump version to 0.31.0

Intrigeri intrigeri at moszumanska.debian.org
Sat Mar 21 01:07:19 UTC 2015


This is an automated email from the git hooks/post-receive script.

intrigeri pushed a commit to branch experimental
in repository libnet-dbus-perl.

commit 91817ec91c4ed2e8866126d1adddf4368eb76b2f
Author: Daniel P. Berrange <dan at berrange.com>
Date:   Tue Apr 12 21:23:50 2005 +0000

    Bump version to 0.31.0
---
 MANIFEST.SKIP    |  1 +
 Makefile.PL      |  3 +++
 Net-DBus.spec.PL |  7 +++----
 README           | 22 +++++++++++++---------
 lib/Net/DBus.pm  |  2 +-
 rollingbuild.sh  |  2 ++
 6 files changed, 23 insertions(+), 14 deletions(-)

diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP
index 5bb2c71..7003ac3 100644
--- a/MANIFEST.SKIP
+++ b/MANIFEST.SKIP
@@ -8,3 +8,4 @@ CVS
 .#.*
 #.*
 ^Makefile$
+^cover_db/
diff --git a/Makefile.PL b/Makefile.PL
index c55bd8d..f7d74e0 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -33,6 +33,9 @@ WriteMakefile(
     'LIBS' => ["-L$DBUS_HOME/lib -ldbus-1"], 
     'DEFINE' => "-DDBUS_API_SUBJECT_TO_CHANGE $PD_DEBUG",
     'INC' => "-Wall -I$DBUS_HOME/include/dbus-1.0 -I$DBUS_HOME/lib/dbus-1.0/include",
+    'depend' => {
+       Net-DBus.spec => '$(VERSION_FROM)'
+    }
 );
 
 package MY;
diff --git a/Net-DBus.spec.PL b/Net-DBus.spec.PL
index 7ea612a..8d2e10a 100644
--- a/Net-DBus.spec.PL
+++ b/Net-DBus.spec.PL
@@ -1,6 +1,6 @@
 # Copyright (C) 2001-2004 Daniel Berrange <dan at berrange.com>
 #
-# $Id: Net-DBus.spec.PL,v 1.1 2004/10/18 20:56:14 dan Exp $
+# $Id: Net-DBus.spec.PL,v 1.2 2005/04/12 22:23:50 dan Exp $
 
 use strict;
 
@@ -28,13 +28,12 @@ close SPEC;
 __DATA__
 # Automatically generated by DBus.spec.PL
 
-%define __debug_package 0
+%define __debug_install_post %{nil}
 %define perlvendorarch %(perl -e 'use Config; print $Config{installvendorarch}')
 %define perlvendorlib %(perl -e 'use Config; print $Config{installvendorlib}')
 %define perlvendorprefix %(perl -e 'use Config; print $Config{vendorprefix}')
 %define perlvendorman3 %{perlvendorprefix}/share/man/man3
 %define perlversion %(perl -e 'use Config; print $Config{version}')
-
 %define appname Net-DBus
 
 Summary: Perl API to the DBus message system
@@ -47,7 +46,7 @@ Source: %{appname}-%{version}.tar.gz
 BuildRoot: /var/tmp/%{appname}-%{version}-root
 BuildArchitectures: noarch
 Requires: perl = %{perlversion}
-Requires: dbus = 0.21
+Requires: dbus = 0.31
 
 %description
 Provides a Perl API to the DBus message system
diff --git a/README b/README
index c36fa25..9b5768b 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-DBus version 0.0.1
+DBus version 0.31.0
 =================
 
 DBus provides a Perl XS API to the dbus inter-application
@@ -9,6 +9,8 @@ project website at:
 
   http://www.freedesktop.org/software/dbus/
 
+This version operates against DBus 0.31
+
 INSTALLATION
 ------------
 
@@ -51,6 +53,8 @@ has minimal external dependancies:
 
   Test::More
   Time::HiRes
+  XML::Grove
+  XML::Parser
 
 Both of these modules are present as standard in versions
 of Perl >= 5.8.0, while for earlier versions they may
@@ -66,9 +70,9 @@ the UNIX socket /tmp/perl-dbus-test. Once the DBus
 modules have been installed, they maybe run as
 follows:
 
-    perl examples/sever.pl
+    perl examples/example-service.pl
 
-    perl examples/client.pl
+    perl examples/example-client.pl
 
 Control+C will be required to make them exit, since
 once connected, they simply sleep/spin around in their
@@ -90,18 +94,18 @@ patch is as follows:
   * Rename your working directory to have '-new' 
     extension: 
 
-        mv DBus-0.0.1 DBus-0.0.1-new
+        mv DBus-0.31.0 DBus-0.31.0-new
 
   * Extract a pristine copy of the source:
 
-        gunzip -c DBus-0.0.1.tar.gz | tar xf -
-        mv DBus-0.0.1 DBus-0.0.1-orig
+        gunzip -c DBus-0.31.0.tar.gz | tar xf -
+        mv DBus-0.31.0 DBus-0.31.0-orig
 
   * Generate the patch:
 
-        diff -ruN DBus-0.0.1-orig DBus-0.0.1-new \
-          > DBus-0.0.1-[something].patch
-        gzip DBus-0.0.1-[something].patch
+        diff -ruN DBus-0.31.0-orig DBus-0.31.0-new \
+          > DBus-0.31.0-[something].patch
+        gzip DBus-0.31.0-[something].patch
 
 
 Send the resulting to .patch.gz file directly to 
diff --git a/lib/Net/DBus.pm b/lib/Net/DBus.pm
index 0c30818..42365a6 100644
--- a/lib/Net/DBus.pm
+++ b/lib/Net/DBus.pm
@@ -8,7 +8,7 @@ use Carp;
 
 
 BEGIN {
-our $VERSION = '0.0.1';
+our $VERSION = '0.31.0';
 require XSLoader;
 XSLoader::load('Net::DBus', $VERSION);
 }
diff --git a/rollingbuild.sh b/rollingbuild.sh
index a7d3d85..76a1997 100755
--- a/rollingbuild.sh
+++ b/rollingbuild.sh
@@ -15,6 +15,8 @@ if [ -z "$DBUS_HOME" ]; then
 else
   perl Makefile.PL DBUS_HOME=$DBUS_HOME  PREFIX=$AUTO_BUILD_ROOT
 fi
+
+rm -f MANIFEST
 make manifest
 echo $NAME.spec >> MANIFEST
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libnet-dbus-perl.git



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