commit:     588e187498e47395f5fb24bd6029c684bea17911
Author:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 16 21:22:41 2018 +0000
Commit:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Thu Aug 16 21:32:32 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=588e1874

dev-python/wxpython: remove last-rited 2.8 SLOT

Bug: https://bugs.gentoo.org/661284
Package-Manager: Portage-2.3.46, Repoman-2.3.10

 dev-python/wxpython/Manifest                       |   4 -
 .../files/wxpython-2.8-cache-writable.patch        |  20 ---
 .../files/wxpython-2.8-wxversion-demo.patch        |  10 --
 .../files/wxpython-2.8.12-drop-categories.patch    |  37 ----
 .../files/wxpython-2.8.12-drop-editra.patch        |  55 ------
 .../files/wxpython-2.8.9-wxversion-scripts.patch   | 191 --------------------
 dev-python/wxpython/metadata.xml                   |   1 -
 dev-python/wxpython/wxpython-2.8.12.1-r2.ebuild    | 194 ---------------------
 8 files changed, 512 deletions(-)

diff --git a/dev-python/wxpython/Manifest b/dev-python/wxpython/Manifest
index dfefe577e68..7c15b2e2009 100644
--- a/dev-python/wxpython/Manifest
+++ b/dev-python/wxpython/Manifest
@@ -1,6 +1,2 @@
-DIST wxPython-demo-2.8.12.1.tar.bz2 3906851 BLAKE2B 
73e6b662b0f8a0ca719cc21bee8a457b7175231547b495d29be0733e48e2ac16e739b6a3a25fd0de643dfbbe5dbde07e36b983746bcf873a16d0f35598f505a4
 SHA512 
aab71cf4e4fb6632afd4607cbe5cdef6785c4ed3f1c7f67d6cef5487d1caee2f7652bfd974ba95a6a03e8d7809c94e291aca00c2fdf74ea29e118e1e30c947d5
 DIST wxPython-demo-3.0.2.0.tar.bz2 3992212 BLAKE2B 
9defe133e3863be5ae07b7adb4bcb94688487e9dd9f5ab1f768d2f5942f30d05ff678f1ba74241d9bafde3584e3c68ffeae4978117aaa300e23165140e6a6d44
 SHA512 
361ecaa7dfe5bae0757e04215c564370eaf8e5260ead45007f9d70439c15701725c3cbcd76691a5191258bef24fd200ebd61347a3fd920d888137bfc98a16702
-DIST wxPython-docs-2.8.12.1.tar.bz2 2331363 BLAKE2B 
f3d640bb8a7da2880e8ec5c30797381320943a618ace7844818036d6a9137cbfd1187281e751efefb0cb3b39543dc85f833773abcc2334a226f815b93eacb5da
 SHA512 
88591ef4f61bcbac29050d7dfecc230f7338cc006e7c3abc072b15da478e4fd994ab73ee5d072cb8b84f9de62ce182f1774354b0a7a4502ea639e59fdf965358
-DIST wxPython-newdocs-2.8.9.2.tar.bz2 1503913 BLAKE2B 
c56937a0f582ab123f5e6019aa8b84a56d04d6d18ccec6ab103c7443decc68f008585f71137e6da25c5d1d5c483845e688e5e175712312bc94b03876d0a986e6
 SHA512 
e114b2b44a7fd3ac292ca9735fb2e075459211384bc98d62ff2ba49e45111825101e74abd4af2ab0e5e52ede7b831641367c11a5c80e79f2da6ada3442463bfc
-DIST wxPython-src-2.8.12.1.tar.bz2 31311482 BLAKE2B 
33b3feb5f1182948badcd5695b35a68c673e36694a2db8c77b0b031b185c94c9f8bcf4753d9cbf8937e99a72f4c393d6f79850ed3d730af20a7263b97c620386
 SHA512 
4f826ccb57d5f4fc03fe7cae67499be70c727a99aebf9d153ea1060a21641642606d44d079ba897c38b176846336aeaebc21d30d5c7a0abec3934d65cf4529f3
 DIST wxPython-src-3.0.2.0.tar.bz2 58304944 BLAKE2B 
