r45251 - in /trunk/libnet-smpp-perl/debian: ./ changelog control copyright examples rules

ghostbar at users.alioth.debian.org ghostbar at users.alioth.debian.org
Fri Oct 2 18:16:25 UTC 2009


Author: ghostbar
Date: Fri Oct  2 18:16:17 2009
New Revision: 45251

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

Added:
    trunk/libnet-smpp-perl/debian/
    trunk/libnet-smpp-perl/debian/changelog
    trunk/libnet-smpp-perl/debian/control
    trunk/libnet-smpp-perl/debian/copyright
    trunk/libnet-smpp-perl/debian/examples
    trunk/libnet-smpp-perl/debian/rules   (with props)

Added: trunk/libnet-smpp-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-smpp-perl/debian/changelog?rev=45251&op=file
==============================================================================
--- trunk/libnet-smpp-perl/debian/changelog (added)
+++ trunk/libnet-smpp-perl/debian/changelog Fri Oct  2 18:16:17 2009
@@ -1,0 +1,5 @@
+libnet-smpp-perl (1.03-1) unstable; urgency=low
+
+  * Initial debianization. Closes: #277721
+
+ -- Andres Seco Hernandez <AndresSH at debian.org>  Fri, 22 Oct 2004 01:37:11 +0200

Added: trunk/libnet-smpp-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-smpp-perl/debian/control?rev=45251&op=file
==============================================================================
--- trunk/libnet-smpp-perl/debian/control (added)
+++ trunk/libnet-smpp-perl/debian/control Fri Oct  2 18:16:17 2009
@@ -1,0 +1,19 @@
+Source: libnet-smpp-perl
+Maintainer: Andres Seco Hernandez <AndresSH at debian.org>
+Priority: optional
+Section: perl
+Build-Depends-Indep: debhelper (>= 4), perl (>= 5.6.0-16)
+Standards-Version: 3.6.1
+
+Package: libnet-smpp-perl
+Architecture: all
+Priority: optional
+Section: perl
+Depends: ${perl:Depends}
+Description: Net::SMPP is an implementation of Short Message Peer to Peer protocol over TCP
+ SMPP is frequently used in the telecoms and mobile operator world to
+ pass short messages between systems that implement the short message
+ service (SMS). It is applicable to both european GSM and american CDMA
+ based systems. The SMPP protocol is documented at www.smpp.org. This
+ module aims at fully implementing version 3.4 of the protocol. This
+ module also implements 4.0 and aims to support it fully as well.

Added: trunk/libnet-smpp-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-smpp-perl/debian/copyright?rev=45251&op=file
==============================================================================
--- trunk/libnet-smpp-perl/debian/copyright (added)
+++ trunk/libnet-smpp-perl/debian/copyright Fri Oct  2 18:16:17 2009
@@ -1,0 +1,21 @@
+This is Debian GNU/Linux's prepackaged Net::SMPP.  This package was
+put together by Andres Seco Hernandez <AndresSH at debian.org>.  The
+original sources should always be available from the Comprehensive
+Perl Archive Network (CPAN). Visit <URL:http://www.perl.com/CPAN/> to
+find a CPAN site near you.
+
+The only change for the Debian package was the addition of the debian/
+files.
+
+                      Net::SMPP, version 1.03
+
+Net::SMPP is copyright (c) 2001 by Sampo Kellomaki (sampo at symlabs.com),
+All rights reserved. Portions copyright (c) 2001 by SymLABS
+(symlabs at symlabs.com), All rights reserved.  You may use anddistribute
+Net::SMPP under same terms as perl itself (GPL or Artistic license).
+NET::SMPP COMES WITH ABSOLUTELY NO WARRANTY.
+
+On Debian systems the complete text of the GPL and Artistic
+licenses can be found at:
+        /usr/share/common-licenses/GPL and
+        /usr/share/common-licenses/Artistic

Added: trunk/libnet-smpp-perl/debian/examples
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-smpp-perl/debian/examples?rev=45251&op=file
==============================================================================
--- trunk/libnet-smpp-perl/debian/examples (added)
+++ trunk/libnet-smpp-perl/debian/examples Fri Oct  2 18:16:17 2009
@@ -1,0 +1,1 @@
+*.pl

Added: trunk/libnet-smpp-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-smpp-perl/debian/rules?rev=45251&op=file
==============================================================================
--- trunk/libnet-smpp-perl/debian/rules (added)
+++ trunk/libnet-smpp-perl/debian/rules Fri Oct  2 18:16:17 2009
@@ -1,0 +1,58 @@
+#!/usr/bin/make -f
+# -*- Makefile -*-
+
+# Use debhelper V. 4
+export DH_COMPAT := 4
+
+# Make sure perl is defined (allow overriding from the command line
+PERL ?= /usr/bin/perl
+
+# Set our build directory
+b := $(shell pwd)/debian/libnet-smpp-perl
+
+binary: binary-stamp
+binary-stamp: binary-indep-stamp binary-arch-stamp
+
+binary-arch: binary-arch-stamp
+binary-arch-stamp: build install
+
+binary-indep: binary-indep-stamp
+binary-indep-stamp: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs README
+	dh_installchangelogs Changes
+	dh_installexamples
+	rm $(b)/usr/share/perl5/Net/*.pl
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_perl
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+build: build-stamp
+build-stamp: config-stamp
+	dh_testdir
+	$(MAKE)
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	if [ -e Makefile ]; then $(MAKE) -i distclean; fi
+	dh_clean binary-stamp binary-arch-stamp binary-indep-stamp build-stamp config-stamp install-stamp
+
+config: config-stamp
+config-stamp:
+	dh_testdir
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	touch config-stamp
+
+install: install-stamp
+install-stamp: build-stamp
+	dh_testdir
+	$(MAKE) pure_install PREFIX=$(b)/usr
+
+.PHONY: binary binary-arch binary-indep clean config install

Propchange: trunk/libnet-smpp-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *




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