diff -Nru libapp-control-perl-1.02/debian/changelog libapp-control-perl-1.02/debian/changelog --- libapp-control-perl-1.02/debian/changelog 2015-12-06 06:28:24.000000000 +0000 +++ libapp-control-perl-1.02/debian/changelog 2015-12-05 19:59:34.000000000 +0000 @@ -1,3 +1,36 @@ +libapp-control-perl (1.02-3) unstable; urgency=low + + [ gregor herrmann ] + * debian/control: Changed: Switched Vcs-Browser field to ViewSVN + (source stanza). + + [ Damyan Ivanov ] + * Fix capitalization of 'Apache' in long description. Thanks, lintian. + + [ Ansgar Burchardt ] + * debian/control: Convert Vcs-* fields to Git. + + [ gregor herrmann ] + * debian/control: update {versioned,alternative} (build) dependencies. + + [ Salvatore Bonaccorso ] + * Change Vcs-Git to canonical URI (git://anonscm.debian.org) + * Change search.cpan.org based URIs to metacpan.org based URIs + + [ gregor herrmann ] + * Strip trailing slash from metacpan URLs. + + [ Salvatore Bonaccorso ] + * Update Vcs-Browser URL to cgit web frontend + + [ Damyan Ivanov ] + * use source format '3.0 (quilt)' + * mark package as autopkgtestable + * use three-line dh-style debian/rules, build-depend on debhelper 9 + * Declare conformance with Policy 3.9.6 + + -- Damyan Ivanov Sat, 05 Dec 2015 19:57:54 +0000 + libapp-control-perl (1.02-2) unstable; urgency=low [ gregor herrmann ] diff -Nru libapp-control-perl-1.02/debian/compat libapp-control-perl-1.02/debian/compat --- libapp-control-perl-1.02/debian/compat 2015-12-06 06:28:24.000000000 +0000 +++ libapp-control-perl-1.02/debian/compat 2015-12-05 19:52:49.000000000 +0000 @@ -1 +1 @@ -5 +9 diff -Nru libapp-control-perl-1.02/debian/control libapp-control-perl-1.02/debian/control --- libapp-control-perl-1.02/debian/control 2015-12-06 06:28:24.000000000 +0000 +++ libapp-control-perl-1.02/debian/control 2015-12-05 19:55:53.000000000 +0000 @@ -1,24 +1,27 @@ Source: libapp-control-perl -Section: perl -Priority: optional -Build-Depends: debhelper (>= 5.0.0) -Build-Depends-Indep: perl (>= 5.8.8-7) Maintainer: Debian Perl Group Uploaders: Damyan Ivanov -Standards-Version: 3.7.3 -Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libapp-control-perl/ -Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libapp-control-perl/ -Homepage: http://search.cpan.org/dist/App-Control +Section: perl +Priority: optional +Build-Depends: debhelper (>= 9) +Build-Depends-Indep: perl +Standards-Version: 3.9.6 +Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libapp-control-perl.git +Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libapp-control-perl.git +Homepage: https://metacpan.org/release/App-Control +Testsuite: autopkgtest-pkg-perl Package: libapp-control-perl Architecture: all -Depends: ${perl:Depends}, ${misc:Depends} +Depends: ${perl:Depends}, + ${misc:Depends} Description: Perl module for apachectl style control of another executable App::Control is a simple module to replicate the kind of functionality you get - with apachectl to control apache, but for any script or executable. There is a + with apachectl to control Apache, but for any script or executable. There is a very simple OO interface, where the constructor is used to specify the executable, command line arguments, and pidfile, and various methods (start, stop, etc.) are used to control the executable in the obvious way. The module is intended to be used in a simple wrapper control script. Currently the module does a fork and exec to start the executable, and sets the signal handler for SIGCHLD to 'IGNORE' to avoid zombie processes. + diff -Nru libapp-control-perl-1.02/debian/rules libapp-control-perl-1.02/debian/rules --- libapp-control-perl-1.02/debian/rules 2015-12-06 06:28:24.000000000 +0000 +++ libapp-control-perl-1.02/debian/rules 2015-12-05 19:52:40.000000000 +0000 @@ -1,79 +1,3 @@ #!/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) - -build: build-stamp -build-stamp: - dh_testdir - - # Add commands to compile the package here - $(PERL) Makefile.PL INSTALLDIRS=vendor - $(MAKE) - $(MAKE) test - touch build-stamp - -clean: - dh_testdir - dh_testroot - - dh_clean build-stamp install-stamp - - # Add commands to clean up after the build process here - [ ! -f Makefile ] || $(MAKE) realclean - - - -install: install-stamp -install-stamp: build-stamp - dh_testdir - dh_testroot - dh_clean -k - - # Add commands to install the package into debian/$PACKAGE_NAME here - $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr - - # As this is a architecture independent package, we are not - # supposed to install stuff to /usr/lib. MakeMaker creates - # the dirs, we delete them from the deb: - [ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5 - - touch install-stamp - -binary-arch: -# We have nothing to do by default. - -binary-indep: build install - dh_testdir - dh_testroot - dh_installdocs - dh_installchangelogs Changes - dh_perl - dh_compress - dh_fixperms - dh_installdeb - 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 +%: + dh $@ diff -Nru libapp-control-perl-1.02/debian/source/format libapp-control-perl-1.02/debian/source/format --- libapp-control-perl-1.02/debian/source/format 1970-01-01 00:00:00.000000000 +0000 +++ libapp-control-perl-1.02/debian/source/format 2015-12-05 19:49:55.000000000 +0000 @@ -0,0 +1 @@ +3.0 (quilt) diff -Nru libapp-control-perl-1.02/debian/watch libapp-control-perl-1.02/debian/watch --- libapp-control-perl-1.02/debian/watch 2015-12-06 06:28:24.000000000 +0000 +++ libapp-control-perl-1.02/debian/watch 2014-04-11 20:14:12.000000000 +0000 @@ -1,3 +1,3 @@ # format version number, currently 3; this line is compulsory! version=3 -http://search.cpan.org/dist/App-Control/ .*/App-Control-([[:digit:]].*)\.tar\.gz +https://metacpan.org/release/App-Control .*/App-Control-([[:digit:]].*)\.tar\.gz