r15990 - in packages/trunk/teg/debian: . patches

Markus Koschany apo at moszumanska.debian.org
Thu Jul 27 00:19:13 UTC 2017


Author: apo
Date: 2017-07-27 00:19:13 +0000 (Thu, 27 Jul 2017)
New Revision: 15990

Added:
   packages/trunk/teg/debian/patches/remove-deprecated-USE_GNOME2_MACROS.patch
   packages/trunk/teg/debian/patches/unescaped-left-brace.patch
Removed:
   packages/trunk/teg/debian/teg.menu
   packages/trunk/teg/debian/teg.xpm
Modified:
   packages/trunk/teg/debian/changelog
   packages/trunk/teg/debian/compat
   packages/trunk/teg/debian/control
   packages/trunk/teg/debian/patches/series
   packages/trunk/teg/debian/rules
Log:
Release teg 0.11.2+debian-5


Modified: packages/trunk/teg/debian/changelog
===================================================================
--- packages/trunk/teg/debian/changelog	2017-07-23 12:56:58 UTC (rev 15989)
+++ packages/trunk/teg/debian/changelog	2017-07-27 00:19:13 UTC (rev 15990)
@@ -1,3 +1,19 @@
+teg (0.11.2+debian-5) unstable; urgency=medium
+
+  * Switch to compat level 10.
+  * Remove Evgeni Golov from Uploaders at his request. Add myself to Uploaders
+    because Policy requires a human uploader. This package still needs a new
+    maintainer though.
+  * Declare compliance with Debian Policy 4.0.0.
+  * Remove deprecated menu file and xpm icon.
+  * Fix "Local copy of intltool-* fails with perl 5.26":
+    Add patch to escape literal left brace in regexp in intltool-update.in.
+    Thanks to gregor herrmann for the patch. (Closes: #869580)
+  * Add remove-deprecated-USE_GNOME2_MACROS.patch and remove deprecated GNOME2
+    variables from autogen.sh file. (Closes: #830004)
+
+ -- Markus Koschany <apo at debian.org>  Thu, 27 Jul 2017 01:48:43 +0200
+
 teg (0.11.2+debian-4) unstable; urgency=medium
 
   * Team upload.

Modified: packages/trunk/teg/debian/compat
===================================================================
--- packages/trunk/teg/debian/compat	2017-07-23 12:56:58 UTC (rev 15989)
+++ packages/trunk/teg/debian/compat	2017-07-27 00:19:13 UTC (rev 15990)
@@ -1 +1 @@
-9
+10

Modified: packages/trunk/teg/debian/control
===================================================================
--- packages/trunk/teg/debian/control	2017-07-23 12:56:58 UTC (rev 15989)
+++ packages/trunk/teg/debian/control	2017-07-27 00:19:13 UTC (rev 15990)
@@ -2,10 +2,11 @@
 Section: games
 Priority: optional
 Maintainer: Debian Games Team <pkg-games-devel at lists.alioth.debian.org>
-Standards-Version: 3.9.7
+Uploaders:
+ Markus Koschany <apo at debian.org>
+Standards-Version: 4.0.0
 Build-Depends:
- autotools-dev,
- debhelper (>= 9),
+ debhelper (>= 10),
  gettext,
  intltool,
  libart-2.0-dev,

Added: packages/trunk/teg/debian/patches/remove-deprecated-USE_GNOME2_MACROS.patch
===================================================================
--- packages/trunk/teg/debian/patches/remove-deprecated-USE_GNOME2_MACROS.patch	                        (rev 0)
+++ packages/trunk/teg/debian/patches/remove-deprecated-USE_GNOME2_MACROS.patch	2017-07-27 00:19:13 UTC (rev 15990)
@@ -0,0 +1,20 @@
+From: Markus Koschany <apo at debian.org>
+Date: Thu, 27 Jul 2017 01:51:47 +0200
+Subject: remove deprecated USE_GNOME2_MACROS
+
+Bug-Debian: https://bugs.debian.org/830004
+Forwarded: no
+---
+ autogen.sh | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/autogen.sh b/autogen.sh
+index 487ebc3..87144e0 100644
+--- a/autogen.sh
++++ b/autogen.sh
+@@ -20,4 +20,4 @@ intltoolize --copy --force
+ 
+ REQUIRED_AUTOMAKE_VERSION=1.7
+ 
+-USE_GNOME2_MACROS=1 ACLOCAL_FLAGS="-I macros $ACLOCAL_FLAGS" . gnome-autogen.sh
++ACLOCAL_FLAGS="-I macros $ACLOCAL_FLAGS" . gnome-autogen.sh

Modified: packages/trunk/teg/debian/patches/series
===================================================================
--- packages/trunk/teg/debian/patches/series	2017-07-23 12:56:58 UTC (rev 15989)
+++ packages/trunk/teg/debian/patches/series	2017-07-27 00:19:13 UTC (rev 15990)
@@ -3,3 +3,5 @@
 fix_xml-doc-for-yelp.diff
 x-terminal-emulator.diff
 keywords.patch
+unescaped-left-brace.patch
+remove-deprecated-USE_GNOME2_MACROS.patch

Added: packages/trunk/teg/debian/patches/unescaped-left-brace.patch
===================================================================
--- packages/trunk/teg/debian/patches/unescaped-left-brace.patch	                        (rev 0)
+++ packages/trunk/teg/debian/patches/unescaped-left-brace.patch	2017-07-27 00:19:13 UTC (rev 15990)
@@ -0,0 +1,18 @@
+Description: Fix "Unescaped left brace in regex is illegal" error with perl 5.26
+Origin: vendor
+Bug: https://bugs.debian.org/869580
+Forwarded: no
+Author: gregor herrmann <gregoa at debian.org>
+Last-Update: 2017-07-25
+
+--- a/intltool-update.in
++++ b/intltool-update.in
+@@ -869,7 +869,7 @@
+ 	}
+     }
+     
+-    if ($str =~ /^(.*)\${?([A-Z_]+)}?(.*)$/)
++    if ($str =~ /^(.*)\$\{?([A-Z_]+)}?(.*)$/)
+     {
+ 	my $rest = $3;
+ 	my $untouched = $1;

Modified: packages/trunk/teg/debian/rules
===================================================================
--- packages/trunk/teg/debian/rules	2017-07-23 12:56:58 UTC (rev 15989)
+++ packages/trunk/teg/debian/rules	2017-07-27 00:19:13 UTC (rev 15990)
@@ -4,7 +4,7 @@
 export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
 
 %:
-	dh $@ --with autotools_dev
+	dh $@ --no-parallel --without autoreconf --with autotools_dev
 
 override_dh_auto_configure:
 	dh_auto_configure -- \
@@ -45,8 +45,8 @@
 
 override_dh_install:
 	dh_install
-	dh_install debian/teg.xpm /usr/share/pixmaps
 	dh_install client/gui-gnome/teg.desktop /usr/share/applications
+	mkdir -p debian/teg/usr/share/pixmaps
 	install -m 644 client/teg_pix/teg_icono.png \
 		debian/teg/usr/share/pixmaps/teg.png
 	# Work around for #281164

Deleted: packages/trunk/teg/debian/teg.menu
===================================================================
--- packages/trunk/teg/debian/teg.menu	2017-07-23 12:56:58 UTC (rev 15989)
+++ packages/trunk/teg/debian/teg.menu	2017-07-27 00:19:13 UTC (rev 15990)
@@ -1,3 +0,0 @@
-?package(teg): needs="X11" section="Games/Strategy" title="T.E.G. Client" \
-  longtitle="Tenes Empanadas Graciela Client" command="/usr/games/tegclient" \
-  icon="/usr/share/pixmaps/teg.xpm"

Deleted: packages/trunk/teg/debian/teg.xpm
===================================================================
--- packages/trunk/teg/debian/teg.xpm	2017-07-23 12:56:58 UTC (rev 15989)
+++ packages/trunk/teg/debian/teg.xpm	2017-07-27 00:19:13 UTC (rev 15990)
@@ -1,48 +0,0 @@
-/* XPM */
-static char * teg_icono_xpm[] = {
-"32 31 14 1",
-" 	c None",
-".	c #7F7F00",
-"+	c #999999",
-"@	c #B2B2B2",
-"#	c #000000",
-"$	c #FF0000",
-"%	c #666667",
-"&	c #4C4C4C",
-"*	c #7F0000",
-"=	c #191919",
-"-	c #7F7F7F",
-";	c #333333",
-">	c #CCCCCC",
-",	c #FFFF00",
-"                                ",
-"                                ",
-"              .++               ",
-"         +.++......++           ",
-"        ++...++++.+..+          ",
-"       $..+.++@@@@@++++.        ",
-"      + at .++@@@+@@@@@@+..*       ",
-"      +..@@+@@+@>@+++ at .+-       ",
-"     ...+@@@@@@>@.. at ++++.%      ",
-"    ++.+++@@,>.@@.@@++++.-      ",
-"    . at +++@@>@.++++@@..++..&     ",
-"    ..+@@@+.++....... at ++..%     ",
-"   .$++++...+++ at +..-+++..$%     ",
-"   +@$.+..+.++.....+++.-..&#    ",
-"   ..+..+.....$+.-$+.$+$.$&#    ",
-"   .$.....@$.+..++$%%*&%$&=#    ",
-"   .+$+....+..$.$%;*==*;&*##    ",
-"   ...$+$.+$..%&*=#########     ",
-"   *.$%..$..$**######           ",
-"   -..$$..$%&=###               ",
-"   &$+.%$%*=###                 ",
-"    $%$.*;####                  ",
-"    &$.$&=##                    ",
-"    %$%&=##                     ",
-"     &$&*#                      ",
-"     ;*=##                      ",
-"       #                        ",
-"                                ",
-"                                ",
-"                                ",
-"                                "};




More information about the Pkg-games-commits mailing list