r4599 - in /packages/libdanga-socket-perl/trunk/debian: ./ changelog compat control copyright rules watch

eloy at users.alioth.debian.org eloy at users.alioth.debian.org
Thu Dec 7 19:00:32 CET 2006


Author: eloy
Date: Thu Dec  7 19:00:32 2006
New Revision: 4599

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=4599
Log:
Load libdanga-socket-perl-1.55 into
packages/libdanga-socket-perl/trunk.

Added:
    packages/libdanga-socket-perl/trunk/debian/
    packages/libdanga-socket-perl/trunk/debian/changelog
    packages/libdanga-socket-perl/trunk/debian/compat
    packages/libdanga-socket-perl/trunk/debian/control
    packages/libdanga-socket-perl/trunk/debian/copyright
    packages/libdanga-socket-perl/trunk/debian/rules   (with props)
    packages/libdanga-socket-perl/trunk/debian/watch

Added: packages/libdanga-socket-perl/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libdanga-socket-perl/trunk/debian/changelog?rev=4599&op=file
==============================================================================
--- packages/libdanga-socket-perl/trunk/debian/changelog (added)
+++ packages/libdanga-socket-perl/trunk/debian/changelog Thu Dec  7 19:00:32 2006
@@ -1,0 +1,6 @@
+libdanga-socket-perl (1.55-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Krzysztof Krzyzaniak (eloy) <eloy at debian.org>  Wed, 29 Nov 2006 09:48:47 +0100
+

Added: packages/libdanga-socket-perl/trunk/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libdanga-socket-perl/trunk/debian/compat?rev=4599&op=file
==============================================================================
--- packages/libdanga-socket-perl/trunk/debian/compat (added)
+++ packages/libdanga-socket-perl/trunk/debian/compat Thu Dec  7 19:00:32 2006
@@ -1,0 +1,1 @@
+5

Added: packages/libdanga-socket-perl/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libdanga-socket-perl/trunk/debian/control?rev=4599&op=file
==============================================================================
--- packages/libdanga-socket-perl/trunk/debian/control (added)
+++ packages/libdanga-socket-perl/trunk/debian/control Thu Dec  7 19:00:32 2006
@@ -1,0 +1,24 @@
+Source: libdanga-socket-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5.0.0)
+Build-Depends-Indep: perl (>= ), libsys-syscall-perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Krzysztof Krzyzaniak (eloy) <eloy at debian.org>
+Standards-Version: 3.7.2.1
+
+Package: libdanga-socket-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, libsys-syscall-perl
+Description:  Event loop and event-driven async socket base class
+ Danga::Socket an abstract base class for objects backed by a socket which
+ provides the basic framework for event-driven asynchronous IO,
+ designed to be fast.  Danga::Socket is both a base class for objects,
+ and an event loop.
+ .
+ Callers subclass Danga::Socket.  Danga::Socket's constructor registers
+ itself with the Danga::Socket event loop, and invokes callbacks on the
+ object for readability, writability, errors, and other conditions.
+ .
+ Because Danga::Socket uses the "fields" module, your subclasses must
+ too.

Added: packages/libdanga-socket-perl/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libdanga-socket-perl/trunk/debian/copyright?rev=4599&op=file
==============================================================================
--- packages/libdanga-socket-perl/trunk/debian/copyright (added)
+++ packages/libdanga-socket-perl/trunk/debian/copyright Thu Dec  7 19:00:32 2006
@@ -1,0 +1,26 @@
+This is the debian package for the Danga-Socket module.
+It was created by Krzysztof Krzyzaniak (eloy) <eloy at debian.org> using dh-make-perl.
+
+It was downloaded from: http://www.cpan.org/modules/by-module/Danga/
+
+The upstream authors are: 
+
+- Brad Fitzpatrick <brad at danga.com> - author
+- Michael Granger <ged at danga.com> - docs, testing
+- Mark Smith <junior at danga.com> - contributor, heavy user, testing
+- Matt Sergeant <matt at sergeant.org> - kqueue support, docs, timers, other bits.
+
+This program is free software, you can redistribute it and/or modify it under
+the same terms as Perl itself.
+
+Perl is distributed under licenses:
+
+    a) the GNU General Public License as published by the Free Software
+       Foundation; either version 1, or (at your option) any later
+       version, or
+  
+    b) the "Artistic License" which comes with Perl.
+  
+    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: packages/libdanga-socket-perl/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libdanga-socket-perl/trunk/debian/rules?rev=4599&op=file
==============================================================================
--- packages/libdanga-socket-perl/trunk/debian/rules (added)
+++ packages/libdanga-socket-perl/trunk/debian/rules Thu Dec  7 19:00:32 2006
@@ -1,0 +1,83 @@
+#!/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.
+
+# 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) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="-Wall -O2 -g"
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	# Add commands to clean up after the build process here
+	[ ! -f Makefile ] || $(MAKE) realclean
+
+	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
+	$(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 
+	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

Propchange: packages/libdanga-socket-perl/trunk/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: packages/libdanga-socket-perl/trunk/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libdanga-socket-perl/trunk/debian/watch?rev=4599&op=file
==============================================================================
--- packages/libdanga-socket-perl/trunk/debian/watch (added)
+++ packages/libdanga-socket-perl/trunk/debian/watch Thu Dec  7 19:00:32 2006
@@ -1,0 +1,3 @@
+# format version number, currently 2; this line is compulsory!
+version=2
+http://www.cpan.org/modules/by-module/Danga/Danga-Socket-([\d\.]+)\.tar\.gz




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