r61728 - in /trunk/libnet-opensrs-perl/debian: ./ changelog compat control copyright rules

ivan at users.alioth.debian.org ivan at users.alioth.debian.org
Thu Aug 19 13:09:16 UTC 2010


Author: ivan
Date: Thu Aug 19 13:09:06 2010
New Revision: 61728

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

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

Added: trunk/libnet-opensrs-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-opensrs-perl/debian/changelog?rev=61728&op=file
==============================================================================
--- trunk/libnet-opensrs-perl/debian/changelog (added)
+++ trunk/libnet-opensrs-perl/debian/changelog Thu Aug 19 13:09:06 2010
@@ -1,0 +1,15 @@
+libnet-opensrs-perl (0.03-1) unstable; urgency=low
+
+  * New upstream release.
+  * Modernize debian/rules (not yet dh7, though)
+  * Add Depends: on libdate-calc-perl, libwww-perl, libxml-simple-perl
+  * Upload to unstable (closes: Bug#546042)
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Thu, 10 Sep 2009 13:46:46 -0700
+
+libnet-opensrs-perl (0.02-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Sun, 21 Jan 2007 21:02:28 -0800
+

Added: trunk/libnet-opensrs-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-opensrs-perl/debian/compat?rev=61728&op=file
==============================================================================
--- trunk/libnet-opensrs-perl/debian/compat (added)
+++ trunk/libnet-opensrs-perl/debian/compat Thu Aug 19 13:09:06 2010
@@ -1,0 +1,1 @@
+4

Added: trunk/libnet-opensrs-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-opensrs-perl/debian/control?rev=61728&op=file
==============================================================================
--- trunk/libnet-opensrs-perl/debian/control (added)
+++ trunk/libnet-opensrs-perl/debian/control Thu Aug 19 13:09:06 2010
@@ -1,0 +1,13 @@
+Source: libnet-opensrs-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5.0.0)
+Build-Depends-Indep: perl (>= 5.8.8-7)
+Maintainer: Ivan Kohler <ivan-debian at 420.am>
+Standards-Version: 3.7.2
+
+Package: libnet-opensrs-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, libdate-calc-perl, libwww-perl, libxml-simple-perl
+Description: A wrapper interface to the DNS portions of the Tucows OpenSRS HTTPS XML API.
+ A wrapper interface to the DNS portions of the Tucows OpenSRS HTTPS XML API.

Added: trunk/libnet-opensrs-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-opensrs-perl/debian/copyright?rev=61728&op=file
==============================================================================
--- trunk/libnet-opensrs-perl/debian/copyright (added)
+++ trunk/libnet-opensrs-perl/debian/copyright Thu Aug 19 13:09:06 2010
@@ -1,0 +1,15 @@
+This is the debian package for the Net-OpenSRS module.
+It was created by Ivan Kohler <ivan-debian at 420.am> using dh-make-perl.
+
+COPYRIGHT AND LICENCE
+
+Copyright (C) 2006 Mahlon E. Smith
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
+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/libnet-opensrs-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-opensrs-perl/debian/rules?rev=61728&op=file
==============================================================================
--- trunk/libnet-opensrs-perl/debian/rules (added)
+++ trunk/libnet-opensrs-perl/debian/rules Thu Aug 19 13:09:06 2010
@@ -1,0 +1,67 @@
+#!/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
+
+PERL   ?= /usr/bin/perl
+PACKAGE=$(shell dh_listpackages)
+TMP     =$(CURDIR)/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+	# Add commands to compile the package here
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE)
+	$(MAKE) test
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	dh_clean build-stamp install-stamp
+	# Add commands to clean up after the build process here
+	[ ! -f Makefile ] || $(MAKE) realclean
+
+install: install-stamp
+install-stamp: build-stamp
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	# Add commands to install the package into $(TMP) here
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+	[ ! -d $(TMP)/usr/lib/perl5 ] || \
+		rmdir --ignore-fail-on-non-empty --parents --verbose \
+	        $(TMP)/usr/lib/perl5
+	touch $@
+
+binary-arch:
+# We have nothing to do here for an architecture-independent package
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+#	dh_installexamples
+	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/libnet-opensrs-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *




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