--- libropkg-perl-0.4.orig/debian/changelog +++ libropkg-perl-0.4/debian/changelog @@ -0,0 +1,37 @@ +libropkg-perl (0.4-1.3) unstable; urgency=medium + + * Non maintainer upload by the Reproducible Builds team. + * No source change upload to rebuild on buildd with .buildinfo files. + + -- Holger Levsen Thu, 07 Jan 2021 13:22:13 +0100 + +libropkg-perl (0.4-1.2) unstable; urgency=medium + + * Non-maintainer upload. + * Fix "Removal of debhelper compat 4": + use debhelper compatibility level 5. + (Closes: #817549) + + -- gregor herrmann Sun, 21 Aug 2016 21:34:28 +0200 + +libropkg-perl (0.4-1.1) unstable; urgency=medium + + * Non-maintainer upload. + * Fix "FTBFS with perl 5.22 in experimental (MakeMaker changes)": + use DESTDIR in debian/rules. + (Closes: #795632) + + -- gregor herrmann Wed, 26 Aug 2015 18:23:42 +0200 + +libropkg-perl (0.4-1) unstable; urgency=low + + * New upstream release + + -- Radu Spineanu Tue, 11 Jul 2006 14:43:33 +0300 + +libropkg-perl (0.3-1) unstable; urgency=low + + * Initial release (closes: #360635) + + -- Radu Spineanu Wed, 22 Mar 2006 21:06:35 +0200 + --- libropkg-perl-0.4.orig/debian/compat +++ libropkg-perl-0.4/debian/compat @@ -0,0 +1 @@ +5 --- libropkg-perl-0.4.orig/debian/control +++ libropkg-perl-0.4/debian/control @@ -0,0 +1,21 @@ +Source: libropkg-perl +Section: perl +Priority: optional +Maintainer: Radu Spineanu +Build-Depends: debhelper (>= 5) +Build-Depends-Indep: libpod-coverage-perl, libexception-class-perl (>= 1.21-1), libdbi-perl, libclass-singleton-perl, libtest-pod-coverage-perl +Standards-Version: 3.7.2 + +Package: libropkg-perl +Architecture: all +Depends: perl (>= 5.8.0), libpod-coverage-perl, libexception-class-perl (>= 1.21-1), libdbi-perl, libclass-singleton-perl, libtest-pod-coverage-perl +Description: general purpose classes for simba + RoPkg consists from a Rsync module, a DB module and some base + classes. The Rsync module parses rsync configuration + and client log files, being able to generate new rsync configuration + files without losing your comments or separator lines. + The DB module implements a singleton database pool class which is able + to connect to multiple databases at once and a database object + (an object who can be loaded/saved from/to a database). + . + Homepage: http://simba.packages.ro/ --- libropkg-perl-0.4.orig/debian/copyright +++ libropkg-perl-0.4/debian/copyright @@ -0,0 +1,28 @@ +3This package was debianized by Radu Spineanu on +Wed, 22 Mar 2006 21:06:35 +0200. + +It was downloaded from http://perl.packages.ro/download/ + +Copyright Holder: Subredu Manuel - diablo@iasi.roedu.net + +License: + +Copyright (C) 2006 Subredu Manuel - diablo@iasi.roedu.net + + This package 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; version 2 dated June, 1991. + + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, + MA 02110-1301, USA. + +On Debian GNU/Linux systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + --- libropkg-perl-0.4.orig/debian/rules +++ libropkg-perl-0.4/debian/rules @@ -0,0 +1,74 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +PACKAGE=$(shell dh_listpackages) + +PERL = /usr/bin/perl + +DESTDIR=.. + +TMP =`pwd`/debian/$(PACKAGE) + +configure: configure-stamp +configure-stamp: + dh_testdir + + $(PERL) Makefile.PL verbose INSTALLDIRS=vendor + + touch configure-stamp + +build: build-stamp +build-stamp: configure-stamp + dh_testdir + + $(MAKE) + $(MAKE) test + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + -$(MAKE) distclean + + dh_clean + +install: + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(MAKE) install DESTDIR=$(TMP) + + # Remove any empty directories + + find $(TMP) -type d -empty -print0 | xargs --no-run-if-empty --null rmdir -p --ignore-fail-on-non-empty + + +# Build architecture-independent files here. +binary-arch: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs Authors + dh_installman + dh_installchangelogs History + dh_compress + dh_fixperms + dh_installdeb + dh_perl + dh_gencontrol + dh_md5sums + dh_builddeb --destdir=$(DESTDIR) + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary +