From: Don Armstrong Date: Wed, 15 Sep 2004 05:56:41 +0000 (+0000) Subject: * Add debian/ subdirectory X-Git-Url: https://git.donarmstrong.com/?p=class_modular.git%2F.git;a=commitdiff_plain;h=e4098159566cf249d306e89cc0e6a3953499ea14 * Add debian/ subdirectory git-svn-id: file:///srv/don_svn/class_modular/trunk@22 96c6a18b-02ce-0310-9fca-9eb62c757ba6 --- diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..1f59081 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +libclass-modular-perl (0.1-1) unstable; urgency=low + + * Initial Release. + + -- Don Armstrong Tue, 17 Feb 2004 17:39:06 -0800 + diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..b8626c4 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +4 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..11ebde3 --- /dev/null +++ b/debian/control @@ -0,0 +1,26 @@ +Source: libclass-modular-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 4.0.2) +Build-Depends-Indep: perl (>= 5.8.0-7) +Maintainer: Don Armstrong +Standards-Version: 3.6.1 + +Package: libclass-modular-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, +Description: Class::Modular -- Modular class generation superclass + Class::Modular is a superclass for generating modular classes, where + methods can be added into the class from the perspective of the + object, rather than the perspective of the class. + . + That is, you can create a class which has a set of generic common + functions. Less generic functions can be included or overridden + without modifying the base classes. This allows for code to be more + modular, and reduces code duplication. + . + It fills the middle ground between traditional class based OOP and + classless OOP. Class::Mutator and Sex are similar to + Class::Modular but less manic. + . + This description was automagically extracted from the module by dh-make-perl. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..6cfdc7b --- /dev/null +++ b/debian/copyright @@ -0,0 +1,7 @@ +This is the debian package for the Class-Modular module. +It was created by Don Armstrong using dh-make-perl. + +This copyright info was automatically extracted from the perl module. +It may not be accurate, so you better check the module sources +if don't want to get into legal troubles. + diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..48a40e5 --- /dev/null +++ b/debian/rules @@ -0,0 +1,90 @@ +#!/usr/bin/make -f +# This debian/rules file is provided as a template for normal perl +# packages. It was created by Marc Brockschmidt for +# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may +# be used freely wherever it is useful. + +# 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) + +# Allow disabling build optimation by setting noopt in +# $DEB_BUILD_OPTIONS +CFLAGS = -Wall -g +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +build: build-stamp +build-stamp: + dh_testdir + + # Add commands to compile the package here + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) OPTIMIZE="$(CFLAGS)" + + touch build-stamp + +clean: + dh_testdir + dh_testroot + + # Add commands to clean up after the build process here + -$(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: + 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_installcron +# dh_installmenu +# dh_installexamples + dh_installdocs .svn/README.txt lib/.svn/README.txt lib/Class/.svn/README.txt t/.svn/README.txt + dh_installchangelogs + 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