r14066 - in /trunk/libogg-vorbis-decoder-perl/debian: ./ changelog compat control copyright rules

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Sun Feb 3 00:02:48 UTC 2008


Author: gregoa-guest
Date: Sun Feb  3 00:02:42 2008
New Revision: 14066

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

Added:
    trunk/libogg-vorbis-decoder-perl/debian/
    trunk/libogg-vorbis-decoder-perl/debian/changelog
    trunk/libogg-vorbis-decoder-perl/debian/compat
    trunk/libogg-vorbis-decoder-perl/debian/control
    trunk/libogg-vorbis-decoder-perl/debian/copyright
    trunk/libogg-vorbis-decoder-perl/debian/rules   (with props)

Added: trunk/libogg-vorbis-decoder-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libogg-vorbis-decoder-perl/debian/changelog?rev=14066&op=file
==============================================================================
--- trunk/libogg-vorbis-decoder-perl/debian/changelog (added)
+++ trunk/libogg-vorbis-decoder-perl/debian/changelog Sun Feb  3 00:02:42 2008
@@ -1,0 +1,22 @@
+libogg-vorbis-decoder-perl (0.6-1) unstable; urgency=low
+
+  * New upstream release
+  * Move Build-Depends-Indep to Build-Depends for proper autobuilding
+    (closes: Bug#240140), patch from Peter Eisentraut <peter_e at gmx.net>.
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Mon, 14 Jun 2004 20:54:24 -0700
+
+libogg-vorbis-decoder-perl (0.5-2) unstable; urgency=low
+
+  * Remove upstream's vorbisfile.h header searching in Makefile.PL.  This is
+    unnecessary for Debian and is messing up the autobuilders.
+    (closes: Bug#239912)
+
+ -- Ivan <ivan-debian at 420.am>  Wed, 24 Mar 2004 19:55:34 -0800
+
+libogg-vorbis-decoder-perl (0.5-1) unstable; urgency=low
+
+  * Initial Release (closes: Bug#237172).
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Tue,  9 Mar 2004 21:37:14 -0800
+

Added: trunk/libogg-vorbis-decoder-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libogg-vorbis-decoder-perl/debian/compat?rev=14066&op=file
==============================================================================
--- trunk/libogg-vorbis-decoder-perl/debian/compat (added)
+++ trunk/libogg-vorbis-decoder-perl/debian/compat Sun Feb  3 00:02:42 2008
@@ -1,0 +1,1 @@
+4

Added: trunk/libogg-vorbis-decoder-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libogg-vorbis-decoder-perl/debian/control?rev=14066&op=file
==============================================================================
--- trunk/libogg-vorbis-decoder-perl/debian/control (added)
+++ trunk/libogg-vorbis-decoder-perl/debian/control Sun Feb  3 00:02:42 2008
@@ -1,0 +1,17 @@
+Source: libogg-vorbis-decoder-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2), perl (>= 5.8.0-7), libvorbis-dev, libogg-dev
+Maintainer: Ivan Kohler <ivan-debian at 420.am>
+Standards-Version: 3.6.1
+
+Package: libogg-vorbis-decoder-perl
+Architecture: any
+Depends: ${perl:Depends}, ${shlibs:Depends}, ${misc:Depends}, 
+Description:  An object-oriented Ogg Vorbis decoder
+ This module provides users with Decoder objects for Ogg Vorbis files.
+ One can read data in PCM format from the stream, seek by raw bytes,
+ pcm samples, or time, and gather decoding-specific information not
+ provided by Ogg::Vorbis::Header.  Currently, no support is provided for
+ the callback mechanism provided by the Vorbisfile API; this may be
+ included in future releases.

Added: trunk/libogg-vorbis-decoder-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libogg-vorbis-decoder-perl/debian/copyright?rev=14066&op=file
==============================================================================
--- trunk/libogg-vorbis-decoder-perl/debian/copyright (added)
+++ trunk/libogg-vorbis-decoder-perl/debian/copyright Sun Feb  3 00:02:42 2008
@@ -1,0 +1,13 @@
+This is the debian package for the Ogg-Vorbis-Decoder module.
+It was created by Ivan Kohler <ivan-debian at 420.am> using dh-make-perl.
+
+Copyright (c) 2004, Dan Sully.  All Rights Reserved.
+Copyright (c) 2003, Dan Pemstein.  All Rights Reserved.
+
+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.
+
+The full text of the GPL is available on Debian systems in
+/usr/share/common-licenses/GPL

Added: trunk/libogg-vorbis-decoder-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libogg-vorbis-decoder-perl/debian/rules?rev=14066&op=file
==============================================================================
--- trunk/libogg-vorbis-decoder-perl/debian/rules (added)
+++ trunk/libogg-vorbis-decoder-perl/debian/rules Sun Feb  3 00:02:42 2008
@@ -1,0 +1,99 @@
+#!/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
+
+# 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
+
+TMP     =$(CURDIR)/debian/$(PACKAGE)
+
+# Allow disabling build optimation by setting noopt in
+# $DEB_BUILD_OPTIONS
+CFLAGS = -Wall -g
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+        CFLAGS += -O0
+else
+        CFLAGS += -O2
+endif
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	# Add commands to compile the package here
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="$(CFLAGS)" LD_RUN_PATH=""
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	# Add commands to clean up after the build process here
+	-$(MAKE) realclean
+
+	dh_clean build-stamp install-stamp
+
+install: install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	# Add here commands to install the package into debian/tmp.
+	#$(MAKE) test
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+	
+	# As this is a architecture dependent package, we are not supposed to install
+	# stuff to /usr/share/perl5. MakeMaker creates the dirs, we delete them from 
+	# the deb:
+	rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/share/perl5
+	
+	touch install-stamp
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs #DOCS#
+	dh_installexamples 
+#	dh_installmenu
+#	dh_installcron
+#	dh_installman
+	dh_installchangelogs #CHANGES#
+	dh_link
+ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
+	     dh_strip
+endif
+	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 binary-indep binary-arch binary

Propchange: trunk/libogg-vorbis-decoder-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *




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