Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/autojump/
Date: Wed, 15 Nov 2017 22:16:00
Message-Id: 1510784131.8718b11b0e6ab3685973b4d5aa4ec8b2be788a3f.monsieurp@gentoo
1 commit: 8718b11b0e6ab3685973b4d5aa4ec8b2be788a3f
2 Author: Lukáš Poláček <lukas <AT> ksp <DOT> sk>
3 AuthorDate: Thu Oct 19 19:30:12 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 15 22:15:31 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8718b11b
7
8 app-shells/autojump: version bump.
9
10 Package-Manager: Portage-2.3.8, Repoman-2.3.3
11 Closes: https://bugs.gentoo.org/636528
12 Closes: https://github.com/gentoo/gentoo/pull/5988
13
14 app-shells/autojump/Manifest | 1 +
15 app-shells/autojump/autojump-22.5.1.ebuild | 76 ++++++++++++++++++++++++++++++
16 2 files changed, 77 insertions(+)
17
18 diff --git a/app-shells/autojump/Manifest b/app-shells/autojump/Manifest
19 index 72ef1de455c..2635ca58770 100644
20 --- a/app-shells/autojump/Manifest
21 +++ b/app-shells/autojump/Manifest
22 @@ -1 +1,2 @@
23 DIST autojump-22.2.4.tar.gz 52724 SHA256 816badb0721f735e2b86bdfa8b333112f3867343c7c2263c569f75b4ec91f475 SHA512 bdfca07bb57b3a2733a2085af14f23c3e980b1b00db1c90247c2341ac73f60f171bdde29dd9917aac0808d0b8f2902d48096c990e09281745a71755f5abc921c WHIRLPOOL 29fe48cc2d8eee809a79c3d9b923d16be32a1591dc3bfa911bda26eceeb4fe0c05a49e1218958f63eb4b609837b2dc4b0ba4d4b23070c7fea0cad3d833e0fa39
24 +DIST autojump-22.5.1.tar.gz 54721 SHA256 765fabda130eb4df70d1c1e5bc172e1d18f8ec22c6b89ff98f1674335292e99f SHA512 ed1bb28b62d14a481d5c8ee8ebbfc286d21ca54c961904f81ac123c784e17810217dfe1689bdd4b50fd7a9d72509c0cb13583a9817074f6afe26dc3144f64243 WHIRLPOOL d0d6d36e8cb471bfa69312a591d53a3996866eec8134fbcc8ee0ce7259518a8f4e1c982afe88572a2edebd6b7994a39ab073684ef97298f0762fc6db75843654
25
26 diff --git a/app-shells/autojump/autojump-22.5.1.ebuild b/app-shells/autojump/autojump-22.5.1.ebuild
27 new file mode 100644
28 index 00000000000..6c2501ca72b
29 --- /dev/null
30 +++ b/app-shells/autojump/autojump-22.5.1.ebuild
31 @@ -0,0 +1,76 @@
32 +# Copyright 1999-2017 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
38 +
39 +inherit bash-completion-r1 python-r1 vcs-snapshot
40 +
41 +DESCRIPTION="change directory command that learns"
42 +HOMEPAGE="https://github.com/wting/autojump"
43 +SRC_URI="https://github.com/wting/${PN}/archive/release-v${PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="GPL-3"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
48 +IUSE="ipython test"
49 +REQUIRED_USE="ipython? ( ${PYTHON_REQUIRED_USE} )"
50 +
51 +# Not all tests pass. Need investigation.
52 +RESTRICT="test"
53 +RDEPEND="ipython? ( ${PYTHON_DEPS} )"
54 +DEPEND="test? ( dev-python/flake8 dev-python/tox )"
55 +
56 +src_prepare() {
57 + eapply_user
58 + sed -e "s: \(/etc/profile.d\): \"${EPREFIX}\1\":" \
59 + -e "s:/usr/local/share:/usr/share:" \
60 + -i bin/autojump.sh || die
61 +
62 + # autojump_argparse is only there for Python 2.6 compatibility
63 + sed -e "s:autojump_argparse:argparse:" \
64 + -i bin/autojump || die
65 +}
66 +
67 +src_compile() {
68 + :
69 +}
70 +
71 +src_install() {
72 + dobin bin/"${PN}"
73 + python_replicate_script "${ED}"/usr/bin/"${PN}"
74 +
75 + insinto /etc/profile.d
76 + doins bin/"${PN}".sh
77 +
78 + insinto /usr/share/"${PN}"/
79 + doins bin/"${PN}.bash"
80 + doins bin/"${PN}.zsh"
81 + doins bin/"${PN}.fish"
82 + insinto /usr/share/zsh/site-functions
83 + doins bin/_j
84 +
85 + python_foreach_impl python_domodule bin/autojump_argparse.py bin/autojump_data.py \
86 + bin/autojump_match.py bin/autojump_utils.py
87 + if use ipython; then
88 + python_foreach_impl python_domodule tools/autojump_ipython.py
89 + fi
90 +
91 + doman docs/"${PN}.1"
92 + einstalldocs
93 +}
94 +
95 +pkg_postinst() {
96 + if use ipython; then
97 + elog 'This tool provides "j" for ipython, please add'
98 + elog '"import autojump_ipython" to your ipy_user_conf.py.'
99 + elog
100 + fi
101 +
102 + elog 'If you use app-shells/fish, add the following code to your'
103 + elog 'config.fish to get autojump support:'
104 + elog 'if test -f /usr/share/autojump/autojump.fish'
105 + elog ' source /usr/share/autojump/autojump.fish'
106 + elog 'end'
107 +}