debian/0000755000000000000000000000000011535201371007164 5ustar debian/control0000644000000000000000000000227511535201266010600 0ustar Source: libvendorlib-perl Section: perl Priority: optional Build-Depends: debhelper (>= 7.2.13) Build-Depends-Indep: perl, libtest-pod-perl Maintainer: Debian Perl Group Uploaders: Nicholas Bamber , gregor herrmann Standards-Version: 3.9.1 Homepage: http://search.cpan.org/dist/vendorlib/ Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libvendorlib-perl/ Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libvendorlib-perl/ Package: libvendorlib-perl Architecture: all Depends: ${misc:Depends}, ${perl:Depends} Description: pragma to enforce only core and vendor libraries are used In a system distribution such as Debian, it may be advisable for Perl programs to ignore the user's CPAN-installed modules and only use the distribution-provided modules to avoid possible breakage with newer and unpackaged versions of modules. . To that end, this pragma will replace your @INC with only the core and vendor @INC paths, ignoring site_perl and $ENV{PERL5LIB} entirely. . It is recommended that you put 'use vendorlib;' as the first statement in your program, before even 'use strict;' and 'use warnings;'. debian/copyright0000644000000000000000000000235111512161142011114 0ustar Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135 Maintainer: Rafael Kitover, Source: http://search.cpan.org/dist/vendorlib/ Name: vendorlib Files: * Copyright: 2011, Rafael Kitover, License: Artistic or GPL-1+ Files: inc/Module/* Copyright: 2002-2010, Adam Kennedy 2002-2010, Audrey Tang 2002-2010, Brian Ingerson License: Artistic or GPL-1+ Files: debian/* Copyright: 2011, Nicholas Bamber 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/watch0000644000000000000000000000015711512161142010214 0ustar version=3 http://search.cpan.org/dist/vendorlib/ .*/vendorlib-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ debian/patches/0000755000000000000000000000000011535201314010610 5ustar debian/patches/missing-home.patch0000644000000000000000000000151511535001730014232 0ustar Description: skip expansion tests if the home directory reported by getpwuid doesn't exist, as it happens in sbuild chroots with default configuration Origin: vendor Bug-Debian: http://bugs.debian.org/615963 Forwarded: yes Author: gregor herrmann Last-Update: 2011-03-06 --- a/t/01basic.t +++ b/t/01basic.t @@ -31,6 +31,8 @@ my $expanded = (getpwuid($<))[7] . '/'; + skip 'home directory reported by getpwuid does not exist', 1 unless -d $expanded; + shift @INC if $INC[0] eq '/etc/perl'; is $INC[0], $expanded, 'bare tilde expansion'; @@ -54,6 +56,8 @@ my $expanded = (getpwuid($<))[7] . '/'; + skip 'home directory reported by getpwuid does not exist', 1 unless -d $expanded; + shift @INC if $INC[0] eq '/etc/perl'; is $INC[0], $expanded, 'tilde expansion with user name'; debian/patches/series0000644000000000000000000000002311534755140012032 0ustar missing-home.patch debian/compat0000644000000000000000000000000211512161142010356 0ustar 7 debian/changelog0000644000000000000000000000117211535201273011040 0ustar libvendorlib-perl (0.10-2) unstable; urgency=low * Add patch missing-home.patch: skip tilde expansion tests if getpwuid() returns a home directory and this directory doesn't exist (closes: #615963). * Add /me to Uploaders. -- gregor herrmann Mon, 07 Mar 2011 17:03:22 +0100 libvendorlib-perl (0.10-1) unstable; urgency=low * New upstream release -- Nicholas Bamber Tue, 15 Feb 2011 23:15:29 +0000 libvendorlib-perl (0.05-1) unstable; urgency=low * Initial Release. (Closes: #609172) -- Nicholas Bamber Fri, 07 Jan 2011 18:18:08 +0000 debian/source/0000755000000000000000000000000011535201314010461 5ustar debian/source/format0000644000000000000000000000001411512161142011666 0ustar 3.0 (quilt) debian/rules0000755000000000000000000000003611533477706010262 0ustar #!/usr/bin/make -f %: dh $@