diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-02-03 07:09:29 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-02-03 07:09:29 +0100 |
commit | 4a360a43a7acf18bd702408ba607993ca4beccef (patch) | |
tree | 6dfc4556fd361e206267c9d31e36a1b6b65160e6 /games-arcade/bub-n-bros/files | |
parent | games-action/accelerator3d: Remove last-rited pkg (diff) | |
download | gentoo-4a360a43a7acf18bd702408ba607993ca4beccef.tar.gz gentoo-4a360a43a7acf18bd702408ba607993ca4beccef.tar.bz2 gentoo-4a360a43a7acf18bd702408ba607993ca4beccef.zip |
games-arcade/bub-n-bros: Remove last-rited pkg
Closes: https://bugs.gentoo.org/703764
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'games-arcade/bub-n-bros/files')
-rw-r--r-- | games-arcade/bub-n-bros/files/bub-n-bros-1.6.2-home.patch | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/games-arcade/bub-n-bros/files/bub-n-bros-1.6.2-home.patch b/games-arcade/bub-n-bros/files/bub-n-bros-1.6.2-home.patch deleted file mode 100644 index 4d2cc317aba3..000000000000 --- a/games-arcade/bub-n-bros/files/bub-n-bros-1.6.2-home.patch +++ /dev/null @@ -1,51 +0,0 @@ ---- bubbob/images.py 2007-09-08 17:03:41.000000000 +0200 -+++ bubbob/images.py 2007-09-08 17:57:45.000000000 +0200 -@@ -454,7 +454,6 @@ - # check and maybe regenerate the colored image files - file = os.path.join('images', 'buildcolors.py') - g = {'__name__': '__auto__', '__file__': file} -- execfile(file, g) - # replace the entries 'filename_%d.ppm' by a family of entries, - # one for each color - sprmap = {} ---- display/pclient.py 2007-09-08 17:03:41.000000000 +0200 -+++ display/pclient.py 2007-09-08 17:57:45.000000000 +0200 -@@ -162,8 +162,8 @@ - if mode[-1].has_key('cfgfile'): - self.trackcfgfile = mode[-1]['cfgfile'] - else: -- self.trackcfgfile = os.path.join(DataChunk.SOURCEDIR, -- 'http2', 'config.txt') -+ self.trackcfgfile = os.path.join(os.environ.get('HOME'), -+ '.bubnbros') - self.udpsock = None - self.udpsock_low = None - self.udpsock2 = None ---- http2/httppages.py 2007-09-08 17:03:41.000000000 +0200 -+++ http2/httppages.py 2007-09-08 17:57:45.000000000 +0200 -@@ -38,7 +38,7 @@ - - - class PageServer: -- CONFIGFILE = 'config.txt' -+ CONFIGFILE = '.bubnbros' - localservers = None - - def __init__(self, Game): -@@ -46,7 +46,7 @@ - self.seed = hex(random.randrange(0x1000, 0x10000)) - #self.unique_actions = {} - self.localhost = gamesrv.HOSTNAME -- self.filename = os.path.join(LOCALDIR, self.CONFIGFILE) -+ self.filename = os.path.join(os.environ.get('HOME'), self.CONFIGFILE) - data = self.loadoptionfile() - self.globaloptions = Options(data.get('*', {})) - self.localoptions = Options(data.get(self.localhost, {})) -@@ -333,7 +333,6 @@ - 'buildcolors.py') - if os.path.exists(file): - g = {'__name__': '__auto__', '__file__': file} -- execfile(file, g) - - if port: - address = '%s:%s' % (host, port) |