--- gav-themes-0.7.3.orig/debian/changelog +++ gav-themes-0.7.3/debian/changelog @@ -0,0 +1,39 @@ +gav-themes (0.7.3-2.3) unstable; urgency=medium + + * Non maintainer upload by the Reproducible Builds team. + * No source change upload to rebuild on buildd with .buildinfo files. + + -- Holger Levsen Mon, 04 Jan 2021 15:08:50 +0100 + +gav-themes (0.7.3-2.2) unstable; urgency=medium + + * Non-maintainer upload. + * Fix another FTBFS, patch by Santiago Vila. Closes: #849260 + + -- Christoph Biedl Sun, 25 Dec 2016 13:50:40 +0100 + +gav-themes (0.7.3-2.1) unstable; urgency=medium + + * Non-maintainer upload + * Declare debhelper compat level, bump to 10. Closes: #817333, #817470 + + -- Christoph Biedl Mon, 19 Dec 2016 00:07:09 +0100 + +gav-themes (0.7.3-2) unstable; urgency=low + + * Change description (Closes: #209504) + + -- Ari Pollak Tue, 9 Sep 2003 16:59:37 -0400 + +gav-themes (0.7.3-1) unstable; urgency=low + + * New upstream release + + -- Ari Pollak Tue, 19 Aug 2003 10:31:16 -0400 + +gav-themes (0.7.2-1) unstable; urgency=low + + * Initial Release. (Closes: #182491) + + -- Ari Pollak Wed, 26 Feb 2003 12:41:32 -0500 + --- gav-themes-0.7.3.orig/debian/compat +++ gav-themes-0.7.3/debian/compat @@ -0,0 +1 @@ +10 --- gav-themes-0.7.3.orig/debian/control +++ gav-themes-0.7.3/debian/control @@ -0,0 +1,13 @@ +Source: gav-themes +Section: games +Priority: extra +Maintainer: Ari Pollak +Build-Depends-Indep: debhelper (>> 10~) +Standards-Version: 3.6.0 + +Package: gav-themes +Architecture: all +Depends: ${shlibs:Depends} +Recommends: gav +Description: Extra themes for GPL Arcade Volleyball + This package includes many additional themes for GPL Arcade Volleyball. --- gav-themes-0.7.3.orig/debian/copyright +++ gav-themes-0.7.3/debian/copyright @@ -0,0 +1,11 @@ +This package was debianized by Ari Pollak on +Wed, 26 Feb 2003 12:41:32 -0500. + +It was downloaded from + +Upstream Authors: Various + +Copyright: + +Licensed under the GPL. +On Debian systems, it is available at: /usr/share/common-licenses/GPL. --- gav-themes-0.7.3.orig/debian/dirs +++ gav-themes-0.7.3/debian/dirs @@ -0,0 +1 @@ +usr/share/games/gav/themes --- gav-themes-0.7.3.orig/debian/gav-themes.install +++ gav-themes-0.7.3/debian/gav-themes.install @@ -0,0 +1,5 @@ +fabeach usr/share/games/gav/themes/ +inverted usr/share/games/gav/themes/ +unnamed usr/share/games/gav/themes/ +yisus usr/share/games/gav/themes/ +yisus2 usr/share/games/gav/themes/ --- gav-themes-0.7.3.orig/debian/rules +++ gav-themes-0.7.3/debian/rules @@ -0,0 +1,96 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# This is the debhelper compatibility version to use. +#export DH_COMPAT=4 + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +configure: configure-stamp +configure-stamp: + dh_testdir + # Add here commands to configure the package. + + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + + # Add here commands to compile the package. + #$(MAKE) + #/usr/bin/docbook-to-man debian/gav-themes.sgml > gav-themes.1 + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + # Add here commands to clean up after the build process. + #-$(MAKE) clean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/gav-themes. + #$(MAKE) install DESTDIR=$(CURDIR)/debian/gav-themes + dh_install + +# Build architecture-dependent files here. +binary-arch: build install +# We have nothing to do by default. + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot +# dh_installdebconf + dh_installdocs + dh_installexamples + dh_installmenu +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_installinit + dh_installcron + dh_installman + dh_installinfo +# dh_undocumented + dh_installchangelogs + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_makeshlibs + dh_installdeb +# dh_perl + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure