r21448 - in /trunk/libspiffy-perl/debian: ./ changelog compat control copyright rules

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sun Jun 15 15:11:28 UTC 2008


Author: gregoa
Date: Sun Jun 15 15:11:28 2008
New Revision: 21448

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

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

Added: trunk/libspiffy-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libspiffy-perl/debian/changelog?rev=21448&op=file
==============================================================================
--- trunk/libspiffy-perl/debian/changelog (added)
+++ trunk/libspiffy-perl/debian/changelog Sun Jun 15 15:11:28 2008
@@ -1,0 +1,24 @@
+libspiffy-perl (0.29-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * debian/rules: Don't FTBFS when perl is smart enough not to create
+    empty dirs. (Closes: #467959)
+
+ -- Marc 'HE' Brockschmidt <he at debian.org>  Sat, 05 Apr 2008 19:08:56 +0200
+
+libspiffy-perl (0.29-1) unstable; urgency=low
+
+  * New maintainer with acknowledgement from the old maintainer.
+  * New upstream release (Closes: #328431).
+  * Cleaned up debian/rules a bit.
+  * Enabled tests.
+  * Bumped up Standards-Version.
+
+ -- Florian Ragwitz <rafl at debian.org>  Tue, 24 Jan 2006 08:37:19 +0100
+
+libspiffy-perl (0.21-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Nick Phillips <nwp at debian.org>  Fri, 17 Dec 2004 20:38:09 +1300
+

Added: trunk/libspiffy-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libspiffy-perl/debian/compat?rev=21448&op=file
==============================================================================
--- trunk/libspiffy-perl/debian/compat (added)
+++ trunk/libspiffy-perl/debian/compat Sun Jun 15 15:11:28 2008
@@ -1,0 +1,1 @@
+4

Added: trunk/libspiffy-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libspiffy-perl/debian/control?rev=21448&op=file
==============================================================================
--- trunk/libspiffy-perl/debian/control (added)
+++ trunk/libspiffy-perl/debian/control Sun Jun 15 15:11:28 2008
@@ -1,0 +1,29 @@
+Source: libspiffy-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2)
+Build-Depends-Indep: perl (>= 5.8.0-7)
+Maintainer: Florian Ragwitz <rafl at debian.org>
+Standards-Version: 3.6.2
+
+Package: libspiffy-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, libfilter-perl, libscalar-list-utils-perl
+Description:  Spiffy Perl Interface Framework For You
+ "Spiffy" is a framework and methodology for doing object oriented (OO)
+ programming in Perl. Spiffy combines the best parts of Exporter.pm,
+ base.pm, mixin.pm and SUPER.pm into one magic foundation class. It
+ attempts to fix all the nits and warts of traditional Perl OO, in a
+ clean, straightforward and (perhaps someday) standard way.
+ .
+ Spiffy borrows ideas from other OO languages like Python, Ruby,
+ Java and Perl 6. It also adds a few tricks of its own.
+ .
+ If you take a look on CPAN, there are a ton of OO related modules. When
+ starting a new project, you need to pick the set of modules that makes
+ most sense, and then you need to use those modules in each of your
+ classes. Spiffy, on the other hand, has everything you'll probably need
+ in one module, and you only need to use it once in one of your classes.
+ If you make Spiffy.pm the base class of the basest class in your
+ project, Spiffy will automatically pass all of its magic to all of your
+ subclasses. You may eventually forget that you're even using it!

Added: trunk/libspiffy-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libspiffy-perl/debian/copyright?rev=21448&op=file
==============================================================================
--- trunk/libspiffy-perl/debian/copyright (added)
+++ trunk/libspiffy-perl/debian/copyright Sun Jun 15 15:11:28 2008
@@ -1,0 +1,20 @@
+This is the debian package for the Spiffy module.
+It was created by Nick Phillips <nwp at debian.org> with help from
+dh-make-perl.
+
+The upstream author is: 
+
+Brian Ingerson <INGY at cpan.org>.
+
+
+Copyright (c) 2004. Brian Ingerson. All rights reserved.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
+See http://www.perl.com/perl/misc/Artistic.html
+
+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/libspiffy-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libspiffy-perl/debian/rules?rev=21448&op=file
==============================================================================
--- trunk/libspiffy-perl/debian/rules (added)
+++ trunk/libspiffy-perl/debian/rules Sun Jun 15 15:11:28 2008
@@ -1,0 +1,56 @@
+#!/usr/bin/make -f
+
+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
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="$(CFLAGS)"
+	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
+	[ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(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 README
+	dh_installchangelogs Changes
+	dh_perl
+	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/libspiffy-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *




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