r21222 - in /trunk/libdevel-ptkdb-perl/debian: ./ changelog compat control copyright docs rules

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sun Jun 15 13:39:35 UTC 2008


Author: gregoa
Date: Sun Jun 15 13:39:35 2008
New Revision: 21222

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

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

Added: trunk/libdevel-ptkdb-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-ptkdb-perl/debian/changelog?rev=21222&op=file
==============================================================================
--- trunk/libdevel-ptkdb-perl/debian/changelog (added)
+++ trunk/libdevel-ptkdb-perl/debian/changelog Sun Jun 15 13:39:35 2008
@@ -1,0 +1,13 @@
+libdevel-ptkdb-perl (1.1091-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix FTBFS with Perl 5.10.  Closes: #467827
+
+ -- Mark Hymers <mhy at debian.org>  Sat, 05 Apr 2008 21:09:03 +0100
+
+libdevel-ptkdb-perl (1.1091-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Florian Ragwitz <florian at mookooh.org>  Sun, 19 Sep 2004 22:52:27 +0200
+

Added: trunk/libdevel-ptkdb-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-ptkdb-perl/debian/compat?rev=21222&op=file
==============================================================================
--- trunk/libdevel-ptkdb-perl/debian/compat (added)
+++ trunk/libdevel-ptkdb-perl/debian/compat Sun Jun 15 13:39:35 2008
@@ -1,0 +1,1 @@
+4

Added: trunk/libdevel-ptkdb-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-ptkdb-perl/debian/control?rev=21222&op=file
==============================================================================
--- trunk/libdevel-ptkdb-perl/debian/control (added)
+++ trunk/libdevel-ptkdb-perl/debian/control Sun Jun 15 13:39:35 2008
@@ -1,0 +1,19 @@
+Source: libdevel-ptkdb-perl
+Section: perl
+Priority: optional
+Maintainer: Florian Ragwitz <florian at mookooh.org>
+Build-Depends: debhelper (>= 4.0.0)
+Build-Depends-Indep: perl, perl-tk (>= 800)
+Standards-Version: 3.6.1
+
+Package: libdevel-ptkdb-perl
+Architecture: all
+Depends: ${perl:Depends}, perl-tk (>= 800)
+Description: Perl debugger using a Tk GUI
+ ptkdb is a debugger for perl that uses perlTk for a user interface.
+ .
+ Features include:
+  * Hot Variable Inspection
+  * Breakpoint Control Panel
+  * Expression List
+  * Subroutine Tree

Added: trunk/libdevel-ptkdb-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-ptkdb-perl/debian/copyright?rev=21222&op=file
==============================================================================
--- trunk/libdevel-ptkdb-perl/debian/copyright (added)
+++ trunk/libdevel-ptkdb-perl/debian/copyright Sun Jun 15 13:39:35 2008
@@ -1,0 +1,29 @@
+This package was debianized by Florian Ragwitz <florian at mookooh.org> on
+Sun, 19 Sep 2004 22:52:27 +0200.
+
+It was downloaded from http://search.cpan.org/~aepage/Devel-ptkdb/
+
+Upstream Author: Andrew E. Page <aepage at users.sourceforge.net>
+
+Copyright:
+
+  Copyright 1998, 2003, Andrew E. Page
+  All rights reserved.
+  
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of either:
+
+  a) the GNU General Public License as published by the Free
+  Software Foundation; either version 1, or (at your option) any
+  later version, or
+
+  b) the "Artistic License" which comes with this Kit.
+
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See either
+  the GNU General Public License or the Artistic License for more details.
+
+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/libdevel-ptkdb-perl/debian/docs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-ptkdb-perl/debian/docs?rev=21222&op=file
==============================================================================
--- trunk/libdevel-ptkdb-perl/debian/docs (added)
+++ trunk/libdevel-ptkdb-perl/debian/docs Sun Jun 15 13:39:35 2008
@@ -1,0 +1,1 @@
+README

Added: trunk/libdevel-ptkdb-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-ptkdb-perl/debian/rules?rev=21222&op=file
==============================================================================
--- trunk/libdevel-ptkdb-perl/debian/rules (added)
+++ trunk/libdevel-ptkdb-perl/debian/rules Sun Jun 15 13:39:35 2008
@@ -1,0 +1,69 @@
+#!/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.
+
+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)
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	-$(MAKE) distclean
+	dh_clean build-stamp install-stamp
+
+install: install-stamp
+install-stamp: build-stamp
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	$(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:
+	[ ! -d $(TMP)/usr/lib/perl5 ] || 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_installexamples
+	dh_perl
+	dh_installchangelogs Changes
+	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-ptkdb-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *




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