r13713 - in packages/trunk/mancala/debian: . patches

2012-06-18 Thread Paul Wise
Author: pabs
Date: 2012-06-18 06:11:17 + (Mon, 18 Jun 2012)
New Revision: 13713

Added:
   packages/trunk/mancala/debian/patches/fix-libforms2-issue.patch
Modified:
   packages/trunk/mancala/debian/changelog
   packages/trunk/mancala/debian/control
   packages/trunk/mancala/debian/patches/series
Log:
Fix issues with new libforms (Closes: #620634, LP: #904629)

Modified: packages/trunk/mancala/debian/changelog
===
--- packages/trunk/mancala/debian/changelog 2012-06-17 11:45:18 UTC (rev 
13712)
+++ packages/trunk/mancala/debian/changelog 2012-06-18 06:11:17 UTC (rev 
13713)
@@ -3,6 +3,7 @@
   * Remove uupdate from the watch file
   * Switch to dpkg-source v3
   * Don't link against unused libraries
+  * Fix issues with new libforms (Closes: #620634, LP: #904629)
 
  -- Paul Wise p...@debian.org  Sun, 03 Apr 2011 13:45:54 +0800
 

Modified: packages/trunk/mancala/debian/control
===
--- packages/trunk/mancala/debian/control   2012-06-17 11:45:18 UTC (rev 
13712)
+++ packages/trunk/mancala/debian/control   2012-06-18 06:11:17 UTC (rev 
13713)
@@ -4,7 +4,7 @@
 Maintainer: Debian Games Team pkg-games-de...@lists.alioth.debian.org
 Uploaders: Paul Wise p...@debian.org
 Standards-Version: 3.8.2
-Build-Depends: debhelper (= 5.0.0), libforms-dev
+Build-Depends: debhelper (= 5.0.0), libforms-dev, libforms-bin
 Homepage: http://shh.thathost.com/pub-unix/#Mancala
 Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/mancala/
 Vcs-Browser: 
http://svn.debian.org/wsvn/pkg-games/packages/trunk/mancala/?op=log

Added: packages/trunk/mancala/debian/patches/fix-libforms2-issue.patch
===
--- packages/trunk/mancala/debian/patches/fix-libforms2-issue.patch 
(rev 0)
+++ packages/trunk/mancala/debian/patches/fix-libforms2-issue.patch 
2012-06-18 06:11:17 UTC (rev 13713)
@@ -0,0 +1,158 @@
+Description: Fix issues with new libforms
+Author: Jens Thoms Toerring j...@toerring.de
+Bug-Debian: http://bugs.debian.org/620634
+Bug-Ubuntu: https://bugs.launchpad.net/bugs/904629
+--- a/xform.fd
 b/xform.fd
+@@ -11,7 +11,7 @@
+ Name: mancala
+ Width: 530
+ Height: 220
+-Number of Objects: 44
++Number of Objects: 45
+ 
+ 
+ class: FL_BOX
+@@ -805,6 +805,24 @@
+ callback: 
+ argument: 
+ 
++
++class: FL_BUTTON
++type: NORMAL_BUTTON
++box: 0 0 0 0
++boxtype: FL_UP_BOX
++colors: FL_COL1 FL_COL1
++alignment: FL_ALIGN_CENTER
++style: FL_NORMAL_STYLE
++size: FL_DEFAULT_SIZE
++lcol: FL_BLACK
++label: 
++shortcut: 
++resize: FL_RESIZE_NONE
++gravity: FL_NoGravity FL_NoGravity
++name: dummyButton
++callback: 
++argument: 
++
+ === FORM ===
+ Name: rules
+ Width: 505
+@@ -852,7 +870,7 @@
+ type: NORMAL_BROWSER
+ box: 10 10 485 255
+ boxtype: FL_DOWN_BOX
+-colors: FL_COL1 FL_YELLOW
++colors: FL_WHITE FL_YELLOW
+ alignment: FL_ALIGN_BOTTOM
+ style: FL_NORMAL_STYLE
+ size: FL_DEFAULT_SIZE
+--- a/xmain.c
 b/xmain.c
+@@ -46,7 +46,7 @@
+ static FL_OBJECT  *frmMancala[2];
+ static FL_OBJECT  *frmHole[2][MAX_HOLES];
+ static FL_OBJECT  *frmLight[2][MAX_HOLES];
+-static char   playerName[2][20] = { the human player, the computer };
++static const char *playerName[2] = { the human player, the computer };
+ static intmaxPly[2] = { 0, 4 };
+ static intrulesDisplayed = 0;
+ static intstones_pr_hole = STONES_PR_HOLE;
+@@ -236,16 +236,6 @@
+ fl_set_object_label(frm-winT, );
+ }
+ 
+-static void niceDoForms(void)
+-{
+-FL_OBJECT *obj;
+-XEvent xev;
+-
+-obj = fl_do_forms();
+-if (obj == FL_EVENT)
+-  fl_XNextEvent(xev);
+-}
+-
+ static void formHandler(void)
+ {
+ PMove  move;
+@@ -266,7 +256,7 @@
+   } else {
+   if (!maxPly[player]) {
+   setMessage(It's %s to move, playerName[player]);
+-  niceDoForms();
++  fl_do_forms();
+   move = move2;
+   if (moveHole = 0) {
+   if (movePlayer == player) {
+@@ -293,19 +283,10 @@
+   }
+   }
+   } else
+-  niceDoForms();
++  fl_do_forms();
+ }
+ }
+ 
+-/* Dirty trick to make fl_do_forms() return */
+-static void formWakeup(void)
+-{
+-XEvent xev;
+-
+-xev.type = ClientMessage;
+-fl_XPutBackEvent(xev);
+-}
+-
+ /**
+  **
+  *P U B L I CF U N C T I O N S*
+@@ -350,7 +331,7 @@
+   movePlayer = player;
+   moveHole = hole;
+ }
+-formWakeup();
++fl_trigger_object(frm-dummyButton);
+ }
+ 
+ void doLevel(FL_OBJECT *ob, long arg)
+@@ -367,7 +348,7 @@
+ void doNewGame(FL_OBJECT 

r13714 - packages/trunk/mancala/debian/patches

2012-06-18 Thread Paul Wise
Author: pabs
Date: 2012-06-18 06:19:06 + (Mon, 18 Jun 2012)
New Revision: 13714

Modified:
   packages/trunk/mancala/debian/patches/fix-libforms2-issue.patch
Log:
Also stop shipping xform.c

Modified: packages/trunk/mancala/debian/patches/fix-libforms2-issue.patch
===
--- packages/trunk/mancala/debian/patches/fix-libforms2-issue.patch 
2012-06-18 06:11:17 UTC (rev 13713)
+++ packages/trunk/mancala/debian/patches/fix-libforms2-issue.patch 
2012-06-18 06:19:06 UTC (rev 13714)
@@ -156,3 +156,12 @@
  
  veryclean: clean
rm -f $(TARGETS) $(DIST)-$(VERSION).tar.gz
+@@ -63,7 +67,7 @@
+ Makefile Makefile.bcc \
+ mancala.c mancala.h minimax.c minimax.h \
+ textmain.c \
+-xform.c xform.h xform.fd xmain.c rulestxt.c
++xform.fd xmain.c rulestxt.c
+ 
+ $(LSMFILE): FORCE
+   VER=$(VERSION); \


___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits


r13715 - packages/trunk/mancala/debian/patches

2012-06-18 Thread Paul Wise
Author: pabs
Date: 2012-06-18 06:40:17 + (Mon, 18 Jun 2012)
New Revision: 13715

Modified:
   packages/trunk/mancala/debian/patches/fix-libforms2-issue.patch
Log:
forwarded

Modified: packages/trunk/mancala/debian/patches/fix-libforms2-issue.patch
===
--- packages/trunk/mancala/debian/patches/fix-libforms2-issue.patch 
2012-06-18 06:19:06 UTC (rev 13714)
+++ packages/trunk/mancala/debian/patches/fix-libforms2-issue.patch 
2012-06-18 06:40:17 UTC (rev 13715)
@@ -2,6 +2,7 @@
 Author: Jens Thoms Toerring j...@toerring.de
 Bug-Debian: http://bugs.debian.org/620634
 Bug-Ubuntu: https://bugs.launchpad.net/bugs/904629
+Forwarded: Sverre H. Huseby s...@thathost.com
 --- a/xform.fd
 +++ b/xform.fd
 @@ -11,7 +11,7 @@


___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits


r13716 - packages/trunk/mancala/debian

2012-06-18 Thread Paul Wise
Author: pabs
Date: 2012-06-18 07:02:57 + (Mon, 18 Jun 2012)
New Revision: 13716

Modified:
   packages/trunk/mancala/debian/changelog
   packages/trunk/mancala/debian/compat
   packages/trunk/mancala/debian/control
   packages/trunk/mancala/debian/rules
Log:
Switch debhelper compat 9 and dh

Modified: packages/trunk/mancala/debian/changelog
===
--- packages/trunk/mancala/debian/changelog 2012-06-18 06:40:17 UTC (rev 
13715)
+++ packages/trunk/mancala/debian/changelog 2012-06-18 07:02:57 UTC (rev 
13716)
@@ -4,6 +4,7 @@
   * Switch to dpkg-source v3
   * Don't link against unused libraries
   * Fix issues with new libforms (Closes: #620634, LP: #904629)
+  * Switch debhelper compat 9 and dh
 
  -- Paul Wise p...@debian.org  Sun, 03 Apr 2011 13:45:54 +0800
 

Modified: packages/trunk/mancala/debian/compat
===
--- packages/trunk/mancala/debian/compat2012-06-18 06:40:17 UTC (rev 
13715)
+++ packages/trunk/mancala/debian/compat2012-06-18 07:02:57 UTC (rev 
13716)
@@ -1 +1 @@
-5
+9

Modified: packages/trunk/mancala/debian/control
===
--- packages/trunk/mancala/debian/control   2012-06-18 06:40:17 UTC (rev 
13715)
+++ packages/trunk/mancala/debian/control   2012-06-18 07:02:57 UTC (rev 
13716)
@@ -4,7 +4,7 @@
 Maintainer: Debian Games Team pkg-games-de...@lists.alioth.debian.org
 Uploaders: Paul Wise p...@debian.org
 Standards-Version: 3.8.2
-Build-Depends: debhelper (= 5.0.0), libforms-dev, libforms-bin
+Build-Depends: debhelper (= 9), libforms-dev, libforms-bin
 Homepage: http://shh.thathost.com/pub-unix/#Mancala
 Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/mancala/
 Vcs-Browser: 
http://svn.debian.org/wsvn/pkg-games/packages/trunk/mancala/?op=log

Modified: packages/trunk/mancala/debian/rules
===
--- packages/trunk/mancala/debian/rules 2012-06-18 06:40:17 UTC (rev 13715)
+++ packages/trunk/mancala/debian/rules 2012-06-18 07:02:57 UTC (rev 13716)
@@ -2,48 +2,9 @@
 
 #export DH_VERBOSE=1
 
-ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
-   NUMJOBS = $(patsubst parallel=%,%,$(filter 
parallel=%,$(DEB_BUILD_OPTIONS)))
-   MAKEFLAGS += -j$(NUMJOBS)
-endif
+%:
+   dh $@ --parallel
 
-build: build-stamp
-build-stamp:
-   dh_testdir
-   $(MAKE) OPTIM=-g -O$(if $(findstring noopt,$(DEB_BUILD_OPTIONS)),0,2) 
LDOPT=
-   touch build-stamp
-
-clean:
-   dh_testdir
-   dh_testroot
-   rm -f build-stamp
-   $(MAKE) distclean
-   dh_clean
-
-install: build
-   dh_testdir
-   dh_testroot
-   dh_clean -k
-   dh_installdirs
-   dh_install
-
-binary-indep: build install
-binary-arch: build install
-   dh_testdir
-   dh_testroot
-   dh_installchangelogs
-   dh_installdocs
-   dh_installmenu
-   dh_installman
-   dh_link
-   dh_strip
-   dh_compress
-   dh_fixperms
-   dh_installdeb
-   dh_shlibdeps
-   dh_gencontrol
-   dh_md5sums
-   dh_builddeb
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install
+override_dh_auto_build:
+   rm -f xform.h xform.c
+   dh_auto_build -- OPTIM=$(shell dpkg-buildflags --get CFLAGS) $(shell 
dpkg-buildflags --get CPPFLAGS) LDOPT=$(shell dpkg-buildflags --get LDFLAGS)


___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits


r13717 - packages/trunk/mancala/debian

2012-06-18 Thread Paul Wise
Author: pabs
Date: 2012-06-18 07:04:54 + (Mon, 18 Jun 2012)
New Revision: 13717

Modified:
   packages/trunk/mancala/debian/changelog
   packages/trunk/mancala/debian/control
Log:
Bump Standards-Version, no changes needed

Modified: packages/trunk/mancala/debian/changelog
===
--- packages/trunk/mancala/debian/changelog 2012-06-18 07:02:57 UTC (rev 
13716)
+++ packages/trunk/mancala/debian/changelog 2012-06-18 07:04:54 UTC (rev 
13717)
@@ -5,6 +5,7 @@
   * Don't link against unused libraries
   * Fix issues with new libforms (Closes: #620634, LP: #904629)
   * Switch debhelper compat 9 and dh
+  * Bump Standards-Version, no changes needed
 
  -- Paul Wise p...@debian.org  Sun, 03 Apr 2011 13:45:54 +0800
 

Modified: packages/trunk/mancala/debian/control
===
--- packages/trunk/mancala/debian/control   2012-06-18 07:02:57 UTC (rev 
13716)
+++ packages/trunk/mancala/debian/control   2012-06-18 07:04:54 UTC (rev 
13717)
@@ -3,7 +3,7 @@
 Priority: extra
 Maintainer: Debian Games Team pkg-games-de...@lists.alioth.debian.org
 Uploaders: Paul Wise p...@debian.org
-Standards-Version: 3.8.2
+Standards-Version: 3.9.3
 Build-Depends: debhelper (= 9), libforms-dev, libforms-bin
 Homepage: http://shh.thathost.com/pub-unix/#Mancala
 Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/mancala/


___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits


r13718 - packages/trunk/mancala/debian

2012-06-18 Thread Paul Wise
Author: pabs
Date: 2012-06-18 07:05:37 + (Mon, 18 Jun 2012)
New Revision: 13718

Modified:
   packages/trunk/mancala/debian/changelog
   packages/trunk/mancala/debian/control
Log:
Fix the Vcs-Browser field

Modified: packages/trunk/mancala/debian/changelog
===
--- packages/trunk/mancala/debian/changelog 2012-06-18 07:04:54 UTC (rev 
13717)
+++ packages/trunk/mancala/debian/changelog 2012-06-18 07:05:37 UTC (rev 
13718)
@@ -6,6 +6,7 @@
   * Fix issues with new libforms (Closes: #620634, LP: #904629)
   * Switch debhelper compat 9 and dh
   * Bump Standards-Version, no changes needed
+  * Fix the Vcs-Browser field
 
  -- Paul Wise p...@debian.org  Sun, 03 Apr 2011 13:45:54 +0800
 

Modified: packages/trunk/mancala/debian/control
===
--- packages/trunk/mancala/debian/control   2012-06-18 07:04:54 UTC (rev 
13717)
+++ packages/trunk/mancala/debian/control   2012-06-18 07:05:37 UTC (rev 
13718)
@@ -7,7 +7,7 @@
 Build-Depends: debhelper (= 9), libforms-dev, libforms-bin
 Homepage: http://shh.thathost.com/pub-unix/#Mancala
 Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/mancala/
-Vcs-Browser: 
http://svn.debian.org/wsvn/pkg-games/packages/trunk/mancala/?op=log
+Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-games/packages/trunk/mancala/
 
 Package: mancala
 Architecture: any


___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits


r13719 - packages/trunk/mancala/debian

2012-06-18 Thread Paul Wise
Author: pabs
Date: 2012-06-18 07:12:04 + (Mon, 18 Jun 2012)
New Revision: 13719

Modified:
   packages/trunk/mancala/debian/mancala-text
   packages/trunk/mancala/debian/mancala.6
Log:
Forwarded some things upstream

Modified: packages/trunk/mancala/debian/mancala-text
===
--- packages/trunk/mancala/debian/mancala-text  2012-06-18 07:05:37 UTC (rev 
13718)
+++ packages/trunk/mancala/debian/mancala-text  2012-06-18 07:12:04 UTC (rev 
13719)
@@ -1,5 +1,7 @@
 #!/bin/sh
 
+# Forwarded: Sverre H. Huseby s...@thathost.com
+
 # mancala-text - short script to run mancala in xterm for debian
 
 # Andrew Gray a...@debian.org, Sat, 15 Jul 2000 00:16:28 +0100

Modified: packages/trunk/mancala/debian/mancala.6
===
--- packages/trunk/mancala/debian/mancala.6 2012-06-18 07:05:37 UTC (rev 
13718)
+++ packages/trunk/mancala/debian/mancala.6 2012-06-18 07:12:04 UTC (rev 
13719)
@@ -1,3 +1,4 @@
+.\ Forwarded: Sverre H. Huseby s...@thathost.com
 .\  Hey, EMACS: -*- nroff -*-
 .TH MANCALA 6 13 March 2001
 .\ Please adjust this date whenever revising the manpage.


___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits


r13720 - packages/trunk/mancala/debian

2012-06-18 Thread Paul Wise
Author: pabs
Date: 2012-06-18 07:12:44 + (Mon, 18 Jun 2012)
New Revision: 13720

Modified:
   packages/trunk/mancala/debian/changelog
   packages/trunk/mancala/debian/control
Log:
Wrap and sort various files

Modified: packages/trunk/mancala/debian/changelog
===
--- packages/trunk/mancala/debian/changelog 2012-06-18 07:12:04 UTC (rev 
13719)
+++ packages/trunk/mancala/debian/changelog 2012-06-18 07:12:44 UTC (rev 
13720)
@@ -7,6 +7,7 @@
   * Switch debhelper compat 9 and dh
   * Bump Standards-Version, no changes needed
   * Fix the Vcs-Browser field
+  * Wrap and sort various files
 
  -- Paul Wise p...@debian.org  Sun, 03 Apr 2011 13:45:54 +0800
 

Modified: packages/trunk/mancala/debian/control
===
--- packages/trunk/mancala/debian/control   2012-06-18 07:12:04 UTC (rev 
13719)
+++ packages/trunk/mancala/debian/control   2012-06-18 07:12:44 UTC (rev 
13720)
@@ -4,14 +4,14 @@
 Maintainer: Debian Games Team pkg-games-de...@lists.alioth.debian.org
 Uploaders: Paul Wise p...@debian.org
 Standards-Version: 3.9.3
-Build-Depends: debhelper (= 9), libforms-dev, libforms-bin
+Build-Depends: debhelper (= 9), libforms-bin, libforms-dev
 Homepage: http://shh.thathost.com/pub-unix/#Mancala
 Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/mancala/
 Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-games/packages/trunk/mancala/
 
 Package: mancala
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}
+Depends: ${misc:Depends}, ${shlibs:Depends}
 Description: Implementation of the simple board game called Mancala
  This is an implementation of the simple, but fun board game known as
  Mancala.  Contains both a user-unfriendly character-based interface, and a


___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits


r13721 - packages/trunk/mancala/debian

2012-06-18 Thread Paul Wise
Author: pabs
Date: 2012-06-18 07:13:15 + (Mon, 18 Jun 2012)
New Revision: 13721

Modified:
   packages/trunk/mancala/debian/changelog
Log:
releasing

Modified: packages/trunk/mancala/debian/changelog
===
--- packages/trunk/mancala/debian/changelog 2012-06-18 07:12:44 UTC (rev 
13720)
+++ packages/trunk/mancala/debian/changelog 2012-06-18 07:13:15 UTC (rev 
13721)
@@ -1,4 +1,4 @@
-mancala (1.0.1-4) UNRELEASED; urgency=low
+mancala (1.0.1-4) unstable; urgency=low
 
   * Remove uupdate from the watch file
   * Switch to dpkg-source v3
@@ -9,7 +9,7 @@
   * Fix the Vcs-Browser field
   * Wrap and sort various files
 
- -- Paul Wise p...@debian.org  Sun, 03 Apr 2011 13:45:54 +0800
+ -- Paul Wise p...@debian.org  Mon, 18 Jun 2012 15:12:59 +0800
 
 mancala (1.0.1-3) unstable; urgency=low
 


___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits


r13722 - in packages/tags/mancala: . 1.0.1-4/debian 1.0.1-4/debian/patches

2012-06-18 Thread Paul Wise
Author: pabs
Date: 2012-06-18 07:20:23 + (Mon, 18 Jun 2012)
New Revision: 13722

Added:
   packages/tags/mancala/1.0.1-4/
   packages/tags/mancala/1.0.1-4/debian/changelog
   packages/tags/mancala/1.0.1-4/debian/compat
   packages/tags/mancala/1.0.1-4/debian/control
   packages/tags/mancala/1.0.1-4/debian/mancala-text
   packages/tags/mancala/1.0.1-4/debian/mancala.6
   packages/tags/mancala/1.0.1-4/debian/patches/fix-libforms2-issue.patch
   packages/tags/mancala/1.0.1-4/debian/patches/series
   packages/tags/mancala/1.0.1-4/debian/rules
Removed:
   packages/tags/mancala/1.0.1-4/debian/changelog
   packages/tags/mancala/1.0.1-4/debian/compat
   packages/tags/mancala/1.0.1-4/debian/control
   packages/tags/mancala/1.0.1-4/debian/mancala-text
   packages/tags/mancala/1.0.1-4/debian/mancala.6
   packages/tags/mancala/1.0.1-4/debian/patches/series
   packages/tags/mancala/1.0.1-4/debian/rules
Log:
[svn-buildpackage] Tagging mancala 1.0.1-4

Deleted: packages/tags/mancala/1.0.1-4/debian/changelog
===
--- packages/trunk/mancala/debian/changelog 2012-06-17 11:45:18 UTC (rev 
13712)
+++ packages/tags/mancala/1.0.1-4/debian/changelog  2012-06-18 07:20:23 UTC 
(rev 13722)
@@ -1,121 +0,0 @@
-mancala (1.0.1-4) UNRELEASED; urgency=low
-
-  * Remove uupdate from the watch file
-  * Switch to dpkg-source v3
-  * Don't link against unused libraries
-
- -- Paul Wise p...@debian.org  Sun, 03 Apr 2011 13:45:54 +0800
-
-mancala (1.0.1-3) unstable; urgency=low
-
-  [ Eddy Petrișor ]
-  * add missing Vcs-Svn headers
-
-  [ Jon Dowland ]
-  * add Homepage: field to source stanza
-
-  [ Paul Wise ]
-  * Remove homepage from package description
-  * Fix bashism in the mancala-text script (Closes: #530136)
-  * Support parallel=N in DEB_BUILD_OPTIONS
-  * Change priority to extra, most people will not install mancala
-  * Bump Standards-Version due to the above changes
-
- -- Paul Wise p...@debian.org  Tue, 21 Jul 2009 23:22:20 +0200
-
-mancala (1.0.1-2) unstable; urgency=low
-
-  * Lets join the Debian Games team !
-  * Honour nostrip: prevent stripping by overriding LDOPT (Closes: #437587)
-  * Improve the manual page by fixing hyphens and linking to Wikipedia
-
- -- Paul Wise p...@debian.org  Sun, 19 Aug 2007 13:56:48 +1000
-
-mancala (1.0.1-1) unstable; urgency=low
-
-  * New upstream release
-- Allows users to specify the number of stones (Closes: #185547)
-  * Change my email address now that I'm a Debian Developer
-  * Bump debhelper compatibility level
-  * Clean up the packaging a bit
-
- -- Paul Wise p...@debian.org  Wed, 13 Jun 2007 20:04:01 +0100
-
-mancala (1.0.0-9) unstable; urgency=low
-
-  * Fix FTBFS due to xorg 7. Patch by Andreas Jochens closes: #374651
-  * Rename mancala.sh to mancala-text
-  * We now comply with the new Standards-Version, so update it.
-
- -- Paul Wise pa...@bonedaddy.net  Wed, 21 Jun 2006 11:23:00 +0800
-
-mancala (1.0.0-8) unstable; urgency=low
-
-  * New maintainer (Closes: #268125)
-  * debian/control: Add the homepage and a wikipedia page in the description.
-  * debian/menu: Add a menu entry for the text version of mancala.
-  * debian/control: Depend on debhelper = 4.0.0
-  * debian/rules: Move dh_* arguments into debian/* files
-  * debian/watch: Automatically run uupdate for new versions
-
- -- Paul Wise pa...@bonedaddy.net  Tue, 10 Jan 2006 13:37:20 +0800
-
-mancala (1.0.0-7) unstable; urgency=low
-
-  * QA upload.
-  * Package is orphaned (see #268125); set maintainer to Debian QA Group.
-  * Since libxpm is used only indirectly (through libforms), drop
-`-lXpm -lX11' and the xlibs-dev build dependency.
-  * Remove mancala-1.0.0.lsm from the binary package.
-  * Switch to debhelper 4.
-  * Makefile, debian/rules: Honor DEB_BUILD_OPTIONS={noopt,nostrip}.
-  * debian/changelog: Remove obsolete Emacs local variables.
-  * debian/menu: Add quotes to placate Lintian.
-  * debian/watch: Add.
-  * Conforms to Standards version 3.6.2.
-
- -- Matej Vela v...@debian.org  Thu, 20 Oct 2005 23:54:17 +0200
-
-mancala (1.0.0-6) unstable; urgency=low
-
-  * Compile against free (LGPLed) XForms, so move out of contrib into main
-
- -- Andrew Gray a...@debian.org  Sun, 26 Jan 2003 21:46:22 +
-
-mancala (1.0.0-5) unstable; urgency=low
-
-  * Corrected typo in debian/control.  Closes: #125108
-  * Took console-based mancala out of menu entry, leaving in X version only
-  * Bumped standards-version to 3.5.6
-
- -- Andrew Gray a...@debian.org  Thu, 20 Dec 2001 22:42:49 +
-
-mancala (1.0.0-4) unstable; urgency=low
-
-  * Corrected typo in Build-Depends.  Closes: #93024
-  * Added dh_strip to debian/rules
-
- -- Andrew Gray a...@debian.org  Sat,  7 Apr 2001 13:59:03 +0100
-
-mancala (1.0.0-3) unstable; urgency=low
-
-  * Added Build-Depends
-  * Added note on mancala.sh script to the manual page
-
- -- Andrew Gray a...@debian.org  Tue, 13 Mar 2001 13:46:23 +
-
-mancala (1.0.0-2) unstable; urgency=low
-
-  * 

[SCM] mess system emulator branch, master, updated. ad7ed655305ef10b57ae213808f364b2f76c83cb

2012-06-18 Thread Emmanuel Kasper
The following commit has been merged in the master branch:
commit fd9a6aa8c09457879691a499a27a9e19aa7b55b6
Author: Emmanuel Kasper emman...@libera.cc
Date:   Mon Jun 18 23:37:15 2012 +0200

Remove fix_mame_manpage_section.patch: it was unused

diff --git a/debian/patches/fix_mame_manpage_section.patch 
b/debian/patches/fix_mame_manpage_section.patch
deleted file mode 100644
index 01ae4b7..000
--- a/debian/patches/fix_mame_manpage_section.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-From: Cesare Falco cesare.fa...@gmail.com
-Subject: Fix section in mame manpage
-Index: mame-0.142/src/osd/sdl/man/mame.1
-===
 mame-0.142.orig/src/osd/sdl/man/mame.1 2011-06-16 09:58:20.0 
+0200
-+++ mame-0.142/src/osd/sdl/man/mame.1  2011-06-16 09:58:39.0 +0200
-@@ -1,6 +1,6 @@
- .\  -*- nroff -*-
- .\
--.\ mame.1
-+.\ mame.6
- .\
- .\ Man page created from usage and source information:
- .\ * commands: see src/emu/clifront.c clifront.h
-@@ -13,7 +13,7 @@
- .\ and updated by Andrew Burton burt...@gol.com, July 2003
- .\
- .\
--.TH MAME 1 2010-07-07 0.138u4 MAME - The Multiple Arcade Machine Emulator
-+.TH MAME 6 2010-07-07 0.138u4 MAME - The Multiple Arcade Machine Emulator
- .\
- .\
- .\ NAME chapter
diff --git a/debian/patches/series b/debian/patches/series
index eb1f11b..6fa1ae7 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,2 +1 @@
 gnu_fixes.patch
-fix_mame_manpage_section.patch

-- 
mess system emulator

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits


[SCM] mess system emulator branch, master, updated. ad7ed655305ef10b57ae213808f364b2f76c83cb

2012-06-18 Thread Emmanuel Kasper
The following commit has been merged in the master branch:
commit ad7ed655305ef10b57ae213808f364b2f76c83cb
Author: Emmanuel Kasper emman...@libera.cc
Date:   Mon Jun 18 23:40:02 2012 +0200

Remove fix_mame_manpage_section.patch as it was unused

diff --git a/debian/changelog b/debian/changelog
index d438aae..5169aca 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,7 +5,7 @@ mess (0.146-1) UNRELEASED; urgency=low
   * Switch to http://www.progettosnaps.net/MESS/src/ for get-orig-source
   * Drop patches to link with flac and jpeg system lib: this has been pushed
   upstream  by Cesare Falco.
-
+  * Remove fix_mame_manpage_section.patch as it was unused
  -- Emmanuel Kasper emman...@libera.cc  Tue, 29 May 2012 16:15:04 +0200
 
 mess (0.145-1) unstable; urgency=low

-- 
mess system emulator

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits


[SCM] multi-platform emulator, including NES, GB/A, Lynx, PC Engine branch, master, updated. debian/0.8.D.3-4-4-gb21b66a

2012-06-18 Thread Stephen Kitt
The following commit has been merged in the master branch:
commit cb41ab5c7a9ab46440b5370db562dd80722234e5
Author: Stephen Kitt st...@sk2.org
Date:   Sun Jun 17 23:13:03 2012 +0200

Use ${source:Package} to avoid Built-Using mis-calculations with binNMUs 
(closes: #677867).

diff --git a/debian/changelog b/debian/changelog
index da31034..3a5c381 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+mednafen (0.8.D.3-5) UNRELEASED; urgency=low
+
+  * Use ${source:Package} with dpkg-query to retrieve only the package
+name in the Built-Using field (closes: #677867).
+
+ -- Stephen Kitt st...@sk2.org  Sun, 17 Jun 2012 19:57:18 +0200
+
 mednafen (0.8.D.3-4) unstable; urgency=low
 
   * Update debian/watch to track stable releases only.
diff --git a/debian/rules b/debian/rules
index ff70095..7fe720e 100755
--- a/debian/rules
+++ b/debian/rules
@@ -4,7 +4,7 @@
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
 
-liblzo2_source := $(shell dpkg-query -W -f='$${Source} (= $${source:Version})' 
liblzo2-dev)
+liblzo2_source := $(shell dpkg-query -W -f='$${source:Package} (= 
$${source:Version})' liblzo2-dev)
 
 
 %:

-- 
multi-platform emulator, including NES, GB/A, Lynx, PC Engine

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits


[SCM] multi-platform emulator, including NES, GB/A, Lynx, PC Engine branch, master, updated. debian/0.8.D.3-4-4-gb21b66a

2012-06-18 Thread Stephen Kitt
The following commit has been merged in the master branch:
commit cb6b757a25a99444ebf0a7dc542430e873f5bbe7
Author: Stephen Kitt st...@sk2.org
Date:   Sun Jun 17 23:13:33 2012 +0200

Drop unused GPL-2 license paragraph.

diff --git a/debian/changelog b/debian/changelog
index 3a5c381..2420bc9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,7 @@ mednafen (0.8.D.3-5) UNRELEASED; urgency=low
 
   * Use ${source:Package} with dpkg-query to retrieve only the package
 name in the Built-Using field (closes: #677867).
+  * Drop unused GPL-2 license paragraph from debian/copyright.
 
  -- Stephen Kitt st...@sk2.org  Sun, 17 Jun 2012 19:57:18 +0200
 
diff --git a/debian/copyright b/debian/copyright
index 88f1e15..01dcea7 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -338,23 +338,6 @@ Comment: DSP Utils
 Copyright: 2000-2002 Fabrice Bellard
 License: LGPL-2+
 
-License: GPL-2
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License version 2 as
- published by the Free Software Foundation.
- .
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- GNU General Public License for more details.
- .
- You should have received a copy of the GNU General Public License along
- with this program; if not, write to the Free Software Foundation, Inc.,
- 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
- .
- On Debian systems, the complete text of the GNU General Public License
- version 2 can be found in /usr/share/common-licenses/GPL-2
-
 License: GPL-2+
  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by

-- 
multi-platform emulator, including NES, GB/A, Lynx, PC Engine

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits


[SCM] multi-platform emulator, including NES, GB/A, Lynx, PC Engine branch, master, updated. debian/0.8.D.3-4-4-gb21b66a

2012-06-18 Thread Stephen Kitt
The following commit has been merged in the master branch:
commit 72d9942dbb583cce78481fdc4675c1d97ff3cb41
Author: Stephen Kitt st...@sk2.org
Date:   Mon Jun 18 01:01:03 2012 +0200

Fix configure.ac to ensure dpkg-buildflags' CPPFLAGS make it all the way 
through the build.

diff --git a/debian/changelog b/debian/changelog
index 2420bc9..6cf65fe 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,8 @@ mednafen (0.8.D.3-5) UNRELEASED; urgency=low
   * Use ${source:Package} with dpkg-query to retrieve only the package
 name in the Built-Using field (closes: #677867).
   * Drop unused GPL-2 license paragraph from debian/copyright.
+  * Fix configure.ac to ensure dpkg-buildflags' CPPFLAGS make it all the
+way through the build.
 
  -- Stephen Kitt st...@sk2.org  Sun, 17 Jun 2012 19:57:18 +0200
 
diff --git a/debian/patches/hardening-fixes.patch 
b/debian/patches/hardening-fixes.patch
index cb0aa65..9fd4257 100644
--- a/debian/patches/hardening-fixes.patch
+++ b/debian/patches/hardening-fixes.patch
@@ -28,3 +28,32 @@ Author: Stephen Kitt st...@sk2.org
  
if(subcon_tb != subcon_wc)
{
+--- mednafen.orig/configure.ac
 mednafen/configure.ac
+@@ -58,7 +58,7 @@
+ else
+  AC_PATH_X
+  CFLAGS=-I${x_includes} ${CFLAGS}
+- CPPFLAGS=-I${x_includes} ${CFLAGS}
++ CPPFLAGS=-I${x_includes} ${CPPFLAGS}
+ 
+  AC_CHECK_HEADER([GL/gl.h],HAVE_GL_GL_H=true, HAVE_GL_GL_H=false)
+ 
+@@ -359,7 +359,7 @@
+ CFLAGS_SDLNET_BACK=$CFLAGS
+ CPPFLAGS_SDLNET_BACK=$CPPFLAGS
+ CFLAGS=$CFLAGS $SDL_CFLAGS
+-CPPFLAGS=$CFLAGS $SDL_CFLAGS
++CPPFLAGS=$CPPFLAGS $SDL_CFLAGS
+ AC_CHECK_HEADER([SDL_net.h],[], [HAS_SDL_NET=no])
+ if test x$HAS_SDL_NET = xno; then
+ AC_MSG_ERROR([*** SDL_net not found!])
+@@ -393,7 +393,7 @@
+ AX_CFLAGS_GCC_OPTION([-maltivec], ALTIVEC_FLAGS)
+ if test x$ALTIVEC_FLAGS != x; then
+ CFLAGS=$CFLAGS $ALTIVEC_FLAGS
+-CPPFLAGS=$CFLAGS $ALTIVEC_FLAGS
++CPPFLAGS=$CPPFLAGS $ALTIVEC_FLAGS
+ AC_DEFINE([ARCH_POWERPC_ALTIVEC], [1], [Define if we 
are compiling with AltiVec usage.])
+ AM_CONDITIONAL(ARCH_POWERPC_ALTIVEC, true)
+ fi

-- 
multi-platform emulator, including NES, GB/A, Lynx, PC Engine

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits


[SCM] multi-platform emulator, including NES, GB/A, Lynx, PC Engine branch, master, updated. debian/0.8.D.3-4-4-gb21b66a

2012-06-18 Thread Stephen Kitt
The following commit has been merged in the master branch:
commit b21b66a19ed184afdd920414691a3544b1d16f89
Author: Stephen Kitt st...@sk2.org
Date:   Mon Jun 18 06:46:15 2012 +0200

Release.

diff --git a/debian/changelog b/debian/changelog
index 6cf65fe..ca12dc3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-mednafen (0.8.D.3-5) UNRELEASED; urgency=low
+mednafen (0.8.D.3-5) unstable; urgency=low
 
   * Use ${source:Package} with dpkg-query to retrieve only the package
 name in the Built-Using field (closes: #677867).
@@ -6,7 +6,7 @@ mednafen (0.8.D.3-5) UNRELEASED; urgency=low
   * Fix configure.ac to ensure dpkg-buildflags' CPPFLAGS make it all the
 way through the build.
 
- -- Stephen Kitt st...@sk2.org  Sun, 17 Jun 2012 19:57:18 +0200
+ -- Stephen Kitt st...@sk2.org  Mon, 18 Jun 2012 01:01:20 +0200
 
 mednafen (0.8.D.3-4) unstable; urgency=low
 

-- 
multi-platform emulator, including NES, GB/A, Lynx, PC Engine

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits


[SCM] multi-platform emulator, including NES, GB/A, Lynx, PC Engine branch, master-experimental, updated. debian/0.9.21-2-6-g08984bc

2012-06-18 Thread Stephen Kitt
The following commit has been merged in the master-experimental branch:
commit 98fe0322e306f7b4972446f908a75b88ae67f70b
Merge: 57ac5e0903dfff4db592ede039f856d83eed4f1b 
a216c7a7b9d02c26486c66e700155f9bac903161
Author: Stephen Kitt st...@sk2.org
Date:   Wed May 30 06:40:07 2012 +0200

Merge tag 'upstream/0.9.22' into master-experimental

Upstream version 0.9.22


-- 
multi-platform emulator, including NES, GB/A, Lynx, PC Engine

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits


[SCM] multi-platform emulator, including NES, GB/A, Lynx, PC Engine branch, master-experimental, updated. debian/0.9.21-2-6-g08984bc

2012-06-18 Thread Stephen Kitt
The following commit has been merged in the master-experimental branch:
commit f86395eb9d32fdfffc21a7bfc27187a8fe54459c
Author: Stephen Kitt st...@sk2.org
Date:   Wed May 30 07:42:34 2012 +0200

Note that this version breaks Genesis save games and release.

diff --git a/debian/changelog b/debian/changelog
index d052e52..c24c9b0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,10 @@
-mednafen (0.9.22-1) UNRELEASED; urgency=low
+mednafen (0.9.22-1) experimental; urgency=low
 
-  * New upstream WIP version.
+  * New upstream WIP version (breaks Genesis/Megadrive save games).
   * Drop hardening-fixes.patch and cdromif-memset-fix.patch, merged
 upstream.
 
- -- Stephen Kitt st...@sk2.org  Wed, 30 May 2012 06:47:49 +0200
+ -- Stephen Kitt st...@sk2.org  Wed, 30 May 2012 07:42:07 +0200
 
 mednafen (0.9.21-2) experimental; urgency=low
 

-- 
multi-platform emulator, including NES, GB/A, Lynx, PC Engine

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits


[SCM] multi-platform emulator, including NES, GB/A, Lynx, PC Engine branch, master-experimental, updated. debian/0.9.21-2-6-g08984bc

2012-06-18 Thread Stephen Kitt
The following commit has been merged in the master-experimental branch:
commit 38be0ad5c83b8475ccabab218c6fd64fb6eeff8c
Author: Stephen Kitt st...@sk2.org
Date:   Wed May 30 06:51:16 2012 +0200

New upstream WIP version.

diff --git a/debian/changelog b/debian/changelog
index 128e7cb..d052e52 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+mednafen (0.9.22-1) UNRELEASED; urgency=low
+
+  * New upstream WIP version.
+  * Drop hardening-fixes.patch and cdromif-memset-fix.patch, merged
+upstream.
+
+ -- Stephen Kitt st...@sk2.org  Wed, 30 May 2012 06:47:49 +0200
+
 mednafen (0.9.21-2) experimental; urgency=low
 
   * Add a Built-Using relationship on the package MiniLZO was copied
diff --git a/debian/copyright b/debian/copyright
index afce242..f561e4a 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -177,7 +177,8 @@ License: GPL-2+
 
 Files: src/hw_cpu/z80-fuse/*
 Comment: Fuse Z80 emulation code http://fuse-emulator.sourceforge.net/
-Copyright: 1999-2004 Philip Kendall, Witold Filipczyk
+Copyright: 1999-2005 Philip Kendall, Witold Filipczyk
+  1999-2011 Philip Kendall
 License: GPL-2+
 
 Files: src/ngp/*
@@ -301,7 +302,7 @@ Comment: Genesis Plus http://cgfm2.emuviews.com/
 Copyright: 1998-2003 Charles MacDonald
 License: GPL-2+
 
-Files: src/md/cart/map_eeprom.cpp
+Files: src/md/hvc.h src/md/cart/map_eeprom.cpp
 Comment: Genesis Plus GX
 Copyright: 2007-2009 EkeEke
 License: GPL-2+
diff --git a/debian/patches/cdromif-memset-fix.patch 
b/debian/patches/cdromif-memset-fix.patch
deleted file mode 100644
index 39b63f9..000
--- a/debian/patches/cdromif-memset-fix.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Subject: Fix memset invocation
-Author: Stephen Kitt st...@sk2.org
-Forwarded: yes, http://forum.fobby.net/index.php?t=msggoto=2458#msg_2458
-
-This memset call has its last two arguments swapped.
-
 mednafen.orig/src/cdrom/cdromif.cpp
-+++ mednafen/src/cdrom/cdromif.cpp
-@@ -344,7 +344,7 @@
- 
-  if(UnrecoverableError)
-  {
--  memset(buf, 2352 + 96, 0);
-+  memset(buf, 0, 2352 + 96);
-   return(false);
-  }
- 
diff --git a/debian/patches/hardening-fixes.patch 
b/debian/patches/hardening-fixes.patch
deleted file mode 100644
index 538defb..000
--- a/debian/patches/hardening-fixes.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-Description: Always use format specifier when formatting a variable string
-Author: Stephen Kitt st...@sk2.org
-
 mednafen.orig/src/ngp/TLCS-900h/TLCS900h_disassemble.cpp
-+++ mednafen/src/ngp/TLCS-900h/TLCS900h_disassemble.cpp
-@@ -209,7 +209,7 @@
- 
-   if (size == 0  first == 0xC7)
-   {
--  sprintf(str_r, extra);
-+  sprintf(str_r, %s, extra);
-   return;
-   }
- 
diff --git a/debian/patches/series b/debian/patches/series
index 71fa0f7..a355c18 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,4 +1,2 @@
 use-system-tremor.patch
 use-system-mpcdec.patch
-hardening-fixes.patch
-cdromif-memset-fix.patch

-- 
multi-platform emulator, including NES, GB/A, Lynx, PC Engine

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits


[SCM] multi-platform emulator, including NES, GB/A, Lynx, PC Engine branch, pristine-tar, updated. 44f20b674cbe4619a8a07ccdc482e293d5a87383

2012-06-18 Thread Stephen Kitt
The following commit has been merged in the pristine-tar branch:
commit 44f20b674cbe4619a8a07ccdc482e293d5a87383
Author: Stephen Kitt st...@sk2.org
Date:   Wed May 30 06:40:06 2012 +0200

pristine-tar data for mednafen_0.9.22.orig.tar.bz2

diff --git a/mednafen_0.9.22.orig.tar.bz2.delta 
b/mednafen_0.9.22.orig.tar.bz2.delta
new file mode 100644
index 000..fc9589f
Binary files /dev/null and b/mednafen_0.9.22.orig.tar.bz2.delta differ
diff --git a/mednafen_0.9.22.orig.tar.bz2.id b/mednafen_0.9.22.orig.tar.bz2.id
new file mode 100644
index 000..8b60bf4
--- /dev/null
+++ b/mednafen_0.9.22.orig.tar.bz2.id
@@ -0,0 +1 @@
+b9b40ee3dab4d6b09f91490aebe923016e39d71b

-- 
multi-platform emulator, including NES, GB/A, Lynx, PC Engine

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits


[SCM] multi-platform emulator, including NES, GB/A, Lynx, PC Engine branch, master-experimental, updated. debian/0.9.21-2-6-g08984bc

2012-06-18 Thread Stephen Kitt
The following commit has been merged in the master-experimental branch:
commit b5ddbf7163c734a914349c46078083888a46aebe
Author: Stephen Kitt st...@sk2.org
Date:   Mon Jun 18 06:53:00 2012 +0200

Use ${source:Package} to avoid Built-Using mis-calculations with binNMUs 
(closes: #677867).

diff --git a/debian/changelog b/debian/changelog
index c24c9b0..489c354 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+mednafen (0.9.22-2) UNRELEASED; urgency=low
+
+  * Use ${source:Package} with dpkg-query to retrieve only the package
+name in the Built-Using field (closes: #677867).
+
+ -- Stephen Kitt st...@sk2.org  Mon, 18 Jun 2012 06:52:11 +0200
+
 mednafen (0.9.22-1) experimental; urgency=low
 
   * New upstream WIP version (breaks Genesis/Megadrive save games).
diff --git a/debian/rules b/debian/rules
index a4e1b73..29045b6 100755
--- a/debian/rules
+++ b/debian/rules
@@ -4,7 +4,7 @@
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
 
-liblzo2_source := $(shell dpkg-query -W -f='$${Source} (= $${source:Version})' 
liblzo2-dev)
+liblzo2_source := $(shell dpkg-query -W -f='$${source:Package} (= 
$${source:Version})' liblzo2-dev)
 
 
 %:

-- 
multi-platform emulator, including NES, GB/A, Lynx, PC Engine

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits


[SCM] multi-platform emulator, including NES, GB/A, Lynx, PC Engine branch, master-experimental, updated. debian/0.9.21-2-6-g08984bc

2012-06-18 Thread Stephen Kitt
The following commit has been merged in the master-experimental branch:
commit 08984bce6cbd0a2356d571baef20529cea72f73d
Author: Stephen Kitt st...@sk2.org
Date:   Tue Jun 19 00:18:50 2012 +0200

Release.

diff --git a/debian/changelog b/debian/changelog
index 489c354..2d29350 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-mednafen (0.9.22-2) UNRELEASED; urgency=low
+mednafen (0.9.22-2) experimental; urgency=low
 
   * Use ${source:Package} with dpkg-query to retrieve only the package
 name in the Built-Using field (closes: #677867).

-- 
multi-platform emulator, including NES, GB/A, Lynx, PC Engine

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits


[SCM] multi-platform emulator, including NES, GB/A, Lynx, PC Engine annotated tag, upstream/0.9.22, created. upstream/0.9.22

2012-06-18 Thread Stephen Kitt
The annotated tag, upstream/0.9.22 has been created
at  f9829120d2876aa4bdf2382cef13664bdc436dc1 (tag)
   tagging  a216c7a7b9d02c26486c66e700155f9bac903161 (commit)
  replaces  upstream/0.9.21
 tagged by  Stephen Kitt
on  Wed May 30 06:40:07 2012 +0200

- Shortlog 
Upstream version 0.9.22

Stephen Kitt (1):
  Imported Upstream version 0.9.22

---

-- 
multi-platform emulator, including NES, GB/A, Lynx, PC Engine

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits


[SCM] multi-platform emulator, including NES, GB/A, Lynx, PC Engine annotated tag, debian/0.9.22-2, created. debian/0.9.22-2

2012-06-18 Thread Stephen Kitt
The annotated tag, debian/0.9.22-2 has been created
at  acb9c771cae9fd0e5736e753af4c9d74f6102ae5 (tag)
   tagging  08984bce6cbd0a2356d571baef20529cea72f73d (commit)
  replaces  debian/0.9.21-2
 tagged by  Stephen Kitt
on  Tue Jun 19 00:19:12 2012 +0200

- Shortlog 
Debian release 0.9.22-2

Stephen Kitt (6):
  Imported Upstream version 0.9.22
  Merge tag 'upstream/0.9.22' into master-experimental
  New upstream WIP version.
  Note that this version breaks Genesis save games and release.
  Use ${source:Package} to avoid Built-Using mis-calculations with binNMUs 
(closes: #677867).
  Release.

---

-- 
multi-platform emulator, including NES, GB/A, Lynx, PC Engine

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits


[SCM] multi-platform emulator, including NES, GB/A, Lynx, PC Engine annotated tag, debian/0.9.22-1, created. debian/0.9.22-1

2012-06-18 Thread Stephen Kitt
The annotated tag, debian/0.9.22-1 has been created
at  081715686dae2c0691aca32e9736cf31b63c2cd9 (tag)
   tagging  f86395eb9d32fdfffc21a7bfc27187a8fe54459c (commit)
  replaces  debian/0.9.21-2
 tagged by  Stephen Kitt
on  Tue Jun 19 00:21:11 2012 +0200

- Shortlog 
Debian release 0.9.22-1

Stephen Kitt (4):
  Imported Upstream version 0.9.22
  Merge tag 'upstream/0.9.22' into master-experimental
  New upstream WIP version.
  Note that this version breaks Genesis save games and release.

---

-- 
multi-platform emulator, including NES, GB/A, Lynx, PC Engine

___
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits