Author: ceros-guest Date: 2007-08-12 19:18:16 +0000 (Sun, 12 Aug 2007) New Revision: 3648
Removed: packages/trunk/vegastrike-music/debian/compat packages/trunk/vegastrike-music/debian/vegastrike-music.install Modified: packages/trunk/vegastrike-music/debian/changelog packages/trunk/vegastrike-music/debian/control packages/trunk/vegastrike-music/debian/copyright packages/trunk/vegastrike-music/debian/rules Log: Not changing anything from uploaded release. Modified: packages/trunk/vegastrike-music/debian/changelog =================================================================== --- packages/trunk/vegastrike-music/debian/changelog 2007-08-12 19:03:38 UTC (rev 3647) +++ packages/trunk/vegastrike-music/debian/changelog 2007-08-12 19:18:16 UTC (rev 3648) @@ -1,23 +1,3 @@ -vegastrike-music (0.4.3-2) unstable; urgency=low - - * Fixed errors and warnings from lintian report of 0.4.3-1. - + debian/rules now has build target. - + debhelper (>= 5) is now used. - + Standards Version 3.7.2 is now used. - + build-depends-indep is now changed to build-depends. - * Added vegastrike-music.install file to install all ogg files. - * Modified rules file. - + DH_COMPAT no longer necessary. - + Using vegastrike-music.install file. - * Modified copyright file. - + Including main authors of vegastrike project. - + Including proper GPL notice. - - [ Gonéri Le Bouder ] - * add an Enhances: vegastrike - - -- Andres Mejia <[EMAIL PROTECTED]> Mon, 02 Jul 2007 01:07:36 -0400 - vegastrike-music (0.4.3-1) unstable; urgency=low * New upstream release Deleted: packages/trunk/vegastrike-music/debian/compat =================================================================== --- packages/trunk/vegastrike-music/debian/compat 2007-08-12 19:03:38 UTC (rev 3647) +++ packages/trunk/vegastrike-music/debian/compat 2007-08-12 19:18:16 UTC (rev 3648) @@ -1 +0,0 @@ -5 Modified: packages/trunk/vegastrike-music/debian/control =================================================================== --- packages/trunk/vegastrike-music/debian/control 2007-08-12 19:03:38 UTC (rev 3647) +++ packages/trunk/vegastrike-music/debian/control 2007-08-12 19:18:16 UTC (rev 3648) @@ -1,18 +1,14 @@ Source: vegastrike-music Section: games Priority: optional -Maintainer: Debian Games Team <[EMAIL PROTECTED]> -Uploaders: Andres Mejia <[EMAIL PROTECTED]> -Build-Depends: debhelper (>= 5) -Standards-Version: 3.7.2 +Maintainer: Mike Furr <[EMAIL PROTECTED]> +Build-Depends-Indep: debhelper (>> 3.0.0) +Standards-Version: 3.6.1.0 Package: vegastrike-music Architecture: all -Enhances: vegastrike -Depends: vegastrike-data (>= 0.4.3), vegastrike-data (<< 0.4.4) +Depends: vegastrike-data (>= 0.4.3) Description: Music files for vegastrike This package contains the .ogg files that add music to the game vegastrike. These are not required for running the game, but can calm the mind when your ship gets lost deep in space... - . - Homepage: http://vegastrike.sourceforge.net/ Modified: packages/trunk/vegastrike-music/debian/copyright =================================================================== --- packages/trunk/vegastrike-music/debian/copyright 2007-08-12 19:03:38 UTC (rev 3647) +++ packages/trunk/vegastrike-music/debian/copyright 2007-08-12 19:18:16 UTC (rev 3648) @@ -1,63 +1,19 @@ This package was debianized by Mike Furr <[EMAIL PROTECTED]> on Sat, 25 Jan 2003 16:38:18 -0500. -This package was later redebianized by Andres Mejia <[EMAIL PROTECTED]> on -Mon, 02 Jul 2007 01:07:36 -0400. - It was downloaded from www.sourceforge.net/projects/vegastrike from the CVS repository tagged vegastrike_0_4_3 -Upstream Authors: +Upstream Authors: + Daniel Horn <[EMAIL PROTECTED]> (Vegastrike lead developer) + Ken Suguro <[EMAIL PROTECTED]> (Lead Music Developer) + PeteyG <[EMAIL PROTECTED]> (Music Developer) -Core Development Team -------------------------------------------- -Daniel Horn <[EMAIL PROTECTED]> - * Lead Developer -Ken Suguro <[EMAIL PROTECTED]> - * Lead Music Developer +Copyright: -PeteyG <[EMAIL PROTECTED]> - * Music Developer - -Alexander Rawass <[EMAIL PROTECTED]> - * Programmer - -Patrick Horn <> - * Programmer - -Alan Shieh <> - * Programmer - -Core Art Team ------------------------------------------ -Daniel Horn <[EMAIL PROTECTED]> - * Programmer Art & Hornet - -H.E. Day - *Cockpit Art - -James Carthew <> - * Sol System Layout - -Copyright and License: - -Vega Strike -Copyright (C) 2001-2002 Daniel Horn - -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 -of the License, or (at your option) any later version. - -This program is distributed in the hope that it will be 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; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - +This software is copyrighted under the GPL version 2. +You are free to distribute this software under the terms of +said license. On Debian systems, the complete text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL +License can be found in /usr/share/common-licenses/GPL-2 file. Modified: packages/trunk/vegastrike-music/debian/rules =================================================================== --- packages/trunk/vegastrike-music/debian/rules 2007-08-12 19:03:38 UTC (rev 3647) +++ packages/trunk/vegastrike-music/debian/rules 2007-08-12 19:18:16 UTC (rev 3648) @@ -3,22 +3,29 @@ # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 +# This is the debhelper compatibility version to use. +export DH_COMPAT=3 + +all: install + clean: dh_testdir dh_testroot - rm -f build-stamp + rm -f build-stamp configure-stamp + dh_clean -build: - touch build-stamp -#Nothing else to do for build -install: build +install: dh_testdir dh_testroot dh_clean -k - dh_install + dh_installdirs + install -d `pwd`/debian/vegastrike-music/usr/share/games/vegastrike/music + + install -m 0644 *.ogg `pwd`/debian/vegastrike-music/usr/share/games/vegastrike/music + # Build architecture-independent files here. binary-indep: install dh_testdir Deleted: packages/trunk/vegastrike-music/debian/vegastrike-music.install =================================================================== --- packages/trunk/vegastrike-music/debian/vegastrike-music.install 2007-08-12 19:03:38 UTC (rev 3647) +++ packages/trunk/vegastrike-music/debian/vegastrike-music.install 2007-08-12 19:18:16 UTC (rev 3648) @@ -1 +0,0 @@ -*.ogg usr/share/games/vegastrike/music _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits

