-
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
33 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 netbox-agent-1.0.0.tar.gz 90869 BLAKE2B 93a4cfab83de2890cb7ce1109fd6337f89abc3e45492a7f471b9219aa3b1eff6f434fcc797f0abe47fb8c393e60f1946964548ffe92ec126c6856e130789589c SHA512 520a5b988a08df478900bb3e4653d0e87ff771d323da14f851e0c82a7335872e7b2ebf476126fa0279f4b827f937e638d968776ee7df73f58483c33e625b58a0 |
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,32 @@ | ||
# Copyright 1999-2021 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
DISTUTILS_USE_PEP517=setuptools | ||
PYTHON_COMPAT=( python3_{7..13} ) | ||
|
||
inherit distutils-r1 | ||
|
||
DESCRIPTION="Agent to send system information to netbox" | ||
HOMEPAGE="https://github.com/Solvik/netbox-agent" | ||
SRC_URI="https://github.com/Solvik/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="GPL-3" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" | ||
|
||
REQUIRED_USE=${PYTHON_REQUIRED_USE} | ||
RDEPEND=" | ||
${PYTHON_DEPS} | ||
dev-python/netaddr | ||
dev-python/netifaces | ||
dev-python/pyyaml | ||
dev-python/python-slugify | ||
dev-python/packaging | ||
dev-python/distro | ||
dev-python/jsonargparse | ||
dev-python/pynetbox | ||
" | ||
BDEPEND=${RDEPEND} |