diff options
Diffstat (limited to 'app-misc/ranger/ranger-1.9.1.ebuild')
-rw-r--r-- | app-misc/ranger/ranger-1.9.1.ebuild | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/app-misc/ranger/ranger-1.9.1.ebuild b/app-misc/ranger/ranger-1.9.1.ebuild deleted file mode 100644 index f5ec117b98ea..000000000000 --- a/app-misc/ranger/ranger-1.9.1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) -PYTHON_REQ_USE="ncurses" - -inherit distutils-r1 - -if [[ ${PV} == "9999" ]] ; then - EGIT_REPO_URI="https://github.com/ranger/ranger.git" - inherit git-r3 -else - SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 ~ppc x86" -fi - -DESCRIPTION="A vim-inspired file manager for the console" -HOMEPAGE="https://ranger.github.io/" -LICENSE="GPL-3" -SLOT="0" -IUSE="test" - -RDEPEND="virtual/pager" -DEPEND="test? ( dev-python/pytest[${PYTHON_USEDEP}] )" - -src_prepare() { - # use versioned doc path - sed -i "s|share/doc/ranger|share/doc/${PF}|" setup.py doc/ranger.1 || die - - distutils-r1_src_prepare -} - -python_test() { - py.test -v tests/ranger || die "Tests failed under ${EPYTHON}" -} - -pkg_postinst() { - if [[ -z ${REPLACING_VERSIONS} ]]; then - elog "Ranger has many optional dependencies to support enhanced file previews." - elog "See the README or homepage for more details." - fi -} |