blob: 6628053ee7842c88b79e5a22f76153653eaa1918 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{8..13} )
inherit distutils-r1
DESCRIPTION="Commitizen is release management tool designed for teams"
HOMEPAGE="https://github.com/commitizen-tools/commitizen"
SRC_URI="https://github.com/commitizen-tools/commitizen/archive/refs/tags/v${PV}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND="1"
RDEPEND=""
RDEPEND="
>=dev-vcs/git-1.8.5.2
${DEPEND}
"
|