r10456 - packages/trunk/nexuiz-data/debian

Bruno Fuddl-guestquot; Fuddl" Kleinert fuddl-guest at alioth.debian.org
Thu Oct 22 11:37:12 UTC 2009


Author: fuddl-guest
Date: 2009-10-22 11:37:12 +0000 (Thu, 22 Oct 2009)
New Revision: 10456

Added:
   packages/trunk/nexuiz-data/debian/get-nexuiz-data-orig.sh
Modified:
   packages/trunk/nexuiz-data/debian/changelog
Log:
Add shell skript to build the .orig.tar.gz


Modified: packages/trunk/nexuiz-data/debian/changelog
===================================================================
--- packages/trunk/nexuiz-data/debian/changelog	2009-10-22 11:35:51 UTC (rev 10455)
+++ packages/trunk/nexuiz-data/debian/changelog	2009-10-22 11:37:12 UTC (rev 10456)
@@ -1,3 +1,10 @@
+nexuiz-data (2.5.2-2) UNRELEASED; urgency=low
+
+  * Add debian/get-nexuiz-data-orig.sh which fetches the sources from the
+    upstream Subversion repository and builds the .orig.tar.gz    
+
+ -- Bruno "Fuddl" Kleinert <fuddl at debian.org>  Thu, 22 Oct 2009 13:36:09 +0200
+
 nexuiz-data (2.5.2-1) unstable; urgency=low
 
   [ Gerfried Fuchs ]

Added: packages/trunk/nexuiz-data/debian/get-nexuiz-data-orig.sh
===================================================================
--- packages/trunk/nexuiz-data/debian/get-nexuiz-data-orig.sh	                        (rev 0)
+++ packages/trunk/nexuiz-data/debian/get-nexuiz-data-orig.sh	2009-10-22 11:37:12 UTC (rev 10456)
@@ -0,0 +1,24 @@
+#!/bin/sh
+
+set -e
+
+# See http://svn.icculus.org/nexuiz/tags/
+RELEASE=2.5.2
+SVN=8004
+
+#rm -rf nexuiz-data-${RELEASE} nexuiz-data_${RELEASE}.orig.tar.gz
+svn co -r${SVN} svn://svn.icculus.org/nexuiz/trunk \
+	nexuiz-data-${RELEASE}
+
+# Remove everything we're not interested in
+#rm -rf nexuiz-data-${RELEASE}/misc/buildfiles/osx
+#rm -rf nexuiz-data-${RELEASE}/misc/buildfiles/w32
+
+# Use this to see what would be deleted and comment out the other find command!
+#find -iname '.svn' -type d -exec echo rm -rf '{}' \;
+
+tar --exclude-vcs --exclude=".svn" --exclude=".cvs*" \
+	--exclude="misc/buildfiles/osx" \
+	--exclude="misc/buildfiles/w32" \
+	-czf nexuiz-data_${RELEASE}.orig.tar.gz \
+	nexuiz-data-${RELEASE}


Property changes on: packages/trunk/nexuiz-data/debian/get-nexuiz-data-orig.sh
___________________________________________________________________
Added: svn:executable
   + *




More information about the Pkg-games-commits mailing list