dev-python/kitchen - 1.2.6-r3 (schplaf)

Search

Package Information

Description:
Useful snippets of code that everybody ends up writing for their projects
Homepage:
https://github.com/fedora-infra/kitchen
License:
LGPL-2.1

Ebuild Details

Version EAPI Keywords Slot
1.2.6-r3 8 ~amd64 ~x86 0
View Raw Ebuild
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

PYTHON_COMPAT=( python3_{10..13} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi

DESCRIPTION="Useful snippets of code that everybody ends up writing for their projects"
HOMEPAGE="https://github.com/fedora-infra/kitchen"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"

IUSE="chardet"

if [[ "${PV}" == *9999 ]]; then
	inherit git-r3
	EGIT_REPO_URI="https://github.com/fedora-infra/kitchen"
else
	SRC_URI="$(pypi_sdist_url "${PN^}" "${PV}")"
fi

DEPEND="
	chardet? ( dev-python/chardet )
"

DOCS=( README.rst NEWS.rst HACKING.rst )

distutils_enable_tests unittest

src_install() {
	distutils-r1_src_install
}

USE Flags