diff options
author | Matthew Thode <prometheanfire@gentoo.org> | 2019-08-31 18:06:35 -0500 |
---|---|---|
committer | Matthew Thode <prometheanfire@gentoo.org> | 2019-08-31 18:06:52 -0500 |
commit | 99bd66095559014e402453a1fbe0a771805631f1 (patch) | |
tree | 09486ff0625631024216803761ac709a94ff64c7 /app-shells/powerline/powerline-9999.ebuild | |
parent | sys-apps/portage: drop iproute2 dep from 9999 (diff) | |
download | gentoo-99bd66095559014e402453a1fbe0a771805631f1.tar.gz gentoo-99bd66095559014e402453a1fbe0a771805631f1.tar.bz2 gentoo-99bd66095559014e402453a1fbe0a771805631f1.zip |
app-shells/powerline: initial add
Package-Manager: Portage-2.3.69, Repoman-2.3.17
Signed-off-by: Matthew Thode <prometheanfire@gentoo.org>
Diffstat (limited to 'app-shells/powerline/powerline-9999.ebuild')
-rw-r--r-- | app-shells/powerline/powerline-9999.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/app-shells/powerline/powerline-9999.ebuild b/app-shells/powerline/powerline-9999.ebuild new file mode 100644 index 000000000000..79ff69b517e6 --- /dev/null +++ b/app-shells/powerline/powerline-9999.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python2_7 python3_{5,6,7} ) + +inherit distutils-r1 + +DESCRIPTION="The ultimate statusline/prompt utility." +HOMEPAGE="https://github.com/powerline/powerline" +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/powerline/powerline" + EGIT_BRANCH="develop" +else + SRC_URI="mirror://pypi/${PN:0:1}/${PN}-status/${PN}-status-${PV}.tar.gz" + KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +fi +S="${WORKDIR}/${PN}-status-${PV}" + +LICENSE="Apache-2.0" +SLOT="0" +IUSE="test" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="" |