[libnet-dbus-perl] 175/335: Updated version to 0.33.1, bumped dependancy on dbus to 0.33, filled out new changelog entries

Intrigeri intrigeri at moszumanska.debian.org
Sat Mar 21 01:07:49 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 7d70e568b4c030e2729bb0072a04c421f5aaf6b3
Author: Daniel P. Berrange <dan at berrange.com>
Date:   Fri Jan 6 16:21:04 2006 +0000

    Updated version to 0.33.1, bumped dependancy on dbus to 0.33, filled out new changelog entries
---
 CHANGES          | 15 +++++++++++++++
 Net-DBus.spec.PL | 22 ++++++++++++++++------
 README           | 17 +++++++++--------
 lib/Net/DBus.pm  |  4 ++--
 4 files changed, 42 insertions(+), 16 deletions(-)

diff --git a/CHANGES b/CHANGES
index 26fdf21..86f9350 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,4 +1,19 @@
 
+Changes since 0.32.3
+
+ - Constructor for Net::DBus::Object allows another Net::DBus::Object
+   to be passed instead of the Net::DBus::Service, to create child
+   objects specifying only a relative path.
+
+ - Updated minimum required DBus version to be 0.33 to gain access
+   to the unregister_object_path API
+
+ - Add a disconnect() method to Net::DBus::Object to make it possible 
+   to unregister object from the bus & thus make it possible to destroy 
+   objects which are no longer required / relevant.
+
+ - More POD documentation fixes
+
 Changes since 0.32.2
 
  - Introspection data is used only as hint, so if an object
diff --git a/Net-DBus.spec.PL b/Net-DBus.spec.PL
index 244e02a..b5a600a 100644
--- a/Net-DBus.spec.PL
+++ b/Net-DBus.spec.PL
@@ -1,6 +1,7 @@
-# Copyright (C) 2001-2004 Daniel Berrange <dan at berrange.com>
+# -*- rpm-spec -*-
+# Copyright (C) 2004-2006 Daniel Berrange <dan at berrange.com>
 #
-# $Id: Net-DBus.spec.PL,v 1.7 2005/10/15 19:47:13 dan Exp $
+# $Id: Net-DBus.spec.PL,v 1.8 2006/01/06 16:21:04 dan Exp $
 
 use strict;
 
@@ -48,7 +49,11 @@ Source: %{appname}-%{version}.tar.gz
 BuildRoot: /var/tmp/%{appname}-%{version}-root
 #BuildArchitectures: noarch
 Requires: perl = %{perlversion}
-Requires: dbus >= 0.32
+# For XML::Parser::PerlSAX & friends
+Requires: perl-libxml-perl
+# For Time::HiRes
+Requires: perl-Time-HiRes
+Requires: dbus >= 0.33
 
 %description
 Provides a Perl API to the DBus message system
@@ -65,7 +70,6 @@ else
 fi
 make
 
-
 %install
 rm -rf $RPM_BUILD_ROOT
 make install INSTALLVENDORMAN3DIR=$RPM_BUILD_ROOT%{perlvendorman3}
@@ -75,11 +79,17 @@ find $RPM_BUILD_ROOT -name .packlist -exec rm -f {} \;
 %clean
 rm -rf $RPM_BUILD_ROOT
 
-
 %files
 %defattr(-,root,root)
-%doc README CHANGES AUTHORS COPYING
+%doc README CHANGES AUTHORS COPYING examples/*.pl
 %{perlvendorman3}/*
 %{perlvendorarch}/Net/DBus.pm
 %{perlvendorarch}/Net/DBus/
 %{perlvendorarch}/auto/Net/DBus
+
+%changelog
+* Fri Jan  6 2006 Daniel Berrange <berrange at localhost.localdomain> - 0.33.1-1
+- Added explicit dependancies on perl-libxml-perl and perl-Time-HiRes
+- Increased min required dbus version to 0.33 since we 
+  need the dbus_connection_unregister_object_path method
+
diff --git a/README b/README
index 08ec66e..12b37f6 100644
--- a/README
+++ b/README
@@ -9,7 +9,7 @@ project website at:
 
   http://www.freedesktop.org/software/dbus/
 
-This version operates against DBus 0.32, through 0.51, and 
+This version operates against DBus 0.33, through 0.60, and 
 possibly later versions, if there have been no serious API 
 changes.
 
@@ -91,18 +91,18 @@ patch is as follows:
   * Rename your working directory to have '-new' 
     extension: 
 
-        mv DBus-0.32.0 DBus-0.32.0-new
+        mv DBus-0.33.1 DBus-0.33.1-new
 
   * Extract a pristine copy of the source:
 
-        gunzip -c DBus-0.32.0.tar.gz | tar xf -
-        mv DBus-0.32.0 DBus-0.32.0-orig
+        gunzip -c DBus-0.33.1.tar.gz | tar xf -
+        mv DBus-0.33.1 DBus-0.33.1-orig
 
   * Generate the patch:
 
-        diff -ruN DBus-0.32.0-orig DBus-0.32.0-new \
-          > DBus-0.32.0-[something].patch
-        gzip DBus-0.32.0-[something].patch
+        diff -ruN DBus-0.33.1-orig DBus-0.33.1-new \
+          > DBus-0.33.1-[something].patch
+        gzip DBus-0.33.1-[something].patch
 
 
 Send the resulting to .patch.gz file directly to 
@@ -111,8 +111,9 @@ Daniel Berrange <dan at berrange dot com>
 COPYRIGHT AND LICENCE
 ---------------------
 
-Copyright (C) 2004-2005 Daniel Berrange
+Copyright (C) 2004-2006 Daniel Berrange
 
 This library is provided under the terms of the GNU GPL 
 
 -- End
+
diff --git a/lib/Net/DBus.pm b/lib/Net/DBus.pm
index 48e3149..5d5a2ac 100644
--- a/lib/Net/DBus.pm
+++ b/lib/Net/DBus.pm
@@ -16,7 +16,7 @@
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 #
-# $Id: DBus.pm,v 1.22 2005/12/21 12:06:15 dan Exp $
+# $Id: DBus.pm,v 1.23 2006/01/06 16:21:04 dan Exp $
 
 =pod
 
@@ -92,7 +92,7 @@ use Carp;
 
 
 BEGIN {
-    our $VERSION = '0.32.4';
+    our $VERSION = '0.33.1';
     require XSLoader;
     XSLoader::load('Net::DBus', $VERSION);
 }

-- 
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