r2179 - in packages/libsmart-comments-perl/trunk: . debian

Niko Tyni ntyni-guest at costa.debian.org
Thu Feb 23 19:14:06 UTC 2006


Author: ntyni-guest
Date: 2006-02-23 19:14:06 +0000 (Thu, 23 Feb 2006)
New Revision: 2179

Added:
   packages/libsmart-comments-perl/trunk/debian/
   packages/libsmart-comments-perl/trunk/debian/changelog
   packages/libsmart-comments-perl/trunk/debian/compat
   packages/libsmart-comments-perl/trunk/debian/control
   packages/libsmart-comments-perl/trunk/debian/copyright
   packages/libsmart-comments-perl/trunk/debian/rules
   packages/libsmart-comments-perl/trunk/debian/watch
Log:
Load libsmart-comments-perl-1.0.2 into
packages/libsmart-comments-perl/trunk.


Added: packages/libsmart-comments-perl/trunk/debian/changelog
===================================================================
--- packages/libsmart-comments-perl/trunk/debian/changelog	2006-02-23 19:13:53 UTC (rev 2178)
+++ packages/libsmart-comments-perl/trunk/debian/changelog	2006-02-23 19:14:06 UTC (rev 2179)
@@ -0,0 +1,6 @@
+libsmart-comments-perl (1.0.2-1) unstable; urgency=low
+
+  * Initial release. (Closes: #354156)
+
+ -- Niko Tyni <ntyni at iki.fi>  Thu, 23 Feb 2006 21:04:24 +0200
+

Added: packages/libsmart-comments-perl/trunk/debian/compat
===================================================================
--- packages/libsmart-comments-perl/trunk/debian/compat	2006-02-23 19:13:53 UTC (rev 2178)
+++ packages/libsmart-comments-perl/trunk/debian/compat	2006-02-23 19:14:06 UTC (rev 2179)
@@ -0,0 +1 @@
+5

Added: packages/libsmart-comments-perl/trunk/debian/control
===================================================================
--- packages/libsmart-comments-perl/trunk/debian/control	2006-02-23 19:13:53 UTC (rev 2178)
+++ packages/libsmart-comments-perl/trunk/debian/control	2006-02-23 19:14:06 UTC (rev 2179)
@@ -0,0 +1,21 @@
+Source: libsmart-comments-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5), libmodule-build-perl
+Build-Depends-Indep: perl (>= 5.8.0-7), libversion-perl, libtest-pod-perl, libtest-pod-coverage-perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Niko Tyni <ntyni at iki.fi>
+Standards-Version: 3.6.2
+
+Package: libsmart-comments-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, libversion-perl
+Description: comments that do more than just sit there
+ Smart comments provide an easy way to insert debugging and tracking code
+ into a program. They can report the value of a variable, track the
+ progress of a loop, and verify that particular assertions are true.
+ .
+ Best of all, when you're finished debugging, you don't have to remove them.
+ Simply commenting out the "use Smart::Comments" line turns them back into
+ regular comments. Leaving smart comments in your code is smart because if you
+ needed them once, you'll almost certainly need them again later.

Added: packages/libsmart-comments-perl/trunk/debian/copyright
===================================================================
--- packages/libsmart-comments-perl/trunk/debian/copyright	2006-02-23 19:13:53 UTC (rev 2178)
+++ packages/libsmart-comments-perl/trunk/debian/copyright	2006-02-23 19:14:06 UTC (rev 2179)
@@ -0,0 +1,24 @@
+This is the debian package for the Smart-Comments module.
+It was created by Niko Tyni <ntyni at iki.fi> using dh-make-perl on
+Thu, 23 Feb 2006 20:33:41 +0200
+
+It was downloaded from
+http://mirrors.kernel.org/CPAN/modules/by-authors/id/DCONWAY/Smart-Comments-v1.0.2.tar.gz
+
+Upstream author: Damian Conway <DCONWAY at cpan.org> 
+
+Copyright:
+
+Copyright (C) 2005, Damian Conway
+
+ This library is free software; you can redistribute it and/or modify
+ it under the same terms as Perl itself.
+
+Perl is distributed under either the Artistic licence or the GPL.
+
+The full text of the GPL is available on Debian systems in
+/usr/share/common-licenses/GPL .
+
+The full text of the Artistic Licence is available on Debian systems in
+/usr/share/common-licenses/Artistic .
+

Added: packages/libsmart-comments-perl/trunk/debian/rules
===================================================================
--- packages/libsmart-comments-perl/trunk/debian/rules	2006-02-23 19:13:53 UTC (rev 2178)
+++ packages/libsmart-comments-perl/trunk/debian/rules	2006-02-23 19:14:06 UTC (rev 2179)
@@ -0,0 +1,81 @@
+#!/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.
+#
+# It was later modified by Jason Kohles <email at jasonkohles.com>
+# http://www.jasonkohles.com/ to support Module::Build installed modules
+
+# 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) Build.PL installdirs=vendor
+	OPTIMIZE="-Wall -O2 -g" $(PERL) Build
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	# Add commands to clean up after the build process here
+	[ ! -f Build ] || $(PERL) Build distclean
+
+	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
+	$(PERL) Build test
+	$(PERL) Build install destdir=$(TMP)
+
+	touch install-stamp
+
+binary-arch:
+# We have nothing to do by default.
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+#	dh_installcron
+#	dh_installmenu
+#	dh_installexamples
+	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


Property changes on: packages/libsmart-comments-perl/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: packages/libsmart-comments-perl/trunk/debian/watch
===================================================================
--- packages/libsmart-comments-perl/trunk/debian/watch	2006-02-23 19:13:53 UTC (rev 2178)
+++ packages/libsmart-comments-perl/trunk/debian/watch	2006-02-23 19:14:06 UTC (rev 2179)
@@ -0,0 +1,3 @@
+# format version number, currently 3; this line is compulsory!
+version=3
+http://mirrors.kernel.org/CPAN/modules/by-authors/id/DCONWAY/Smart-Comments-v?(\d.+)\.tar\.gz




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