r2397 - in packages/libclass-inner-perl/trunk: . debian t

gregor herrmann gregoa-guest at costa.debian.org
Fri Mar 17 19:05:52 UTC 2006


Author: gregoa-guest
Date: 2006-03-17 19:05:52 +0000 (Fri, 17 Mar 2006)
New Revision: 2397

Added:
   packages/libclass-inner-perl/trunk/debian/
   packages/libclass-inner-perl/trunk/debian/changelog
   packages/libclass-inner-perl/trunk/debian/compat
   packages/libclass-inner-perl/trunk/debian/control
   packages/libclass-inner-perl/trunk/debian/copyright
   packages/libclass-inner-perl/trunk/debian/rules
Modified:
   packages/libclass-inner-perl/trunk/t/basic.t
Log:
Load libclass-inner-perl-0.1 into packages/libclass-inner-perl/trunk.


Added: packages/libclass-inner-perl/trunk/debian/changelog
===================================================================
--- packages/libclass-inner-perl/trunk/debian/changelog	2006-03-17 19:05:38 UTC (rev 2396)
+++ packages/libclass-inner-perl/trunk/debian/changelog	2006-03-17 19:05:52 UTC (rev 2397)
@@ -0,0 +1,12 @@
+libclass-inner-perl (0.1-2) unstable; urgency=high
+
+  * Fix Build-Depends by deleting my hacked dpkg-source.
+
+ -- Chip Salzenberg <chip at debian.org>  Sun,  5 Oct 2003 21:43:55 -0400
+
+libclass-inner-perl (0.1-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Chip Salzenberg <chip at debian.org>  Fri,  3 Oct 2003 18:58:19 -0400
+

Added: packages/libclass-inner-perl/trunk/debian/compat
===================================================================
--- packages/libclass-inner-perl/trunk/debian/compat	2006-03-17 19:05:38 UTC (rev 2396)
+++ packages/libclass-inner-perl/trunk/debian/compat	2006-03-17 19:05:52 UTC (rev 2397)
@@ -0,0 +1 @@
+4

Added: packages/libclass-inner-perl/trunk/debian/control
===================================================================
--- packages/libclass-inner-perl/trunk/debian/control	2006-03-17 19:05:38 UTC (rev 2396)
+++ packages/libclass-inner-perl/trunk/debian/control	2006-03-17 19:05:52 UTC (rev 2397)
@@ -0,0 +1,14 @@
+Source: libclass-inner-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 3.0.5), perl (>= 5.8.0-7)
+Maintainer: Chip Salzenberg <chip at debian.org>
+Standards-Version: 3.5.1
+
+Package: libclass-inner-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}
+Description:  A perlish implementation of Java like inner classes
+ Yet another implementation of an anonymous class with per object
+ overrideable methods, but with the added attraction of sort-of-working
+ dispatch to the parent class's method.

Added: packages/libclass-inner-perl/trunk/debian/copyright
===================================================================
--- packages/libclass-inner-perl/trunk/debian/copyright	2006-03-17 19:05:38 UTC (rev 2396)
+++ packages/libclass-inner-perl/trunk/debian/copyright	2006-03-17 19:05:52 UTC (rev 2397)
@@ -0,0 +1,13 @@
+This is the debian package for the Class::Inner module.
+
+Chip Salzenberg <chip at debian.org> created this Debian package using
+original Class::Inner sources, as found on the Comprehensive Perl
+Archive Network (CPAN) <URL:http://cpan.org/>.  The Debian Perl
+packaging tool "dh-make-perl" was of great help.
+
+The upstream author is Piers Cawley <pdcawley at iterative-software.com>.
+
+libclass-inner-perl may be redistributed under the terms of either the
+GNU General Public License or the Artistic License.  On a Debian
+GNU/Linux systems, the complete text of these licenses may be found in
+the files /usr/share/common-licenses/{GPL,Artistic}.

Added: packages/libclass-inner-perl/trunk/debian/rules
===================================================================
--- packages/libclass-inner-perl/trunk/debian/rules	2006-03-17 19:05:38 UTC (rev 2396)
+++ packages/libclass-inner-perl/trunk/debian/rules	2006-03-17 19:05:52 UTC (rev 2397)
@@ -0,0 +1,85 @@
+#!/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-dependent files here.
+binary-arch: build install
+# We have nothing to do by default.
+
+# Build architecture-independent files here.
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs README
+	dh_installexamples
+	dh_installmenu
+#	dh_installemacsen
+#	dh_installinit
+	dh_installcron
+	dh_installman
+	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


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


Property changes on: packages/libclass-inner-perl/trunk/t/basic.t
___________________________________________________________________
Name: svn:executable
   - 
   + *




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