Author: ceros-guest Date: 2008-01-06 04:40:10 +0000 (Sun, 06 Jan 2008) New Revision: 5241
Added: packages/trunk/ogre-contrib/debian/ogre-contrib-get-orig-source Removed: packages/trunk/ogre-contrib/debian/ogre-contrib-tarball.sh Modified: packages/trunk/ogre-contrib/debian/changelog packages/trunk/ogre-contrib/debian/control packages/trunk/ogre-contrib/debian/watch Log: Renamed debian/ogre-contrib-tarball.sh to debian/ogre-contrib-get-orig-source Modified: packages/trunk/ogre-contrib/debian/changelog =================================================================== --- packages/trunk/ogre-contrib/debian/changelog 2008-01-06 04:36:53 UTC (rev 5240) +++ packages/trunk/ogre-contrib/debian/changelog 2008-01-06 04:40:10 UTC (rev 5241) @@ -1,3 +1,12 @@ +ogre-contrib (1.4.6-1~unreleased0) gutsy; urgency=low + + * New upstream release. + * Bumped Standards-Version to 3.7.3. + * Removed XS- from Vcs-* entries. + * Made dbg package Priority: extra. Addresses lintian warning. + + -- Andres Mejia <[EMAIL PROTECTED]> Sun, 30 Dec 2007 10:54:38 -0500 + ogre-contrib (1.4.5-1) unstable; urgency=low * New upstream release. Modified: packages/trunk/ogre-contrib/debian/control =================================================================== --- packages/trunk/ogre-contrib/debian/control 2008-01-06 04:36:53 UTC (rev 5240) +++ packages/trunk/ogre-contrib/debian/control 2008-01-06 04:40:10 UTC (rev 5241) @@ -3,11 +3,11 @@ Section: contrib/libs Maintainer: Debian Games Team <[EMAIL PROTECTED]> Uploaders: Andres Mejia <[EMAIL PROTECTED]>, Federico Di Gregorio <[EMAIL PROTECTED]> -Build-Depends: debhelper (>= 5), quilt, libtool, automake, pkg-config, nvidia-cg-toolkit, libfreetype6-dev, libfreeimage-dev, libzzip-dev, libogre-dev (>= 1.4.5), libogre-dev (<< 1.4.6) -Standards-Version: 3.7.2 +Build-Depends: debhelper (>= 5), quilt, libtool, automake, pkg-config, nvidia-cg-toolkit, libfreetype6-dev, libfreeimage-dev, libzzip-dev, libogre-dev (>= 1.4.6), libogre-dev (<< 1.4.7) +Standards-Version: 3.7.3 Homepage: http://ogre3d.org/ -XS-Vcs-Svn: svn+ssh://svn.debian.org/pkg-games/packages/trunk/ogre-contrib -XS-Vcs-Browser: http://svn.debian.org/wsvn/pkg-games/packages/trunk/ogre-contrib/?op=log +Vcs-Svn: svn+ssh://svn.debian.org/pkg-games/packages/trunk/ogre-contrib +Vcs-Browser: http://svn.debian.org/wsvn/pkg-games/packages/trunk/ogre-contrib/?op=log Package: ogre-plugins-cgprogrammanager Section: contrib/libs @@ -25,6 +25,7 @@ Package: ogre-plugins-cgprogrammanager-dbg Section: contrib/libdevel Architecture: amd64 i386 +Priority: extra Depends: ogre-plugins-cgprogrammanager (= ${binary:Version}) Description: Ogre plugin: CgProgramManager debugging symbols Ogre is a complete object-oriented 3D rendering engine. It supports Copied: packages/trunk/ogre-contrib/debian/ogre-contrib-get-orig-source (from rev 5240, packages/trunk/ogre-contrib/debian/ogre-contrib-tarball.sh) =================================================================== --- packages/trunk/ogre-contrib/debian/ogre-contrib-get-orig-source (rev 0) +++ packages/trunk/ogre-contrib/debian/ogre-contrib-get-orig-source 2008-01-06 04:40:10 UTC (rev 5241) @@ -0,0 +1,71 @@ +#! /bin/sh + +# This script is used to generate the ogre-contrib orig tarball that can be +# distributed through Debian. + +# Some variables to make maintaining this script easier +OGRE_VERSION=1.4.6 +OGRE_TARBALL=ogre-linux_osx-v1-4-6.tar.bz2 +OGRE_TARBALL_CHECKSUM=ef1cf73106e0387624bfdd539cdf9de6 + +if [ ! -f $OGRE_TARBALL ] ; then +# Download the tarball +wget http://downloads.sourceforge.net/ogre/$OGRE_TARBALL +fi + +# Verify the checksum +COMPUTED_CHECKSUM=`md5sum $OGRE_TARBALL | cut -d ' ' -f 1` + +if [ $OGRE_TARBALL_CHECKSUM != $COMPUTED_CHECKSUM ] ; then + echo "Checksum verification failed. Checksum was $COMPUTED_CHECKSUM +Expected checksum $OGRE_TARBALL_CHECKSUM" + exit 0 +else + echo "Checksum verified. Checksum is $COMPUTED_CHECKSUM." +fi + +# Prepare the ogre-contrib orig tarball +if [ ! -d ogrenew ]; then + echo "Extracting $OGRE_TARBALL" + tar -xjf $OGRE_TARBALL +else + echo "Already found extracted ogrenew directory. Please remove +or move ogrenew and ogre-contrib-$OGRE_VERSION directories and also ogre_$OGRE_VERSION.orig.tar.gz." + exit 0 +fi +if [ ! -d ogre-contrib-$OGRE_VERSION ]; then + echo "Renaming extracted ogrenew directory to ogre-contrib-$OGRE_VERSION" + mv ogrenew ogre-contrib-$OGRE_VERSION +else + echo "Already found ogre-contrib-$OGRE_VERSION directory. Please remove or move +ogrenew and ogre-contrib-$OGRE_VERSION directories and also ogre_$OGRE_VERSION.orig.tar.gz." + exit 0 +fi + +# Remove all CVS directories +echo "Removing all CVS directories" +for REMOVE_CVS in `find ogre-contrib-$OGRE_VERSION -name CVS`; do + rm -rf "$REMOVE_CVS" +done + +# Remove directories and files not needed to build the +# ogre-plugins-cgprogrammanager package. +echo "Removing components not needed for ogre-contrib packages." +rm -r ogre-contrib-$OGRE_VERSION/autom4te.cache +rm -rf ogre-contrib-$OGRE_VERSION/Docs +rm -r ogre-contrib-$OGRE_VERSION/Mac +rm -r ogre-contrib-$OGRE_VERSION/Other +rm -r ogre-contrib-$OGRE_VERSION/ReferenceApplication +rm -r ogre-contrib-$OGRE_VERSION/RenderSystems +rm -r ogre-contrib-$OGRE_VERSION/Samples +rm -r ogre-contrib-$OGRE_VERSION/SDK +rm -r ogre-contrib-$OGRE_VERSION/Tests +rm -r ogre-contrib-$OGRE_VERSION/Tools +rm -r ogre-contrib-$OGRE_VERSION/PlugIns/BSPSceneManager +rm -r ogre-contrib-$OGRE_VERSION/PlugIns/EXRCodec +rm -r ogre-contrib-$OGRE_VERSION/PlugIns/OctreeSceneManager +rm -r ogre-contrib-$OGRE_VERSION/PlugIns/ParticleFX + +# Create the tarball +echo "Creating ogre-contrib-$OGRE_VERSION.orig tarball." +tar -czf ogre-contrib_$OGRE_VERSION.orig.tar.gz ogre-contrib-$OGRE_VERSION/ Deleted: packages/trunk/ogre-contrib/debian/ogre-contrib-tarball.sh =================================================================== --- packages/trunk/ogre-contrib/debian/ogre-contrib-tarball.sh 2008-01-06 04:36:53 UTC (rev 5240) +++ packages/trunk/ogre-contrib/debian/ogre-contrib-tarball.sh 2008-01-06 04:40:10 UTC (rev 5241) @@ -1,67 +0,0 @@ -#! /bin/sh - -# This script is used to generate the ogre-contrib-1.4.5.orig tarball that can be -# distributed through Debian. - -if [ ! -f ogre-linux_osx-v1-4-5.tar.bz2 ] ; then -# Download the tarball -wget http://downloads.sourceforge.net/ogre/ogre-linux_osx-v1-4-5.tar.bz2 -fi - -# Verify the checksum -CORRECT_CHECKSUM=efce9ce9e2b0e2d593e45479210bd4af -COMPUTED_CHECKSUM=`md5sum ogre-linux_osx-v1-4-5.tar.bz2 | 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 ogre-contrib-1.4.5.orig tarball -if [ ! -d ogrenew ]; then - echo "Extracting ogre-linux_osx-v1-4-5.tar.bz2" - tar -xjf ogre-linux_osx-v1-4-5.tar.bz2 -else - echo "Already found extracted ogrenew directory. Please remove -or move ogrenew and ogre-contrib-1.4.5 directories and also ogre_1.4.5.orig.tar.gz." - exit 0 -fi -if [ ! -d ogre-contrib-1.4.5 ]; then - echo "Renaming extracted ogrenew directory to ogre-contrib-1.4.5" - mv ogrenew ogre-contrib-1.4.5 -else - echo "Already found ogre-contrib-1.4.5 directory. Please remove or move -ogrenew and ogre-contrib-1.4.5 directories and also ogre_1.4.5.orig.tar.gz." - exit 0 -fi - -# Remove all CVS directories -echo "Removing all CVS directories" -for REMOVE_CVS in `find ogre-contrib-1.4.5 -name CVS`; do - rm -r "$REMOVE_CVS" -done - -# Remove directories and files not needed to build the -# ogre-plugins-cgprogrammanager package. -echo "Removing components not needed for ogre-contrib packages." -rm -r ogre-contrib-1.4.5/autom4te.cache -rm -r ogre-contrib-1.4.5/Docs -rm -r ogre-contrib-1.4.5/Mac -rm -r ogre-contrib-1.4.5/Other -rm -r ogre-contrib-1.4.5/ReferenceApplication -rm -r ogre-contrib-1.4.5/RenderSystems -rm -r ogre-contrib-1.4.5/Samples -rm -r ogre-contrib-1.4.5/SDK -rm -r ogre-contrib-1.4.5/Tests -rm -r ogre-contrib-1.4.5/Tools -rm -r ogre-contrib-1.4.5/PlugIns/BSPSceneManager -rm -r ogre-contrib-1.4.5/PlugIns/EXRCodec -rm -r ogre-contrib-1.4.5/PlugIns/OctreeSceneManager -rm -r ogre-contrib-1.4.5/PlugIns/ParticleFX - -# Create the tarball -echo "Creating ogre-contrib-1.4.5.orig tarball." -tar -czf ogre-contrib_1.4.5.orig.tar.gz ogre-contrib-1.4.5/ Modified: packages/trunk/ogre-contrib/debian/watch =================================================================== --- packages/trunk/ogre-contrib/debian/watch 2008-01-06 04:36:53 UTC (rev 5240) +++ packages/trunk/ogre-contrib/debian/watch 2008-01-06 04:40:10 UTC (rev 5241) @@ -5,9 +5,9 @@ opts=uversionmangle=s/\.\?.*// \ http://downloads.sourceforge.net/ogre \ http://downloads.sourceforge.net/ogre/ogre-linux_osx-v(.*)\.tar\.bz2(.*) \ - 1-4-5 + 1-4-6 # Different check for ogre source, provided by uscan man page http://sf.net/ogre/ \ ogre-linux_osx-v(.*)\.tar\.bz2(.*) \ - 1-4-5. + 1-4-6. _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits

