r67416 - in /trunk/libio-socket-multicast-perl/debian: changelog compat control libio-socket-multicast-perl.examples rules

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Fri Jan 14 23:17:06 UTC 2011


Author: gregoa
Date: Fri Jan 14 23:16:58 2011
New Revision: 67416

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=67416
Log:
* Set Standards-Version to 3.9.1; drop unneeded versions from (build)
  dependencies.
* Switch to debhelper 7.

Added:
    trunk/libio-socket-multicast-perl/debian/libio-socket-multicast-perl.examples
Modified:
    trunk/libio-socket-multicast-perl/debian/changelog
    trunk/libio-socket-multicast-perl/debian/compat
    trunk/libio-socket-multicast-perl/debian/control
    trunk/libio-socket-multicast-perl/debian/rules

Modified: trunk/libio-socket-multicast-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libio-socket-multicast-perl/debian/changelog?rev=67416&op=diff
==============================================================================
--- trunk/libio-socket-multicast-perl/debian/changelog (original)
+++ trunk/libio-socket-multicast-perl/debian/changelog Fri Jan 14 23:16:58 2011
@@ -1,24 +1,22 @@
 libio-socket-multicast-perl (1.12-1) UNRELEASED; urgency=low
 
-  IGNORE-VERSION: 1.12-1
-  No release necessary; only minor changes to documentation
-
-  [ Jonathan Yu ]
   * New upstream release
 
   [ gregor herrmann ]
   * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser
     field (source stanza); Homepage field (source stanza). Removed: XS-
     Vcs-Svn fields.
-  * debian/rules:
-    - remove /usr/share/perl5 only if it exists
-    - don't ignore errors of make realclean
   * debian/watch: use dist-based URL.
   * debian/control: Added: ${misc:Depends} to Depends: field.
   * Change my email address.
 
   [ Nathan Handler ]
   * debian/watch: Update to ignore development releases.
+
+  [ gregor herrmann ]
+  * Set Standards-Version to 3.9.1; drop unneeded versions from (build)
+    dependencies.
+  * Switch to debhelper 7.
 
  -- Ansgar Burchardt <ansgar at 43-1.org>  Thu, 29 Apr 2010 18:09:48 +0900
 

Modified: trunk/libio-socket-multicast-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libio-socket-multicast-perl/debian/compat?rev=67416&op=diff
==============================================================================
--- trunk/libio-socket-multicast-perl/debian/compat (original)
+++ trunk/libio-socket-multicast-perl/debian/compat Fri Jan 14 23:16:58 2011
@@ -1,1 +1,1 @@
-4
+7

Modified: trunk/libio-socket-multicast-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libio-socket-multicast-perl/debian/control?rev=67416&op=diff
==============================================================================
--- trunk/libio-socket-multicast-perl/debian/control (original)
+++ trunk/libio-socket-multicast-perl/debian/control Fri Jan 14 23:16:58 2011
@@ -4,15 +4,15 @@
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Zak B. Elep <zakame at spunge.org>,
  gregor herrmann <gregoa at debian.org>
-Build-Depends: debhelper (>= 5.0.0), perl (>= 5.8), libio-interface-perl (>= 0.94), netbase
-Standards-Version: 3.7.2
+Build-Depends: debhelper (>= 7), perl, libio-interface-perl, netbase
+Standards-Version: 3.9.1
 Homepage: http://search.cpan.org/dist/IO-Socket-Multicast/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libio-socket-multicast-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libio-socket-multicast-perl/
 
 Package: libio-socket-multicast-perl
 Architecture: any
-Depends: ${misc:Depends}, ${shlibs:Depends}, ${perl:Depends}, libio-interface-perl (>= 0.94)
+Depends: ${misc:Depends}, ${shlibs:Depends}, ${perl:Depends}, libio-interface-perl
 Description: send and receive multicast messages with Perl
  The IO::Socket::Multicast module subclasses IO::Socket::INET to
  enable you to manipulate multicast groups. With this module (and an

Added: trunk/libio-socket-multicast-perl/debian/libio-socket-multicast-perl.examples
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libio-socket-multicast-perl/debian/libio-socket-multicast-perl.examples?rev=67416&op=file
==============================================================================
--- trunk/libio-socket-multicast-perl/debian/libio-socket-multicast-perl.examples (added)
+++ trunk/libio-socket-multicast-perl/debian/libio-socket-multicast-perl.examples Fri Jan 14 23:16:58 2011
@@ -1,0 +1,1 @@
+examples/*

Modified: trunk/libio-socket-multicast-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libio-socket-multicast-perl/debian/rules?rev=67416&op=diff
==============================================================================
--- trunk/libio-socket-multicast-perl/debian/rules (original)
+++ trunk/libio-socket-multicast-perl/debian/rules Fri Jan 14 23:16:58 2011
@@ -1,86 +1,3 @@
 #!/usr/bin/make -f
-#-*- makefile -*-
-# Made with the aid of dh_make, by Craig Small
-# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.
-# Some lines taken from debmake, by Christoph Lameter.
-
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
-
-# If set to a true value then MakeMaker's prompt function will
-# always return the default without waiting for user input.
-export PERL_MM_USE_DEFAULT=1
-
-PACKAGE=$(shell dh_listpackages)
-
-ifndef PERL
-PERL = /usr/bin/perl
-endif
-
-ifndef DESTDIR
-DESTDIR=..
-endif
-TMP := $(shell pwd)/debian/$(PACKAGE)
-
-build: build-stamp
-build-stamp:
-	dh_testdir
-
-	$(PERL) Makefile.PL INSTALLDIRS=vendor
-	$(MAKE) OPTIMIZE="-O2 -g -Wall"
-
-	touch build-stamp
-
-clean:
-	dh_testdir
-	dh_testroot
-	rm -f build-stamp
-
-	# Add here commands to clean up after the build process.
-	[ ! -f Makefile ] || $(MAKE) realclean
-
-	dh_clean
-
-install: 
-	dh_testdir
-	dh_testroot
-	dh_clean -k
-	dh_installdirs
-
-	$(MAKE) test
-	$(MAKE) install PREFIX=$(TMP)/usr
-	[ ! -d $(TMP)/usr/share/perl5 ] || rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/share/perl5
-
-# Build architecture-dependent files here.
-binary-indep: build install
-# We have nothing to do by default.
-
-# Build architecture-independent files here.
-binary-arch: build install
-	dh_testdir
-	dh_testroot
-	dh_installdocs 
-	dh_installexamples examples/*
-	dh_installmenu
-#	dh_installemacsen
-#	dh_installinit
-	dh_installcron
-	dh_installman
-	dh_installchangelogs Changes
-	dh_link
-	dh_strip
-	dh_compress
-	dh_fixperms
-#	dh_makeshlibs
-	dh_installdeb
-	dh_perl 
-	dh_shlibdeps
-	dh_gencontrol
-	dh_md5sums
-	dh_builddeb --destdir=$(DESTDIR)
-
-source diff:                                                                  
-	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary
+%:
+	dh $@




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