r20140 - in /trunk/libaudio-flac-header-perl/debian: changelog control rules watch

tincho-guest at users.alioth.debian.org tincho-guest at users.alioth.debian.org
Mon May 19 08:38:50 UTC 2008


Author: tincho-guest
Date: Mon May 19 08:38:49 2008
New Revision: 20140

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=20140
Log:
* debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser
  field (source stanza); Homepage field (source stanza). Improved long
  description a little.
* debian/watch: simplified.
* debian/rules: refreshed from templates.

Modified:
    trunk/libaudio-flac-header-perl/debian/changelog
    trunk/libaudio-flac-header-perl/debian/control
    trunk/libaudio-flac-header-perl/debian/rules
    trunk/libaudio-flac-header-perl/debian/watch

Modified: trunk/libaudio-flac-header-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libaudio-flac-header-perl/debian/changelog?rev=20140&op=diff
==============================================================================
--- trunk/libaudio-flac-header-perl/debian/changelog (original)
+++ trunk/libaudio-flac-header-perl/debian/changelog Mon May 19 08:38:49 2008
@@ -1,3 +1,13 @@
+libaudio-flac-header-perl (2.0-2) UNRELEASED; urgency=low
+
+  * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser
+    field (source stanza); Homepage field (source stanza). Improved long
+    description a little.
+  * debian/watch: simplified.
+  * debian/rules: refreshed from templates.
+
+ -- Martín Ferrari <tincho at debian.org>  Mon, 19 May 2008 05:32:17 -0300
+
 libaudio-flac-header-perl (2.0-1) unstable; urgency=low
 
   * New upstream release.

Modified: trunk/libaudio-flac-header-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libaudio-flac-header-perl/debian/control?rev=20140&op=diff
==============================================================================
--- trunk/libaudio-flac-header-perl/debian/control (original)
+++ trunk/libaudio-flac-header-perl/debian/control Mon May 19 08:38:49 2008
@@ -6,18 +6,19 @@
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Niko Tyni <ntyni at debian.org>
 Standards-Version: 3.7.3
+Homepage: http://search.cpan.org/dist/Audio-FLAC-Header/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libaudio-flac-header-perl/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libaudio-flac-header-perl/
 
 Package: libaudio-flac-header-perl
 Architecture: any
 Depends: ${perl:Depends}, ${shlibs:Depends}, ${misc:Depends}
 Description: Perl interface to FLAC file header metadata
- This package provides an object-oriented interface to FLAC file header and
- metadata, it returns a hash containing basic information about a FLAC file,
- a representation of the embedded cue sheet if one exists, as well as tag
+ Audio::FLAC::Header provides an object-oriented interface to FLAC file header
+ and metadata, it returns a hash containing basic information about a FLAC
+ file, a representation of the embedded cue sheet if one exists, as well as tag
  information contained in the FLAC file's Vorbis tags.
  .
  There is no complete list of tag keys for Vorbis tags, as they can be
  defined by the user; the basic set of tags used for FLAC files include:
  ALBUM, ARTIST, TITLE, DATE, GENRE, TRACKNUMBER, COMMENT.
- .
- The upstream package is called Audio::FLAC::Header and is available on CPAN.

Modified: trunk/libaudio-flac-header-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libaudio-flac-header-perl/debian/rules?rev=20140&op=diff
==============================================================================
--- trunk/libaudio-flac-header-perl/debian/rules (original)
+++ trunk/libaudio-flac-header-perl/debian/rules Mon May 19 08:38:49 2008
@@ -1,8 +1,4 @@
 #!/usr/bin/make -f
-# This debian/rules file is provided as a template for normal perl
-# packages. It was created by Marc Brockschmidt <marc at dch-faq.de> for
-# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may
-# be used freely wherever it is useful.
 
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
@@ -11,15 +7,11 @@
 # always return the default without waiting for user input.
 export PERL_MM_USE_DEFAULT=1
 
-PACKAGE=$(shell dh_listpackages)
+PERL   ?= /usr/bin/perl
+PACKAGE = $(shell dh_listpackages)
+TMP     = $(CURDIR)/debian/$(PACKAGE)
 
-ifndef PERL
-PERL = /usr/bin/perl
-endif
-
-TMP     =$(CURDIR)/debian/$(PACKAGE)
-
-# Allow disabling build optimation by setting noopt in
+# Allow disabling build optimisation by setting noopt in
 # $DEB_BUILD_OPTIONS
 CFLAGS = -Wall -g
 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
@@ -39,8 +31,8 @@
 clean:
 	dh_testdir
 	dh_testroot
+	dh_clean build-stamp install-stamp
 	[ ! -f Makefile ] || $(MAKE) realclean
-	dh_clean build-stamp install-stamp
 
 install: install-stamp
 install-stamp: build-stamp
@@ -49,34 +41,27 @@
 	dh_clean -k
 	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
 	[ ! -d $(TMP)/usr/share/perl5 ] || \
-		rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/share/perl5
+		rmdir --ignore-fail-on-non-empty --parents --verbose \
+		$(TMP)/usr/share/perl5
 	touch $@
 
-# Build architecture-independent files here.
 binary-indep: build install
-# We have nothing to do.
+# We have nothing to do here for an architecture-dependent package
 
-# Build architecture-dependent files here.
 binary-arch: build install
 	dh_testdir
 	dh_testroot
-	dh_installdocs
-	dh_installman
+	dh_installdocs TODO
 	dh_installchangelogs Changes
-	dh_link
+	dh_shlibdeps
 	dh_strip
+	dh_perl
 	dh_compress
 	dh_fixperms
-	dh_makeshlibs
 	dh_installdeb
-	dh_perl 
-	dh_shlibdeps
 	dh_gencontrol
 	dh_md5sums
 	dh_builddeb
 
-source diff:                                                                  
-	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
-
 binary: binary-indep binary-arch
-.PHONY: build clean install binary-indep binary-arch binary
+.PHONY: build clean binary-indep binary-arch binary install

Modified: trunk/libaudio-flac-header-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libaudio-flac-header-perl/debian/watch?rev=20140&op=diff
==============================================================================
--- trunk/libaudio-flac-header-perl/debian/watch (original)
+++ trunk/libaudio-flac-header-perl/debian/watch Mon May 19 08:38:49 2008
@@ -1,2 +1,3 @@
 version=3
-http://search.cpan.org/dist/Audio-FLAC-Header/ .*/Audio-FLAC-Header-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)
+http://search.cpan.org/dist/Audio-FLAC-Header/ \
+	.*/Audio-FLAC-Header-v?(\d[\d_.]+)\.tar\.gz




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