debian/0000755000000000000000000000000011773613352007176 5ustar debian/rules0000755000000000000000000000003611773613352010255 0ustar #!/usr/bin/make -f %: dh $@ debian/libunicode-stringprep-perl.examples0000644000000000000000000000000511773613352016201 0ustar eg/* debian/control0000644000000000000000000000254411773613352010606 0ustar Source: libunicode-stringprep-perl Section: perl Priority: optional Maintainer: Debian Perl Group Uploaders: Ioan Rogers Build-Depends: debhelper (>= 8), perl (>= 5.13.11) | libmodule-build-perl (>= 0.380000) Build-Depends-Indep: libtest-nowarnings-perl, libtest-pod-perl, libtest-pod-coverage-perl Standards-Version: 3.9.3 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libunicode-stringprep-perl.git Vcs-Git: git://git.debian.org/pkg-perl/packages/libunicode-stringprep-perl.git Homepage: http://search.cpan.org/dist/Unicode-Stringprep/ Package: libunicode-stringprep-perl Architecture: all Depends: ${misc:Depends}, ${perl:Depends} Description: Perl module for preparation of Internationalized Strings (RFC 3454) Unicode::Stringprep implements the stringprep framework for preparing Unicode text strings in order to increase the likelihood that string input and string comparison work in ways that make sense for typical users throughout the world. The stringprep protocol is useful for protocol identifier values, company and personal names, internationalized domain names, and other text strings. The stringprep framework does not specify how protocols should prepare text strings. Protocols must create profiles of stringprep in order to fully specify the processing options. debian/source/0000755000000000000000000000000011773613352010476 5ustar debian/source/format0000644000000000000000000000001411773613352011704 0ustar 3.0 (quilt) debian/changelog0000644000000000000000000000025611773613352011053 0ustar libunicode-stringprep-perl (1.104+dfsg-1) unstable; urgency=low * Initial packaging, closes: #678478 -- Ioan Rogers Sat, 30 Jun 2012 08:10:24 -0700 debian/compat0000644000000000000000000000000211773613352010374 0ustar 8 debian/copyright0000644000000000000000000000234111773613352011131 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Source: http://search.cpan.org/dist/Unicode-Stringprep/ Upstream-Contact: Claus Färber Upstream-Name: Unicode-Stringprep Comment: The files t/nameprep*.t have been removed from the upstream tarball, since it is not clear if they are DFSG-free. Running uscan is enough to get the repackaged tarball. Files: * Copyright: 2007-2011, Claus Färber License: Artistic or GPL-1+ Files: debian/* Copyright: 2012, Ioan Rogers 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.local0000644000000000000000000000003411773613352011454 0ustar MANIFEST=1 rm t/nameprep*.t debian/watch0000644000000000000000000000030611773613352010226 0ustar version=3 opts="dversionmangle=s/\+dfsg//" \ http://search.cpan.org/dist/Unicode-Stringprep/ .*/Unicode-Stringprep-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ \ debian sh debian/repack.stub debian/repack.stub0000755000000000000000000000331211773613352011344 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 =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" "$@"