-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST pynetbox-7.4.1.tar.gz 64909 BLAKE2B 9fecc1bb1a2d53847a4e749df4274160a4df193e552a65625a6c2289b23be80a9b19d44e80e67fadc407db57a3de0dd6d2e798e8757796779639ab9a95db26d3 SHA512 7775f51b4ce2c8d663df68a9cdf8c0a112dbc96d0fd0abb255ede3c532d1cd1e03250e1f3302cbc60a6d494cdbc282991ea2f391f9d5435602daee7ceaa8cd66 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
DISTUTILS_USE_PEP517=setuptools | ||
PYTHON_COMPAT=( python3_{7..12} ) | ||
|
||
inherit distutils-r1 | ||
|
||
DESCRIPTION="Python API client library for NetBox." | ||
HOMEPAGE="https://github.com/netbox-community/pynetbox" | ||
SRC_URI="https://github.com/netbox-community/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" | ||
|
||
REQUIRED_USE=${PYTHON_REQUIRED_USE} | ||
|
||
RDEPEND=" | ||
${PYTHON_DEPS} | ||
<dev-python/requests-3 | ||
<dev-python/urllib3-3 | ||
dev-python/packaging | ||
" | ||
|
||
BDEPEND=${RDEPEND} | ||
|
||
export SETUPTOOLS_SCM_PRETEND_VERSION=${PV} |