1144acf2cfa0a18aa2f90aabe81aaeca54d3fe6139818267dbc031accbae38035478a64ec084fe8bb8b89126fb70ff96e68981026df8ad3fc82e81c6d0e22d1a
 SHA512 
a3798e89ff19344253aac7d771971e519f7fa9723e82bd97e98f16fd7f1572e513170b02295b872dae0b1ae3fa95efc4ef34d078045b839694b4fdad3a27c9e4

diff --git a/dev-python/wxpython/files/wxpython-2.8-cache-writable.patch 
b/dev-python/wxpython/files/wxpython-2.8-cache-writable.patch
deleted file mode 100644
index 57f26b37c2e..00000000000
--- a/dev-python/wxpython/files/wxpython-2.8-cache-writable.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-Use /tmp for cache files since the user won't have
-write permissions on ${DOCDIR}.
-
-diff -Naurp docs-orig/viewdocs.py docs/viewdocs.py
---- docs-orig/viewdocs.py      2008-09-28 15:59:16.000000000 -0600
-+++ docs/viewdocs.py   2009-01-18 00:16:27.000000000 -0600
-@@ -16,11 +16,11 @@ if not basePath:
- 
- 
- # test for write access
--if os.access(basePath, os.W_OK):
-+if os.access('/tmp', os.W_OK):
- 
-     # setup the args
-     args = ['',
--        '--cache='+basePath,
-+        '--cache=/tmp',
-         os.path.join(basePath, 'wx.zip'),
-         ]
- 

diff --git a/dev-python/wxpython/files/wxpython-2.8-wxversion-demo.patch 
b/dev-python/wxpython/files/wxpython-2.8-wxversion-demo.patch
deleted file mode 100644
index 97829198a0b..00000000000
--- a/dev-python/wxpython/files/wxpython-2.8-wxversion-demo.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- demo/demo.org      2005-04-28 03:00:13.431583384 +0000
-+++ demo/demo.py       2005-04-28 03:00:31.886777768 +0000
-@@ -1,4 +1,7 @@
- #!/usr/bin/env python
- 
-+import wxversion
-+wxversion.select("2.8")
-+
- import Main
- Main.main()

diff --git a/dev-python/wxpython/files/wxpython-2.8.12-drop-categories.patch 
b/dev-python/wxpython/files/wxpython-2.8.12-drop-categories.patch
deleted file mode 100644
index d860238e94d..00000000000
--- a/dev-python/wxpython/files/wxpython-2.8.12-drop-categories.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-Fix QA issue wrt Bug 457586
-diff -ur wxPython-src-2.8.12.1.orig/wxPython/distrib/PyAlaMode.desktop 
wxPython-src-2.8.12.1/wxPython/distrib/PyAlaMode.desktop
---- distrib/PyAlaMode.desktop  2007-07-19 06:33:55.000000000 +0800
-+++ distrib/PyAlaMode.desktop  2013-03-04 13:48:51.737419595 +0800
-@@ -5,4 +5,4 @@
- Icon=PyCrust.png
- Terminal=false
- Type=Application
--Categories=Application;Development;
-+Categories=Development;
-diff -ur wxPython-src-2.8.12.1.orig/wxPython/distrib/PyCrust.desktop 
wxPython-src-2.8.12.1/wxPython/distrib/PyCrust.desktop
---- distrib/PyCrust.desktop    2007-07-19 06:33:55.000000000 +0800
-+++ distrib/PyCrust.desktop    2013-03-04 13:49:12.209418445 +0800
-@@ -5,4 +5,4 @@
- Icon=PyCrust.png
- Terminal=false
- Type=Application
--Categories=Application;Development;
-+Categories=Development;
-diff -ur wxPython-src-2.8.12.1.orig/wxPython/distrib/PyShell.desktop 
wxPython-src-2.8.12.1/wxPython/distrib/PyShell.desktop
---- distrib/PyShell.desktop    2007-07-19 06:33:55.000000000 +0800
-+++ distrib/PyShell.desktop    2013-03-04 13:49:28.713417518 +0800
-@@ -5,4 +5,4 @@
- Icon=PyCrust.png
- Terminal=false
- Type=Application
--Categories=Application;Development;
-+Categories=Development;
-diff -ur wxPython-src-2.8.12.1.orig/wxPython/distrib/XRCed.desktop 
wxPython-src-2.8.12.1/wxPython/distrib/XRCed.desktop
---- distrib/XRCed.desktop      2007-07-19 06:33:55.000000000 +0800
-+++ distrib/XRCed.desktop      2013-03-04 13:49:46.345416526 +0800
-@@ -5,4 +5,4 @@
- Icon=XRCed.png
- Terminal=false
- Type=Application
--Categories=Application;Development;
-+Categories=Development;

