r15572 - in /trunk/libclone-perl/debian: ./ changelog compat control copyright rules watch

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Sun Feb 24 23:46:34 UTC 2008


Author: gregoa-guest
Date: Sun Feb 24 23:46:34 2008
New Revision: 15572

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

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

Added: trunk/libclone-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libclone-perl/debian/changelog?rev=15572&op=file
==============================================================================
--- trunk/libclone-perl/debian/changelog (added)
+++ trunk/libclone-perl/debian/changelog Sun Feb 24 23:46:34 2008
@@ -1,0 +1,24 @@
+libclone-perl (0.22-1) unstable; urgency=low
+
+  * New upstream version.
+
+ -- Bastian Blank <waldi at debian.org>  Tue, 27 Mar 2007 21:21:02 +0000
+
+libclone-perl (0.18-1) unstable; urgency=low
+
+  * New upstream version.
+
+ -- Bastian Blank <waldi at debian.org>  Thu, 21 Jul 2005 14:10:27 +0200
+
+libclone-perl (0.16-1) unstable; urgency=low
+
+  * New upstream version.
+
+ -- Bastian Blank <waldi at debian.org>  Thu, 21 Apr 2005 22:12:13 +0200
+
+libclone-perl (0.15-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Bastian Blank <waldi at debian.org>  Sat,  3 Apr 2004 23:33:07 +0200
+

Added: trunk/libclone-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libclone-perl/debian/compat?rev=15572&op=file
==============================================================================
--- trunk/libclone-perl/debian/compat (added)
+++ trunk/libclone-perl/debian/compat Sun Feb 24 23:46:34 2008
@@ -1,0 +1,1 @@
+4

Added: trunk/libclone-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libclone-perl/debian/control?rev=15572&op=file
==============================================================================
--- trunk/libclone-perl/debian/control (added)
+++ trunk/libclone-perl/debian/control Sun Feb 24 23:46:34 2008
@@ -1,0 +1,14 @@
+Source: libclone-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2), perl (>= 5.8.0-7)
+Maintainer: Bastian Blank <waldi at debian.org>
+Standards-Version: 3.6.1
+
+Package: libclone-perl
+Architecture: any
+Depends: ${perl:Depends}, ${shlibs:Depends}, ${misc:Depends}, 
+Description: recursively copy Perl datatypes
+ This module provides a clone() method which makes recursive
+ copies of nested hash, array, scalar and reference types, 
+ including tied variables and objects.

Added: trunk/libclone-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libclone-perl/debian/copyright?rev=15572&op=file
==============================================================================
--- trunk/libclone-perl/debian/copyright (added)
+++ trunk/libclone-perl/debian/copyright Sun Feb 24 23:46:34 2008
@@ -1,0 +1,17 @@
+This is the debian package for the Clone module.
+
+The upstream author is: 
+
+Ray Finch, rdf at cpan.org
+
+Copyright 2001 Ray Finch.
+
+This module is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself..
+
+See http://www.perl.com/perl/misc/Artistic.html
+
+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/libclone-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libclone-perl/debian/rules?rev=15572&op=file
==============================================================================
--- trunk/libclone-perl/debian/rules (added)
+++ trunk/libclone-perl/debian/rules Sun Feb 24 23:46:34 2008
@@ -1,0 +1,81 @@
+#!/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
+
+PACKAGE = $(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+TMP = $(CURDIR)/debian/$(PACKAGE)
+
+CFLAGS = -Wall -g
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+        CFLAGS += -O0
+else
+        CFLAGS += -O2
+endif
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="$(CFLAGS)" LD_RUN_PATH=""
+
+	touch $@
+
+clean:
+	dh_testdir
+	rm -f build-stamp
+
+	-$(MAKE) realclean
+
+	dh_clean
+
+install:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	$(MAKE) test
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+	
+	rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/share/perl5
+	
+# 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 
+	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
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary

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

Added: trunk/libclone-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libclone-perl/debian/watch?rev=15572&op=file
==============================================================================
--- trunk/libclone-perl/debian/watch (added)
+++ trunk/libclone-perl/debian/watch Sun Feb 24 23:46:34 2008
@@ -1,0 +1,2 @@
+version=3
+http://www.cpan.org/pub/CPAN/authors/id/R/RD/RDF/Clone-(.*)\.tar.gz




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