r8309 - in /trunk/libpar-packer-perl: contrib/automated_pp_test/automated_pp_test.pl.orig debian/ debian/changelog debian/compat debian/control debian/copyright debian/rules debian/watch

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Wed Oct 17 09:28:34 UTC 2007


Author: dmn
Date: Wed Oct 17 09:28:34 2007
New Revision: 8309

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

Added:
    trunk/libpar-packer-perl/debian/
    trunk/libpar-packer-perl/debian/changelog
    trunk/libpar-packer-perl/debian/compat
    trunk/libpar-packer-perl/debian/control
    trunk/libpar-packer-perl/debian/copyright
    trunk/libpar-packer-perl/debian/rules   (with props)
    trunk/libpar-packer-perl/debian/watch
Removed:
    trunk/libpar-packer-perl/contrib/automated_pp_test/automated_pp_test.pl.orig

Added: trunk/libpar-packer-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libpar-packer-perl/debian/changelog?rev=8309&op=file
==============================================================================
--- trunk/libpar-packer-perl/debian/changelog (added)
+++ trunk/libpar-packer-perl/debian/changelog Wed Oct 17 09:28:34 2007
@@ -1,0 +1,5 @@
+libpar-packer-perl (0.976-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Damyan Ivanov <dmn at debian.org>  Wed, 17 Oct 2007 12:22:15 +0300

Added: trunk/libpar-packer-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libpar-packer-perl/debian/compat?rev=8309&op=file
==============================================================================
--- trunk/libpar-packer-perl/debian/compat (added)
+++ trunk/libpar-packer-perl/debian/compat Wed Oct 17 09:28:34 2007
@@ -1,0 +1,1 @@
+5

Added: trunk/libpar-packer-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libpar-packer-perl/debian/control?rev=8309&op=file
==============================================================================
--- trunk/libpar-packer-perl/debian/control (added)
+++ trunk/libpar-packer-perl/debian/control Wed Oct 17 09:28:34 2007
@@ -1,0 +1,18 @@
+Source: libpar-packer-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5.0.0), perl (>= 5.8.8-11)
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Damyan Ivanov <dmn at debian.org>
+Standards-Version: 3.7.2
+Homepage: http://search.cpan.org/dist/PAR-Packer/
+XS-Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libpar-packer-perl/
+XS-Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libpar-packer-perl/
+
+Package: libpar-packer-perl
+Architecture: any
+Depends: none
+Description: PAR Packager
+ PAR Packager
+ .
+ This description was automagically extracted from the module by dh-make-perl.

Added: trunk/libpar-packer-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libpar-packer-perl/debian/copyright?rev=8309&op=file
==============================================================================
--- trunk/libpar-packer-perl/debian/copyright (added)
+++ trunk/libpar-packer-perl/debian/copyright Wed Oct 17 09:28:34 2007
@@ -1,0 +1,40 @@
+This is the debian package for the PAR-Packer module.
+It was created by Damyan Ivanov <dmn at debian.org> using dh-make-perl.
+
+It was downloaded from http://search.cpan.org/dist/PAR-Packer/
+
+This copyright info was automatically extracted from the perl module.
+It may not be accurate, so you better check the module sources
+if don't want to get into legal troubles.
+
+The upstream author is: 
+
+Audrey Tang <cpan at audreyt.org>,
+Steffen Mueller <smueller at cpan.org>
+
+http://par.perl.org/ is the official PAR website.  You can write
+to the mailing list at <par at perl.org>, or send an empty mail to
+<par-subscribe at perl.org> to participate in the discussion.
+
+Please submit bug reports to <bug-par at rt.cpan.org>..
+
+
+Copyright 2002, 2003, 2004, 2005, 2006 by Audrey Tang
+<cpan at audreyt.org>.
+
+Neither this program nor the associated parl program impose any
+licensing restrictions on files generated by their execution, in
+accordance with the 8th article of the Artistic License:
+
+"Aggregation of this Package with a commercial distribution is
+    always permitted provided that the use of this Package is embedded;
+    that is, when no overt attempt is made to make this Package's
+    interfaces visible to the end user of the commercial distribution.
+    Such use shall not be construed as a distribution of this Package."
+
+Therefore, you are absolutely free to place any license on the resulting
+executable, as long as the packed 3rd-party libraries are also available
+under the Artistic License.
+
+The Debian packaging is (C) 2007, Damyan Ivanov <dmn at debian.org> and
+is licensed under the same terms as the software itself (see above).

Added: trunk/libpar-packer-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libpar-packer-perl/debian/rules?rev=8309&op=file
==============================================================================
--- trunk/libpar-packer-perl/debian/rules (added)
+++ trunk/libpar-packer-perl/debian/rules Wed Oct 17 09:28:34 2007
@@ -1,0 +1,94 @@
+#!/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
+
+	# As this is a architecture dependent package, we are not
+	# supposed to install stuff to /usr/share. MakeMaker creates
+	# the dirs, we prevent this by setting the INSTALLVENDORARCH
+	# and VENDORARCHEXP environment variables.
+
+	# Add commands to compile the package here
+	$(PERL) Makefile.PL INSTALLDIRS=vendor \
+		INSTALLVENDORARCH=/usr/lib/perl5/ \
+		VENDORARCHEXP=/usr/lib/perl5/
+	$(MAKE) OPTIMIZE="$(CFLAGS)" LD_RUN_PATH=""
+	$(MAKE) test
+
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	dh_clean build-stamp install-stamp
+
+	# Add commands to clean up after the build process here
+	[ ! -f Makefile ] || $(MAKE) realclean
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	# Add commands to install the package into debian/$PACKAGE_NAME here
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+
+	touch $@
+
+# Build architecture-independent files here.
+binary-indep: build install
+# 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_installexamples 
+	dh_installdocs TODO README PAR-Packer-0.976/TODO PAR-Packer-0.976/README
+	dh_installchangelogs ChangeLog
+	dh_shlibdeps
+	dh_strip
+	dh_perl
+	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/libpar-packer-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libpar-packer-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libpar-packer-perl/debian/watch?rev=8309&op=file
==============================================================================
--- trunk/libpar-packer-perl/debian/watch (added)
+++ trunk/libpar-packer-perl/debian/watch Wed Oct 17 09:28:34 2007
@@ -1,0 +1,3 @@
+# format version number, currently 3; this line is compulsory!
+version=3
+http://search.cpan.org/dist/PAR-Packer/ .*/PAR-Packer-([\.\d]+)\.(?:tar\.gz|tar|tgz)$




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