diff --git a/dev-python/wxpython/files/wxpython-2.8.12-drop-editra.patch 
b/dev-python/wxpython/files/wxpython-2.8.12-drop-editra.patch
deleted file mode 100644
index 4b49f30a138..00000000000
--- a/dev-python/wxpython/files/wxpython-2.8.12-drop-editra.patch
+++ /dev/null
@@ -1,55 +0,0 @@
---- a/wxPython/setup.py
-+++ b/wxPython/setup.py
-@@ -887,20 +887,6 @@ WX_PKGLIST =      [ 'wx',
-                     'wx.tools',
-                     'wx.tools.XRCed',
-                     'wx.tools.XRCed.plugins',
--                    'wx.tools.Editra',
--                    'wx.tools.Editra.src',
--                    'wx.tools.Editra.src.autocomp',
--                    'wx.tools.Editra.src.eclib',
--                    'wx.tools.Editra.src.ebmlib',
--                    'wx.tools.Editra.src.extern',
--                    'wx.tools.Editra.src.extern.aui',
--                    'wx.tools.Editra.src.extern.dexml',
--                    'wx.tools.Editra.src.extern.pygments',
--                    'wx.tools.Editra.src.extern.pygments.filters',
--                    'wx.tools.Editra.src.extern.pygments.formatters',
--                    'wx.tools.Editra.src.extern.pygments.lexers',
--                    'wx.tools.Editra.src.extern.pygments.styles',
--                    'wx.tools.Editra.src.syntax',
-                     ]
- 
- if not EGGing:
-@@ -927,7 +913,6 @@ else:
-                opj('scripts/pywrap'),
-                opj('scripts/pywxrc'),
-                opj('scripts/xrced'),
--               opj('scripts/editra'),
-                ]
-     if os.name == 'nt':
-         SCRIPTS.append( opj('scripts/genaxmodule') ) 
-@@ -941,15 +926,6 @@ DATA_FILES += find_data_files('wx/tools/XRCed', '*.txt', 
'*.xrc', '*.htb')
- DATA_FILES += find_data_files('wx/tools/XRCed/plugins', '*.crx')
- DATA_FILES += find_data_files('wx/tools/XRCed/plugins/bitmaps', '*.png')
- 
--DATA_FILES += find_data_files('wx/tools/Editra/docs', '*.txt')
--DATA_FILES += find_data_files('wx/tools/Editra/locale', '*.mo')
--DATA_FILES += find_data_files('wx/tools/Editra/pixmaps',
--                              '*.png', '*.icns', '*.ico', 'README', 
'AUTHORS', 'COPYING')
--DATA_FILES += find_data_files('wx/tools/Editra/plugins', '*.egg')
--DATA_FILES += find_data_files('wx/tools/Editra/src', 'README')
--DATA_FILES += find_data_files('wx/tools/Editra/styles', '*.ess')
--DATA_FILES += find_data_files('wx/tools/Editra/tests/syntax', '*')
--DATA_FILES += find_data_files('wx/tools/Editra', '[A-Z]*', recursive=False)
- 
- 
- ## import pprint
-@@ -1000,7 +976,6 @@ if EGGing:
-                                   'pyshell = wx.py.PyShell:main',
-                                   'pywrap = wx.py.PyWrap:main',
-                                   'helpviewer = wx.tools.helpviewer:main',
--                                  'editra = wx.tools.Editra.launcher:main',
-                                   'xrced = wx.tools.XRCed.xrced:main',
-                                   ], 
-             },

