r20317 - in /trunk/libcddb-perl/debian: ./ changelog compat control copyright rules watch

tincho at users.alioth.debian.org tincho at users.alioth.debian.org
Fri May 23 05:57:26 UTC 2008


Author: tincho
Date: Fri May 23 05:57:26 2008
New Revision: 20317

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

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

Added: trunk/libcddb-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcddb-perl/debian/changelog?rev=20317&op=file
==============================================================================
--- trunk/libcddb-perl/debian/changelog (added)
+++ trunk/libcddb-perl/debian/changelog Fri May 23 05:57:26 2008
@@ -1,0 +1,5 @@
+libcddb-perl (1.17-1) UNRELEASED; urgency=low
+
+  * Initial Release. (Closes: #482486)
+
+ -- Martín Ferrari <tincho at debian.org>  Fri, 23 May 2008 02:38:26 -0300

Added: trunk/libcddb-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcddb-perl/debian/compat?rev=20317&op=file
==============================================================================
--- trunk/libcddb-perl/debian/compat (added)
+++ trunk/libcddb-perl/debian/compat Fri May 23 05:57:26 2008
@@ -1,0 +1,1 @@
+5

Added: trunk/libcddb-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcddb-perl/debian/control?rev=20317&op=file
==============================================================================
--- trunk/libcddb-perl/debian/control (added)
+++ trunk/libcddb-perl/debian/control Fri May 23 05:57:26 2008
@@ -1,0 +1,29 @@
+Source: libcddb-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5)
+Build-Depends-Indep: perl (>= 5.6.10-12)
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Martín Ferrari <tincho at debian.org>
+Standards-Version: 3.7.3
+Homepage: http://search.cpan.org/dist/CDDB/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libcddb-perl/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libcddb-perl/
+
+Package: libcddb-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}
+Description: high-level interface to CDDB and freedb servers.
+ CDDB protocol (cddbp) servers provide compact disc information for
+ programs that need it.  This allows such programs to display disc and
+ track titles automatically, and it provides extended information like
+ liner notes and lyrics.
+ .
+ This module provides a high-level Perl interface to cddbp servers.
+ With it, a Perl program can identify and possibly gather details about
+ a CD based on its "table of contents" (the disc's track times and
+ offsets).
+ .
+ Disc details have been useful for generating CD catalogs, naming mp3
+ files, printing CD liners, or even just playing discs in an automated
+ jukebox.

Added: trunk/libcddb-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcddb-perl/debian/copyright?rev=20317&op=file
==============================================================================
--- trunk/libcddb-perl/debian/copyright (added)
+++ trunk/libcddb-perl/debian/copyright Fri May 23 05:57:26 2008
@@ -1,0 +1,23 @@
+Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat
+Upstream-Author: Rocco Caputo <rcaputo at cpan.org>
+Packaged-By: Martín Ferrari <tincho at debian.org>
+Packaged-Date: Fri, 23 May 2008 02:46:21 -0300
+Original-Source-Location: http://search.cpan.org/dist/CDDB/
+Original-Source-Command: uscan --force-download
+Original-Source-Depends: devscripts
+
+Files: *
+Copyright: © 1998-2005 Rocco Caputo. All rights reserved.
+License: Artistic | GPL-1+
+ This program is free software; you can redistribute it and/or modify it under
+ the same terms as Perl itself.
+
+Files: debian/*
+Copyright: © 2008 Debian Perl Group <debian-perl at lists.debian.org>
+License: Artistic | GPL-1+
+
+Perl is distributed under your choice of the GNU General Public License or
+the Artistic License.  On Debian GNU/Linux systems, the complete text of the
+GNU General Public License can be found in `/usr/share/common-licenses/GPL'
+and the Artistic Licence in `/usr/share/common-licenses/Artistic'.
+

Added: trunk/libcddb-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcddb-perl/debian/rules?rev=20317&op=file
==============================================================================
--- trunk/libcddb-perl/debian/rules (added)
+++ trunk/libcddb-perl/debian/rules Fri May 23 05:57:26 2008
@@ -1,0 +1,56 @@
+#!/usr/bin/make -f
+
+# 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
+
+PERL   ?= /usr/bin/perl
+PACKAGE = $(shell dh_listpackages)
+TMP     = $(CURDIR)/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE)
+	$(MAKE) test
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	dh_clean build-stamp install-stamp
+	[ ! -f Makefile ] || $(MAKE) realclean
+
+install: install-stamp
+install-stamp: build-stamp
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+	[ ! -d $(TMP)/usr/lib/perl5 ] || \
+		rmdir --ignore-fail-on-non-empty --parents --verbose \
+		$(TMP)/usr/lib/perl5
+	touch $@
+
+binary-arch:
+# We have nothing to do here for an architecture-independent package
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs README
+	dh_installchangelogs CHANGES
+	dh_perl
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install

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

Added: trunk/libcddb-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcddb-perl/debian/watch?rev=20317&op=file
==============================================================================
--- trunk/libcddb-perl/debian/watch (added)
+++ trunk/libcddb-perl/debian/watch Fri May 23 05:57:26 2008
@@ -1,0 +1,3 @@
+version=3
+
+http://search.cpan.org/dist/CDDB/ .*/CDDB-v?(\d[\d_.-]+)\.tar\.gz$




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