Author: ceros-guest Date: 2008-01-15 23:23:53 +0000 (Tue, 15 Jan 2008) New Revision: 5387
Added: packages/trunk/warsow-data/debian/warsow-data-get-orig-source Removed: packages/trunk/warsow-data/debian/warsow-data-tarball.sh Modified: packages/trunk/warsow-data/debian/README.Debian packages/trunk/warsow-data/debian/changelog packages/trunk/warsow-data/debian/control Log: * Renamed warsow-data-tarball.sh to warsow-data-get-orig-source. * Edited README.Debian. * Bumped Standards-Version to 3.7.3. * Removed Homepage from package description. * Removed XS- prefix from Vcs entries. * Fixed bad Vcs-Svn link. * Rewrote package description. Modified: packages/trunk/warsow-data/debian/README.Debian =================================================================== --- packages/trunk/warsow-data/debian/README.Debian 2008-01-15 22:46:59 UTC (rev 5386) +++ packages/trunk/warsow-data/debian/README.Debian 2008-01-15 23:23:53 UTC (rev 5387) @@ -1,11 +1,11 @@ warsow-data for Debian ====================== -The warsow-data package for Debian is derived from the upstream binary-only -distribution. Precompiled binaries are stripped from the upstream tarball. The +The warsow-data package for Debian is derived from the upstream binary-only +distribution. Precompiled binaries are stripped from the upstream tarball. The directories basewsw and docs are kept unmodified in this package. -You may notice, that some .pk3 zip archives contain precompiled binaries, like -game_i386.so and so on. Do not report bugs about this, the package maintainers -can't do anything here, because of restrictions by the upstream license. See +You may notice, that some .pk3 zip archives contain precompiled binaries, like +game_i386.so and so on. Do not report bugs about this, the package maintainers +can't do anything here, because of restrictions by the upstream license. See /usr/share/doc/warsow-data/copyright for the license. Modified: packages/trunk/warsow-data/debian/changelog =================================================================== --- packages/trunk/warsow-data/debian/changelog 2008-01-15 22:46:59 UTC (rev 5386) +++ packages/trunk/warsow-data/debian/changelog 2008-01-15 23:23:53 UTC (rev 5387) @@ -1,3 +1,16 @@ +warsow-data (0.32-2~unreleased0) unstable; urgency=low + + [ Andres Mejia ] + * Renamed warsow-data-tarball.sh to warsow-data-get-orig-source. + * Edited README.Debian. + * Bumped Standards-Version to 3.7.3. + * Removed Homepage from package description. + * Removed XS- prefix from Vcs entries. + * Fixed bad Vcs-Svn link. + * Rewrote package description. + + -- Andres Mejia <[EMAIL PROTECTED]> Tue, 15 Jan 2008 17:50:03 -0500 + warsow-data (0.32-1) unstable; urgency=low [ Andres Mejia ] Modified: packages/trunk/warsow-data/debian/control =================================================================== --- packages/trunk/warsow-data/debian/control 2008-01-15 22:46:59 UTC (rev 5386) +++ packages/trunk/warsow-data/debian/control 2008-01-15 23:23:53 UTC (rev 5387) @@ -4,21 +4,19 @@ Maintainer: Debian Games Team <[EMAIL PROTECTED]> Uploaders: Gonéri Le Bouder <[EMAIL PROTECTED]>, Bruno "Fuddl" Kleinert <[EMAIL PROTECTED]>, Andres Mejia <[EMAIL PROTECTED]> Build-Depends: debhelper (>= 5) -Standards-Version: 3.7.2 +Standards-Version: 3.7.3 Homepage: http://www.warsow.net/ -XS-Vcs-Svn: svn+ssh://svn.debian.org/pkg-games/packages/trunk/warsow-data -XS-Vcs-Browser: http://svn.debian.org/wsvn/pkg-games/packages/trunk/warsow-data/?op=log +Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/warsow-data +Vcs-Browser: http://svn.debian.org/wsvn/pkg-games/packages/trunk/warsow-data/?op=log Package: warsow-data Architecture: all Recommends: warsow | warsow-server -Description: Game data for the ego-shooter Warsow - Warsow is a fast-paced 3D ego-shooter with colorful graphics which look like - in comic (black lines around things; deliberatly surrealistic graphics) or - similar to the movie "Tron". +Description: Game data for Warsow + Warsow is a fast paced first person shooter consisting of cel-shaded + cartoon-like graphics with dark, flashy and dirty textures. Warsow is based on + the E-novel "Chasseur de bots" ("Bots hunter" in English) by Fabrice Demurger. + Warsow's codebase is built upon Qfusion, an advanced modification of the Quake + II engine. . - The game allows a very advanced movement by doing trick-jumps. - . - This package installs game data, like textures, maps, sounds, etc. - . - Homepage: http://www.warsow.net/ + This package installs the game data files (textures, maps, sounds, etc.). Copied: packages/trunk/warsow-data/debian/warsow-data-get-orig-source (from rev 5386, packages/trunk/warsow-data/debian/warsow-data-tarball.sh) =================================================================== --- packages/trunk/warsow-data/debian/warsow-data-get-orig-source (rev 0) +++ packages/trunk/warsow-data/debian/warsow-data-get-orig-source 2008-01-15 23:23:53 UTC (rev 5387) @@ -0,0 +1,53 @@ +#! /bin/sh + +# This script will download the upstream tarball that contains the content of +# the warsow-data package and create an orig tarball of it. + +if [ ! -f warsow_0.32_linux.tar.gz ] ; then +# Download the tarball +wget -c http://www.warsow.net/release/warsow_0.32_linux.tar.gz +fi + +# Verify the checksum +CORRECT_CHECKSUM=508fa64b6157b3f5ebed09e9e715ec43 +COMPUTED_CHECKSUM=`md5sum warsow_0.32_linux.tar.gz | cut -d ' ' -f 1` + +if [ $CORRECT_CHECKSUM != $COMPUTED_CHECKSUM ] ; then + echo "Checksum verification failed. Checksum was $COMPUTED_CHECKSUM +Expected checksum $CORRECT_CHECKSUM" + exit 0 +else + echo "Checksum verified. Checksum is $COMPUTED_CHECKSUM." +fi + +# Prepare the warsow-data orig tarball +if [ ! -d warsow ]; then + echo "Extracting warsow_0.32_linux.tar.gz" + tar -xzf warsow_0.32_linux.tar.gz +else + echo "Already found extracted warsow directory. Please remove +or move warsow and warsow-data-0.32 directories and also warsow-data-0.32.orig." + exit 0 +fi +if [ ! -d warsow-data-0.32 ]; then + echo "Renaming extracted warsow directory to warsow-data-0.32" + mv warsow warsow-data-0.32 +else + echo "Already found extracted warsow-data-0.32 directory. Please remove +or move warsow and warsow-data-0.32 directories and also warsow-data-0.32.orig." + exit 0 +fi + +rm warsow-data-0.32/libs/* +rm warsow-data-0.32/warsow.i386 warsow-data-0.32/warsow.x86_64 +rm warsow-data-0.32/wsw_server.i386 warsow-data-0.32/wsw_server.x86_64 + +# Create the tarball and exclude the CVS directories +if [ ! -f warsow-data_0.32.orig.tar.gz ]; then + echo "Creating orig tarball." + tar -czf warsow-data_0.32.orig.tar.gz warsow-data-0.32/ +else + echo "Already found extracted warsow-data_0.32.orig.tar.gz. Please remove +or move warsow and warsow-data-0.32 directories and also warsow-data-0.32.orig." + exit 0 +fi Deleted: packages/trunk/warsow-data/debian/warsow-data-tarball.sh =================================================================== --- packages/trunk/warsow-data/debian/warsow-data-tarball.sh 2008-01-15 22:46:59 UTC (rev 5386) +++ packages/trunk/warsow-data/debian/warsow-data-tarball.sh 2008-01-15 23:23:53 UTC (rev 5387) @@ -1,53 +0,0 @@ -#! /bin/sh - -# This script will download the upstream tarball that contains the content of -# the warsow-data package and create an orig tarball of it. - -if [ ! -f warsow_0.32_linux.tar.gz ] ; then -# Download the tarball -wget -c http://www.warsow.net/release/warsow_0.32_linux.tar.gz -fi - -# Verify the checksum -CORRECT_CHECKSUM=508fa64b6157b3f5ebed09e9e715ec43 -COMPUTED_CHECKSUM=`md5sum warsow_0.32_linux.tar.gz | cut -d ' ' -f 1` - -if [ $CORRECT_CHECKSUM != $COMPUTED_CHECKSUM ] ; then - echo "Checksum verification failed. Checksum was $COMPUTED_CHECKSUM -Expected checksum $CORRECT_CHECKSUM" - exit 0 -else - echo "Checksum verified. Checksum is $COMPUTED_CHECKSUM." -fi - -# Prepare the warsow-data orig tarball -if [ ! -d warsow ]; then - echo "Extracting warsow_0.32_linux.tar.gz" - tar -xzf warsow_0.32_linux.tar.gz -else - echo "Already found extracted warsow directory. Please remove -or move warsow and warsow-data-0.32 directories and also warsow-data-0.32.orig." - exit 0 -fi -if [ ! -d warsow-data-0.32 ]; then - echo "Renaming extracted warsow directory to warsow-data-0.32" - mv warsow warsow-data-0.32 -else - echo "Already found extracted warsow-data-0.32 directory. Please remove -or move warsow and warsow-data-0.32 directories and also warsow-data-0.32.orig." - exit 0 -fi - -rm warsow-data-0.32/libs/* -rm warsow-data-0.32/warsow.i386 warsow-data-0.32/warsow.x86_64 -rm warsow-data-0.32/wsw_server.i386 warsow-data-0.32/wsw_server.x86_64 - -# Create the tarball and exclude the CVS directories -if [ ! -f warsow-data_0.32.orig.tar.gz ]; then - echo "Creating orig tarball." - tar -czf warsow-data_0.32.orig.tar.gz warsow-data-0.32/ -else - echo "Already found extracted warsow-data_0.32.orig.tar.gz. Please remove -or move warsow and warsow-data-0.32 directories and also warsow-data-0.32.orig." - exit 0 -fi _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits

