diff -Nru xblast-tnt-levels-20050106/debian/changelog xblast-tnt-levels-20050106/debian/changelog --- xblast-tnt-levels-20050106/debian/changelog 2016-01-09 17:45:15.000000000 +0000 +++ xblast-tnt-levels-20050106/debian/changelog 2016-01-08 13:37:54.000000000 +0000 @@ -1,3 +1,15 @@ +xblast-tnt-levels (20050106-3) unstable; urgency=medium + + * Update my name/email address. + * Switch to source format 3.0 (quilt). + * Bump Standards-Version to 3.9.6. + * Change debian/rules to dh style. + * Add Homepage URL. + * Fix debian/watch URL. + * Add copyright statement to debian/copyright. + + -- Rhonda D'Vine Fri, 08 Jan 2016 14:37:53 +0100 + xblast-tnt-levels (20050106-2) unstable; urgency=low * The "once every two releases" release. diff -Nru xblast-tnt-levels-20050106/debian/compat xblast-tnt-levels-20050106/debian/compat --- xblast-tnt-levels-20050106/debian/compat 1970-01-01 00:00:00.000000000 +0000 +++ xblast-tnt-levels-20050106/debian/compat 2016-01-08 13:31:33.000000000 +0000 @@ -0,0 +1 @@ +9 diff -Nru xblast-tnt-levels-20050106/debian/control xblast-tnt-levels-20050106/debian/control --- xblast-tnt-levels-20050106/debian/control 2016-01-09 17:45:15.000000000 +0000 +++ xblast-tnt-levels-20050106/debian/control 2016-01-08 13:35:18.000000000 +0000 @@ -1,12 +1,15 @@ Source: xblast-tnt-levels Section: games Priority: optional -Maintainer: Gerfried Fuchs -Standards-Version: 3.7.2 +Maintainer: Rhonda D'Vine +Standards-Version: 3.9.6 +Build-Depends: debhelper (>= 9~) +Homepage: http://xblast.sourceforge.net/ Package: xblast-tnt-levels Enhances: xblast-tnt Architecture: all +Depends: ${misc:Depends} Description: level files for xblast-tnt XBlast is a multi-player arcade game inspired by the video/computer game Bomberman (Dynablaster). This package contains the level files which you diff -Nru xblast-tnt-levels-20050106/debian/copyright xblast-tnt-levels-20050106/debian/copyright --- xblast-tnt-levels-20050106/debian/copyright 2016-01-09 17:45:15.000000000 +0000 +++ xblast-tnt-levels-20050106/debian/copyright 2016-01-08 13:37:43.000000000 +0000 @@ -1,4 +1,4 @@ -This package was initially debianized by Gerfried Fuchs +This package was debianized by Rhonda D'Vine on on Fri, 20 Aug 2004 18:40:32 +0200. It was downloaded from @@ -7,13 +7,15 @@ ================= Current maintainers: Fernando Benites - Gerfried Fuchs + Rhonda D'Vine Original author: Oliver Vogel Copyright: ========== + Copyright 2004 Oliver Vogel & others + This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 dated June, 1991. diff -Nru xblast-tnt-levels-20050106/debian/install xblast-tnt-levels-20050106/debian/install --- xblast-tnt-levels-20050106/debian/install 1970-01-01 00:00:00.000000000 +0000 +++ xblast-tnt-levels-20050106/debian/install 2016-01-08 13:32:26.000000000 +0000 @@ -0,0 +1 @@ +*.xal usr/share/games/xblast-tnt/level diff -Nru xblast-tnt-levels-20050106/debian/rules xblast-tnt-levels-20050106/debian/rules --- xblast-tnt-levels-20050106/debian/rules 2016-01-09 17:45:15.000000000 +0000 +++ xblast-tnt-levels-20050106/debian/rules 2016-01-08 13:34:27.000000000 +0000 @@ -1,72 +1,10 @@ #!/usr/bin/make -f -# debian/rules for xblast-tnt-levels -# (c) 2005-2007 by Gerfried Fuchs -# Licenced the same way as xblast-tnt-levels itself -PKG = xblast-tnt-levels -TMP = $(CURDIR)/debian/$(PKG) +%: + dh $@ -INSTALL = install -INSTALL_FILE = $(INSTALL) -p -oroot -groot -m644 -INSTALL_PROGRAM = $(INSTALL) -p -oroot -groot -m755 -INSTALL_SCRIPT = $(INSTALL) -p -oroot -groot -m755 -INSTALL_DIR = $(INSTALL) -p -d -oroot -groot -m755 - -clean: - $(checkdir) - $(checkroot) - -rm -rf $(TMP) debian/files install-stamp - - -build: - # nothing to build - - -install: install-stamp -install-stamp: - $(checkdir) - $(checkroot) - -rm -rf $(TMP) - $(INSTALL_DIR) $(TMP)/usr/share - cd $(TMP)/usr/share && $(INSTALL_DIR) doc/$(PKG) \ - games/xblast-tnt/level - $(INSTALL_FILE) *.xal \ - $(TMP)/usr/share/games/xblast-tnt/level - cd $(TMP)/usr/share/games/xblast-tnt/level && \ +override_dh_install: + dh_install + cd debian/xblast-tnt-levels/usr/share/games/xblast-tnt/level && \ mv -i reconstruct*2.xal reconstruction2.xal - touch install-stamp - - -# Build architecture-independent files here. -binary-indep: install - $(checkdir) - $(checkroot) - $(INSTALL_DIR) $(TMP)/DEBIAN $(TMP)/usr/share/doc/$(PKG) - $(INSTALL_FILE) debian/changelog \ - $(TMP)/usr/share/doc/$(PKG)/changelog.Debian - $(INSTALL_FILE) debian/copyright \ - $(TMP)/usr/share/doc/$(PKG) - gzip -9 $(TMP)/usr/share/doc/$(PKG)/changelog.Debian - dpkg-gencontrol -isp -p$(PKG) -P$(TMP) - cd $(TMP) && find * -type f ! -regex '^DEBIAN/.*' -print0 | \ - xargs -r0 md5sum > DEBIAN/md5sums - dpkg --build $(TMP) .. - - -# Build architecture-dependent files here. -binary-arch: - # We have nothing to do here - - -binary: binary-indep - -define checkdir - test -f debian/rules -endef - -define checkroot - test root = "`whoami`" -endef - -.PHONY: clean build install binary-indep binary-arch binary diff -Nru xblast-tnt-levels-20050106/debian/source/format xblast-tnt-levels-20050106/debian/source/format --- xblast-tnt-levels-20050106/debian/source/format 1970-01-01 00:00:00.000000000 +0000 +++ xblast-tnt-levels-20050106/debian/source/format 2016-01-08 13:26:46.000000000 +0000 @@ -0,0 +1 @@ +3.0 (quilt) diff -Nru xblast-tnt-levels-20050106/debian/watch xblast-tnt-levels-20050106/debian/watch --- xblast-tnt-levels-20050106/debian/watch 2016-01-09 17:45:15.000000000 +0000 +++ xblast-tnt-levels-20050106/debian/watch 2016-01-08 13:37:31.000000000 +0000 @@ -1,4 +1,4 @@ version=3 opts="uversionmangle=s/-//g" \ -http://heanet.dl.sourceforge.net/sourceforge/xblast/ levels-([\d-]+)\.tar\.gz debian uupdate -# Site/Directory Pattern Version Script +http://sf.net/xblast/levels-([\d-]+)\.tar\.gz debian uupdate +# Site/Directory/Pattern Version Script