r112 - in packages/libnet-domain-tld-perl/trunk: . debian

Allard Hoeve hoeve-guest@haydn.debian.org
Thu, 10 Jun 2004 08:03:26 -0600


Author: hoeve-guest
Date: 2004-06-10 08:03:19 -0600 (Thu, 10 Jun 2004)
New Revision: 112

Added:
   packages/libnet-domain-tld-perl/trunk/debian/
   packages/libnet-domain-tld-perl/trunk/debian/changelog
   packages/libnet-domain-tld-perl/trunk/debian/compat
   packages/libnet-domain-tld-perl/trunk/debian/control
   packages/libnet-domain-tld-perl/trunk/debian/copyright
   packages/libnet-domain-tld-perl/trunk/debian/rules
Modified:
   packages/libnet-domain-tld-perl/trunk/Makefile.PL
   packages/libnet-domain-tld-perl/trunk/TLD.pm
   packages/libnet-domain-tld-perl/trunk/test.pl
Log:
Load libnet-domain-tld-perl-1.5 into
packages/libnet-domain-tld-perl/trunk.



Property changes on: packages/libnet-domain-tld-perl/trunk/Makefile.PL
___________________________________________________________________
Name: svn:executable
   - 
   + *

Modified: packages/libnet-domain-tld-perl/trunk/TLD.pm
===================================================================
--- packages/libnet-domain-tld-perl/trunk/TLD.pm	2004-06-10 14:02:09 UTC (rev 111)
+++ packages/libnet-domain-tld-perl/trunk/TLD.pm	2004-06-10 14:03:19 UTC (rev 112)
@@ -17,13 +17,6 @@
 with current list of available top level domain names
 including new ICANN additions and ccTLDs
 
-=head1 INSTALL
-
- perl Makefile.PL
- make
- make test
- make install
-
 =head1 COPYRIGHT
 
 Copyright (c) 2003 Alexander Pavlovic. All rights reserved. This program is

Added: packages/libnet-domain-tld-perl/trunk/debian/changelog
===================================================================
--- packages/libnet-domain-tld-perl/trunk/debian/changelog	2004-06-10 14:02:09 UTC (rev 111)
+++ packages/libnet-domain-tld-perl/trunk/debian/changelog	2004-06-10 14:03:19 UTC (rev 112)
@@ -0,0 +1,6 @@
+libnet-domain-tld-perl (1.5-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Marc Brockschmidt <marc@dch-faq.de>  Sat, 10 Jan 2004 19:25:02 +0100
+

Added: packages/libnet-domain-tld-perl/trunk/debian/compat
===================================================================
--- packages/libnet-domain-tld-perl/trunk/debian/compat	2004-06-10 14:02:09 UTC (rev 111)
+++ packages/libnet-domain-tld-perl/trunk/debian/compat	2004-06-10 14:03:19 UTC (rev 112)
@@ -0,0 +1 @@
+4

Added: packages/libnet-domain-tld-perl/trunk/debian/control
===================================================================
--- packages/libnet-domain-tld-perl/trunk/debian/control	2004-06-10 14:02:09 UTC (rev 111)
+++ packages/libnet-domain-tld-perl/trunk/debian/control	2004-06-10 14:03:19 UTC (rev 112)
@@ -0,0 +1,16 @@
+Source: libnet-domain-tld-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2)
+Build-Depends-Indep: perl (>= 5.8.0-7)
+Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
+Uploaders: Marc Brockschmidt <marc@dch-faq.de>, Joachim Breitner <nomeata@debian.org>
+Standards-Version: 3.6.1
+
+Package: libnet-domain-tld-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends} 
+Description:  Gives ability to retrieve currently available tld 
+ The purpose of this module is to provide user
+ with current list of available top level domain names
+ including new ICANN additions and ccTLDs

Added: packages/libnet-domain-tld-perl/trunk/debian/copyright
===================================================================
--- packages/libnet-domain-tld-perl/trunk/debian/copyright	2004-06-10 14:02:09 UTC (rev 111)
+++ packages/libnet-domain-tld-perl/trunk/debian/copyright	2004-06-10 14:03:19 UTC (rev 112)
@@ -0,0 +1,14 @@
+This is the debian package for the Net::Domain::TLD module.
+It was created by Marc Brockschmidt <marc@dch-faq.de>.
+
+The upstream author is Alexander Pavlovic <alex-1@telus.net>.
+
+Copyright (c) 2003 Alexander Pavlovic
+
+This library is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself (GPL or Artistic license).
+
+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: packages/libnet-domain-tld-perl/trunk/debian/rules
===================================================================
--- packages/libnet-domain-tld-perl/trunk/debian/rules	2004-06-10 14:02:09 UTC (rev 111)
+++ packages/libnet-domain-tld-perl/trunk/debian/rules	2004-06-10 14:03:19 UTC (rev 112)
@@ -0,0 +1,63 @@
+#!/usr/bin/make -f
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+TMP     =$(CURDIR)/debian/$(PACKAGE)
+
+CFLAGS = -Wall -g
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+        CFLAGS += -O0
+else
+        CFLAGS += -O2
+endif
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="$(CFLAGS)" 
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	-$(MAKE) distclean
+	dh_clean build-stamp install-stamp
+
+install: install-stamp
+install-stamp: build-stamp
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr;
+	touch install-stamp
+
+binary-arch: build install
+# We have nothing to do by default.
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs README
+	dh_perl
+	dh_installchangelogs
+	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


Property changes on: packages/libnet-domain-tld-perl/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *


Property changes on: packages/libnet-domain-tld-perl/trunk/test.pl
___________________________________________________________________
Name: svn:executable
   - 
   + *