r1124 - in packages/libfortune-perl/trunk: . debian

Gustavo Franco stratus@costa.debian.org
Mon, 13 Jun 2005 00:57:38 +0000


Author: stratus
Date: 2005-06-13 00:57:38 +0000 (Mon, 13 Jun 2005)
New Revision: 1124

Added:
   packages/libfortune-perl/trunk/debian/
   packages/libfortune-perl/trunk/debian/changelog
   packages/libfortune-perl/trunk/debian/compat
   packages/libfortune-perl/trunk/debian/control
   packages/libfortune-perl/trunk/debian/copyright
   packages/libfortune-perl/trunk/debian/rules
   packages/libfortune-perl/trunk/debian/watch
Modified:
   packages/libfortune-perl/trunk/dump_header
Log:
Load libfortune-perl-0.2 into packages/libfortune-perl/trunk.


Added: packages/libfortune-perl/trunk/debian/changelog
===================================================================
--- packages/libfortune-perl/trunk/debian/changelog	2005-06-13 00:57:02 UTC (rev 1123)
+++ packages/libfortune-perl/trunk/debian/changelog	2005-06-13 00:57:38 UTC (rev 1124)
@@ -0,0 +1,34 @@
+libfortune-perl (0.2-4) unstable; urgency=low
+
+  * debian/rules:
+    - binary-indep fixed.
+    - removed DH_COMPAT variable.
+  * debian/control:
+    - Short description fixed (full stop removed).
+    - Standards-Version field updated to 3.5.10.
+    - Section field updated to perl.
+    - Build-Depends-Indep field updated (debhelper >> 4.0.0).
+  * debian/compat: added and setted to 4.
+  
+ -- Gustavo Franco <stratus@acm.org>  Tue, 22 Apr 2003 08:27:49 -0300 
+
+libfortune-perl (0.2-3) unstable; urgency=low
+
+  * debian/rules: 
+  - 'Makefile' added to .PHONY. (Closes: #164998)
+
+ -- Gustavo Franco <stratus@acm.org>  Thu, 17 Oct 2002 12:42:42 -0300
+
+libfortune-perl (0.2-2) unstable; urgency=low
+
+  * The ¨Perl 5.8.0¨ release.
+  * Architecture field corrected (any to all).
+  * debian/rules cleanup(thanks to: Gergely Nagy).
+
+ -- Gustavo Franco <stratus@alternex.com.br>  Tue, 27 Aug 2002 10:16:07 -0300
+
+libfortune-perl (0.2-1) unstable; urgency=low
+
+  * Initial Release. (Closes: #98962)
+
+ -- Gustavo Franco <stratus@alternex.com.br>  Sat, 23 Mar 2002 17:26:11 -0300

Added: packages/libfortune-perl/trunk/debian/compat
===================================================================
--- packages/libfortune-perl/trunk/debian/compat	2005-06-13 00:57:02 UTC (rev 1123)
+++ packages/libfortune-perl/trunk/debian/compat	2005-06-13 00:57:38 UTC (rev 1124)
@@ -0,0 +1 @@
+4

Added: packages/libfortune-perl/trunk/debian/control
===================================================================
--- packages/libfortune-perl/trunk/debian/control	2005-06-13 00:57:02 UTC (rev 1123)
+++ packages/libfortune-perl/trunk/debian/control	2005-06-13 00:57:38 UTC (rev 1124)
@@ -0,0 +1,27 @@
+Source: libfortune-perl
+Priority: optional
+Section: perl
+Maintainer: Gustavo Franco <stratus@acm.org>
+Build-Depends-Indep: debhelper (>> 4.0.0), perl (>= 5.8)
+Standards-Version: 3.5.10
+
+Package: libfortune-perl
+Priority: optional
+Section: libs
+Architecture: all
+Depends: ${perl:Depends}
+Recommends: fortunes 
+Description: Perl module to read fortune (strfile) databases
+ The fortune program is a small but important part of the
+ Unix culture, and this module aims to provide support for
+ its "fortune cookie" databases to Perl programmers.  
+ .
+ For efficiency, all versions of fortune rely on a binary
+ header consisting mainly of offsets into the fortune file
+ proper. 
+ .
+ Modern versions of fortune keep this header in a
+ separate file, and this is the style adopted by the
+ Fortune module; the older style of munging the header and
+ data into one large "compiled" file is not (currently) 
+ supported.

Added: packages/libfortune-perl/trunk/debian/copyright
===================================================================
--- packages/libfortune-perl/trunk/debian/copyright	2005-06-13 00:57:02 UTC (rev 1123)
+++ packages/libfortune-perl/trunk/debian/copyright	2005-06-13 00:57:38 UTC (rev 1124)
@@ -0,0 +1,17 @@
+This package was debianized by Gustavo Franco <stratus@alternex.com.br>
+on Wed, 27 May 2001 20:06:26 -0300
+
+It was downloaded from the Comprehensive Perl Archive Network (CPAN).
+Visit <http://www.perl.com/CPAN/> to find a CPAN site near you.
+
+Upstream Author: Gregory P. Ward <gward@python.net>
+
+Copyright:
+
+Copyright (c) 1999-2000 Gregory P. Ward. All rights reserved.  
+This is free software; you can redistribute it and/or modify 
+it under the same terms as Perl itself.
+
+Debian GNU/Linux users can find the Perl license terms under
+/usr/share/doc/perl/copyright.
+

Added: packages/libfortune-perl/trunk/debian/rules
===================================================================
--- packages/libfortune-perl/trunk/debian/rules	2005-06-13 00:57:02 UTC (rev 1123)
+++ packages/libfortune-perl/trunk/debian/rules	2005-06-13 00:57:38 UTC (rev 1124)
@@ -0,0 +1,52 @@
+#! /usr/bin/make -f
+# -*-makefile-*-
+# debian/rules file for libfortune-perl
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+package	:= $(shell sed -ne 's/^Package: *//p' debian/control)
+prefix	:= $(PWD)/debian/$(package)/usr
+
+# thanks to: Gergely Nagy.
+Makefile: Makefile.PL
+	${PERL} Makefile.PL INSTALLDIRS=vendor PERL=${PERL}
+build: Makefile
+	dh_testdir
+	${MAKE} LD_RUN_PATH=
+
+clean:	checkroot
+	rm -f build-stamp
+	-$(MAKE) distclean
+	dh_clean
+
+binary-indep:	checkroot build
+	dh_clean
+	dh_installdirs
+
+	$(MAKE) install PREFIX=$(prefix)
+
+	dh_installdocs README
+	dh_installexamples 
+	dh_installchangelogs 
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_perl
+	dh_shlibdeps
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary-arch:	checkroot build
+# We have nothing to do by default.
+
+binary:	binary-indep binary-arch
+
+checkroot:
+	dh_testdir
+	dh_testroot
+
+.PHONY:	binary binary-arch binary-indep clean checkroot build Makefile


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

Added: packages/libfortune-perl/trunk/debian/watch
===================================================================
--- packages/libfortune-perl/trunk/debian/watch	2005-06-13 00:57:02 UTC (rev 1123)
+++ packages/libfortune-perl/trunk/debian/watch	2005-06-13 00:57:38 UTC (rev 1124)
@@ -0,0 +1,2 @@
+version=2
+http://www.cpan.org/modules/by-authors/id/GWARD/Fortune-(.*)\.tar\.gz


Property changes on: packages/libfortune-perl/trunk/dump_header
___________________________________________________________________
Name: svn:executable
   - 
   + *