--- libproc-syncexec-perl-1.01.orig/debian/changelog +++ libproc-syncexec-perl-1.01/debian/changelog @@ -0,0 +1,60 @@ +libproc-syncexec-perl (1.01-1.1ubuntu1) xenial; urgency=medium + + * debian/rules: + - Remove legacy DH_COMPAT export. + - Use dh_prep instead of dh_clean -k. + - Add recommended build-arch and build-indep targets. + * debian/compat: Indicate compatibility level of 9. + * debian/control: + - Build-depend on debhelper (>= 9). + - Depend on ${misc:Depends}. + + -- Logan Rosen Tue, 22 Mar 2016 19:26:30 -0500 + +libproc-syncexec-perl (1.01-1.1) unstable; urgency=medium + + * Non-maintainer upload. + * Fix "FTBFS with perl 5.22 in experimental (MakeMaker changes)": + use DESTDIR in debian/rules. + (Closes: #795613) + + -- gregor herrmann Wed, 26 Aug 2015 17:57:06 +0200 + +libproc-syncexec-perl (1.01-1) unstable; urgency=low + + * New upstream release (closes: #329656). + * Rebuild with newer debhelper to lose /usr/doc link (closes: #359462). + * Switch section from interpreters to perl. + * Add debian/watch. + * Update FSF address in copyright file. + + -- Roderick Schertler Wed, 19 Apr 2006 09:26:55 -0400 + +libproc-syncexec-perl (1.00-2) unstable; urgency=low + + * Update to policy 3.5.2. + * Update to latest Perl policy. + + -- Roderick Schertler Tue, 31 Jul 2001 10:25:50 -0400 + +libproc-syncexec-perl (1.00-1) unstable; urgency=low + + * New upstream version. + * Bump standards to 3.2.1. + + -- Roderick Schertler Sat, 23 Sep 2000 22:37:30 -0400 + +libproc-syncexec-perl (0.01-2) unstable; urgency=low + + * Simple updates for 3.0.0 standards. + * Simple updates for new Perl policy. + + -- Roderick Schertler Wed, 14 Jul 1999 14:48:56 -0400 + +libproc-syncexec-perl (0.01-1) unstable; urgency=low + + * Initial version. + + -- Roderick Schertler Mon, 28 Dec 1998 22:50:19 -0500 + +$Id: changelog,v 1.5 2006-04-19 13:34:03 roderick Exp $ --- libproc-syncexec-perl-1.01.orig/debian/compat +++ libproc-syncexec-perl-1.01/debian/compat @@ -0,0 +1 @@ +9 --- libproc-syncexec-perl-1.01.orig/debian/control +++ libproc-syncexec-perl-1.01/debian/control @@ -0,0 +1,15 @@ +Source: libproc-syncexec-perl +Section: perl +Priority: optional +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Roderick Schertler +Standards-Version: 3.5.2 +Build-Depends: debhelper (>= 9), perl (>= 5.6.0-16) + +Package: libproc-syncexec-perl +Architecture: all +Depends: ${misc:Depends}, ${perl:Depends} +Description: spawn processes but report exec() errors properly + This Perl module contains functions for synchronized process spawning + with full error return. If the child's exec() call fails the reason + for the failure is reported back to the parent. --- libproc-syncexec-perl-1.01.orig/debian/copyright +++ libproc-syncexec-perl-1.01/debian/copyright @@ -0,0 +1,35 @@ +$Id: copyright,v 1.3 2006-04-19 13:33:51 roderick Exp $ + +This is a Debian prepackaged version of the Proc::SyncExec Perl module. +It was put together by Roderick Schertler with +sources obtained from . + +The source has not been modified. + +The module is Copyright (c) 1997 Roderick Schertler. All rights reserved. +It may be distributed under the same terms as Perl. These are: + + This program is free software; you can redistribute it and/or modify + it under the terms of either: + + a) the GNU General Public License as published by the Free + Software Foundation; either version 1, or (at your option) any + later version, or + + b) the "Artistic License" which comes with this Kit. + + This program 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 either + the GNU General Public License or the Artistic License for more details. + + You should have received a copy of the Artistic License with this + Kit, in the file named "Artistic". If not, I'll be glad to provide one. + + You should also have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software Foundation, + Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + +On Debian systems, the complete text of the GNU General Public License can +be found in `/usr/share/common-licenses/GPL', and the complete text of the +Artistic License can be found in `/usr/share/common-licenses/Artistic'. --- libproc-syncexec-perl-1.01.orig/debian/rules +++ libproc-syncexec-perl-1.01/debian/rules @@ -0,0 +1,74 @@ +#!/usr/bin/make -f + +# $Id: rules,v 1.4 2001-07-31 14:27:19 roderick Exp $ + +dt := debian/libproc-syncexec-perl +prefix = `pwd`/$(dt) +stamp_build := debian/stamp.build +stamp_install := debian/stamp.install +clean := $(stamp_build) $(stamp_install) + +ifneq "" "$(findstring debug,$(DEB_BUILD_OPTIONS))" + CFLAGS += -g +endif +PERL ?= perl + +build: build-arch build-indep +build-arch: $(stamp_build) +build-indep: $(stamp_build) +$(stamp_build): + dh_testdir + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) OPTIMIZE="-O2 -Wall $(CFLAGS)" + $(MAKE) test + touch $@ + +install: $(stamp_install) +$(stamp_install): $(stamp_build) + dh_testdir + dh_testroot + dh_prep + dh_installdirs + $(MAKE) install DESTDIR=$(prefix) + find $(prefix) -depth -type d -print0 | \ + xargs -0r rmdir --ignore-fail-on-non-empty + touch $@ + +clean: + dh_testdir + dh_testroot + [ ! -f Makefile ] || $(MAKE) realclean + dh_clean $(clean) + +binary: binary-indep binary-arch +binary-arch: +binary-indep: $(stamp_install) + dh_testdir + dh_testroot +# dh_installdebconf + dh_installdocs README + dh_installexamples + dh_installmenu +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_installinit + dh_installcron + dh_installman + dh_installinfo +# dh_undocumented + dh_installchangelogs Changes + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_makeshlibs + dh_installdeb + dh_perl + dh_shlibdeps + dh_gencontrol -u -isp + dh_md5sums + dh_builddeb + +.PHONY: build install clean binary-indep binary-arch binary --- libproc-syncexec-perl-1.01.orig/debian/watch +++ libproc-syncexec-perl-1.01/debian/watch @@ -0,0 +1,5 @@ +# $Id: watch,v 1.1 2006-04-19 13:20:56 roderick Exp $ + +version=2 + +http://www.cpan.org/modules/by-module/Proc/Proc-SyncExec-(\d.*)\.tar\.gz