r41545 - in /trunk/libnet-arp-perl/debian: changelog control patches/series patches/t_upstream_missing_headers.diff rules

thialme-guest at users.alioth.debian.org thialme-guest at users.alioth.debian.org
Sat Aug 8 19:11:48 UTC 2009


Author: thialme-guest
Date: Sat Aug  8 19:11:42 2009
New Revision: 41545

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=41545
Log:
* Bumped up Standards-Version to 3.8.2 (no changes).
* Use a minimal rules file:
  + Refreshed debian/rules
  + Updated BD versions on debhelper and quilt to be able to use
    dh --with quilt
* Added patch t_upstream_missing_headers.diff.


Added:
    trunk/libnet-arp-perl/debian/patches/t_upstream_missing_headers.diff
Modified:
    trunk/libnet-arp-perl/debian/changelog
    trunk/libnet-arp-perl/debian/control
    trunk/libnet-arp-perl/debian/patches/series
    trunk/libnet-arp-perl/debian/rules

Modified: trunk/libnet-arp-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-arp-perl/debian/changelog?rev=41545&op=diff
==============================================================================
--- trunk/libnet-arp-perl/debian/changelog (original)
+++ trunk/libnet-arp-perl/debian/changelog Sat Aug  8 19:11:42 2009
@@ -5,12 +5,21 @@
   $ egrep -r "(GNU General Public License version 2|same terms as Perl)" * 
   => it should be released under GPL in the next release according to upstream
 
+  [ Franck Joncourt ]
+  * Bumped up Standards-Version to 3.8.2 (no changes).
+  * Use a minimal rules file:
+    + Refreshed debian/rules
+    + Updated BD versions on debhelper and quilt to be able to use
+      dh --with quilt
+  * Added patch t_upstream_missing_headers.diff.
+
+  [ Ryan Niebur ]
   * New upstream release
   * Add myself to Uploaders
   * remove buffer_overflows.patch, prototypes.patch, and
     return-value.patch, that are applied upstream
 
- -- Ryan Niebur <ryanryan52 at gmail.com>  Mon, 25 May 2009 20:57:52 +0200
+ -- Franck Joncourt <franck.mail at dthconnex.com>  Sat, 08 Aug 2009 21:08:50 +0200
 
 libnet-arp-perl (1.0.4-1) unstable; urgency=low
 

Modified: trunk/libnet-arp-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-arp-perl/debian/control?rev=41545&op=diff
==============================================================================
--- trunk/libnet-arp-perl/debian/control (original)
+++ trunk/libnet-arp-perl/debian/control Sat Aug  8 19:11:42 2009
@@ -1,11 +1,12 @@
 Source: libnet-arp-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 7), perl (>= 5.8.8-6), quilt (>= 0.40), net-tools
+Build-Depends: debhelper (>= 7.0.8), perl (>= 5.8.8-6), quilt (>= 0.46-7),
+ net-tools
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Gunnar Wolf <gwolf at debian.org>, Niko Tyni <ntyni at debian.org>,
  Franck Joncourt <franck.mail at dthconnex.com>, Ryan Niebur <ryanryan52 at gmail.com>
-Standards-Version: 3.8.1
+Standards-Version: 3.8.2
 Homepage: http://search.cpan.org/dist/Net-ARP/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libnet-arp-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libnet-arp-perl/

Modified: trunk/libnet-arp-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-arp-perl/debian/patches/series?rev=41545&op=diff
==============================================================================
--- trunk/libnet-arp-perl/debian/patches/series (original)
+++ trunk/libnet-arp-perl/debian/patches/series Sat Aug  8 19:11:42 2009
@@ -1,1 +1,2 @@
 20skip_send_packet_test.patch
+t_upstream_missing_headers.diff

Added: trunk/libnet-arp-perl/debian/patches/t_upstream_missing_headers.diff
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-arp-perl/debian/patches/t_upstream_missing_headers.diff?rev=41545&op=file
==============================================================================
--- trunk/libnet-arp-perl/debian/patches/t_upstream_missing_headers.diff (added)
+++ trunk/libnet-arp-perl/debian/patches/t_upstream_missing_headers.diff Sat Aug  8 19:11:42 2009
@@ -1,0 +1,22 @@
+Author: Franck Joncourt <franck.mail at dthconnex.com>
+Description: add missing header 
+ Add missing header to arp_lookup_linux.c due to the following warning
+ during build:
+
+ arp_lookup_linux.c: In function ‘arp_lookup_linux’:
+ arp_lookup_linux.c:101: warning: implicit declaration of function ‘close
+
+diff --git a/arp_lookup_linux.c b/arp_lookup_linux.c
+index 797872a..baa0ab9 100644
+--- a/arp_lookup_linux.c
++++ b/arp_lookup_linux.c
+@@ -22,6 +22,7 @@ See the GNU General Public License for more details.
+ #include <stdio.h>
+ #include <stdlib.h>
+ #include <string.h>
++#include <unistd.h>
+ #include <sys/socket.h>
+ #include <sys/ioctl.h>
+ #include <netinet/in.h>
+-- 
+tg: (0ee363e..) t/upstream/missing_headers (depends on: upstream)

Modified: trunk/libnet-arp-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-arp-perl/debian/rules?rev=41545&op=diff
==============================================================================
--- trunk/libnet-arp-perl/debian/rules (original)
+++ trunk/libnet-arp-perl/debian/rules Sat Aug  8 19:11:42 2009
@@ -1,8 +1,6 @@
 #!/usr/bin/make -f
 
 export DEBIAN_BUILD=1
-
-include /usr/share/quilt/quilt.make
 
 CFLAGS = -Wall -g
 ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS)))
@@ -11,27 +9,8 @@
     CFLAGS += -O2
 endif
 
-build: build-stamp
-build-stamp: $(QUILT_STAMPFN)
-	dh_testdir
-	dh_auto_configure
+%:
+	dh $@ --with quilt
+
+override_dh_auto_build:
 	dh_auto_build -- OPTIMIZE="$(CFLAGS)" LD_RUN_PATH=""
-	dh_auto_test
-	touch $@
-
-clean: unpatch
-	dh $@
-
-install: install-stamp
-install-stamp: build
-	dh install
-	touch $@
-
-binary-indep:
-
-binary-arch: install
-	dh $@
-
-binary: binary-indep binary-arch
-
-.PHONY: binary binary-arch binary-indep install clean build




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