--- libcache-memcached-perl-1.24.orig/debian/compat +++ libcache-memcached-perl-1.24/debian/compat @@ -0,0 +1 @@ +5 --- libcache-memcached-perl-1.24.orig/debian/watch +++ libcache-memcached-perl-1.24/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Cache-Memcached/ .*/Cache-Memcached-v?(\d[\d._+-]+)\.tar\.gz --- libcache-memcached-perl-1.24.orig/debian/control +++ libcache-memcached-perl-1.24/debian/control @@ -0,0 +1,21 @@ +Source: libcache-memcached-perl +Section: perl +Priority: optional +Maintainer: Debian Perl Group +Uploaders: Jay Bonci +Build-Depends: debhelper (>= 5) +Build-Depends-Indep: perl (>= 5.6.0-16), libstring-crc32-perl +Standards-Version: 3.7.3 +Homepage: http://search.cpan.org/dist/Cache-Memcached/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libcache-memcached-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libcache-memcached-perl/ + +Package: libcache-memcached-perl +Architecture: all +Depends: ${perl:Depends}, libstring-crc32-perl +Suggests: memcached +Description: Cache::Memcached - client library for memcached + This is the Perl API for memcached, a distributed memory cache daemon. It + is an object-oriented and feature rich client API implementation, and is + used as a component to power several large websites, including Livejournal + and Slashdot. --- libcache-memcached-perl-1.24.orig/debian/rules +++ libcache-memcached-perl-1.24/debian/rules @@ -0,0 +1,56 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +PACKAGE = $(shell dh_listpackages) +TMP = $(CURDIR)/debian/$(PACKAGE) + +ifndef PERL +PERL = /usr/bin/perl +endif + +build: build-stamp +build-stamp: + dh_testdir + $(PERL) Makefile.PL INSTALLDIRS=vendor \ + INSTALLVENDORARCH=/usr/share/perl5/ \ + VENDORARCHEXP=/usr/share/perl5/ + $(MAKE) + $(MAKE) test + + touch $@ + +clean: + dh_testdir + dh_testroot + dh_clean build-stamp install-stamp + [ ! -f Makefile ] || $(MAKE) realclean + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + touch $@ + +binary-arch: +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs -XTODO + dh_installchangelogs ChangeLog + dh_perl + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary --- libcache-memcached-perl-1.24.orig/debian/changelog +++ libcache-memcached-perl-1.24/debian/changelog @@ -0,0 +1,79 @@ +libcache-memcached-perl (1.24-1) unstable; urgency=low + + [ Jeremiah C. Foster ] + * New upstream release (Closes: #454264) + + [ Martín Ferrari ] + * debian/control: + - Separated Build-Depends-Indep from Build-Depends. + - Updated debhelper dependency to version 5. + - Bumped Standards-Version (no changes needed). + * debian/watch: generalised the version matching. + * debian/copyright: fixed outdated info and converted to the new format. + * debian/rules: heavily modified to follow group standards and remove cruft. + + [ Gunnar Wolf ] + * Removed debian/dirs, as it served no useful purpose besides angrying + lintian + + -- Gunnar Wolf Sun, 23 Dec 2007 14:50:59 -0600 + +libcache-memcached-perl (1.20-2) unstable; urgency=low + + * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser + field (source stanza); Homepage field (source stanza). + * Set Maintainer to Debian Perl Group. + * Use dist-based URL in debian/watch. + + -- gregor herrmann Sat, 01 Dec 2007 18:54:46 +0100 + +libcache-memcached-perl (1.20-1) unstable; urgency=low + + * New upstream release + * Bumped policy-version to 3.7.2.2 (no other changes) + + -- Jay Bonci Wed, 02 May 2007 12:23:05 -0400 + +libcache-memcached-perl (1.18-1) unstable; urgency=low + + * New upstream release (Closes: #399734) + * Updated Standards-Version to 3.7.2 (No other changes) + * Changed Build-Depends-Indep to Build-Depends for lintian error + + -- Jay Bonci Sun, 3 Dec 2006 22:58:48 -0500 + +libcache-memcached-perl (1.15-1) unstable; urgency=low + + * New upstream release (Closes: #329506) + * Updated debian/watch to use uupdate + * Bumped to policy-version 3.6.2.1 (No other changes) + + -- Jay Bonci Sun, 11 Dec 2005 17:05:41 -0500 + +libcache-memcached-perl (1.14-1) unstable; urgency=low + + * New upstream version + * Changed upstream version numbering scheme + * Repaired debian/watch file to actually work with uscan + + -- Jay Bonci Thu, 9 Sep 2004 04:01:45 -0400 + +libcache-memcached-perl (1.0.13-1) unstable; urgency=low + + * New upstream version (Closes: #252179) + * Remove TODO from docs listing as it's empty + + -- Jay Bonci Tue, 1 Jun 2004 20:55:37 -0400 + +libcache-memcached-perl (1.0.12-1) unstable; urgency=low + + * New upstream version + + -- Jay Bonci Tue, 10 Feb 2004 15:28:20 -0500 + +libcache-memcached-perl (1.0.11-1) unstable; urgency=low + + * Initial Release (Closes: #218225) + + -- Jay Bonci Tue, 28 Oct 2003 15:34:37 -0500 + --- libcache-memcached-perl-1.24.orig/debian/libcache-memcached-perl.docs +++ libcache-memcached-perl-1.24/debian/libcache-memcached-perl.docs @@ -0,0 +1,2 @@ +TODO +README --- libcache-memcached-perl-1.24.orig/debian/copyright +++ libcache-memcached-perl-1.24/debian/copyright @@ -0,0 +1,33 @@ +This package was debianized by Jay Bonci on +Tue, 28 Oct 2003 15:34:37 -0500. + +It was downloaded from: http://search.cpan.org/dist/Cache-Memcached + +Upstream Authors: + Brad Fitzpatrick + Anatoly Vorobey + Brad Whitaker + Jamie McCarthy + +Files: debian/* +Copyright: © 2007 Martín Ferrari + © 2007 Jeremiah C. Foster + © 2007 gregor herrmann + © 2003-2007 Jay Bonci +License: other + It is being assumed that all maintainers did choose a license compatible with + the license used by upstream + +Files: * +Copyright: © 2003-2007 Brad Fitzpatrick. All rights reserved. +License: Artistic | GPL-1+ + This module is Copyright (c) 2003 Brad Fitzpatrick. + All rights reserved. + . + You may distribute under the terms of either the GNU General Public + License or the Artistic License, as specified in the Perl README file. + +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 +License in `/usr/share/common-licenses/Artistic'. + --- libcache-memcached-perl-1.24.orig/debian/docs +++ libcache-memcached-perl-1.24/debian/docs @@ -0,0 +1 @@ +README