diff -Nru autoproject-0.20/debian/changelog autoproject-0.20/debian/changelog --- autoproject-0.20/debian/changelog 2016-11-05 18:39:46.000000000 +0000 +++ autoproject-0.20/debian/changelog 2016-12-27 17:44:05.000000000 +0000 @@ -1,3 +1,19 @@ +autoproject (0.20-10) unstable; urgency=medium + + * QA upload. + * Bumped DH level to 10. + * debian/control: + - Bumped Standards-Version to 3.9.8. + - Fixed the Vcs-* fields. + - Removed the unnecessary field 'Build-Depends-Indep'. + * debian/copyright: updated the packaging copyright data. + * debian/patches/: + - fix-manpage: renamed to 10_fix-manpage.patch + - 20_modernize-AC_INIT.patch: added to update AC_INIT macro in + configure.in file. + + -- Joao Eriberto Mota Filho Tue, 27 Dec 2016 15:44:05 -0200 + autoproject (0.20-9) unstable; urgency=medium * QA upload diff -Nru autoproject-0.20/debian/compat autoproject-0.20/debian/compat --- autoproject-0.20/debian/compat 2016-11-05 18:39:46.000000000 +0000 +++ autoproject-0.20/debian/compat 2016-12-27 17:44:05.000000000 +0000 @@ -1 +1 @@ -9 +10 diff -Nru autoproject-0.20/debian/control autoproject-0.20/debian/control --- autoproject-0.20/debian/control 2016-11-05 18:39:46.000000000 +0000 +++ autoproject-0.20/debian/control 2016-12-27 17:44:05.000000000 +0000 @@ -2,12 +2,11 @@ Section: devel Priority: optional Maintainer: Debian QA Group -Build-Depends: debhelper (>= 9), dh-autoreconf -Build-Depends-Indep: autoconf, automake | automaken -Standards-Version: 3.9.6 +Build-Depends: debhelper (>= 10), dh-autoreconf +Standards-Version: 3.9.8 Homepage: http://jrv.oddones.org -Vcs-Git: https://anonscm.debian.org/collab-maint/autoproject.git -Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/autoproject.git +Vcs-Git: https://anonscm.debian.org/git/collab-maint/autoproject.git +Vcs-Browser: https://anonscm.debian.org/git/collab-maint/autoproject.git Package: autoproject Architecture: all diff -Nru autoproject-0.20/debian/copyright autoproject-0.20/debian/copyright --- autoproject-0.20/debian/copyright 2016-11-05 18:39:46.000000000 +0000 +++ autoproject-0.20/debian/copyright 2016-12-27 17:44:05.000000000 +0000 @@ -10,7 +10,8 @@ Files: debian/* Copyright: 1999-2007 James R. Van Zandt 2014 Emanuele Rocca - 2015 Joao Eriberto Mota Filho + 2015-2016 Joao Eriberto Mota Filho + 2016 Ralf Treinen License: GPL-1+ and exception License: GPL-1+ and exception diff -Nru autoproject-0.20/debian/patches/10_fix-manpage.patch autoproject-0.20/debian/patches/10_fix-manpage.patch --- autoproject-0.20/debian/patches/10_fix-manpage.patch 1970-01-01 00:00:00.000000000 +0000 +++ autoproject-0.20/debian/patches/10_fix-manpage.patch 2016-11-05 18:39:46.000000000 +0000 @@ -0,0 +1,38 @@ +Description: fix some issues in manpage. +Author: ? +Last-Update: ? +--- autoproject-0.20.orig/autoproject.1 ++++ autoproject-0.20/autoproject.1 +@@ -127,7 +127,7 @@ Show summary of options. + Show version of program. + .SH CUSTOMIZATION + The \fBautoproject\fP package includes a set of skeleton files which +-are usually installed under \fI/usr/local/share/autoproject\fP. It ++are usually installed under \fI/usr/share/autoproject\fP. It + selects which subdirectories to use based on the interface type, + primary language, and parser generator chosen by the user. + .PP +@@ -142,7 +142,7 @@ a given name. + .PP + For example, if a user wants to add a paragraph to every README file + that points to his web page, he could copy +-\fI/usr/local/share/autoproject/all/all/all/README\fP to ++\fI/usr/share/autoproject/all/all/all/README\fP to + \fI~/.autoproject/all/all/all/README\fP and make that change. + Of course, any file overridden in this way will not inherit updates + when the next version of \fBautoproject\fP is installed. +@@ -190,7 +190,7 @@ contributing it to \fBautoproject\fP. + .br + \fI/etc/autoproject\fP + .br +-\fI/usr/local/share/autoproject\fP ++\fI/usr/share/autoproject\fP + .br + Directory trees containing skeleton files. + .SH "SEE ALSO" +@@ -201,4 +201,4 @@ Directory trees containing skeleton file + `Parsing Program Options with Argp' in `The GNU C Library Reference + Manual' (type `\fBinfo libc argp\fP') + .SH AUTHOR +-James R. Van Zandt . ++James R. Van Zandt . diff -Nru autoproject-0.20/debian/patches/20_modernize-AC_INIT.patch autoproject-0.20/debian/patches/20_modernize-AC_INIT.patch --- autoproject-0.20/debian/patches/20_modernize-AC_INIT.patch 1970-01-01 00:00:00.000000000 +0000 +++ autoproject-0.20/debian/patches/20_modernize-AC_INIT.patch 2016-12-27 17:44:05.000000000 +0000 @@ -0,0 +1,20 @@ +Description: modernize AC_INIT macro. +Author: Joao Eriberto Mota Filho +Last-Update: 2016-12-27 +Index: autoproject-0.20/configure.in +=================================================================== +--- autoproject-0.20.orig/configure.in ++++ autoproject-0.20/configure.in +@@ -1,9 +1,10 @@ + dnl Process this file with autoconf to produce a configure script. + +-AC_INIT(autoproject.in) ++AC_INIT([autoproject], [0.20]) ++AC_CONFIG_SRCDIR([autoproject.in]) + + dnl Every other copy of the package version number gets its value from here +-AM_INIT_AUTOMAKE(autoproject, 0.20) ++AM_INIT_AUTOMAKE + + AC_SUBST(VERSION) + diff -Nru autoproject-0.20/debian/patches/fix-manpage autoproject-0.20/debian/patches/fix-manpage --- autoproject-0.20/debian/patches/fix-manpage 2016-11-05 18:39:46.000000000 +0000 +++ autoproject-0.20/debian/patches/fix-manpage 1970-01-01 00:00:00.000000000 +0000 @@ -1,38 +0,0 @@ -Description: fix some issues in manpage. -Author: ? -Last-Update: ? ---- autoproject-0.20.orig/autoproject.1 -+++ autoproject-0.20/autoproject.1 -@@ -127,7 +127,7 @@ Show summary of options. - Show version of program. - .SH CUSTOMIZATION - The \fBautoproject\fP package includes a set of skeleton files which --are usually installed under \fI/usr/local/share/autoproject\fP. It -+are usually installed under \fI/usr/share/autoproject\fP. It - selects which subdirectories to use based on the interface type, - primary language, and parser generator chosen by the user. - .PP -@@ -142,7 +142,7 @@ a given name. - .PP - For example, if a user wants to add a paragraph to every README file - that points to his web page, he could copy --\fI/usr/local/share/autoproject/all/all/all/README\fP to -+\fI/usr/share/autoproject/all/all/all/README\fP to - \fI~/.autoproject/all/all/all/README\fP and make that change. - Of course, any file overridden in this way will not inherit updates - when the next version of \fBautoproject\fP is installed. -@@ -190,7 +190,7 @@ contributing it to \fBautoproject\fP. - .br - \fI/etc/autoproject\fP - .br --\fI/usr/local/share/autoproject\fP -+\fI/usr/share/autoproject\fP - .br - Directory trees containing skeleton files. - .SH "SEE ALSO" -@@ -201,4 +201,4 @@ Directory trees containing skeleton file - `Parsing Program Options with Argp' in `The GNU C Library Reference - Manual' (type `\fBinfo libc argp\fP') - .SH AUTHOR --James R. Van Zandt . -+James R. Van Zandt . diff -Nru autoproject-0.20/debian/patches/series autoproject-0.20/debian/patches/series --- autoproject-0.20/debian/patches/series 2016-11-05 18:39:46.000000000 +0000 +++ autoproject-0.20/debian/patches/series 2016-12-27 17:44:05.000000000 +0000 @@ -1 +1,2 @@ -fix-manpage +10_fix-manpage.patch +20_modernize-AC_INIT.patch diff -Nru autoproject-0.20/debian/rules autoproject-0.20/debian/rules --- autoproject-0.20/debian/rules 2016-11-05 18:39:46.000000000 +0000 +++ autoproject-0.20/debian/rules 2016-12-27 17:44:05.000000000 +0000 @@ -2,7 +2,7 @@ #export DH_VERBOSE=1 %: - dh $@ --with autoreconf + dh $@ # Prevent errors: override_dh_auto_test: