r14876 - in /trunk/libpoe-filter-ircd-perl/debian: ./ changelog compat control copyright docs rules

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Wed Feb 13 20:32:45 UTC 2008


Author: gregoa-guest
Date: Wed Feb 13 20:32:44 2008
New Revision: 14876

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

Added:
    trunk/libpoe-filter-ircd-perl/debian/
    trunk/libpoe-filter-ircd-perl/debian/changelog
    trunk/libpoe-filter-ircd-perl/debian/compat
    trunk/libpoe-filter-ircd-perl/debian/control
    trunk/libpoe-filter-ircd-perl/debian/copyright
    trunk/libpoe-filter-ircd-perl/debian/docs
    trunk/libpoe-filter-ircd-perl/debian/rules   (with props)

Added: trunk/libpoe-filter-ircd-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libpoe-filter-ircd-perl/debian/changelog?rev=14876&op=file
==============================================================================
--- trunk/libpoe-filter-ircd-perl/debian/changelog (added)
+++ trunk/libpoe-filter-ircd-perl/debian/changelog Wed Feb 13 20:32:44 2008
@@ -1,0 +1,13 @@
+libpoe-filter-ircd-perl (2.0-1) unstable; urgency=low
+
+  * New upstream release.
+    - Now subclass POE::Filter. (Closes: #387389)
+
+ -- Steve Kowalik <stevenk at debian.org>  Fri, 15 Sep 2006 21:10:36 +1000
+
+libpoe-filter-ircd-perl (1.2-1) unstable; urgency=low
+
+  * Initial Release. (Closes: #338272)
+
+ -- Steve Kowalik <stevenk at debian.org>  Mon, 14 Nov 2005 15:31:45 +1100
+

Added: trunk/libpoe-filter-ircd-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libpoe-filter-ircd-perl/debian/compat?rev=14876&op=file
==============================================================================
--- trunk/libpoe-filter-ircd-perl/debian/compat (added)
+++ trunk/libpoe-filter-ircd-perl/debian/compat Wed Feb 13 20:32:44 2008
@@ -1,0 +1,1 @@
+4

Added: trunk/libpoe-filter-ircd-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libpoe-filter-ircd-perl/debian/control?rev=14876&op=file
==============================================================================
--- trunk/libpoe-filter-ircd-perl/debian/control (added)
+++ trunk/libpoe-filter-ircd-perl/debian/control Wed Feb 13 20:32:44 2008
@@ -1,0 +1,14 @@
+Source: libpoe-filter-ircd-perl
+Section: perl
+Priority: optional
+Build-Depends-Indep: debhelper (>= 4), perl (>= 5.6.0-17), libpoe-perl
+Maintainer: Steve Kowalik <stevenk at debian.org>
+Standards-Version: 3.6.1
+
+Package: libpoe-filter-ircd-perl
+Architecture: all
+Depends: ${perl:Depends}, libpoe-perl
+Description: a POE-based parser for the IRC protocol
+ POE::Filter::IRCD provides a convient way of parsing and creating IRC
+ protocol lines using the Perl Object Environment (POE) framework.
+

Added: trunk/libpoe-filter-ircd-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libpoe-filter-ircd-perl/debian/copyright?rev=14876&op=file
==============================================================================
--- trunk/libpoe-filter-ircd-perl/debian/copyright (added)
+++ trunk/libpoe-filter-ircd-perl/debian/copyright Wed Feb 13 20:32:44 2008
@@ -1,0 +1,13 @@
+
+The upstream author is: Dennis Taylor <dennis at funkplanet.com>
+
+Copyright:
+
+The copyright for POE::Component::IRC belongs to Dennis Taylor,
+the poor bastard who wrote this thing up in the first place. It's
+distributed under the same terms as Perl itself (that is, either the
+Artistic License or GPL as you prefer).
+
+The GPL and Artistic licenses can be found under 
+/usr/share/common-licenses/{GPL,Artistic} on Debian systems.
+

Added: trunk/libpoe-filter-ircd-perl/debian/docs
URL: http://svn.debian.org/wsvn/trunk/libpoe-filter-ircd-perl/debian/docs?rev=14876&op=file
==============================================================================
--- trunk/libpoe-filter-ircd-perl/debian/docs (added)
+++ trunk/libpoe-filter-ircd-perl/debian/docs Wed Feb 13 20:32:44 2008
@@ -1,0 +1,1 @@
+README

Added: trunk/libpoe-filter-ircd-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libpoe-filter-ircd-perl/debian/rules?rev=14876&op=file
==============================================================================
--- trunk/libpoe-filter-ircd-perl/debian/rules (added)
+++ trunk/libpoe-filter-ircd-perl/debian/rules Wed Feb 13 20:32:44 2008
@@ -1,0 +1,69 @@
+#!/usr/bin/make -f
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	# Add here commands to compile the package.
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="-O2 -Wall"
+
+	touch $@
+
+test: test-stamp
+test-stamp:
+	$(MAKE) test
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp test-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
+
+	$(MAKE) install PREFIX=$(CURDIR)/debian/libpoe-filter-ircd-perl/usr
+
+
+# Build architecture-dependent files here.
+binary-arch: build install test
+# We have nothing to do by default.
+
+# Build architecture-independent files here.
+binary-indep: build install test
+#	dh_testversion
+	dh_testdir
+	dh_testroot
+	dh_installdocs
+	dh_installcron
+	dh_installman
+	dh_installchangelogs -k Changes
+	dh_link
+	dh_strip
+	dh_compress -Xexamples
+	dh_fixperms
+	dh_installdeb
+	dh_perl 
+	dh_shlibdeps
+	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/libpoe-filter-ircd-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *




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