--- libfile-chmod-perl-0.32.orig/debian/control +++ libfile-chmod-perl-0.32/debian/control @@ -0,0 +1,19 @@ +Source: libfile-chmod-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl +Maintainer: Debian Perl Group +Uploaders: Alejandro Garrido Mota , + gregor herrmann +Standards-Version: 3.8.0 +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libfile-chmod-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-chmod-perl/ +Homepage: http://search.cpan.org/dist/File-chmod/ + +Package: libfile-chmod-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends} +Description: chmod() override with symbolic and ls-style modes + File::chmod provides an override for Perl's chmod() function + allowing usage of octal, symbolic or "ls-style" file modes. --- libfile-chmod-perl-0.32.orig/debian/copyright +++ libfile-chmod-perl-0.32/debian/copyright @@ -0,0 +1,33 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Jeff japhy Pinyan, japhy.734+CPAN@gmail.com, CPAN ID: PINYAN +Upstream-Source: http://search.cpan.org/dist/File-chmod/ +Upstream-Name: File-chmod + +Files: * +Copyright: 2007 by Jeff Pinyan +License-Alias: Perl +License: Artistic | GPL-1+ + This library is free software; you can redistribute it and/or modify + it under the same terms as Perl itself, either Perl version 5.8.8 or, + at your option, any later version of Perl 5 you may have available. + +Files: debian/* +Copyright: + 2008, Alejandro Garrido Mota + 2008, gregor herrmann +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' --- libfile-chmod-perl-0.32.orig/debian/watch +++ libfile-chmod-perl-0.32/debian/watch @@ -0,0 +1,3 @@ +version=3 + +http://search.cpan.org/dist/File-chmod/ .*/File-chmod-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libfile-chmod-perl-0.32.orig/debian/compat +++ libfile-chmod-perl-0.32/debian/compat @@ -0,0 +1 @@ +7 --- libfile-chmod-perl-0.32.orig/debian/changelog +++ libfile-chmod-perl-0.32/debian/changelog @@ -0,0 +1,5 @@ +libfile-chmod-perl (0.32-1) unstable; urgency=low + + * Initial Release (Closes: #460056). + + -- gregor herrmann Fri, 26 Sep 2008 21:43:39 +0200 --- libfile-chmod-perl-0.32.orig/debian/rules +++ libfile-chmod-perl-0.32/debian/rules @@ -0,0 +1,23 @@ +#!/usr/bin/make -f + +build: build-stamp +build-stamp: + dh build + touch $@ + +clean: + dh $@ + +install: install-stamp +install-stamp: build-stamp + dh install + touch $@ + +binary-arch: + +binary-indep: install + dh $@ + +binary: binary-arch binary-indep + +.PHONY: binary binary-arch binary-indep install clean build