net-misc/nbcli: Version bump
Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Alarig Le Lay <alarig@swordarmor.fr
This commit is contained in:
parent
ddc0bd887e
commit
4617d12052
|
@ -1,2 +1,3 @@
|
|||
DIST nbcli-0.6.3.dev1.tar.gz 21607 BLAKE2B 32de3bf8b9e234e319e685d1501c4cb91fa3871ee7d084aac50a3ba6fdf7853f8baa1122facd25d11abea0ab7fd9f65c2a24ded4fb066523966671d0bb6cd746 SHA512 fc70cf4c3c5b6a6946485076d76fd443e90bbfe542854d6b3b2907587f34642a1cbfa979ffc59e15abe7b785e6b0da2d704c7d18b9a433803abf118d01c06c63
|
||||
DIST nbcli-0.7.3.dev2.tar.gz 21802 BLAKE2B 007d13d9996e8176d028900512e1bf33be39aab45549a92a4e8a5fb331c30b97150204b970d95f57651d94d9248763790ec24fd6114bed44b4bd380e0a5e5870 SHA512 8d55283e07f0830af4dcadf2c8b65724da4267a6165b9374485062f506e6b543080ac55aa2835ee2eb6e1b7f19fabe9c1f6982f6894d3fae937e42708c993628
|
||||
DIST nbcli-0.8.0.dev1.tar.gz 32508 BLAKE2B fb6e3365acad333122b0cd14a0e1a0ee8ff01c4dd1e99f2196caf876bde215101844a80ba2a853dc3231cb21f02383b237e16aa67e456daf24006d5fa1c5c15d SHA512 b21f029917dda5712e13068cd784bfe8d724fbd356a16285e07212f078f7b5f0f51fc975acb2e146ecd4184a7948c393fb4c69cdd51bd6dc99f2d30bbcda8b98
|
||||
|
|
37
net-misc/nbcli/nbcli-0.8.0_alpha1.ebuild
Normal file
37
net-misc/nbcli/nbcli-0.8.0_alpha1.ebuild
Normal file
|
@ -0,0 +1,37 @@
|
|||
# Copyright 2020-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{6..9} )
|
||||
inherit distutils-r1
|
||||
|
||||
MY_P="${P/_alpha/.dev}"
|
||||
|
||||
DESCRIPTION="Extensible command-line interface for Netbox"
|
||||
HOMEPAGE="https://github.com/ericgeldmacher/nbcli"
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DEPEND="
|
||||
>=dev-python/pynetbox-5.0.3
|
||||
<dev-python/pynetbox-6
|
||||
dev-python/pyyaml
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND=""
|
||||
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
python_prepare_all() {
|
||||
if ! use test; then
|
||||
rm -r "${S}/tests"
|
||||
fi
|
||||
|
||||
distutils-r1_python_prepare_all
|
||||
}
|
Loading…
Reference in a new issue