Author: sistpoty-guest Date: 2014-01-23 21:22:55 +0000 (Thu, 23 Jan 2014) New Revision: 14865
Added: packages/trunk/trigger/debian/patches/30_autotools.patch Modified: packages/trunk/trigger/debian/changelog packages/trunk/trigger/debian/control packages/trunk/trigger/debian/patches/series packages/trunk/trigger/debian/rules Log: Fix 727989. Fix *-arch, update to 3.9.5 Modified: packages/trunk/trigger/debian/changelog =================================================================== --- packages/trunk/trigger/debian/changelog 2014-01-23 21:22:51 UTC (rev 14864) +++ packages/trunk/trigger/debian/changelog 2014-01-23 21:22:55 UTC (rev 14865) @@ -1,7 +1,15 @@ trigger-rally (0.6.0-2) UNRELEASED; urgency=low [ Stefan Potyra ] - * Document changes here... + * debian/rules: + + Fix the binary-indep/build-indep rules: No package to build. + * debian/control: + + drop DM-Upload-Allowed field (obsolete). + + drop Conflicts against trigger (upgrades from oldstable not supported). + + Bump Standards-Version to 3.9.5, since all required changes + have been done. + * debian/patches/30_autotools.patch: + Refresh config.sub/config.guess if present (Closes: #727989). [ Evgeni Golov ] * Correct Vcs-* URLs to point to anonscm.debian.org @@ -9,6 +17,7 @@ [ Alexander Reichle-Schmehl ] * Removed myself from uploaders. + -- Stefan Potyra <[email protected]> Fri, 25 Nov 2011 22:38:47 +0100 trigger-rally (0.6.0-1) unstable; urgency=low Modified: packages/trunk/trigger/debian/control =================================================================== --- packages/trunk/trigger/debian/control 2014-01-23 21:22:51 UTC (rev 14864) +++ packages/trunk/trigger/debian/control 2014-01-23 21:22:55 UTC (rev 14865) @@ -12,10 +12,9 @@ automake (>= 1.9), libglew1.5-dev, libtinyxml-dev -Standards-Version: 3.9.2 +Standards-Version: 3.9.5 Uploaders: Stefan Potyra <[email protected]>, Barry deFreese <[email protected]> -DM-Upload-Allowed: yes Homepage: http://sourceforge.net/projects/trigger-rally Vcs-Svn: svn://anonscm.debian.org/pkg-games/packages/trunk/trigger/ Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-games/packages/trunk/trigger/ @@ -23,7 +22,6 @@ Package: trigger-rally Architecture: any Depends: ${shlibs:Depends}, trigger-rally-data (>= 0.6.0-1), ${misc:Depends} -Conflicts: trigger (<< 0.5.2.1) Description: free 3D rally racing car game Trigger is a free 3D rally car racing game. Fun for all the family! . Added: packages/trunk/trigger/debian/patches/30_autotools.patch =================================================================== --- packages/trunk/trigger/debian/patches/30_autotools.patch (rev 0) +++ packages/trunk/trigger/debian/patches/30_autotools.patch 2014-01-23 21:22:55 UTC (rev 14865) @@ -0,0 +1,31 @@ +Description: Update autotools files not update by autogen.sh + This patch updates the autotools files (config.sub/config.guess) + shipped in mk/autoconf. + . + Author: Stefan Potyra <[email protected]> + +Index: trigger-rally-0.6.0/autogen.sh +=================================================================== +--- trigger-rally-0.6.0.orig/autogen.sh 2014-01-23 21:48:28.000000000 +0100 ++++ trigger-rally-0.6.0/autogen.sh 2014-01-23 21:52:30.675851846 +0100 +@@ -24,3 +24,20 @@ + autoheader + + autoconf ++ ++# copy file $1 to directory $2 ++copy_file() { ++ if [ ! -r "$1" ]; then ++ echo "$1 not readable/presenkt." ++ else ++ if [ ! -d "$2" ]; then ++ echo "$2: no directory." ++ else ++ echo "$1 --> $2" ++ cp "$1" "$2" ++ fi ++ fi ++} ++ ++copy_file /usr/share/misc/config.sub mk/autoconf ++copy_file /usr/share/misc/config.guess mk/autoconf Modified: packages/trunk/trigger/debian/patches/series =================================================================== --- packages/trunk/trigger/debian/patches/series 2014-01-23 21:22:51 UTC (rev 14864) +++ packages/trunk/trigger/debian/patches/series 2014-01-23 21:22:55 UTC (rev 14865) @@ -1,2 +1,3 @@ 10_system_glew.patch 20_system_tinyxml.patch +30_autotools.patch Modified: packages/trunk/trigger/debian/rules =================================================================== --- packages/trunk/trigger/debian/rules 2014-01-23 21:22:51 UTC (rev 14864) +++ packages/trunk/trigger/debian/rules 2014-01-23 21:22:55 UTC (rev 14865) @@ -79,7 +79,8 @@ cp debian/trigger-rally_32.xpm debian/$(PACKAGE)/usr/share/icons/hicolor/32x32/apps/trigger-rally.xpm cp debian/trigger-rally_64.xpm debian/$(PACKAGE)/usr/share/icons/hicolor/64x64/apps/trigger-rally.xpm -binary-indep: build install +# no indep package +binary-indep: binary-arch: build install dh_testdir @@ -101,7 +102,8 @@ dh_builddeb build-arch: build-stamp -build-indep: build-stamp +# no indep package +build-indep: binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install build-arch \ _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits

