debian/0000755000000000000000000000000011711762045007172 5ustar debian/copyright0000644000000000000000000000176611711762045011137 0ustar Format: http://dep.debian.net/deps/dep5/ Upstream-Name: SVN-Class Upstream-Contact: Peter Karman Source: http://search.cpan.org/dist/SVN-Class/ Files: * Copyright: 2007-2011 Peter Karman License: Artistic or GPL-1+ Files: debian/* Copyright: 2012, Dominique Dumont 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/watch0000644000000000000000000000015711711762045010226 0ustar version=3 http://search.cpan.org/dist/SVN-Class/ .*/SVN-Class-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ debian/changelog0000644000000000000000000000024111711762045011041 0ustar libsvn-class-perl (0.17-1) unstable; urgency=low * Initial Release. (Closes: #658109) -- Dominique Dumont Tue, 31 Jan 2012 13:40:24 +0100 debian/compat0000644000000000000000000000000211711762045010370 0ustar 8 debian/patches/0000755000000000000000000000000011711762045010621 5ustar debian/patches/series0000644000000000000000000000003311711762045012032 0ustar avoid-harmless-tmp-warning debian/patches/avoid-harmless-tmp-warning0000644000000000000000000000057611711762045015733 0ustar Description: avoid a harmless undef warning on tmp stuff Just test $NEV{TMPDIR} before using a regexp. Note that tests correctly use File::Temp. Author: dod --- a/t/01-svn.t +++ b/t/01-svn.t @@ -13,7 +13,7 @@ # create a repos # # Mac OSX 10.5 workaround -if ($ENV{TMPDIR} =~ m/\w+\+/) { +if (defined $ENV{TMPDIR} and $ENV{TMPDIR} =~ m/\w+\+/) { $ENV{TMPDIR} = '/tmp'; } debian/libsvn-class-perl.docs0000644000000000000000000000000711711762045013401 0ustar README debian/source/0000755000000000000000000000000011711762045010472 5ustar debian/source/format0000644000000000000000000000001411711762045011700 0ustar 3.0 (quilt) debian/control0000644000000000000000000000240311711762045010574 0ustar Source: libsvn-class-perl Maintainer: Debian Perl Group Uploaders: Dominique Dumont Section: perl Priority: optional Build-Depends: debhelper (>= 8) Build-Depends-Indep: libdata-dump-perl, libipc-run-perl, libpath-class-file-stat-perl, libpath-class-perl, librose-object-perl, librose-uri-perl, perl Standards-Version: 3.9.2 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libsvn-class-perl.git Vcs-Git: git://git.debian.org/pkg-perl/packages/libsvn-class-perl.git Homepage: http://search.cpan.org/dist/SVN-Class/ Package: libsvn-class-perl Architecture: all Depends: ${misc:Depends}, ${perl:Depends}, libdata-dump-perl, libipc-run-perl, libpath-class-file-stat-perl, libpath-class-perl, librose-object-perl, librose-uri-perl Description: perl object oriented interface for subversion workspaces SVN::Class Perl module extends Path::Class to allow for basic Subversion workspace management. SVN::Class::File and SVN::Class::Dir are subclasses of Path::Class::File::Stat and Path::Class::Dir respectively. debian/rules0000755000000000000000000000003611711762045010251 0ustar #!/usr/bin/make -f %: dh $@