r3925 - in /packages/libvorbis-perl/trunk/debian: changelog compat control rules

ntyni-guest at users.alioth.debian.org ntyni-guest at users.alioth.debian.org
Tue Sep 26 10:42:26 UTC 2006


Author: ntyni-guest
Date: Tue Sep 26 10:41:44 2006
New Revision: 3925

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=3925
Log:
minor packaging cleanups.

Added:
    packages/libvorbis-perl/trunk/debian/compat
Modified:
    packages/libvorbis-perl/trunk/debian/changelog
    packages/libvorbis-perl/trunk/debian/control
    packages/libvorbis-perl/trunk/debian/rules

Modified: packages/libvorbis-perl/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libvorbis-perl/trunk/debian/changelog?rev=3925&op=diff
==============================================================================
--- packages/libvorbis-perl/trunk/debian/changelog (original)
+++ packages/libvorbis-perl/trunk/debian/changelog Tue Sep 26 10:41:44 2006
@@ -1,8 +1,13 @@
 libvorbis-perl (0.05-3) unstable; urgency=low
 
   * Remove unneeded dependencies on libvorbis0a and libogg0.
+  * Packaging cleanups:
+    + upgrade to Standards-Version 3.7.2. No changes needed.
+    + upgrade to debhelper compatibility level 5.
+    + support DEB_BUILD_OPTIONS=nostrip,noopt
+    + don't ignore the result code of 'make clean'.
 
- -- Niko Tyni <ntyni at iki.fi>  Tue, 26 Sep 2006 13:32:53 +0300
+ -- Niko Tyni <ntyni at iki.fi>  Tue, 26 Sep 2006 13:39:53 +0300
 
 libvorbis-perl (0.05-2) unstable; urgency=low
 

Added: packages/libvorbis-perl/trunk/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libvorbis-perl/trunk/debian/compat?rev=3925&op=file
==============================================================================
--- packages/libvorbis-perl/trunk/debian/compat (added)
+++ packages/libvorbis-perl/trunk/debian/compat Tue Sep 26 10:41:44 2006
@@ -1,0 +1,1 @@
+5

Modified: packages/libvorbis-perl/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libvorbis-perl/trunk/debian/control?rev=3925&op=diff
==============================================================================
--- packages/libvorbis-perl/trunk/debian/control (original)
+++ packages/libvorbis-perl/trunk/debian/control Tue Sep 26 10:41:44 2006
@@ -2,13 +2,13 @@
 Section: perl
 Priority: optional
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
-Uploaders: Daniel Ruoso <daniel at ruoso.com>, Joachim Breitner <nomeata at debian.org>, Gunnar Wolf <gwolf at debian.org>
-Build-Depends: debhelper (>> 3.0.0), perl, libvorbis-dev
-Standards-Version: 3.6.1
+Uploaders: Daniel Ruoso <daniel at ruoso.com>, Joachim Breitner <nomeata at debian.org>, Gunnar Wolf <gwolf at debian.org>, Niko Tyni <ntyni at iki.fi>
+Build-Depends: debhelper (>= 5), perl, libvorbis-dev
+Standards-Version: 3.7.2
 
 Package: libvorbis-perl
 Architecture: any
-Depends: ${shlibs:Depends}, ${perl:Depends}
+Depends: ${shlibs:Depends}, ${perl:Depends}, ${misc:Depends}
 Description: Perl extension for Ogg Vorbis streams
  The Ogg::Vorbis Perl module, an object-oriented interface to the
  libvorbisfile Ogg Vorbis library.  Currently reading but not writing

Modified: packages/libvorbis-perl/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libvorbis-perl/trunk/debian/rules?rev=3925&op=diff
==============================================================================
--- packages/libvorbis-perl/trunk/debian/rules (original)
+++ packages/libvorbis-perl/trunk/debian/rules Tue Sep 26 10:41:44 2006
@@ -5,11 +5,12 @@
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
 
-# This is the debhelper compatibility version to use.
-export DH_COMPAT=3
+CFLAGS = -Wall -g
 
-ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
-	CFLAGS += -g
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+        CFLAGS += -O0
+else
+        CFLAGS += -O2
 endif
 ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
 	INSTALL_PROGRAM += -s
@@ -31,8 +32,8 @@
 clean:
 	dh_testdir
 	dh_testroot
-	rm -f build-stamp configure-stamp
-	-$(MAKE) clean
+	rm -f build-stamp configure-stamp Makefile.old
+	[ ! -f Makefile ] || $(MAKE) clean
 	dh_clean
 
 install: build
@@ -41,7 +42,7 @@
 	dh_clean -k
 	dh_installdirs
 
-	# Add here commands to install the package into debian/libvorbis-perl.
+	# Commands to install the package into debian/libvorbis-perl.
 	# some cleanup of manpage names
 	$(MAKE) install PREFIX=$(CURDIR)/debian/libvorbis-perl/usr
 
@@ -51,31 +52,20 @@
 
 # Build architecture-independent files here.
 binary-indep: build install
-# We have nothing to do by default.
+# We have nothing to do.
 
 # Build architecture-dependent files here.
 binary-arch: build install
 	dh_testdir
 	dh_testroot
-#	dh_installdebconf	
 	dh_installdocs
 	dh_installexamples
-#	dh_installmenu
-#	dh_installlogrotate
-#	dh_installemacsen
-#	dh_installpam
-#	dh_installmime
-#	dh_installinit
-#	dh_installcron
 	dh_installman
-#	dh_installinfo
-#	dh_undocumented
 	dh_installchangelogs Changes
 	dh_link
 	dh_strip
 	dh_compress
 	dh_fixperms
-#	dh_makeshlibs
 	dh_installdeb
 	dh_perl
 	dh_shlibdeps




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