app-shells/autojump-22.2.4-r4: rm bundled argparse
authorMarc Joliet <marcec@gmx.de>
Sun, 29 Nov 2015 08:25:18 +0000 (09:25 +0100)
committerMarc Joliet <marcec@gmx.de>
Fri, 4 Dec 2015 21:00:20 +0000 (22:00 +0100)
Upstream only includes the bundled argparse module for Python 2.6 support.
Patch bin/autojump to use the built-in argparse module instead.

Signed-off-by: Marc Joliet <marcec@gmx.de>
app-shells/autojump/autojump-22.2.4-r4.ebuild

index 3b216104a294495cd3ae6fb36291936bfc0a9439..af56c093c198cb87df91de50fb214a312080ba69 100644 (file)
@@ -27,6 +27,10 @@ src_prepare() {
                -e "s:/usr/local/share:/usr/share:" \
                -i bin/autojump.sh || die
 
+       # autojump_argparse is only there for Python 2.6 compatibility
+       sed -e "s:autojump_argparse:argparse:" \
+               -i bin/autojump || die
+
        # upstream fixes to the autojump.fish script; the first patch is needed for
        # the second patch to apply
        epatch "${FILESDIR}/autojump-22.4.4-fix-autojump.fish-bugs.patch"
@@ -51,7 +55,7 @@ src_install() {
        insinto /usr/share/zsh/site-functions
        doins bin/_j
 
-       python_foreach_impl python_domodule bin/autojump_argparse.py bin/autojump_data.py bin/autojump_utils.py
+       python_foreach_impl python_domodule bin/autojump_data.py bin/autojump_utils.py
        if use python; then
                python_foreach_impl python_domodule tools/autojump_ipython.py
                einfo 'This tool provides "j" for ipython, please add'