dev-python/fire - 0.2.1 (didos)

Search

Install

Install this version:

emerge -a =dev-python/fire-0.2.1

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =dev-python/fire-0.2.1

Or alternatively:

emerge --autounmask-write -a =dev-python/fire-0.2.1

Package Information

Description:
Library for automatically generating CLIs from absolutely any Python object
License:
Apache-2.0

Ebuild Details

Version EAPI Keywords Slot
0.2.1 7 ~amd64 ~arm ~arm64 0
View Raw Ebuild
# Copyright 2019 Jan Chren (rindeal)
# Distributed under the terms of the GNU General Public License v2

EAPI=7
inherit rindeal

## git-hosting.eclass:
GH_RN="github:google:python-fire"
GH_REF="v${PV}"

## python-r1.eclass:
PYTHON_COMPAT=( py{py3,thon{2_7,3_{5..7}}} )

## EXPORT_FUNCTIONS: src_unpack
## variables: HOMEPAGE, SRC_URI
inherit git-hosting

## EXPORT_FUNCTIONS: src_prepare src_configure src_compile src_test src_install
inherit distutils-r1

DESCRIPTION="Library for automatically generating CLIs from absolutely any Python object"
LICENSE="Apache-2.0"

SLOT="0"

KEYWORDS="~amd64 ~arm ~arm64"
IUSE_A=(
)

CDEPEND_A=( )
DEPEND_A=( "${CDEPEND_A[@]}"
	"dev-python/setuptools[${PYTHON_USEDEP}]"
)
RDEPEND_A=( "${CDEPEND_A[@]}"
	"=dev-python/six-1*[${PYTHON_USEDEP}]"
	"=dev-python/termcolor-1*[${PYTHON_USEDEP}]"
)

inherit arrays

python_prepare_all() {
	rrm -f "${PN}"/{test*,*test.py}

	distutils-r1_python_prepare_all
}

Inherited Eclasses