diff --git a/dev-python/wxpython/files/wxpython-2.8.9-wxversion-scripts.patch 
b/dev-python/wxpython/files/wxpython-2.8.9-wxversion-scripts.patch
deleted file mode 100644
index 6a456781230..00000000000
--- a/dev-python/wxpython/files/wxpython-2.8.9-wxversion-scripts.patch
+++ /dev/null
@@ -1,191 +0,0 @@
-diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/distrib/PyAlaMode.desktop 
wxPython-src-2.8.9.2/wxPython/distrib/PyAlaMode.desktop
---- wxPython-src-2.8.9.2-orig/wxPython/distrib/PyAlaMode.desktop       
2007-07-18 16:33:55.000000000 -0600
-+++ wxPython-src-2.8.9.2/wxPython/distrib/PyAlaMode.desktop    2009-02-21 
15:04:55.000000000 -0600
-@@ -1,8 +1,8 @@
- [Desktop Entry]
--Name=PyAlaMode
-+Name=PyAlaMode (2.8)
- Comment=GUI Python Shell with Filling and editor windows
--Exec=pyalamode
--Icon=PyCrust.png
-+Exec=pyalamode-2.8
-+Icon=/usr/share/pixmaps/PyCrust.png
- Terminal=false
- Type=Application
- Categories=Application;Development;
-diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/distrib/PyCrust.desktop 
wxPython-src-2.8.9.2/wxPython/distrib/PyCrust.desktop
---- wxPython-src-2.8.9.2-orig/wxPython/distrib/PyCrust.desktop 2007-07-18 
16:33:55.000000000 -0600
-+++ wxPython-src-2.8.9.2/wxPython/distrib/PyCrust.desktop      2009-02-21 
15:06:42.000000000 -0600
-@@ -1,8 +1,8 @@
- [Desktop Entry]
--Name=PyCrust
-+Name=PyCrust (2.8)
- Comment=GUI Python Shell with Filling
--Exec=pycrust
--Icon=PyCrust.png
-+Exec=pycrust-2.8
-+Icon=/usr/share/pixmaps/PyCrust.png
- Terminal=false
- Type=Application
- Categories=Application;Development;
-diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/distrib/PyShell.desktop 
wxPython-src-2.8.9.2/wxPython/distrib/PyShell.desktop
---- wxPython-src-2.8.9.2-orig/wxPython/distrib/PyShell.desktop 2007-07-18 
16:33:55.000000000 -0600
-+++ wxPython-src-2.8.9.2/wxPython/distrib/PyShell.desktop      2009-02-21 
15:08:19.000000000 -0600
-@@ -1,8 +1,8 @@
- [Desktop Entry]
--Name=PyShell
-+Name=PyShell (2.8)
- Comment=GUI Python Shell
--Exec=pyshell
--Icon=PyCrust.png
-+Exec=pyshell-2.8
-+Icon=/usr/share/pixmaps/PyCrust.png
- Terminal=false
- Type=Application
- Categories=Application;Development;
-diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/distrib/XRCed.desktop 
wxPython-src-2.8.9.2/wxPython/distrib/XRCed.desktop
---- wxPython-src-2.8.9.2-orig/wxPython/distrib/XRCed.desktop   2007-07-18 
16:33:55.000000000 -0600
-+++ wxPython-src-2.8.9.2/wxPython/distrib/XRCed.desktop        2009-02-21 
15:09:22.000000000 -0600
-@@ -1,8 +1,8 @@
- [Desktop Entry]
--Name=XRCed
-+Name=XRCed (2.8)
- Comment=wxPython XRC resource editor
--Exec=xrced
--Icon=XRCed.png
-+Exec=xrced-2.8
-+Icon=/usr/share/pixmaps/XRCed.png
- Terminal=false
- Type=Application
- Categories=Application;Development;
-diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/scripts/editra 
wxPython-src-2.8.9.2/wxPython/scripts/editra
---- wxPython-src-2.8.9.2-orig/wxPython/scripts/editra  2008-02-29 
14:32:17.000000000 -0600
-+++ wxPython-src-2.8.9.2/wxPython/scripts/editra       2009-02-21 
15:03:24.000000000 -0600
-@@ -1,4 +1,6 @@
- #!/usr/bin/env python
-+import wxversion
-+wxversion.select("2.8")
- 
- from wx.tools.Editra.launcher import main
- main()
-diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/scripts/genaxmodule 
wxPython-src-2.8.9.2/wxPython/scripts/genaxmodule
---- wxPython-src-2.8.9.2-orig/wxPython/scripts/genaxmodule     2008-02-29 
14:32:17.000000000 -0600
-+++ wxPython-src-2.8.9.2/wxPython/scripts/genaxmodule  2009-02-21 
15:03:24.000000000 -0600
-@@ -1,4 +1,6 @@
- #!/usr/bin/env python
-+import wxversion
-+wxversion.select("2.8")
- 
- from wx.tools.genaxmodule import main
- main()
-diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/scripts/helpviewer 
wxPython-src-2.8.9.2/wxPython/scripts/helpviewer
---- wxPython-src-2.8.9.2-orig/wxPython/scripts/helpviewer      2007-07-18 
16:33:55.000000000 -0600
-+++ wxPython-src-2.8.9.2/wxPython/scripts/helpviewer   2009-02-21 
15:03:24.000000000 -0600
-@@ -1,4 +1,6 @@
- #!/usr/bin/env python
-+import wxversion
-+wxversion.select("2.8")
- 
- from wx.tools.helpviewer import main
- main()
-diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/scripts/img2png 
wxPython-src-2.8.9.2/wxPython/scripts/img2png
---- wxPython-src-2.8.9.2-orig/wxPython/scripts/img2png 2007-07-18 
16:33:55.000000000 -0600
-+++ wxPython-src-2.8.9.2/wxPython/scripts/img2png      2009-02-21 
15:03:24.000000000 -0600
-@@ -1,4 +1,6 @@
- #!/usr/bin/env python
-+import wxversion
-+wxversion.select("2.8")
- 
- from wx.tools.img2png import main
- main()
-diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/scripts/img2py 
wxPython-src-2.8.9.2/wxPython/scripts/img2py
---- wxPython-src-2.8.9.2-orig/wxPython/scripts/img2py  2008-02-29 
14:32:17.000000000 -0600
-+++ wxPython-src-2.8.9.2/wxPython/scripts/img2py       2009-02-21 
15:03:24.000000000 -0600
-@@ -1,4 +1,6 @@
- #!/usr/bin/env python
-+import wxversion
-+wxversion.select("2.8")
- 
- from wx.tools.img2py import main
- main()
-diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/scripts/img2xpm 
wxPython-src-2.8.9.2/wxPython/scripts/img2xpm
---- wxPython-src-2.8.9.2-orig/wxPython/scripts/img2xpm 2007-07-18 
16:33:55.000000000 -0600
-+++ wxPython-src-2.8.9.2/wxPython/scripts/img2xpm      2009-02-21 
15:03:24.000000000 -0600
-@@ -1,4 +1,6 @@
- #!/usr/bin/env python
-+import wxversion
-+wxversion.select("2.8")
- 
- from wx.tools.img2xpm import main
- main()
-diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/scripts/pyalacarte 
wxPython-src-2.8.9.2/wxPython/scripts/pyalacarte
---- wxPython-src-2.8.9.2-orig/wxPython/scripts/pyalacarte      2007-07-18 
16:33:55.000000000 -0600
-+++ wxPython-src-2.8.9.2/wxPython/scripts/pyalacarte   2009-02-21 
15:03:24.000000000 -0600
-@@ -1,4 +1,6 @@
- #!/usr/bin/env python
-+import wxversion
-+wxversion.select("2.8")
- 
- from wx.py.PyAlaCarte import main
- main()
-diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/scripts/pyalamode 
wxPython-src-2.8.9.2/wxPython/scripts/pyalamode
---- wxPython-src-2.8.9.2-orig/wxPython/scripts/pyalamode       2007-07-18 
16:33:55.000000000 -0600
-+++ wxPython-src-2.8.9.2/wxPython/scripts/pyalamode    2009-02-21 
15:03:24.000000000 -0600
-@@ -1,4 +1,6 @@
- #!/usr/bin/env python
-+import wxversion
-+wxversion.select("2.8")
- 
- from wx.py.PyAlaMode import main
- main()
-diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/scripts/pycrust 
wxPython-src-2.8.9.2/wxPython/scripts/pycrust
---- wxPython-src-2.8.9.2-orig/wxPython/scripts/pycrust 2007-07-18 
16:33:55.000000000 -0600
-+++ wxPython-src-2.8.9.2/wxPython/scripts/pycrust      2009-02-21 
15:03:24.000000000 -0600
-@@ -1,4 +1,6 @@
- #!/usr/bin/env python
-+import wxversion
-+wxversion.select("2.8")
- 
- from wx.py.PyCrust import main
- main()
-diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/scripts/pyshell 
wxPython-src-2.8.9.2/wxPython/scripts/pyshell
---- wxPython-src-2.8.9.2-orig/wxPython/scripts/pyshell 2007-07-18 
16:33:55.000000000 -0600
-+++ wxPython-src-2.8.9.2/wxPython/scripts/pyshell      2009-02-21 
15:03:24.000000000 -0600
-@@ -1,4 +1,6 @@
- #!/usr/bin/env python
-+import wxversion
-+wxversion.select("2.8")
- 
- from wx.py.PyShell import main
- main()
-diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/scripts/pywrap 
wxPython-src-2.8.9.2/wxPython/scripts/pywrap
---- wxPython-src-2.8.9.2-orig/wxPython/scripts/pywrap  2007-07-18 
16:33:55.000000000 -0600
-+++ wxPython-src-2.8.9.2/wxPython/scripts/pywrap       2009-02-21 
15:03:24.000000000 -0600
-@@ -1,4 +1,6 @@
- #!/usr/bin/env python
-+import wxversion
-+wxversion.select("2.8")
- 
- from wx.py.PyWrap import main
- main()
-diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/scripts/pywxrc 
wxPython-src-2.8.9.2/wxPython/scripts/pywxrc
---- wxPython-src-2.8.9.2-orig/wxPython/scripts/pywxrc  2008-02-29 
14:32:17.000000000 -0600
-+++ wxPython-src-2.8.9.2/wxPython/scripts/pywxrc       2009-02-21 
15:09:58.000000000 -0600
-@@ -1,5 +1,7 @@
- #!/usr/bin/env python
- 
-+import wxversion
-+wxversion.select("2.8")
- from wx.tools.pywxrc import main
- main()
- 
-diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/scripts/xrced 
wxPython-src-2.8.9.2/wxPython/scripts/xrced
---- wxPython-src-2.8.9.2-orig/wxPython/scripts/xrced   2007-07-18 
16:33:55.000000000 -0600
-+++ wxPython-src-2.8.9.2/wxPython/scripts/xrced        2009-02-21 
15:03:24.000000000 -0600
-@@ -1,4 +1,6 @@
- #!/usr/bin/env python
-+import wxversion
-+wxversion.select("2.8")
- 
- from wx.tools.XRCed.xrced import main
- main()

