blob: 14dcac20b3bf0fd573dd09b9fb68f2a63707f2bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..12} )
PYPI_NO_NORMALIZE=1
PYPI_PN="powerline-gitstatus"
inherit distutils-r1
DESCRIPTION="A Powerline segment for showing the status of a Git working copy."
HOMEPAGE="https://github.com/jaspernbrouwer/powerline-gitstatus"
SRC_URI="https://github.com/jaspernbrouwer/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="app-shells/powerline"
RDEPEND="${DEPEND}"
BDEPEND=""
|