Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 191714 - games-arcade/bub-n-bros-1.6 (version bump)
Summary: games-arcade/bub-n-bros-1.6 (version bump)
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Games (show other bugs)
Hardware: All Linux
: High enhancement
Assignee: Gentoo Games
URL: http://bub-n-bros.sourceforge.net/
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-09-08 16:00 UTC by Tomasz Mon
Modified: 2007-09-09 06:05 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments
bub-n-bros-1.6-python25.patch (bub-n-bros-1.6-python25.patch,1.04 KB, patch)
2007-09-08 16:01 UTC, Tomasz Mon
Details | Diff
bub-n-bros-1.6-home.patch (bub-n-bros-1.6-home.patch,1.99 KB, patch)
2007-09-08 16:09 UTC, Tomasz Mon
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Tomasz Mon 2007-09-08 16:00:50 UTC
Release 1.6 is out -- beyond the Ultimate Bub-n-Bros
featuring updated graphics by David Gowers, a few new bonuses and bug fixes

simple rename bub-n-bros-1.5.ebuild to bub-n-bros-1.6.ebuild works fine


Reproducible: Always

Steps to Reproduce:
Comment 1 Tomasz Mon 2007-09-08 16:01:45 UTC
Created attachment 130347 [details, diff]
bub-n-bros-1.6-python25.patch

bub-n-bros-1.5-python25.patch synced to 1.6
Comment 2 Tomasz Mon 2007-09-08 16:03:44 UTC
Comment on attachment 130347 [details, diff]
bub-n-bros-1.6-python25.patch

><HTML><HEAD/><BODY><PRE>diff -ur bubbros-1.5.orig/bubbob/statesaver.c bubbros-1.5/bubbob/statesaver.c
>--- bubbros-1.6.orig/bubbob/statesaver.c	2007-09-08 17:43:14.000000000 +0200
>+++ bubbros-1.6/bubbob/statesaver.c	2007-09-08 17:43:14.000000000 +0200
>@@ -75,7 +75,7 @@
>     Py_INCREF(g);  /* exhausted -- can return 'g' itself */
>     return g;
>   }
>-  if (f-&gt;f_nfreevars || f-&gt;f_ncells) {
>+  if (PySequence_Length(co-&gt;co_freevars) || PySequence_Length(co-&gt;co_cellvars)) {
>     PyErr_SetString(PyExc_ValueError, "generator has cell or free vars");
>     goto error;
>   }
>@@ -112,6 +112,8 @@
>   PyFrameObject* f = NULL;
>   PyFrameObject* f2 = NULL;
>   PyCodeObject* co;
>+  PyCodeObject* code;
>+  PyCodeObject* code2;
>   int i, res;
> 
>   if (g != g2)
>@@ -141,9 +143,9 @@
>         Py_DECREF(x);
>         goto error;
>       }
>-      f2 = (PyFrameObject*) x;
> 
>-      if (f2-&gt;f_stacksize != f-&gt;f_stacksize) {
>+      code2 = (PyFrameObject*) x;
>+      if (code2-&gt;co_stacksize != code-&gt;co_stacksize) {
>         PyErr_SetString(PyExc_TypeError, "stack size mismatch");
>         goto error;
>       }
></PRE></BODY></HTML>
Comment 3 Tomasz Mon 2007-09-08 16:09:45 UTC
Created attachment 130348 [details, diff]
bub-n-bros-1.6-home.patch
Comment 4 Mr. Bones. (RETIRED) gentoo-dev 2007-09-09 06:05:23 UTC
in portage.  thanks for the bug report and patch updates.