diff --git a/dev-python/wxpython/metadata.xml b/dev-python/wxpython/metadata.xml
index d87904c379c..f6588d2f5c3 100644
--- a/dev-python/wxpython/metadata.xml
+++ b/dev-python/wxpython/metadata.xml
@@ -11,7 +11,6 @@
        </maintainer>
        <use>
                <flag name="examples">Install interactive demo module browser 
and sample applets.</flag>
-               <flag name="doc">Install HTML wxWidgets docs and wxpython API 
reference.</flag>
        </use>
        <upstream>
                <remote-id type="sourceforge">wxpython</remote-id>

diff --git a/dev-python/wxpython/wxpython-2.8.12.1-r2.ebuild 
b/dev-python/wxpython/wxpython-2.8.12.1-r2.ebuild
deleted file mode 100644
index bb3bb88a6dd..00000000000
--- a/dev-python/wxpython/wxpython-2.8.12.1-r2.ebuild
+++ /dev/null
@@ -1,194 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-WX_GTK_VER="2.8"
-
-inherit alternatives distutils-r1 eutils fdo-mime flag-o-matic wxwidgets
-
-MY_P="${P/wxpython-/wxPython-src-}"
-
-DESCRIPTION="A blending of the wxWindows C++ class library with Python"
-HOMEPAGE="http://www.wxpython.org/";
-SRC_URI="
-       mirror://sourceforge/wxpython/${MY_P}.tar.bz2
-       doc? (
-               mirror://sourceforge/wxpython/wxPython-docs-${PV}.tar.bz2
-               mirror://sourceforge/wxpython/wxPython-newdocs-2.8.9.2.tar.bz2 )
-       examples? ( mirror://sourceforge/wxpython/wxPython-demo-${PV}.tar.bz2 )"
-
-LICENSE="wxWinLL-3"
-SLOT="2.8"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ppc ppc64 ~sh sparc x86 ~amd64-fbsd 
~x86-fbsd"
-IUSE="cairo doc examples opengl"
-
-RDEPEND="
-       dev-lang/python-exec:2[${PYTHON_USEDEP}]
-       >=x11-libs/wxGTK-${PV}:${WX_GTK_VER}[opengl?,tiff,X]
-       dev-libs/glib:2
-       dev-python/setuptools[${PYTHON_USEDEP}]
-       media-libs/libpng:0=
-       media-libs/tiff:0
-       virtual/jpeg
-       x11-libs/gtk+:2
-       x11-libs/pango[X]
-       cairo?  ( >=dev-python/pycairo-1.8.4[${PYTHON_USEDEP}] )
-       opengl? ( dev-python/pyopengl[${PYTHON_USEDEP}] )"
-
-DEPEND="${RDEPEND}
-       virtual/pkgconfig"
-
-S="${WORKDIR}/${MY_P}/wxPython"
-DOC_S="${WORKDIR}/wxPython-${PV}"
-
-# The hacky build system seems to be broken with out-of-source builds,
-# and installs 'wx' package globally.
-DISTUTILS_IN_SOURCE_BUILD=1
-
-python_prepare_all() {
-       sed -i "s:cflags.append('-O3'):pass:" config.py || die "sed failed"
-
-       if use doc; then
-               cd "${DOC_S}" || die
-               epatch "${FILESDIR}"/${PN}-${SLOT}-cache-writable.patch
-       fi
-
-       if use examples; then
-               cd "${DOC_S}" || die
-               epatch "${FILESDIR}"/${PN}-${SLOT}-wxversion-demo.patch
-       fi
-
-       cd "${S}" || die
-
-       local PATCHES=(
-               "${FILESDIR}"/${PN}-2.8.9-wxversion-scripts.patch
-               # drop editra - we have it as a separate package now
-               "${FILESDIR}"/${PN}-2.8.12-drop-editra.patch
-               "${FILESDIR}"/${PN}-2.8.12-drop-categories.patch
-               "${FILESDIR}"/${PN}-2.8-no-preservatives-added.patch
-               # fix handling egg_info command
-               "${FILESDIR}"/${PN}-2.8.12.1-disable-egging-mode.patch
-       )
-
-       distutils-r1_python_prepare_all
-}
-
-python_configure_all() {
-       append-flags -fno-strict-aliasing
-       # Workaround, buildsystem uses CFLAGS as CXXFLAGS
-       export CFLAGS="${CXXFLAGS}"
-       need-wxwidgets unicode
-
-       mydistutilsargs=(
-               WX_CONFIG="${WX_CONFIG}"
-               WXPORT=gtk2
-               UNICODE=1
-               BUILD_GLCANVAS=$(usex opengl 1 0)
-       )
-}
-
-python_compile() {
-       # We need to have separate libdirs due to hackery, bug #455332.
-       distutils-r1_python_compile \
-               build --build-purelib "${BUILD_DIR}"/lib.common
-}
-
-python_install() {
-       distutils-r1_python_install \
-               build --build-purelib "${BUILD_DIR}"/lib.common
-
-       # adjust the filenames for wxPython slots.
-       local file
-       for file in "${D}$(python_get_sitedir)"/wx{version.*,.pth}; do
-               mv "${file}" "${file}-${SLOT}" || die
-       done
-       cd "${ED}"usr/lib/python-exec/"${EPYTHON}" || die
-       for file in *; do
-               mv "${file}" "${file}-${SLOT}" || die
-
-               # wrappers are common to all impls, so a parallel run may
-               # move it for us. ln+rm is more failure-proof.
-               ln -fs ../lib/python-exec/python-exec2 
"${ED}usr/bin/${file}-${SLOT}" || die
-               rm -f "${ED}usr/bin/${file}"
-       done
-}
-
-python_install_all() {
-       dodoc docs/{CHANGES,PyManual,README,wxPackage,wxPythonManual}.txt
-
-       domenu distrib/{Py{AlaMode,Crust,Shell},XRCed}.desktop
-       newicon wx/py/PyCrust_32.png PyCrust.png
-       newicon wx/tools/XRCed/XRCed_32.png XRCed.png
-
-       docdir=${D}usr/share/doc/${PF}
-
-       if use doc; then
-               docinto docs
-               dodoc -r "${DOC_S}"/docs/.
-               # For some reason newer API docs aren't available so use 
2.8.9.2's
-               dodoc -r "${WORKDIR}"/wxPython-2.8.9.2/docs/.
-
-               docompress -x /usr/share/doc/${PF}/docs
-       fi
-
-       if use examples; then
-               docinto demo
-               dodoc -r "${DOC_S}"/demo/.
-               docinto samples
-               dodoc -r "${DOC_S}"/samples/.
-
-               [[ -e ${docdir}/samples/embedded/embedded ]] \
-                       && rm -f "${docdir}"/samples/embedded/embedded
-
-               docompress -x /usr/share/doc/${PF}/{demo,samples}
-       fi
-       distutils-r1_python_install_all
-}
-
-pkg_postinst() {
-       fdo-mime_desktop_database_update
-
-       create_symlinks() {
-               alternatives_auto_makesym "$(python_get_sitedir)/wx.pth" 
"$(python_get_sitedir)/wx.pth-[0-9].[0-9]"
-               alternatives_auto_makesym "$(python_get_sitedir)/wxversion.py" 
"$(python_get_sitedir)/wxversion.py-[0-9].[0-9]"
-       }
-       python_foreach_impl create_symlinks
-
-       echo
-       elog "Gentoo uses the Multi-version method for SLOT'ing."
-       elog "Developers, see this site for instructions on using"
-       elog "2.6 or 2.8 with your apps:"
-       elog "http://wiki.wxpython.org/index.cgi/MultiVersionInstalls";
-       if use doc; then
-               echo
-               elog "To access the general wxWidgets documentation, run"
-               elog "/usr/share/doc/${PF}/docs/viewdocs.py"
-               echo
-               elog "wxPython documentation is available by pointing a browser"
-               elog "at /usr/share/doc/${PF}/docs/api/index.html"
-       fi
-       if use examples; then
-               echo
-               elog "The demo.py app which contains hundreds of demo modules"
-               elog "with documentation and source code has been installed at"
-               elog "/usr/share/doc/${PF}/demo/demo.py"
-               echo
-               elog "Many more example apps and modules can be found in"
-               elog "/usr/share/doc/${PF}/samples/"
-       fi
-       echo
-       elog "Editra is not packaged with wxpython in Gentoo."
-       elog "You can find it in the tree as app-editors/editra"
-}
-
-pkg_postrm() {
-       fdo-mime_desktop_database_update
-
-       update_symlinks() {
-               alternatives_auto_makesym "$(python_get_sitedir)/wx.pth" 
"$(python_get_sitedir)/wx.pth-[0-9].[0-9]"
-               alternatives_auto_makesym "$(python_get_sitedir)/wxversion.py" 
"$(python_get_sitedir)/wxversion.py-[0-9].[0-9]"
-       }
-       python_foreach_impl update_symlinks
-}

Reply via email to