--- libio-dirent-perl-0.05.orig/debian/changelog +++ libio-dirent-perl-0.05/debian/changelog @@ -0,0 +1,74 @@ +libio-dirent-perl (0.05-1build9) impish; urgency=medium + + * No-change rebuild to build packages with zstd compression. + + -- Matthias Klose Thu, 07 Oct 2021 12:16:12 +0200 + +libio-dirent-perl (0.05-1build8) hirsute; urgency=medium + + * No-change rebuild for the perl update. + + -- Matthias Klose Mon, 09 Nov 2020 12:43:48 +0100 + +libio-dirent-perl (0.05-1build7) focal; urgency=medium + + * No-change rebuild for the perl update. + + -- Matthias Klose Fri, 18 Oct 2019 19:32:22 +0000 + +libio-dirent-perl (0.05-1build6) disco; urgency=medium + + * No-change rebuild for the perl 5.28 transition. + + -- Adam Conrad Fri, 02 Nov 2018 18:11:31 -0600 + +libio-dirent-perl (0.05-1build5) artful; urgency=medium + + * No-change rebuild for perl 5.26.0. + + -- Matthias Klose Wed, 26 Jul 2017 20:07:08 +0000 + +libio-dirent-perl (0.05-1build4) zesty; urgency=medium + + * No-change rebuild for perl 5.24 transition + + -- Iain Lane Mon, 24 Oct 2016 10:21:44 +0100 + +libio-dirent-perl (0.05-1build3) xenial; urgency=medium + + * Rebuild for Perl 5.22.1. + + -- Colin Watson Thu, 17 Dec 2015 15:43:43 +0000 + +libio-dirent-perl (0.05-1build2) utopic; urgency=medium + + * Rebuild for Perl 5.20.0. + + -- Colin Watson Tue, 19 Aug 2014 18:01:48 +0100 + +libio-dirent-perl (0.05-1build1) devel; urgency=low + + * Rebuild for Perl 5.18. + + -- Colin Watson Sun, 20 Oct 2013 22:57:52 +0100 + +libio-dirent-perl (0.05-1) unstable; urgency=low + + * New upstream release + * Added a watch file + + -- Ludovic Drolez Thu, 10 May 2012 12:24:38 +0200 + +libio-dirent-perl (0.04-2) unstable; urgency=low + + * fixed a FTBFS with Perl 5.10. Closes: Bug#470395 + + -- Ludovic Drolez Wed, 12 Mar 2008 14:35:47 +0100 + +libio-dirent-perl (0.04-1) unstable; urgency=low + + * Initial Release. + * Package built with dh-make-perl. + * Added 'Enhances: backuppc' + + -- Ludovic Drolez Mon, 2 Mar 2008 09:56:38 +0100 --- libio-dirent-perl-0.05.orig/debian/compat +++ libio-dirent-perl-0.05/debian/compat @@ -0,0 +1 @@ +5 --- libio-dirent-perl-0.05.orig/debian/control +++ libio-dirent-perl-0.05/debian/control @@ -0,0 +1,17 @@ +Source: libio-dirent-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 5.0.0), perl (>= 5.8.8-7etch1) +Maintainer: Ludovic Drolez +Standards-Version: 3.9.3 + +Package: libio-dirent-perl +Architecture: any +Depends: ${perl:Depends}, ${shlibs:Depends}, ${misc:Depends}, +Enhances: backuppc +Description: Perl module for accessing dirent structs returned by readdir + Returns a list of hashrefs. Each hashref contains the name of the + directory entry, its inode for the filesystem it resides on and its + type (if available). + . + This module can be used by backuppc to speed up back-ups. --- libio-dirent-perl-0.05.orig/debian/copyright +++ libio-dirent-perl-0.05/debian/copyright @@ -0,0 +1,16 @@ +This is the debian package for the IO-Dirent module. +It was created by Ludovic Drolez using dh-make-perl. + +It was downloaded from http://search.cpan.org/~scottw/IO-Dirent-0.04/ + +The upstream author is: Scott Wiersdorf, + +Copyright: + + Copyright 2002 Scott Wiersdorf. + + This library is free software; you can redistribute it and/or modify + it under the terms of the Perl Artistic License. + +On Debian GNU/Linux systems, the complete text of the Artistic +License can be found in `/usr/share/common-licenses/Artistic'. --- libio-dirent-perl-0.05.orig/debian/rules +++ libio-dirent-perl-0.05/debian/rules @@ -0,0 +1,97 @@ +#!/usr/bin/make -f +# This debian/rules file is provided as a template for normal perl +# packages. It was created by Marc Brockschmidt for +# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may +# be used freely wherever it is useful. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# If set to a true value then MakeMaker's prompt function will +# always return the default without waiting for user input. +export PERL_MM_USE_DEFAULT=1 + +PACKAGE=$(shell dh_listpackages) + +ifndef PERL +PERL = /usr/bin/perl +endif + +TMP =$(CURDIR)/debian/$(PACKAGE) + +# Allow disabling build optimation by setting noopt in +# $DEB_BUILD_OPTIONS +CFLAGS = -Wall -g +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +build: build-stamp +build-stamp: + dh_testdir + + # Add commands to compile the package here + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) OPTIMIZE="$(CFLAGS)" LD_RUN_PATH="" + + touch build-stamp + +clean: + dh_testdir + dh_testroot + + # Add commands to clean up after the build process here + [ ! -f Makefile ] || $(MAKE) realclean + + dh_clean build-stamp install-stamp + +install: build install-stamp +install-stamp: + dh_testdir + dh_testroot + dh_clean -k + + # Add commands to install the package into debian/$PACKAGE_NAME here + $(MAKE) test + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + + # As this is a architecture dependent package, we are not + # supposed to install stuff to /usr/share. MakeMaker creates + # the dirs, we delete them from the deb: + [ ! -d $(TMP)/usr/share/perl5 ] || rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/share/perl5 + + touch install-stamp + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installdocs README + dh_installexamples +# dh_installmenu +# dh_installcron +# dh_installman + dh_installchangelogs Changes + dh_link + dh_strip + dh_compress + dh_fixperms + dh_makeshlibs + dh_installdeb + dh_perl + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +source diff: + @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary --- libio-dirent-perl-0.05.orig/debian/watch +++ libio-dirent-perl-0.05/debian/watch @@ -0,0 +1,4 @@ +version=3 +# URL to the package page followed by a regex to search +http://search.cpan.org/dist/IO-Dirent/ .*/IO-Dirent-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ debian uupdate +