r6940 - in /trunk/libdevel-repl-perl/debian: ./ changelog compat control copyright rules

sukria at users.alioth.debian.org sukria at users.alioth.debian.org
Sun Aug 19 11:22:33 UTC 2007


Author: sukria
Date: Sun Aug 19 11:22:33 2007
New Revision: 6940

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

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

Added: trunk/libdevel-repl-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libdevel-repl-perl/debian/changelog?rev=6940&op=file
==============================================================================
--- trunk/libdevel-repl-perl/debian/changelog (added)
+++ trunk/libdevel-repl-perl/debian/changelog Sun Aug 19 11:22:33 2007
@@ -1,0 +1,5 @@
+libdevel-repl-perl (1.001000-1) unstable; urgency=low
+
+  * Initial Release (closes: 438485).
+
+ -- Alexis Sukrieh <sukria at debian.org>  Sun, 19 Aug 2007 13:09:11 +0200

Added: trunk/libdevel-repl-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libdevel-repl-perl/debian/compat?rev=6940&op=file
==============================================================================
--- trunk/libdevel-repl-perl/debian/compat (added)
+++ trunk/libdevel-repl-perl/debian/compat Sun Aug 19 11:22:33 2007
@@ -1,0 +1,1 @@
+5

Added: trunk/libdevel-repl-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libdevel-repl-perl/debian/control?rev=6940&op=file
==============================================================================
--- trunk/libdevel-repl-perl/debian/control (added)
+++ trunk/libdevel-repl-perl/debian/control Sun Aug 19 11:22:33 2007
@@ -1,0 +1,21 @@
+Source: libdevel-repl-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5.0.0), libdata-dump-streamer-perl, 
+ liblexical-persistence-perl, libmoosex-getopt-perl, 
+ libmoosex-object-pluggable-perl, libnamespace-clean-perl, libmoose-perl, 
+ libfile-homedir-perl, perl-modules, perl-base
+Build-Depends-Indep: perl (>= 5.8.8-7)
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Alexis Sukrieh <sukria at debian.org>
+Standards-Version: 3.7.2
+
+Package: libdevel-repl-perl
+Architecture: all
+Depends: libdata-dump-streamer-perl, liblexical-persistence-perl, 
+         libmoosex-getopt-perl, libmoosex-object-pluggable-perl, 
+         libnamespace-clean-perl, libmoose-perl, libfile-homedir-perl, 
+         perl-modules, perl-base
+Description: Perl module for building a modern Perl interactive shell
+ Devel::REPL is a Moose-based and very flexible module to create
+ Read-Evaluate-Print-Loops (REPL) in Perl.

Added: trunk/libdevel-repl-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libdevel-repl-perl/debian/copyright?rev=6940&op=file
==============================================================================
--- trunk/libdevel-repl-perl/debian/copyright (added)
+++ trunk/libdevel-repl-perl/debian/copyright Sun Aug 19 11:22:33 2007
@@ -1,0 +1,10 @@
+This is the debian package for the Devel-REPL module.
+It was created by Alexis Sukrieh <sukria at debian.org> using dh-make-perl.
+
+The upstream author is: 
+
+Matt S Trout - mst (at) shadowcatsystems.co.uk (http://www.shadowcatsystems.co.uk/).
+
+
+The Debian packaging is (C) 2007, Alexis Sukrieh <sukria at debian.org> and
+is licensed under the same terms as the software itself (see above).

Added: trunk/libdevel-repl-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libdevel-repl-perl/debian/rules?rev=6940&op=file
==============================================================================
--- trunk/libdevel-repl-perl/debian/rules (added)
+++ trunk/libdevel-repl-perl/debian/rules Sun Aug 19 11:22:33 2007
@@ -1,0 +1,80 @@
+#!/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)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	# Add commands to compile the package here
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="-Wall -O2 -g"
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	# Add commands to clean up after the build process here
+	[ ! -f Makefile ] || $(MAKE) realclean
+
+	dh_clean build-stamp install-stamp
+
+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) test
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+
+	# As this is a architecture independent package, we are not
+	# supposed to install stuff to /usr/lib. MakeMaker creates
+	# the dirs, we delete them from the deb:
+	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_installchangelogs Changes
+	dh_perl
+	dh_link
+	dh_strip
+	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/libdevel-repl-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *




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