From cfa476a07deee094e2b1103f0892cf5daf6a1bf7 Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Sun, 22 Mar 2009 23:18:06 -0700 Subject: [PATCH] * Remove conffiles, since debhelper installs them for us * Fix section of debbugs-perl * Don't bother to create directories * Modify the set of files that debbugs installs * Update copyright information slightly --- debian/changelog | 2 +- debian/conffiles | 0 debian/control | 3 ++- debian/copyright | 12 +++++++----- debian/debbugs-web.conffiles | 7 ------- debian/debbugs.install | 3 ++- debian/dirs | 13 ------------- debian/postinst | 28 ---------------------------- debian/postrm | 7 ------- debian/rules | 2 +- 10 files changed, 13 insertions(+), 64 deletions(-) delete mode 100644 debian/conffiles delete mode 100644 debian/debbugs-web.conffiles delete mode 100644 debian/dirs delete mode 100755 debian/postinst delete mode 100644 debian/postrm diff --git a/debian/changelog b/debian/changelog index 74ff9ae..3eddef1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -debbugs (2.4.2) UNRELEASED; urgency=low +debbugs (2.4.2~exp0) UNRELEASED; urgency=low [ Anthony Towns ] * Add "package" command to service (control@) to limit the bugs that diff --git a/debian/conffiles b/debian/conffiles deleted file mode 100644 index e69de29..0000000 diff --git a/debian/control b/debian/control index ede6ed1..786a0ef 100644 --- a/debian/control +++ b/debian/control @@ -3,7 +3,7 @@ Section: misc Priority: extra Maintainer: Debbugs developers Uploaders: Josip Rodin , Colin Watson , Don Armstrong -Standards-Version: 3.2.1 +Standards-Version: 3.8.1 Build-Depends-Indep: debhelper, libparams-validate-perl, libmailtools-perl, libmime-tools-perl, libio-stringy-perl, libmldbm-perl, liburi-perl, libsoap-lite-perl, libcgi-simple-perl, @@ -34,6 +34,7 @@ Depends: ${perl:Depends}, libmailtools-perl, ed, libmime-tools-perl, libio-stringy-perl, libmldbm-perl, liburi-perl, libsoap-lite-perl, libcgi-simple-perl, libparams-validate-perl, libtext-template-perl, libsafe-hole-perl, libmail-rfc822-address-perl +Section: perl Description: modules used by the active Debian BTS Debian has a bug tracking system which files details of bugs reported by users and developers. Each bug is given a number, and is kept on file until diff --git a/debian/copyright b/debian/copyright index 63a77c9..7ba7507 100644 --- a/debian/copyright +++ b/debian/copyright @@ -29,10 +29,12 @@ 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 program, or one should be available above; if not, write to the -Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA -02111-1307, USA. +You should have received a copy of the GNU General Public License +along with this program. If not, see . On Debian systems, the full text of the GPL can be found in -/usr/share/common-licenses/GPL. +/usr/share/common-licenses/GPL-2. + + +Portions of the bug system copyrighted by Don Armstrong are available +under the terms of the GPL version 2 or later, at your option. \ No newline at end of file diff --git a/debian/debbugs-web.conffiles b/debian/debbugs-web.conffiles deleted file mode 100644 index e3ce09b..0000000 --- a/debian/debbugs-web.conffiles +++ /dev/null @@ -1,7 +0,0 @@ -/etc/debbugs/html/Access.html.in -/etc/debbugs/html/Developer.html.in -/etc/debbugs/html/Reporting.html.in -/etc/debbugs/html/index.html.in -/etc/debbugs/html/server-control.html.in -/etc/debbugs/html/server-refcard.html.in -/etc/debbugs/html/server-request.html.in diff --git a/debian/debbugs.install b/debian/debbugs.install index 3e0bcd8..81d29cb 100644 --- a/debian/debbugs.install +++ b/debian/debbugs.install @@ -2,6 +2,7 @@ usr/lib/debbugs usr/share/man/man8 usr/sbin usr/share/doc/debbugs/examples -var/lib/debbugs +var/lib/debbugs/spool +var/lib/debbugs/indices usr/bin/add_bug_to_estraier usr/share/man/man1/add_bug_* diff --git a/debian/dirs b/debian/dirs deleted file mode 100644 index bfac206..0000000 --- a/debian/dirs +++ /dev/null @@ -1,13 +0,0 @@ -etc/debbugs/html -etc/debbugs/indices -usr/lib/debbugs -usr/sbin -usr/share/doc/debbugs/examples -var/lib/debbugs/indices -var/lib/debbugs/www/cgi -var/lib/debbugs/www/db -var/lib/debbugs/www/txt -var/lib/debbugs/spool/lock -var/lib/debbugs/spool/archive -var/lib/debbugs/spool/incoming -var/lib/debbugs/spool/db-h diff --git a/debian/postinst b/debian/postinst deleted file mode 100755 index 10dddc6..0000000 --- a/debian/postinst +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh -e - -# Temporarily disable the postinst for now -# if [ "$1" = "configure" ]; then -# /usr/sbin/debbugsconfig -# if dpkg --compare-versions "$2" lt 2.4; then -# spool=`perl -e 'require "/etc/debbugs/config"; print $gSpoolDir;'` -# if [ -d "$spool/db" ]; then -# if [ -d "$spool/db-h" ]; then -# echo "Cannot migrate bug database to hashed format, because" >&2 -# echo "$spool/db-h already exists." >&2 -# echo "Rectify the situation and run the following command by hand:" >&2 -# echo " /usr/sbin/debbugs-dbhash \"$spool/db\" \"$spool/db-h\"" >&2 -# else -# echo "Migrating bug database to hashed format." >&2 -# /usr/sbin/debbugs-dbhash "$spool/db" "$spool/db-h" -# echo "You can remove bug logs from $spool/db" >&2 -# echo "after ensuring that the new database works." >&2 -# fi -# fi -# fi -# fi -# -# if [ -f /etc/debbugs/nextnumber ]; then -# rm -f /etc/debbugs/nextnumber -# fi - -#DEBHELPER# diff --git a/debian/postrm b/debian/postrm deleted file mode 100644 index 40d32b9..0000000 --- a/debian/postrm +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh - -if [ "$1" = "purge" ]; then - rm -rf /etc/debbugs /var/lib/debbugs -fi - -#DEBHELPER# diff --git a/debian/rules b/debian/rules index 4c751ff..7d6f7d6 100755 --- a/debian/rules +++ b/debian/rules @@ -45,7 +45,7 @@ binary-indep: build install dh_installdirs $(MAKE) install_mostfiles DESTDIR=$(DEST_DIR) $(MAKE) -f Makefile.perl install PREFIX=$(DEST_DIR)/usr - dh_install --sourcedir=debian/tmp --list-missing + dh_install --sourcedir=debian/tmp --fail-missing dh_installdocs dh_installchangelogs dh_strip -- 2.39.2