r49508 - in /trunk/libio-socket-multicast6-perl/debian: README.source changelog control patches/ patches/if-address.patch patches/series rules

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Tue Dec 29 10:13:42 UTC 2009


Author: gregoa
Date: Tue Dec 29 10:13:37 2009
New Revision: 49508

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=49508
Log:
Add a patch to skip interfaces without addresses in test suite; add quilt
framework.

Added:
    trunk/libio-socket-multicast6-perl/debian/README.source
    trunk/libio-socket-multicast6-perl/debian/patches/
    trunk/libio-socket-multicast6-perl/debian/patches/if-address.patch
    trunk/libio-socket-multicast6-perl/debian/patches/series
Modified:
    trunk/libio-socket-multicast6-perl/debian/changelog
    trunk/libio-socket-multicast6-perl/debian/control
    trunk/libio-socket-multicast6-perl/debian/rules

Added: trunk/libio-socket-multicast6-perl/debian/README.source
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libio-socket-multicast6-perl/debian/README.source?rev=49508&op=file
==============================================================================
--- trunk/libio-socket-multicast6-perl/debian/README.source (added)
+++ trunk/libio-socket-multicast6-perl/debian/README.source Tue Dec 29 10:13:37 2009
@@ -1,0 +1,6 @@
+This package uses quilt to manage all modifications to the upstream
+source.  Changes are stored in the source package as diffs in
+debian/patches and applied during the build.
+
+See /usr/share/doc/quilt/README.source for a detailed explanation.
+

Modified: trunk/libio-socket-multicast6-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libio-socket-multicast6-perl/debian/changelog?rev=49508&op=diff
==============================================================================
--- trunk/libio-socket-multicast6-perl/debian/changelog (original)
+++ trunk/libio-socket-multicast6-perl/debian/changelog Tue Dec 29 10:13:37 2009
@@ -1,3 +1,10 @@
+libio-socket-multicast6-perl (0.03-2) UNRELEASED; urgency=low
+
+  * Add a patch to skip interfaces without addresses in test suite; add quilt
+    framework.
+
+ -- gregor herrmann <gregoa at debian.org>  Tue, 29 Dec 2009 11:08:24 +0100
+
 libio-socket-multicast6-perl (0.03-1) unstable; urgency=low
 
   * Initial release (closes: #525009).

Modified: trunk/libio-socket-multicast6-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libio-socket-multicast6-perl/debian/control?rev=49508&op=diff
==============================================================================
--- trunk/libio-socket-multicast6-perl/debian/control (original)
+++ trunk/libio-socket-multicast6-perl/debian/control Tue Dec 29 10:13:37 2009
@@ -1,10 +1,11 @@
 Source: libio-socket-multicast6-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 7), perl (>= 5.10) | libmodule-build-perl
+Build-Depends: debhelper (>= 7.0.8), quilt (>= 0.46-7),
+ perl (>= 5.10) | libmodule-build-perl
 Build-Depends-Indep: perl (>= 5.9.4), libsocket-multicast6-perl,
-  libsocket6-perl, libio-socket-inet6-perl,
-  libio-interface-perl (>= 1.01)
+ libsocket6-perl, libio-socket-inet6-perl,
+ libio-interface-perl (>= 1.01)
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: gregor herrmann <gregoa at debian.org>
 Standards-Version: 3.8.3
@@ -15,8 +16,8 @@
 Package: libio-socket-multicast6-perl
 Architecture: all
 Depends: ${perl:Depends}, ${misc:Depends},
-  libsocket-multicast6-perl, libsocket6-perl,
-  libio-socket-inet6-perl, libio-interface-perl (>= 1.01)
+ libsocket-multicast6-perl, libsocket6-perl,
+ libio-socket-inet6-perl, libio-interface-perl (>= 1.01)
 Description: module for sending and receiving IPv4 and IPv6 multicast messages
  The IO::Socket::Multicast6 module subclasses IO::Socket::INET6 to enable you
  to manipulate multicast groups. With this module you will be able to receive

Added: trunk/libio-socket-multicast6-perl/debian/patches/if-address.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libio-socket-multicast6-perl/debian/patches/if-address.patch?rev=49508&op=file
==============================================================================
--- trunk/libio-socket-multicast6-perl/debian/patches/if-address.patch (added)
+++ trunk/libio-socket-multicast6-perl/debian/patches/if-address.patch Tue Dec 29 10:13:37 2009
@@ -1,0 +1,14 @@
+Author: gregor herrmann <gregoa at debian.org>
+Description: Ignore interfaces without addresses, otherwise the test fails.
+ Idea taken from IO::Socket::Multicast.
+
+--- libio-socket-multicast6-perl-0.03.orig/t/05interface.t
++++ libio-socket-multicast6-perl-0.03/t/05interface.t
+@@ -19,6 +19,7 @@
+ foreach my $if (@interfaces) {
+ 	next unless ($if->is_running);
+ 	next unless ($if->is_multicast);
++	next unless ($if->address);
+ 	
+ 	# Found multicast enabled interface
+ 	$iface = $if->name();

Added: trunk/libio-socket-multicast6-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libio-socket-multicast6-perl/debian/patches/series?rev=49508&op=file
==============================================================================
--- trunk/libio-socket-multicast6-perl/debian/patches/series (added)
+++ trunk/libio-socket-multicast6-perl/debian/patches/series Tue Dec 29 10:13:37 2009
@@ -1,0 +1,1 @@
+if-address.patch

Modified: trunk/libio-socket-multicast6-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libio-socket-multicast6-perl/debian/rules?rev=49508&op=diff
==============================================================================
--- trunk/libio-socket-multicast6-perl/debian/rules (original)
+++ trunk/libio-socket-multicast6-perl/debian/rules Tue Dec 29 10:13:37 2009
@@ -1,4 +1,4 @@
 #!/usr/bin/make -f
 
 %:
-	dh $@
+	dh --with quilt $@




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