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, 23 Sep 2015 09:15:23
Message-Id: 1442986441.cc5eabf490e37a65c31f37cee78dc789ea9dd9d1.monsieurp@gentoo
1 commit: cc5eabf490e37a65c31f37cee78dc789ea9dd9d1
2 Author: Lukáš Poláček <lukas <AT> ksp <DOT> sk>
3 AuthorDate: Wed Sep 23 05:34:01 2015 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 23 05:34:01 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc5eabf4
7
8 app-shells/autojump: remove 22.2.4-r2
9
10 app-shells/autojump/autojump-22.2.4-r2.ebuild | 56 ---------------------------
11 1 file changed, 56 deletions(-)
12
13 diff --git a/app-shells/autojump/autojump-22.2.4-r2.ebuild b/app-shells/autojump/autojump-22.2.4-r2.ebuild
14 deleted file mode 100644
15 index f0fc9f7..0000000
16 --- a/app-shells/autojump/autojump-22.2.4-r2.ebuild
17 +++ /dev/null
18 @@ -1,56 +0,0 @@
19 -# Copyright 1999-2015 Gentoo Foundation
20 -# Distributed under the terms of the GNU General Public License v2
21 -# $Id$
22 -
23 -EAPI=5
24 -
25 -PYTHON_COMPAT=( python{2_7,3_3,3_4} )
26 -
27 -inherit bash-completion-r1 python-r1 vcs-snapshot
28 -
29 -DESCRIPTION="change directory command that learns"
30 -HOMEPAGE="https://github.com/joelthelion/autojump"
31 -SRC_URI="https://github.com/joelthelion/${PN}/archive/release-v${PV}.tar.gz -> ${P}.tar.gz"
32 -
33 -LICENSE="GPL-3"
34 -SLOT="0"
35 -KEYWORDS="~amd64 ~x86 ~ppc ~ppc64"
36 -IUSE="python test"
37 -
38 -# Not all tests pass. Need investigation.
39 -RESTRICT="test"
40 -RDEPEND="python? ( ${PYTHON_DEPS} )"
41 -DEPEND="test? ( dev-python/flake8 dev-python/tox )"
42 -
43 -src_prepare() {
44 - sed -e "s: \(/etc/profile.d\): \"${EPREFIX}\1\":" \
45 - -e "s:/usr/local/share:/usr/share:" \
46 - -i bin/autojump.sh || die
47 -}
48 -
49 -src_compile() {
50 - :
51 -}
52 -
53 -src_install() {
54 - dobin bin/autojump
55 -
56 - insinto /etc/profile.d
57 - doins bin/"${PN}".sh
58 -
59 - newbashcomp bin/"${PN}".bash "${PN}"
60 - insinto /usr/share/"${PN}"/
61 - doins bin/"${PN}.zsh"
62 - insinto /usr/share/zsh/site-functions
63 - doins bin/_j
64 -
65 - python_foreach_impl python_domodule bin/autojump_argparse.py bin/autojump_data.py bin/autojump_utils.py
66 - if use python; then
67 - python_foreach_impl python_domodule tools/autojump_ipython.py
68 - einfo 'This tool provides "j" for ipython, please add'
69 - einfo '"import autojump_ipython" to your ipy_user_conf.py.'
70 - fi
71 -
72 - doman docs/"${PN}.1"
73 - dodoc README.md
74 -}