diff -Nru dpkg-www-2.59/debian/changelog dpkg-www-2.60/debian/changelog --- dpkg-www-2.59/debian/changelog 2019-02-27 04:53:28.000000000 +0000 +++ dpkg-www-2.60/debian/changelog 2019-10-13 21:41:18.000000000 +0000 @@ -1,3 +1,19 @@ +dpkg-www (2.60) unstable; urgency=medium + + * Bump Standards-Version to 4.4.1 (no changes needed). + * Switch from debian/compat to debhelper-compat in Build-Depends. + * Switch to debhelper compatibility level 12. + * Depend on libcgi-pm-perl, for the CGI module which got removed from + perl core in 5.21.0. Thanks to Michael Gindonis . + Closes: #942278 + * Remove obsolete conffile removal and renames. + * Uppercase apache2 Require directives. + * Lowercase web in README.Debian. + * Remove copyright output in CGI HTML footer, as this information can get + out of sync and duplicates what is already in the source header. + + -- Guillem Jover Sun, 13 Oct 2019 23:41:18 +0200 + dpkg-www (2.59) unstable; urgency=medium * Add support for golang section. diff -Nru dpkg-www-2.59/debian/compat dpkg-www-2.60/debian/compat --- dpkg-www-2.59/debian/compat 2019-02-27 04:53:28.000000000 +0000 +++ dpkg-www-2.60/debian/compat 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -11 diff -Nru dpkg-www-2.59/debian/control dpkg-www-2.60/debian/control --- dpkg-www-2.59/debian/control 2019-02-27 04:53:28.000000000 +0000 +++ dpkg-www-2.60/debian/control 2019-10-13 21:41:18.000000000 +0000 @@ -7,9 +7,9 @@ Vcs-Browser: https://git.dpkg.org/git/dpkg/dpkg-www.git Rules-Requires-Root: no Build-Depends: - debhelper (>= 11), + debhelper-compat (= 12), dh-apache2, -Standards-Version: 4.3.0 +Standards-Version: 4.4.1 Package: dpkg-www Architecture: all @@ -18,6 +18,7 @@ dpkg (>= 1.19.3), apt, perl, + libcgi-pm-perl, Recommends: ${misc:Recommends}, dwww, diff -Nru dpkg-www-2.59/debian/copyright dpkg-www-2.60/debian/copyright --- dpkg-www-2.59/debian/copyright 2019-02-27 04:53:28.000000000 +0000 +++ dpkg-www-2.60/debian/copyright 2019-10-13 21:41:18.000000000 +0000 @@ -6,6 +6,7 @@ 1999-2006 Massimo Dal Zotto 2008 Raphael Geissert 2015 Jean-Michel Nirgal Vourgère + 2017, 2019 Guillem Jover License: GPL-2+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff -Nru dpkg-www-2.59/debian/dpkg-www.conf dpkg-www-2.60/debian/dpkg-www.conf --- dpkg-www-2.59/debian/dpkg-www.conf 2019-02-27 04:53:28.000000000 +0000 +++ dpkg-www-2.60/debian/dpkg-www.conf 2019-10-13 21:41:18.000000000 +0000 @@ -2,8 +2,8 @@ # Disable execution of dpkg from remote hosts - require local - # require ip 192.168.0 + Require local + # Require ip 192.168.0 # End dpkg-www config diff -Nru dpkg-www-2.59/debian/dpkg-www.maintscript dpkg-www-2.60/debian/dpkg-www.maintscript --- dpkg-www-2.59/debian/dpkg-www.maintscript 2019-02-27 04:53:28.000000000 +0000 +++ dpkg-www-2.60/debian/dpkg-www.maintscript 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -rm_conffile /etc/apache/conf.d/dpkg-www 2.55~ -mv_conffile /etc/apache2/conf.d/dpkg-www /etc/apache2/conf-available/dpkg-www.conf 2.55~ diff -Nru dpkg-www-2.59/debian/README.Debian dpkg-www-2.60/debian/README.Debian --- dpkg-www-2.59/debian/README.Debian 2019-02-27 04:53:28.000000000 +0000 +++ dpkg-www-2.60/debian/README.Debian 2019-10-13 21:41:18.000000000 +0000 @@ -3,7 +3,7 @@ Web based Debian package browser. -With this CGI program you can browse Debian packages using a WEB browser. +With this CGI program you can browse Debian packages using a web browser. You can easily follow package dependencies and browse package documentation with a mouse click. @@ -31,7 +31,7 @@ different httpd server you should make the appropriate changes in the proper httpd config file. -Enabling the WEB installation feature could potentially introduce +Enabling the web installation feature could potentially introduce security holes in your system and your network. Use at yout own risk! -- diff -Nru dpkg-www-2.59/src/dpkg dpkg-www-2.60/src/dpkg --- dpkg-www-2.59/src/dpkg 2019-02-27 04:53:28.000000000 +0000 +++ dpkg-www-2.60/src/dpkg 2019-10-13 21:41:18.000000000 +0000 @@ -3,6 +3,7 @@ # CGI interface to dpkg. Show information about debian packages. # # Copyright © 1999-2006 Massimo Dal Zotto +# Copyright © 2017, 2019 Guillem Jover # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -17,7 +18,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -PROG_VERSION=2.59 +PROG_VERSION=2.60 SELF=${0##*/}; export SELF HELP_PAGE="/usr/share/man/man8/dpkg-www.8.gz" COLUMNS=256; export COLUMNS @@ -1329,8 +1330,7 @@
Generated by - dpkg-www $PROG_VERSION - Copyright (C) 1999-2006 - Massimo Dal Zotto <dz@debian.org> + dpkg-www $PROG_VERSION

diff -Nru dpkg-www-2.59/src/dpkg-www dpkg-www-2.60/src/dpkg-www --- dpkg-www-2.59/src/dpkg-www 2019-02-27 04:53:28.000000000 +0000 +++ dpkg-www-2.60/src/dpkg-www 2019-10-13 21:41:18.000000000 +0000 @@ -3,6 +3,7 @@ # Command-line interface to dpkg-www. # # Copyright © 1999-2006 Massimo Dal Zotto +# Copyright © 2019 Guillem Jover # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff -Nru dpkg-www-2.59/src/dpkg-www.1 dpkg-www-2.60/src/dpkg-www.1 --- dpkg-www-2.59/src/dpkg-www.1 2019-02-27 04:53:28.000000000 +0000 +++ dpkg-www-2.60/src/dpkg-www.1 2019-10-13 21:41:18.000000000 +0000 @@ -1,4 +1,5 @@ .\" Copyright © 2002, 2005 Massimo Dal Zotto +.\" Copyright © 2017, 2019 Guillem Jover .\" .\" This is free software; you can redistribute it and/or modify .\" it under the terms of the GNU General Public License as published by diff -Nru dpkg-www-2.59/src/dpkg-www.8 dpkg-www-2.60/src/dpkg-www.8 --- dpkg-www-2.59/src/dpkg-www.8 2019-02-27 04:53:28.000000000 +0000 +++ dpkg-www-2.60/src/dpkg-www.8 2019-10-13 21:41:18.000000000 +0000 @@ -1,4 +1,5 @@ .\" Copyright © 2002, 2005 Massimo Dal Zotto +.\" Copyright © 2017, 2019 Guillem Jover .\" .\" This is free software; you can redistribute it and/or modify .\" it under the terms of the GNU General Public License as published by