--- libnet-libidn-perl-0.12.ds.orig/debian/watch +++ libnet-libidn-perl-0.12.ds/debian/watch @@ -0,0 +1,3 @@ +version=3 +opts="dversionmangle=s/\.ds$//" http://search.cpan.org/dist/Net-LibIDN/ .+/Net-LibIDN-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ debian sh debian/repack.stub + --- libnet-libidn-perl-0.12.ds.orig/debian/rules +++ libnet-libidn-perl-0.12.ds/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f + +%: + dh $@ --- libnet-libidn-perl-0.12.ds.orig/debian/copyright +++ libnet-libidn-perl-0.12.ds/debian/copyright @@ -0,0 +1,30 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Thomas Jacob, http://internet24.de +Upstream-Source: http://search.cpan.org/dist/Net-LibIDN/ +Upstream-Name: Net-LibIDN + +Files: * +Copyright: Copyright 2003-2009, Thomas Jacob, Internet24.de +License: Artistic | GPL-1+ + +Files: debian/* +Copyright: 2004, Matthias Urlichs + 2004, Thomas Jacob + 2009, Ryan Niebur +License-Alias: Perl +License: Artistic | GPL-1+ + +License: Artistic + This program is free software; you can redistribute it and/or modify + it under the terms of the Artistic License, which comes with Perl. + On Debian GNU/Linux systems, the complete text of the Artistic License + can be found in `/usr/share/common-licenses/Artistic' + +License: GPL-1+ + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 1, or (at your option) + any later version. + On Debian GNU/Linux systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL' --- libnet-libidn-perl-0.12.ds.orig/debian/repack.stub +++ libnet-libidn-perl-0.12.ds/debian/repack.stub @@ -0,0 +1,82 @@ +#!/bin/sh + +: <<=cut +=pod + +=head1 NAME + +repack.stub - script to repack upstream tarballs from uscan + +=head1 INSTRUCTIONS + +put this in debian/repack.stub and add "debian sh debian/repack.stub" to +the end of the line in debian/watch. you will also need to add a version +mangle to debian/watch. + +then create a debian/repack.local. this is a shell script that is +sources under "set -e", so be careful to check returns codes. + +=head1 FUNCTIONS + +=over 4 + +=item rm + +rm is replaced by a function that does some magic ("rm -rv" by default), but also changes MANIFEST if $MANIFEST is 1 + +=item mv + +mv is replaced by a function that just does mv (by default), but also changes MANIFEST if $MANIFEST is 1 + +=item requires_version + +requires_version is there for future usage for requiring certain versions of the script + +=back + +=head1 VARIABLES + +=over 4 + +=item SUFFIX + +defaults to +dfsg + +what to append to the upstream version + +=item RM_OPTS + +defaults to -vrf + +options to pass to rm + +=item MANIFEST + +defaults to 0, set to 1 to turn on. + +this will manipulate MANIFEST files in CPAN tarballs. + +=item UP_BASE + +this is the directory where the upstream source is. + +=back + +=cut + +if [ -z "$REPACK_SH" ]; then + if [ -f ../../scripts/repack.sh ]; then + REPACK_SH=../../scripts/repack.sh + fi + if [ -z "$REPACK_SH" ] && which repack.sh > /dev/null; then + REPACK_SH=$(which repack.sh) + fi +fi + +if [ ! -f "$REPACK_SH" ]; then + echo "Couldn't find a repack.sh. please put it in your PATH, put it at ../../scripts/repack.sh, or put it somewhere else and set the REPACK_SH variable" + echo "You can get it from http://svn.debian.org/viewsvn/pkg-perl/scripts/repack.sh" + exit 1 +fi + +exec "$REPACK_SH" "$@" --- libnet-libidn-perl-0.12.ds.orig/debian/compat +++ libnet-libidn-perl-0.12.ds/debian/compat @@ -0,0 +1 @@ +7 --- libnet-libidn-perl-0.12.ds.orig/debian/control +++ libnet-libidn-perl-0.12.ds/debian/control @@ -0,0 +1,18 @@ +Source: libnet-libidn-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7), libidn11-dev, perl (>= 5.8.0-7) +Maintainer: Debian Perl Group +Uploaders: Ryan Niebur +Standards-Version: 3.8.2 +Homepage: http://search.cpan.org/dist/Net-LibIDN/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libnet-libidn-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libnet-libidn-perl/ + +Package: libnet-libidn-perl +Architecture: any +Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends} +Description: Perl bindings for GNU Libidn + Provides bindings for GNU Libidn, a C library for handling Internationalized + Domain Names according to IDNA (RFC 3490), in a way very much inspired by + Turbo Fredriksson's PHP-IDN. --- libnet-libidn-perl-0.12.ds.orig/debian/changelog +++ libnet-libidn-perl-0.12.ds/debian/changelog @@ -0,0 +1,82 @@ +libnet-libidn-perl (0.12.ds-1build4) trusty; urgency=low + + * Rebuild for Perl 5.18. + + -- Colin Watson Mon, 21 Oct 2013 10:26:05 +0100 + +libnet-libidn-perl (0.12.ds-1build3) quantal; urgency=low + + * Rebuild for new armel compiler default of ARMv5t. + + -- Colin Watson Fri, 05 Oct 2012 00:09:51 +0100 + +libnet-libidn-perl (0.12.ds-1build2) precise; urgency=low + + * Rebuild for Perl 5.14. + + -- Colin Watson Tue, 15 Nov 2011 20:06:03 +0000 + +libnet-libidn-perl (0.12.ds-1build1) oneiric; urgency=low + + * Rebuild for Perl 5.12. + + -- Colin Watson Sun, 08 May 2011 13:20:30 +0100 + +libnet-libidn-perl (0.12.ds-1) unstable; urgency=low + + * Take over for the Debian Perl Group (Closes: #540552) + * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser + field (source stanza); Homepage field (source stanza). Changed: + Maintainer set to Debian Perl Group (was: Thomas Jacob + ); Thomas Jacob moved to + Uploaders. + * Add debian/watch. + * debian/rules: delete /usr/share/perl5 only if it exists. + * add repack.stub to handle removing the upstream debian dir + * New upstream release + * dh-make-perl --refresh + - machine readable copyright format + - dh7 d/rules + * updated standards version + * Add myself to Uploaders + + -- Ryan Niebur Tue, 11 Aug 2009 16:29:07 -0700 + +libnet-libidn-perl (0.07-1) unstable; urgency=low + + * Improved debianization, Makefile generation and portability + + -- Mon, 26 Apr 2004 11:45:14 +0200 + +libnet-libidn-perl (0.06-1) unstable; urgency=low + + * Doc changes, improved debianization + * Submit to Debian. Closes: #240437. + + -- Mon, 29 Mar 2004 19:31:37 +0200 + +libnet-libidn-perl (0.05-2) unstable; urgency=low + + * minor packaging issues + + -- Matthias Urlichs Sat, 27 Mar 2004 11:35:33 +0100 + +libnet-libidn-perl (0.05-1) unstable; urgency=low + + * Minor fixes and optimizations + + -- Thu, 18 Mar 2004 16:13:50 +0100 + +libnet-libidn-perl (0.04-1) unstable; urgency=low + + * Update for real release of Libidn 0.4.0 + + -- Sun, 29 Feb 2004 16:33:41 +0100 + +libnet-libidn-perl (0.03-1) unstable; urgency=low + + * Initial Release. + + -- Thomas Jacob Sat, 14 Feb 2004 01:04:56 +0100 + --- libnet-libidn-perl-0.12.ds.orig/debian/repack.local +++ libnet-libidn-perl-0.12.ds/debian/repack.local @@ -0,0 +1,2 @@ +SUFFIX=.ds +rm debian/