mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
app-shells/autojump: Remove old.
Package-Manager: portage-2.2.18 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
This commit is contained in:
@@ -1,3 +1 @@
|
||||
DIST autojump-21.3.0.tar.gz 51261 SHA256 217398c3135647f223356e055a1b84adb470385584d743baf7fe4d519fd78252 SHA512 b0b0292a08d01005f09581c58bff2bf9b4b860b53602c0777bab7ef5a5b301993fe2bfef154bedadc75407bcc41e8de4a6f01d5b70e2e1be6b4ae6a6162d5196 WHIRLPOOL a218cde9345077af5c365b3e8eaff994606a0c29f2c8f3c6772b043e68decdc915bd353efc20c61f6de974d59c617c8a9b292fc465823b818882ac68f438869c
|
||||
DIST autojump-21.5.8.tar.gz 52170 SHA256 4e18585aac319da1c900f0f022a4fe8ce3e21257d440c034d7abf29ed42d4e1e SHA512 a3857e0195cc77f19bd4eb46b4fc96cd5f7b1c01dac35c1f928dde19198519fa4848c0cf7f8342f87a1f71617cfcad62cc495a711541f32bec807347e9b6bd01 WHIRLPOOL b7686d0d1332d4cbeec6d88a35951bae0cc513843b9fd34ff407e88cf0fdb8f616acb9e48d40a91b63cf4beea085f8fd6a4215d5e0b38599e47af8212f2eb2e2
|
||||
DIST autojump-21.6.9.tar.gz 50172 SHA256 8918817688a4e5f1e87e4e559a1bb5cd3fe43cb11222bb5283fd0f44d395464b SHA512 90f2d5fa3e8e272073a8dd00e6023f74d6e9159f5c4d5345fb3e2fbb4829262e0de18d64975dbd7b85bbbfb83f5706f4463f7370806516385cae48595113afff WHIRLPOOL 89e4bb6380396c50a7509050e192ab3dcaeef4861191760a75464cbed0deeecb071544d255d88d8139323abbf38c84f6418821437debf273d1f99d76e63c67bd
|
||||
DIST autojump-22.2.4.tar.gz 52724 SHA256 816badb0721f735e2b86bdfa8b333112f3867343c7c2263c569f75b4ec91f475 SHA512 bdfca07bb57b3a2733a2085af14f23c3e980b1b00db1c90247c2341ac73f60f171bdde29dd9917aac0808d0b8f2902d48096c990e09281745a71755f5abc921c WHIRLPOOL 29fe48cc2d8eee809a79c3d9b923d16be32a1591dc3bfa911bda26eceeb4fe0c05a49e1218958f63eb4b609837b2dc4b0ba4d4b23070c7fea0cad3d833e0fa39
|
||||
|
||||
@@ -1,61 +0,0 @@
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
|
||||
PYTHON_COMPAT=( python{2_7,3_3} )
|
||||
|
||||
inherit eutils python-r1 python-utils-r1 vcs-snapshot
|
||||
|
||||
DESCRIPTION="change directory command that learns"
|
||||
HOMEPAGE="https://github.com/joelthelion/autojump"
|
||||
SRC_URI="https://github.com/joelthelion/${PN}/archive/release-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="bash-completion python test zsh-completion"
|
||||
|
||||
RDEPEND="bash-completion? ( >=app-shells/bash-4 )
|
||||
python? ( ${PYTHON_DEPS} )
|
||||
zsh-completion? ( app-shells/zsh app-shells/gentoo-zsh-completions )"
|
||||
DEPEND="test? ( ${PYTHON_DEPS} )"
|
||||
|
||||
src_prepare() {
|
||||
epatch "${FILESDIR}"/${P}-supported-shells.patch
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
true
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin bin/autojump
|
||||
|
||||
insinto /etc/profile.d
|
||||
doins bin/${PN}.sh
|
||||
|
||||
if use bash-completion ; then
|
||||
doins bin/${PN}.bash
|
||||
fi
|
||||
|
||||
if use zsh-completion ; then
|
||||
doins bin/${PN}.zsh
|
||||
insinto /usr/share/zsh/site-functions
|
||||
doins bin/_j
|
||||
fi
|
||||
|
||||
if use python ; then
|
||||
python_foreach_impl python_domodule tools/autojump_ipython.py
|
||||
|
||||
einfo "This tool provides \"j\" for ipython, please add"
|
||||
einfo "\"import autojump_ipython\" to your ipy_user_conf.py."
|
||||
fi
|
||||
|
||||
doman docs/${PN}.1
|
||||
dodoc README.md
|
||||
|
||||
elog "loading of insecure relative path \"custom_install\" has been"
|
||||
elog "remove. See ${EPREFIX}/etc/profile.d/${PN}.sh for details."
|
||||
}
|
||||
@@ -1,59 +0,0 @@
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
|
||||
PYTHON_COMPAT=( python{2_7,3_3} )
|
||||
|
||||
inherit python-r1 python-utils-r1 vcs-snapshot
|
||||
|
||||
DESCRIPTION="change directory command that learns"
|
||||
HOMEPAGE="https://github.com/joelthelion/autojump"
|
||||
SRC_URI="https://github.com/joelthelion/${PN}/archive/release-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="bash-completion python test zsh-completion"
|
||||
|
||||
RDEPEND="bash-completion? ( >=app-shells/bash-4 )
|
||||
python? ( ${PYTHON_DEPS} )
|
||||
zsh-completion? ( app-shells/zsh app-shells/gentoo-zsh-completions )"
|
||||
DEPEND="test? ( ${PYTHON_DEPS} )"
|
||||
|
||||
src_prepare() {
|
||||
sed -e "s: \(/etc/profile.d\): \"${EPREFIX}\1\":" \
|
||||
-i bin/autojump.sh || die
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
true
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin bin/autojump
|
||||
|
||||
insinto /etc/profile.d
|
||||
doins bin/${PN}.sh
|
||||
|
||||
if use bash-completion ; then
|
||||
doins bin/${PN}.bash
|
||||
fi
|
||||
|
||||
if use zsh-completion ; then
|
||||
doins bin/${PN}.zsh
|
||||
insinto /usr/share/zsh/site-functions
|
||||
doins bin/_j
|
||||
fi
|
||||
|
||||
if use python ; then
|
||||
python_foreach_impl python_domodule tools/autojump_ipython.py
|
||||
|
||||
einfo "This tool provides \"j\" for ipython, please add"
|
||||
einfo "\"import autojump_ipython\" to your ipy_user_conf.py."
|
||||
fi
|
||||
|
||||
doman docs/${PN}.1
|
||||
dodoc README.md
|
||||
}
|
||||
@@ -1,59 +0,0 @@
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
|
||||
PYTHON_COMPAT=( python{2_7,3_3,3_4} )
|
||||
|
||||
inherit python-r1 python-utils-r1 vcs-snapshot
|
||||
|
||||
DESCRIPTION="change directory command that learns"
|
||||
HOMEPAGE="https://github.com/joelthelion/autojump"
|
||||
SRC_URI="https://github.com/joelthelion/${PN}/archive/release-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="bash-completion python test zsh-completion"
|
||||
|
||||
RDEPEND="bash-completion? ( >=app-shells/bash-4 )
|
||||
python? ( ${PYTHON_DEPS} )
|
||||
zsh-completion? ( app-shells/zsh app-shells/gentoo-zsh-completions )"
|
||||
DEPEND="test? ( ${PYTHON_DEPS} )"
|
||||
|
||||
src_prepare() {
|
||||
sed -e "s: \(/etc/profile.d\): \"${EPREFIX}\1\":" \
|
||||
-i bin/autojump.sh || die
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
true
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin bin/autojump
|
||||
|
||||
insinto /etc/profile.d
|
||||
doins bin/${PN}.sh
|
||||
|
||||
if use bash-completion ; then
|
||||
doins bin/${PN}.bash
|
||||
fi
|
||||
|
||||
if use zsh-completion ; then
|
||||
doins bin/${PN}.zsh
|
||||
insinto /usr/share/zsh/site-functions
|
||||
doins bin/_j
|
||||
fi
|
||||
|
||||
if use python ; then
|
||||
python_foreach_impl python_domodule tools/autojump_ipython.py
|
||||
|
||||
einfo "This tool provides \"j\" for ipython, please add"
|
||||
einfo "\"import autojump_ipython\" to your ipy_user_conf.py."
|
||||
fi
|
||||
|
||||
doman docs/${PN}.1
|
||||
dodoc README.md
|
||||
}
|
||||
Reference in New Issue
Block a user