r29161 - in /trunk/libnet-stomp-perl/debian: ./ changelog compat control copyright install rules watch

maddingue-guest at users.alioth.debian.org maddingue-guest at users.alioth.debian.org
Sun Jan 4 03:35:47 UTC 2009


Author: maddingue-guest
Date: Sun Jan  4 03:35:29 2009
New Revision: 29161

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

Added:
    trunk/libnet-stomp-perl/debian/
    trunk/libnet-stomp-perl/debian/changelog
    trunk/libnet-stomp-perl/debian/compat
    trunk/libnet-stomp-perl/debian/control
    trunk/libnet-stomp-perl/debian/copyright
    trunk/libnet-stomp-perl/debian/install
    trunk/libnet-stomp-perl/debian/rules
    trunk/libnet-stomp-perl/debian/watch

Added: trunk/libnet-stomp-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-stomp-perl/debian/changelog?rev=29161&op=file
==============================================================================
--- trunk/libnet-stomp-perl/debian/changelog (added)
+++ trunk/libnet-stomp-perl/debian/changelog Sun Jan  4 03:35:29 2009
@@ -1,0 +1,6 @@
+libnet-stomp-perl (0.34-1) unstable; urgency=low
+
+  * Initial release
+
+ -- Sebastien Aperghis-Tramoni <sebastien at aperghis.net>  Fri,  5 Dec 2008 14:30:00 +0100
+

Added: trunk/libnet-stomp-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-stomp-perl/debian/compat?rev=29161&op=file
==============================================================================
--- trunk/libnet-stomp-perl/debian/compat (added)
+++ trunk/libnet-stomp-perl/debian/compat Sun Jan  4 03:35:29 2009
@@ -1,0 +1,1 @@
+5

Added: trunk/libnet-stomp-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-stomp-perl/debian/control?rev=29161&op=file
==============================================================================
--- trunk/libnet-stomp-perl/debian/control (added)
+++ trunk/libnet-stomp-perl/debian/control Sun Jan  4 03:35:29 2009
@@ -1,0 +1,28 @@
+Source: libnet-stomp-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5.0.0)
+Build-Depends-Indep: perl (>= 5.8), libclass-accessor-perl, libtest-simple-perl, libpoe-perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Sebastien Aperghis-Tramoni <sebastien at aperghis.net>
+Standards-Version: 3.7.2
+Homepage: http://search.cpan.org/dist/Net-Stomp/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libnet-stomp-perl/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libnet-stomp-perl/
+
+Package: libnet-stomp-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, libclass-accessor-perl
+Description: A Streaming Text Orientated Messaging Protocol Client
+ This module allows you to write a Stomp client. Stomp is the Streaming
+ Text Orientated Messaging Protocol (or the Protocol Briefly Known as
+ TTMP and Represented by the symbol :ttmp). It's a simple and easy to
+ implement protocol for working with Message Orientated Middleware from
+ any language. Net::Stomp is useful for talking to Apache ActiveMQ,
+ an open source (Apache 2.0 licensed) Java Message Service 1.1 (JMS)
+ message broker packed with many enterprise features.
+ .
+ A Stomp frame consists of a command, a series of headers and a body
+ - see the documentation of Net::Stomp::Frame for more details.
+ .
+ For details on the protocol see http://stomp.codehaus.org/Protocol

Added: trunk/libnet-stomp-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-stomp-perl/debian/copyright?rev=29161&op=file
==============================================================================
--- trunk/libnet-stomp-perl/debian/copyright (added)
+++ trunk/libnet-stomp-perl/debian/copyright Sun Jan  4 03:35:29 2009
@@ -1,0 +1,6 @@
+Copyright (C) 2006, Leon Brocard
+
+Net::Stomp is free software; you can redistribute it or modify it under
+the same terms as Perl itself.
+
+Debian package prepared by Sebastien Aperghis-Tramoni <sebastien at aperghis.net>.

Added: trunk/libnet-stomp-perl/debian/install
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-stomp-perl/debian/install?rev=29161&op=file
==============================================================================
--- trunk/libnet-stomp-perl/debian/install (added)
+++ trunk/libnet-stomp-perl/debian/install Sun Jan  4 03:35:29 2009
@@ -1,0 +1,2 @@
+usr/share/perl5
+usr/share/man/man3

Added: trunk/libnet-stomp-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-stomp-perl/debian/rules?rev=29161&op=file
==============================================================================
--- trunk/libnet-stomp-perl/debian/rules (added)
+++ trunk/libnet-stomp-perl/debian/rules Sun Jan  4 03:35:29 2009
@@ -1,0 +1,60 @@
+#!/usr/bin/make -f
+
+# 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
+
+ifndef PERL
+PERL := /usr/bin/perl
+endif
+
+BUILDDIR := debian/tmp
+DESTDIR  := ${CURDIR}/${BUILDDIR}
+
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE)
+	$(MAKE) test
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	[ ! -f Makefile ] || $(MAKE) realclean
+	dh_clean build-stamp install-stamp
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	$(MAKE) install DESTDIR=${DESTDIR} PREFIX=/usr
+	touch install-stamp
+
+binary-arch:
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs README
+	dh_installchangelogs CHANGES
+	#dh_installexamples
+	dh_install --sourcedir=${BUILDDIR}
+	dh_perl
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary
+

Added: trunk/libnet-stomp-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-stomp-perl/debian/watch?rev=29161&op=file
==============================================================================
--- trunk/libnet-stomp-perl/debian/watch (added)
+++ trunk/libnet-stomp-perl/debian/watch Sun Jan  4 03:35:29 2009
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/Net-Stomp/   .*/Net-Stomp-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)




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