r21511 - in /trunk/libtest-simple-perl/debian: ./ changelog compat control copyright rules

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sun Jun 15 15:36:32 UTC 2008


Author: gregoa
Date: Sun Jun 15 15:36:32 2008
New Revision: 21511

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

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

Added: trunk/libtest-simple-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-simple-perl/debian/changelog?rev=21511&op=file
==============================================================================
--- trunk/libtest-simple-perl/debian/changelog (added)
+++ trunk/libtest-simple-perl/debian/changelog Sun Jun 15 15:36:32 2008
@@ -1,0 +1,18 @@
+libtest-simple-perl (0.78-0.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * New upstream version, needed to fix several FTBFS bugs. (Closes: #457165)
+  * debian/rules: Don't fail when ExtUtils::Install is smart enough to not
+     create empty dirs in /usr. (Closes: #468012)
+  * Minimal house-keeping in an old package:
+    + Bump Standards-Version to 3.7.3 (no changes needed)
+    + debian/copyright: Fix to reflect actual copyrights 
+
+ -- Marc 'HE' Brockschmidt <he at debian.org>  Sun, 16 Mar 2008 12:20:56 +0100
+
+libtest-simple-perl (0.62-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Florian Ragwitz <rafl at debian.org>  Thu, 26 Jan 2006 21:36:03 +0100
+

Added: trunk/libtest-simple-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-simple-perl/debian/compat?rev=21511&op=file
==============================================================================
--- trunk/libtest-simple-perl/debian/compat (added)
+++ trunk/libtest-simple-perl/debian/compat Sun Jun 15 15:36:32 2008
@@ -1,0 +1,1 @@
+4

Added: trunk/libtest-simple-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-simple-perl/debian/control?rev=21511&op=file
==============================================================================
--- trunk/libtest-simple-perl/debian/control (added)
+++ trunk/libtest-simple-perl/debian/control Sun Jun 15 15:36:32 2008
@@ -1,0 +1,24 @@
+Source: libtest-simple-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2)
+Build-Depends-Indep: perl (>= 5.8.0-7)
+Maintainer: Florian Ragwitz <rafl at debian.org>
+Standards-Version: 3.7.3
+
+Package: libtest-simple-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, 
+Conflicts: libtest-builder-tester-perl
+Provides: libtest-builder-tester-perl
+Replaces: libtest-builder-tester-perl
+Description: Basic utilities for writing tests in Perl
+ Test::Simple is an extremely simple, extremely basic module for writing tests
+ suitable for CPAN modules and other pursuits.
+ .
+ This package also includes the following modules:
+  * Test::Builder - backend for building test libraries
+  * Test::Builder::Module - base class for test modules
+  * Test::Builder::Tester - test testsuites that are built with Test::Builder
+  * Test::Builder::Tester::Color - turn on colour in Test::Builder::Tester
+  * Test::More - yet another framework for writing test scripts

Added: trunk/libtest-simple-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-simple-perl/debian/copyright?rev=21511&op=file
==============================================================================
--- trunk/libtest-simple-perl/debian/copyright (added)
+++ trunk/libtest-simple-perl/debian/copyright Sun Jun 15 15:36:32 2008
@@ -1,0 +1,19 @@
+This is the debian package for the Test-Simple module.
+It was created by Florian Ragwitz <rafl at debian.org> using dh-make-perl.
+
+It was downloaded from http://search.cpan.org/~mschwern/Test-Simple/
+
+The upstream author was chromatic <chromatic at wgz.org>, the code is now
+maintained and developed by Michael G Schwern <schwern at pobox.com>.
+
+Copyright (C) 2002,2004 Mark Fowler <mark at twoshortplanks.com>
+Copyright (C) 2002 chromatic <chromatic at wgz.org>
+Copyright (C) 2001-2002, 2004-2006 Michael G Schwern <schwern at pobox.com>.
+
+This program is free software; you can redistribute it and/or 
+modify it under the same terms as Perl itself.
+
+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/libtest-simple-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-simple-perl/debian/rules?rev=21511&op=file
==============================================================================
--- trunk/libtest-simple-perl/debian/rules (added)
+++ trunk/libtest-simple-perl/debian/rules Sun Jun 15 15:36:32 2008
@@ -1,0 +1,57 @@
+#!/usr/bin/make -f
+
+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
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="-Wall -O2 -g"
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	[ ! -f Makefile ] || $(MAKE) realclean
+	dh_clean build-stamp install-stamp
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	$(MAKE) test
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+	
+	[ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(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 TODO
+	dh_installchangelogs Changes
+	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/libtest-simple-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *




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