--- gbsplay-0.0.93.orig/debian/changelog +++ gbsplay-0.0.93/debian/changelog @@ -0,0 +1,61 @@ +gbsplay (0.0.93-1) unstable; urgency=medium + + * New upstream release (Closes: #794618). + * Update debian/copyright: + - List original copyright instead of boilerplate GPL-2 licence text. + - Link to /usr/share/common-licenses/GPL-1 as unversioned GPL means + "choose any" (v1 or later). This fixes the lintian warning + copyright-refers-to-versionless-license-file + * Update debian/rules to fix lintian warnings: + - hardening-no-relro + + -- Christian Garbs Sun, 30 Aug 2015 20:33:29 +0200 + +gbsplay (0.0.92-1) unstable; urgency=medium + + * New upstream release (Closes: #715944, #777862). + * Ship contrib/gbs2ogg.sh again, license is now provided. + * Update debian/rules to fix lintian warnings: + - debian-rules-missing-recommended-target + - dh-clean-k-is-deprecated + - description-synopsis-starts-with-article + - ancient-standards-version (no changes) + * Update Debian compat version to 9. + * Add debian/watch. + + -- Christian Garbs Sun, 02 Aug 2015 14:55:37 +0200 + +gbsplay (0.0.91-1) unstable; urgency=low + + * New upstream version. + + -- Gürkan Sengün Tue, 19 Aug 2008 17:30:19 +0200 + +gbsplay (0.0.9+dfsg1-1) unstable; urgency=low + + * New upstream version. + * Updated my email address. + * Updated standards version. + + -- Gürkan Sengün Tue, 08 Jul 2008 12:55:56 +0200 + +gbsplay (0.0.8+dfsg1-3) unstable; urgency=low + + * Remove build-depends on xmms-dev and don't build the xmms + plugin anymore. (Closes: #456741) + * Bump standards version. + + -- Gürkan Sengün Sat, 12 Jan 2008 12:57:40 +0100 + +gbsplay (0.0.8+dfsg1-2) unstable; urgency=low + + * Turned off buggy endian checks. (Closes: #418726) + + -- Gürkan Sengün Wed, 09 May 2007 10:27:07 +0200 + +gbsplay (0.0.8+dfsg1-1) unstable; urgency=low + + * Initial release. (Closes: #411445) + * Rebuilt the tarball (non-free contrib script). + + -- Gürkan Sengün Mon, 19 Feb 2007 08:49:34 +0100 --- gbsplay-0.0.93.orig/debian/compat +++ gbsplay-0.0.93/debian/compat @@ -0,0 +1 @@ +9 --- gbsplay-0.0.93.orig/debian/control +++ gbsplay-0.0.93/debian/control @@ -0,0 +1,18 @@ +Source: gbsplay +Section: sound +Priority: optional +Maintainer: Gürkan Sengün +Uploaders: Christian Garbs +Standards-Version: 3.9.6 +Build-Depends: debhelper (>= 9), gettext, libaudio-dev, libpulse-dev, libasound2-dev +Homepage: https://github.com/mmitch/gbsplay + +Package: gbsplay +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Recommends: vorbis-tools +Description: Gameboy sound player + This program emulates the sound hardware of the Nintendo Gameboy. It + is able to play the sounds from a Gameboy module dump (.GBS format). + Also included is the gbsinfo tool which displays information about + a .GBS file. --- gbsplay-0.0.93.orig/debian/copyright +++ gbsplay-0.0.93/debian/copyright @@ -0,0 +1,33 @@ +This package was debianized by Christian Garbs on +Sat, 23 Aug 2003 15:40:42 +0200 +It was later prepared for Debian by Gürkan Sengün + +It was downloaded from http://gbsplay.berlios.de + +Upstream Authors: Tobias Diedrich + Christian Garbs + Maximilian Rehkopf + +Copyright: + + gbsplay - A Gameboy sound player + + (C) 2003-2006 by Tobias Diedrich + Christian Garbs + Maximilian Rehkopf + + Source Code licensed under GNU GPL. Individual copyright notices can be + found in the file headers. + +On Debian GNU/Linux systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL-1'. + +Additionally, the following files are included as Public Domain: + +File: examples/nightmode.gbs +Copyright: Laxity of Dual Crew Shining (Nightmode Demo) +License: Public Domain +Homepage: http://www.dc-s.com/ + +The Debian packaging is (C) 2007, Gürkan Sengün and +is licensed under the GPL, see `/usr/share/common-licenses/GPL-1'. --- gbsplay-0.0.93.orig/debian/rules +++ gbsplay-0.0.93/debian/rules @@ -0,0 +1,61 @@ +#!/usr/bin/make -f +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +DPKG_EXPORT_BUILDFLAGS = 1 +include /usr/share/dpkg/buildflags.mk + +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) + +config.status: configure + dh_testdir + ./configure --host=$(DEB_HOST_GNU_TYPE) --prefix=/usr --bindir=\$${prefix}/bin --docdir=\$${prefix}/share/doc/gbsplay --mandir=\$${prefix}/share/man --enable-nas --enable-midi --enable-devdsp --enable-stdout --enable-alsa --enable-pulse --without-xmmsplugin CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" + +build: build-arch build-indep + +build-arch: build-stamp + +build-indep: build-stamp + +build-stamp: config.status + dh_testdir + $(MAKE) V=1 + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + [ ! -f Makefile ] || $(MAKE) distclean + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs + $(MAKE) prefix=$(CURDIR)/debian/gbsplay/usr contribdir=$(CURDIR)/debian/gbsplay/usr/share/doc/gbsplay/contrib exampledir=$(CURDIR)/debian/gbsplay/usr/share/doc/gbsplay/examples localedir=$(CURDIR)/debian/gbsplay/usr/share/locale install + rm -f $(CURDIR)/debian/gbsplay/usr/share/doc/gbsplay/COPYRIGHT $(CURDIR)/debian/gbsplay/usr/share/doc/gbsplay/README + mv $(CURDIR)/debian/gbsplay/usr/share/doc/gbsplay/HISTORY $(CURDIR)/debian/gbsplay/usr/share/doc/gbsplay/changelog + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- gbsplay-0.0.93.orig/debian/watch +++ gbsplay-0.0.93/debian/watch @@ -0,0 +1,3 @@ +version=3 +opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/gbsplay-$1\.tar\.gz/ \ + https://github.com/mmitch/gbsplay/tags .*/(\d\S*)\.tar\.gz