r18213 - in /trunk/libdevel-stacktrace-perl/debian: ./ changelog compat control copyright rules

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Mon Mar 31 18:47:22 UTC 2008


Author: gregoa-guest
Date: Mon Mar 31 18:47:20 2008
New Revision: 18213

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

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

Added: trunk/libdevel-stacktrace-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-stacktrace-perl/debian/changelog?rev=18213&op=file
==============================================================================
--- trunk/libdevel-stacktrace-perl/debian/changelog (added)
+++ trunk/libdevel-stacktrace-perl/debian/changelog Mon Mar 31 18:47:20 2008
@@ -1,0 +1,27 @@
+libdevel-stacktrace-perl (1.11-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Sat,  7 Aug 2004 20:22:43 -0700
+
+libdevel-stacktrace-perl (1.04-1) unstable; urgency=low
+
+  * New upstream version (closes: Bug#213580, Bug#202697)
+  * Remove spurious README.Debian
+  * Add license boilerplate to debian/copyright
+  * Change section from interpreters to perl
+  * debhelper v4
+  * Fix binary-arch vs binary-indep inherited from old bogus dh-make-perl
+    rules file
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Wed,  1 Oct 2003 04:43:49 -0700
+
+libdevel-stacktrace-perl (0.9-1) unstable; urgency=low
+
+  * Initial Release (closes: Bug#152854).
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Sat, 13 Jul 2002 07:48:26 -0700
+
+Local variables:
+mode: debian-changelog
+End:

Added: trunk/libdevel-stacktrace-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-stacktrace-perl/debian/compat?rev=18213&op=file
==============================================================================
--- trunk/libdevel-stacktrace-perl/debian/compat (added)
+++ trunk/libdevel-stacktrace-perl/debian/compat Mon Mar 31 18:47:20 2008
@@ -1,0 +1,1 @@
+4

Added: trunk/libdevel-stacktrace-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-stacktrace-perl/debian/control?rev=18213&op=file
==============================================================================
--- trunk/libdevel-stacktrace-perl/debian/control (added)
+++ trunk/libdevel-stacktrace-perl/debian/control Mon Mar 31 18:47:20 2008
@@ -1,0 +1,23 @@
+Source: libdevel-stacktrace-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4), perl (>= 5.8.0)
+Maintainer: Ivan Kohler <ivan-debian at 420.am>
+Standards-Version: 3.5.1
+
+Package: libdevel-stacktrace-perl
+Architecture: all
+Depends: ${perl:Depends}
+Description:  Stack trace and stack trace frame objects
+ The Devel::StackTrace module contains two classes, Devel::StackTrace
+ and Devel::StackTraceFrame.  The goal of this object is to encapsulate
+ the information that can found through using the caller() function, as
+ well as providing a simple interface to this data.
+ .
+ The Devel::StackTrace object contains a set of Devel::StackTraceFrame
+ objects, one for each level of the stack.  The frames contain all the
+ data available from caller() as of Perl 5.6.0 though this module still
+ works with 5.00503.
+ .
+ This code was created to support the Exception::Class::Base class
+ (part of Exception::Class) but may be useful in other contexts.

Added: trunk/libdevel-stacktrace-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-stacktrace-perl/debian/copyright?rev=18213&op=file
==============================================================================
--- trunk/libdevel-stacktrace-perl/debian/copyright (added)
+++ trunk/libdevel-stacktrace-perl/debian/copyright Mon Mar 31 18:47:20 2008
@@ -1,0 +1,13 @@
+This is the debian package for the Devel::StackTrace module.
+It was created by Ivan Kohler <ivan-debian at 420.am> using dh-make-perl.
+
+Copyright (c) 2000-2001 Dave Rolsky
+All rights reserved.
+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/libdevel-stacktrace-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-stacktrace-perl/debian/rules?rev=18213&op=file
==============================================================================
--- trunk/libdevel-stacktrace-perl/debian/rules (added)
+++ trunk/libdevel-stacktrace-perl/debian/rules Mon Mar 31 18:47:20 2008
@@ -1,0 +1,87 @@
+#!/usr/bin/make -f
+#-*- makefile -*-
+# Made with the aid of dh_make, by Craig Small
+# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.
+# Some lines taken from debmake, by Christoph Lameter.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+ifndef DESTDIR
+DESTDIR=..
+endif
+TMP     =`pwd`/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	
+	# Add here commands to compile the package.
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="-O2 -g -Wall"
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp
+
+	# Add here commands to clean up after the build process.
+	-$(MAKE) realclean
+
+	dh_clean
+
+install: 
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	# Add here commands to install the package into debian/tmp.
+	#$(MAKE) install DESTDIR=`pwd`/debian/tmp
+	$(MAKE) install PREFIX=$(TMP)/usr
+
+
+# Build architecture-independent files here.
+binary-arch: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-indep: build install
+#	dh_testversion
+	dh_testdir
+	dh_testroot
+	dh_installdocs README
+	dh_installexamples
+	dh_installmenu
+#	dh_installemacsen
+#	dh_installinit
+	dh_installcron
+	dh_installman
+#	dh_undocumented
+	dh_installchangelogs Changes
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+#	dh_makeshlibs
+	dh_installdeb
+	dh_perl 
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb --destdir=$(DESTDIR)
+
+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-stacktrace-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *




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