r4536 - in /packages/libcache-simple-timedexpiry-perl/trunk/debian: ./ changelog compat control copyright rules watch

ntyni-guest at users.alioth.debian.org ntyni-guest at users.alioth.debian.org
Mon Dec 4 22:00:27 CET 2006


Author: ntyni-guest
Date: Mon Dec  4 22:00:27 2006
New Revision: 4536

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=4536
Log:
Load libcache-simple-timedexpiry-perl-0.26 into
packages/libcache-simple-timedexpiry-perl/trunk.

Added:
    packages/libcache-simple-timedexpiry-perl/trunk/debian/
    packages/libcache-simple-timedexpiry-perl/trunk/debian/changelog
    packages/libcache-simple-timedexpiry-perl/trunk/debian/compat
    packages/libcache-simple-timedexpiry-perl/trunk/debian/control
    packages/libcache-simple-timedexpiry-perl/trunk/debian/copyright
    packages/libcache-simple-timedexpiry-perl/trunk/debian/rules   (with props)
    packages/libcache-simple-timedexpiry-perl/trunk/debian/watch

Added: packages/libcache-simple-timedexpiry-perl/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libcache-simple-timedexpiry-perl/trunk/debian/changelog?rev=4536&op=file
==============================================================================
--- packages/libcache-simple-timedexpiry-perl/trunk/debian/changelog (added)
+++ packages/libcache-simple-timedexpiry-perl/trunk/debian/changelog Mon Dec  4 22:00:27 2006
@@ -1,0 +1,19 @@
+libcache-simple-timedexpiry-perl (0.26-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Stephen Quinney <sjq at debian.org>  Fri, 25 Aug 2006 09:47:19 +0100
+
+libcache-simple-timedexpiry-perl (0.25-1) unstable; urgency=low
+
+  * New upstream release, closes: #329507
+  * New maintainer
+
+ -- Stephen Quinney <sjq at debian.org>  Thu, 24 Aug 2006 16:30:43 +0100
+
+libcache-simple-timedexpiry-perl (0.21-1) unstable; urgency=low
+
+  * Initial Release (closes: Bug#272464)
+
+ -- Andrew Stribblehill <ads at debian.org>  Tue,  7 Sep 2004 12:14:05 +0100
+

Added: packages/libcache-simple-timedexpiry-perl/trunk/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libcache-simple-timedexpiry-perl/trunk/debian/compat?rev=4536&op=file
==============================================================================
--- packages/libcache-simple-timedexpiry-perl/trunk/debian/compat (added)
+++ packages/libcache-simple-timedexpiry-perl/trunk/debian/compat Mon Dec  4 22:00:27 2006
@@ -1,0 +1,1 @@
+4

Added: packages/libcache-simple-timedexpiry-perl/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libcache-simple-timedexpiry-perl/trunk/debian/control?rev=4536&op=file
==============================================================================
--- packages/libcache-simple-timedexpiry-perl/trunk/debian/control (added)
+++ packages/libcache-simple-timedexpiry-perl/trunk/debian/control Mon Dec  4 22:00:27 2006
@@ -1,0 +1,19 @@
+Source: libcache-simple-timedexpiry-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4)
+Build-Depends-Indep: perl
+Maintainer: Stephen Quinney <sjq at debian.org>
+Standards-Version: 3.7.2
+
+Package: libcache-simple-timedexpiry-perl
+Architecture: all
+Depends: ${perl:Depends}
+Description: Perl module to cache and expire key/value pairs
+ Example:
+ .
+ my $h = new Cache::Simple::TimedExpiry;
+ .
+ $h->set(Forever => "Don't expire", 0);
+ do {$h->set($_,"Value of $_", 1); sleep 2;} for qw(Have a nice day); $,=' ';
+ print $h->elements; $h->dump; sleep 4; print $h->elements; $h->dump;

Added: packages/libcache-simple-timedexpiry-perl/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libcache-simple-timedexpiry-perl/trunk/debian/copyright?rev=4536&op=file
==============================================================================
--- packages/libcache-simple-timedexpiry-perl/trunk/debian/copyright (added)
+++ packages/libcache-simple-timedexpiry-perl/trunk/debian/copyright Mon Dec  4 22:00:27 2006
@@ -1,0 +1,16 @@
+This is the debian package for the Cache::Simple::TimedExpiry module.
+It was created by Andrew Stribblehill <ads at debian.org> by tweaking the debian
+directory from the libdbix-searchbuilder-perl package.
+
+Copyright (c) 2004 Robert Spier <rspier at pobox.com> and Jesse Vincent
+<jesse at bestpractical.com>
+
+All rights reserved.
+
+This library 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: packages/libcache-simple-timedexpiry-perl/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libcache-simple-timedexpiry-perl/trunk/debian/rules?rev=4536&op=file
==============================================================================
--- packages/libcache-simple-timedexpiry-perl/trunk/debian/rules (added)
+++ packages/libcache-simple-timedexpiry-perl/trunk/debian/rules Mon Dec  4 22:00:27 2006
@@ -1,0 +1,73 @@
+#!/usr/bin/make -f
+#-*- makefile -*-
+# Made with the aid of dh_make, by Craig Small
+# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.
+# Some lines taken from debmake, by Christoph Lameter.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+ifndef DESTDIR
+DESTDIR=..
+endif
+TMP     =`pwd`/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="-O2 -g -Wall"
+	$(MAKE) test
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	[ ! -e Makefile ] || $(MAKE) distclean
+
+	dh_clean build-stamp
+
+install: 
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	$(MAKE) install PREFIX=$(TMP)/usr
+	# Remove the empty directory
+	-rmdir -p $(TMP)/usr/lib/perl5
+
+
+# Build architecture-independent files here.
+binary-arch: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs 
+	dh_installman
+	dh_installchangelogs
+	dh_link
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_perl 
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb --destdir=$(DESTDIR)
+
+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: packages/libcache-simple-timedexpiry-perl/trunk/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: packages/libcache-simple-timedexpiry-perl/trunk/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libcache-simple-timedexpiry-perl/trunk/debian/watch?rev=4536&op=file
==============================================================================
--- packages/libcache-simple-timedexpiry-perl/trunk/debian/watch (added)
+++ packages/libcache-simple-timedexpiry-perl/trunk/debian/watch Mon Dec  4 22:00:27 2006
@@ -1,0 +1,2 @@
+version=2
+http://www.cpan.org/modules/by-module/Cache/Cache-Simple-TimedExpiry-([0-9].*)\.tar\.gz debian uupdate




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