[asc-music] 01/22: asc-music (1.3-1) unstable; urgency=low
Markus Koschany
apo-guest at moszumanska.debian.org
Mon Dec 7 21:03:22 UTC 2015
This is an automated email from the git hooks/post-receive script.
apo-guest pushed a commit to branch master
in repository asc-music.
commit ff73699f902c971274de4d6ec63f70ee42270525
Author: Sam Hocevar <sho at debian.org>
Date: Thu Jun 15 16:25:21 2006 +0000
asc-music (1.3-1) unstable; urgency=low
* Adopted package and moved it to the Debian Games Team repository.
* Set Bartosz Fenski, Alexander Schmehl and myself as uploaders.
* Switched original tarball to non-native.
* debian/control:
+ Set policy to 3.7.2.
+ Put debhelper in the Build-Depends rule instead of Build-Depends-Indep
because we call it in our clean rule.
* debian/install:
+ Added a final newline.
---
debian/changelog | 33 +++++++++++++++++++++++++++++++++
debian/control | 19 +++++++++++++++++++
debian/copyright | 29 +++++++++++++++++++++++++++++
debian/install | 1 +
debian/rules | 45 +++++++++++++++++++++++++++++++++++++++++++++
5 files changed, 127 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..ed0e4d8
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,33 @@
+asc-music (1.3-1) unstable; urgency=low
+
+ * Adopted package and moved it to the Debian Games Team repository.
+ * Set Bartosz Fenski, Alexander Schmehl and myself as uploaders.
+ * Switched original tarball to non-native.
+
+ * debian/control:
+ + Set policy to 3.7.2.
+ + Put debhelper in the Build-Depends rule instead of Build-Depends-Indep
+ because we call it in our clean rule.
+ * debian/install:
+ + Added a final newline.
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org> Thu, 15 Jun 2006 18:07:21 +0200
+
+asc-music (1.2) unstable; urgency=low
+
+ * Orphanage upload.
+ * Bumped Standards-Version to 3.6.2 (no changes needed).
+
+ -- Bartosz Fenski <fenio at debian.org> Fri, 17 Mar 2006 17:05:58 +0100
+
+asc-music (1.1) unstable; urgency=low
+
+ * s/fenio at o2.pl/fenio at debian.org/ ;)
+
+ -- Bartosz Fenski <fenio at debian.org> Sat, 1 Jan 2005 22:02:35 +0200
+
+asc-music (1.0) unstable; urgency=low
+
+ * Initial release (closes: #263007)
+
+ -- Bartosz Fenski <fenio at o2.pl> Mon, 1 Aug 2004 18:22:34 +0200
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..4ef3067
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,19 @@
+Source: asc-music
+Section: games
+Priority: optional
+Maintainer: Debian Games Team <pkg-games-devel at lists.alioth.debian.org>
+Uploaders: Sam Hocevar (Debian packages) <sam+deb at zoy.org>, Bartosz Fenski <fenio at debian.org>, Alexander Schmehl <tolimar at debian.org>
+Build-Depends: debhelper (>= 4.0.0)
+Standards-Version: 3.7.2
+
+Package: asc-music
+Architecture: all
+Depends: asc
+Enhances: asc
+Description: music pack for ASC
+ This is a music pack for the Advanced Strategic Command game.
+ If ASC detects the presence of these tracks it plays them during game.
+ .
+ Composed by Michael Kievernagel.
+ .
+ Homepage: http://www.asc-hq.de/
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..104d588
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,29 @@
+This package was debianized by Bartosz Fenski <fenio at debian.org> on
+Mon, 1 Aug 2004 19:02:50 +0200.
+
+It was downloaded from http://www.asc-hq.de/
+
+The package consists of three mp3 files which aren't distributed with
+the game but are available on the upstream web page.
+
+These files are:
+http://www.asc-hq.org/frontiers.mp3
+http://www.asc-hq.org/time_to_strike.mp3
+http://www.asc-hq.org/machine_wars.mp3
+
+Everything else is just Debian packaging infrastructure.
+
+Copyright:
+
+Copyright 2002 Michael Kievernagel
+
+License:
+
+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 the
+Free Software Foundation; either version 2, or (at your option) any
+later version.
+
+On Debian systems, the complete text of the GNU General Public License
+can be found in the file `/usr/share/common-licenses/GPL'.
+
diff --git a/debian/install b/debian/install
new file mode 100644
index 0000000..e410940
--- /dev/null
+++ b/debian/install
@@ -0,0 +1 @@
+*.mp3 /usr/share/games/asc/music
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..6606700
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,45 @@
+#!/usr/bin/make -f
+# rules file for asc-music (Aug 2004)
+
+#export DH_VERBOSE=1
+
+export DH_COMPAT=4
+
+build: build-stamp
+build-stamp:
+ dh_testdir
+ dh_clean
+ touch build-stamp
+
+clean:
+ dh_testdir
+ dh_testroot
+ -rm -f build-stamp install-stamp
+ dh_clean
+
+install: install-stamp
+install-stamp: build-stamp
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+ dh_install
+ touch install-stamp
+
+binary-indep: build install
+ dh_testdir -i
+ dh_testroot -i
+ dh_installdocs -i
+ dh_installchangelogs -i
+ dh_compress -i
+ dh_fixperms -i
+ dh_installdeb -i
+ dh_shlibdeps -i
+ dh_gencontrol -i
+ dh_md5sums -i
+ dh_builddeb -i
+
+binary-arch: build install
+
+binary: binary-indep binary-arch
+.PHONY: binary clean binary-indep binary-arch binary install
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/asc-music.git
More information about the Pkg-games-commits
mailing list