debian/0000755000000000000000000000000012130260400007152 5ustar debian/rules0000755000000000000000000000003612130260400010231 0ustar #!/usr/bin/make -f %: dh $@ debian/control0000644000000000000000000000246212130260400010561 0ustar Source: libnet-idn-nameprep-perl Maintainer: Debian Perl Group Uploaders: gregor herrmann Section: perl Priority: optional Build-Depends: debhelper (>= 8), perl (>= 5.13.11) | libmodule-build-perl (>= 0.380000) Build-Depends-Indep: libtest-nowarnings-perl, libunicode-stringprep-perl, perl Standards-Version: 3.9.4 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libnet-idn-nameprep-perl.git Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libnet-idn-nameprep-perl.git Homepage: https://metacpan.org/release/Net-IDN-Nameprep/ Package: libnet-idn-nameprep-perl Architecture: all Depends: ${misc:Depends}, ${perl:Depends}, libunicode-stringprep-perl Description: stringprep profile for Internationalized Domain Names (RFC 3491) Net::IDN::Nameprep implements the nameprep specification, which describes how to prepare internationalized domain name (IDN) labels in order to increase the likelihood that name input and name comparison work in ways that make sense for typical users throughout the world. Nameprep is a profile of the stringprep protocol and is used as part of a suite of on-the-wire protocols for internationalizing the Domain Name System (DNS). debian/source/0000755000000000000000000000000012130260400010452 5ustar debian/source/format0000644000000000000000000000001412130260400011660 0ustar 3.0 (quilt) debian/changelog0000644000000000000000000000026012130260400011022 0ustar libnet-idn-nameprep-perl (1.101+dfsg-1) unstable; urgency=low * Initial release (closes: #704898). -- gregor herrmann Sun, 07 Apr 2013 14:05:14 +0200 debian/compat0000644000000000000000000000000212130260400010350 0ustar 8 debian/copyright0000644000000000000000000000247212130260400011112 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Net-IDN-Nameprep Source: https://metacpan.org/release/Net-IDN-Nameprep/ Upstream-Contact: Claus Färber Comment: the +dfsg version is produced by excluding t/nameprep_vec.t from the upstream tarball which contains a probably non-free license for parts of its contents Files: * Copyright: 2007-2010, Claus Färber License: Artistic or GPL-1+ Files: debian/* Copyright: 2013, gregor herrmann License: Artistic or GPL-1+ Files: debian/repack.stub Copyright: 2009, Ryan Niebur License: Artistic or 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 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 systems, the complete text of version 1 of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-1'. debian/repack.local0000644000000000000000000000003712130260400011433 0ustar MANIFEST=1 rm t/nameprep_vec.t debian/watch0000644000000000000000000000030112130260400010175 0ustar version=3 opts=dversionmangle=s/\+dfsg$// \ https://metacpan.org/release/Net-IDN-Nameprep/ .*/Net-IDN-Nameprep-v?(\d[\d.-]*)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ \ debian sh debian/repack.stub debian/repack.stub0000755000000000000000000000346412130260400011330 0ustar #!/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 sourced 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 =head1 COPYRIGHT AND LICENSE Copyright 2009, Ryan Niebur License: Artistic or GPL-1+ =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://anonscm.debian.org/gitweb/?p=pkg-perl/scripts.git;a=blob_plain;f=repack.sh;hb=HEAD" exit 1 fi exec "$REPACK_SH" "$@"