r21172 - in /trunk/libaudio-file-perl/debian: ./ changelog compat control copyright rules

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sun Jun 15 13:14:31 UTC 2008


Author: gregoa
Date: Sun Jun 15 13:14:31 2008
New Revision: 21172

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=21172
Log:
[svn-inject] Applying Debian modifications to trunk

Added:
    trunk/libaudio-file-perl/debian/
    trunk/libaudio-file-perl/debian/changelog
    trunk/libaudio-file-perl/debian/compat
    trunk/libaudio-file-perl/debian/control
    trunk/libaudio-file-perl/debian/copyright
    trunk/libaudio-file-perl/debian/rules   (with props)

Added: trunk/libaudio-file-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libaudio-file-perl/debian/changelog?rev=21172&op=file
==============================================================================
--- trunk/libaudio-file-perl/debian/changelog (added)
+++ trunk/libaudio-file-perl/debian/changelog Sun Jun 15 13:14:31 2008
@@ -1,0 +1,26 @@
+libaudio-file-perl (0.11-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Conditionally rmdir /usr/lib/perl5 (closes: #467668)
+
+ -- Stephen Gran <sgran at debian.org>  Sat, 05 Apr 2008 13:05:23 +0100
+
+libaudio-file-perl (0.11-1) unstable; urgency=low
+
+  * New upstream release.
+  * Uses Audio::FLAC::Header instead of Audio::FLAC
+    (Closes: #383709, #378870).
+  * Use DH_COMPAT 5.
+  * Update Standards-Version to 3.7.2 (no changes).
+  * Clean up debian/rules.
+  * Use my new mail address in the Maintainer field.
+  * Fixed build dependencies to make the full test suite pass.
+
+ -- Florian Ragwitz <rafl at debian.org>  Fri, 25 Aug 2006 15:33:23 +0200
+
+libaudio-file-perl (0.08-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Florian Ragwitz <florian at mookooh.org>  Wed, 15 Sep 2004 06:25:15 +0200
+

Added: trunk/libaudio-file-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libaudio-file-perl/debian/compat?rev=21172&op=file
==============================================================================
--- trunk/libaudio-file-perl/debian/compat (added)
+++ trunk/libaudio-file-perl/debian/compat Sun Jun 15 13:14:31 2008
@@ -1,0 +1,1 @@
+5

Added: trunk/libaudio-file-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libaudio-file-perl/debian/control?rev=21172&op=file
==============================================================================
--- trunk/libaudio-file-perl/debian/control (added)
+++ trunk/libaudio-file-perl/debian/control Sun Jun 15 13:14:31 2008
@@ -1,0 +1,18 @@
+Source: libaudio-file-perl
+Section: perl
+Priority: optional
+Maintainer: Florian Ragwitz <rafl at debian.org>
+Build-Depends: debhelper (>= 5.0.0)
+Build-Depends-Indep: perl, libaudio-flac-header-perl, libogg-vorbis-header-pureperl-perl, libmp3-tag-perl, libmp3-info-perl
+Standards-Version: 3.7.2
+
+Package: libaudio-file-perl
+Architecture: all
+Depends: ${perl:Depends}, libaudio-flac-header-perl, libogg-vorbis-header-pureperl-perl, libmp3-tag-perl, libmp3-info-perl
+Description: Perl audio file abstraction library
+ Audio::File abstracts a single audio file, independent of its format.
+ Using this module you can access a files meta-info like title, album,
+ etc. as well as the files audio-properties like its length and bitrate.
+ .
+ Currently only the formats flac, ogg vorbis and mp3 are supported, but
+ support for other formats may be easily added.

Added: trunk/libaudio-file-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libaudio-file-perl/debian/copyright?rev=21172&op=file
==============================================================================
--- trunk/libaudio-file-perl/debian/copyright (added)
+++ trunk/libaudio-file-perl/debian/copyright Sun Jun 15 13:14:31 2008
@@ -1,0 +1,27 @@
+This package was debianized by Florian Ragwitz <rafl at debian.org> on
+Wed, 15 Sep 2004 06:25:15 +0200.
+
+It was downloaded from http://search.cpan.org/~flora/Audio-File/
+
+Upstream Author: Florian Ragwitz <flora at cpan.org>
+
+Copyright:
+
+  Copyright (C) 2004 Florian Ragwitz
+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU Library General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software
+  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+On Debian GNU/Linux systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL-2'.

Added: trunk/libaudio-file-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libaudio-file-perl/debian/rules?rev=21172&op=file
==============================================================================
--- trunk/libaudio-file-perl/debian/rules (added)
+++ trunk/libaudio-file-perl/debian/rules Sun Jun 15 13:14:31 2008
@@ -1,0 +1,54 @@
+#!/usr/bin/make -f
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+TMP     =$(CURDIR)/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE)
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	-$(MAKE) distclean
+	dh_clean build-stamp install-stamp
+
+install: install-stamp
+install-stamp: build-stamp
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	$(MAKE) test
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+	[ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5
+	touch install-stamp
+
+binary-arch:
+# We have nothing to do by default.
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs
+	dh_perl
+	dh_installchangelogs Changes
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	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 binary-indep binary-arch binary

Propchange: trunk/libaudio-file-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *




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