public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/python-gvm/
@ 2020-01-03 10:09 Joonas Niilola
  0 siblings, 0 replies; 23+ messages in thread
From: Joonas Niilola @ 2020-01-03 10:09 UTC (permalink / raw
  To: gentoo-commits

commit:     4fba5c78ab07761ebda3ca2e29f9c89df9d62c9a
Author:     Hasan ÇALIŞIR <hasan.calisir <AT> psauxit <DOT> com>
AuthorDate: Mon Dec 16 18:29:06 2019 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Jan  3 10:09:22 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fba5c78

net-analyzer/python-gvm: new package

Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Hasan ÇALIŞIR <hasan.calisir <AT> psauxit.com>
Closes: https://github.com/gentoo/gentoo/pull/14017
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 net-analyzer/python-gvm/Manifest                |  1 +
 net-analyzer/python-gvm/metadata.xml            | 21 +++++++++++++++
 net-analyzer/python-gvm/python-gvm-1.1.0.ebuild | 35 +++++++++++++++++++++++++
 3 files changed, 57 insertions(+)

diff --git a/net-analyzer/python-gvm/Manifest b/net-analyzer/python-gvm/Manifest
new file mode 100644
index 00000000000..6f471dca162
--- /dev/null
+++ b/net-analyzer/python-gvm/Manifest
@@ -0,0 +1 @@
+DIST python-gvm-1.1.0.tar.gz 160289 BLAKE2B 64dbf79f6749c50cddc2b908c45c6aea6c3793f0ddb10a98a96870636ee351f1a2e66227fbcc1383c63e0e015b4c05bf4c116ac80ef35f73f7e9057f9c8dd9b5 SHA512 dae04d42a14adde274c2148f7bd4b47b0ea02d6e249d6c23dfeb15f217f04ad9ff722f2e98d13e1a7add7b61d9dabfec623ab5b45087aaf5f480447fd31a8071

diff --git a/net-analyzer/python-gvm/metadata.xml b/net-analyzer/python-gvm/metadata.xml
new file mode 100644
index 00000000000..92109f9a135
--- /dev/null
+++ b/net-analyzer/python-gvm/metadata.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>hasan.calisir@psauxit.com</email>
+		<name>Hasan ÇALIŞIR</name>
+	</maintainer>
+	<maintainer type="project">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
+	<longdescription lang="en">
+	The Greenbone Vulnerability Management Python API library (python-gvm) is a collection of 
+	APIs that help with remote controlling a Greenbone Security Manager (GSM) appliance and its 
+	underlying Greenbone Vulnerability Manager (GVM). The library essentially abstracts accessing 
+	the communication protocols Greenbone Management Protocol (GMP) and Open Scanner Protocol (OSP).
+	</longdescription>
+	<upstream>
+		<remote-id type="github">greenbone/python-gvm</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/net-analyzer/python-gvm/python-gvm-1.1.0.ebuild b/net-analyzer/python-gvm/python-gvm-1.1.0.ebuild
new file mode 100644
index 00000000000..337868c6e65
--- /dev/null
+++ b/net-analyzer/python-gvm/python-gvm-1.1.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7} )
+inherit distutils-r1
+
+DESCRIPTION="Greenbone Vulnerability Management Python Library"
+HOMEPAGE="https://www.greenbone.net/en/"
+SRC_URI="https://github.com/greenbone/python-gvm/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+SLOT="0"
+LICENSE="GPL-3"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+	dev-python/defusedxml[${PYTHON_USEDEP}]
+	dev-python/lxml[${PYTHON_USEDEP}]
+	dev-python/paramiko[${PYTHON_USEDEP}]"
+
+DEPEND="
+	${RDEPEND}"
+
+BDEPEND="
+	dev-python/setuptools[${PYTHON_USEDEP}]"
+
+src_prepare() {
+	distutils-r1_python_prepare_all
+	# Exlude tests & docs to fix build issue
+	sed \
+		-e "s/packages=find_packages(exclude=.*/packages=find_packages(exclude=['tests*', 'docs']),/g" \
+		-i "$S"/setup.py || die
+}


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/python-gvm/
@ 2020-01-03 10:09 Joonas Niilola
  0 siblings, 0 replies; 23+ messages in thread
From: Joonas Niilola @ 2020-01-03 10:09 UTC (permalink / raw
  To: gentoo-commits

commit:     c3357caafdc84d1d2f5de2a77791f5ff5875d8d5
Author:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Fri Jan  3 09:43:06 2020 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Jan  3 10:09:27 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3357caa

net-analyzer/python-gvm: enable unittests

Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 net-analyzer/python-gvm/python-gvm-1.1.0.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/net-analyzer/python-gvm/python-gvm-1.1.0.ebuild b/net-analyzer/python-gvm/python-gvm-1.1.0.ebuild
index 337868c6e65..9a52388287f 100644
--- a/net-analyzer/python-gvm/python-gvm-1.1.0.ebuild
+++ b/net-analyzer/python-gvm/python-gvm-1.1.0.ebuild
@@ -23,8 +23,7 @@ RDEPEND="
 DEPEND="
 	${RDEPEND}"
 
-BDEPEND="
-	dev-python/setuptools[${PYTHON_USEDEP}]"
+distutils_enable_tests unittest
 
 src_prepare() {
 	distutils-r1_python_prepare_all


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/python-gvm/
@ 2020-03-03  6:03 Joonas Niilola
  0 siblings, 0 replies; 23+ messages in thread
From: Joonas Niilola @ 2020-03-03  6:03 UTC (permalink / raw
  To: gentoo-commits

commit:     a2be2e91ded84e9991d32805420771647abc341a
Author:     Hasan ÇALIŞIR <hasan.calisir <AT> psauxit <DOT> com>
AuthorDate: Sun Mar  1 12:28:48 2020 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Mar  3 05:16:37 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2be2e91

net-analyzer/python-gvm: drop myself as a maintainer

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Hasan ÇALIŞIR <hasan.calisir <AT> psauxit.com>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 net-analyzer/python-gvm/metadata.xml | 9 +--------
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/net-analyzer/python-gvm/metadata.xml b/net-analyzer/python-gvm/metadata.xml
index 92109f9a135..59f08da862e 100644
--- a/net-analyzer/python-gvm/metadata.xml
+++ b/net-analyzer/python-gvm/metadata.xml
@@ -1,14 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer type="person">
-		<email>hasan.calisir@psauxit.com</email>
-		<name>Hasan ÇALIŞIR</name>
-	</maintainer>
-	<maintainer type="project">
-		<email>proxy-maint@gentoo.org</email>
-		<name>Proxy Maintainers</name>
-	</maintainer>
+	<!-- maintainer-needed -->
 	<longdescription lang="en">
 	The Greenbone Vulnerability Management Python API library (python-gvm) is a collection of 
 	APIs that help with remote controlling a Greenbone Security Manager (GSM) appliance and its 


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/python-gvm/
@ 2020-03-25 13:46 Joonas Niilola
  0 siblings, 0 replies; 23+ messages in thread
From: Joonas Niilola @ 2020-03-25 13:46 UTC (permalink / raw
  To: gentoo-commits

commit:     5485730b192d49b06a529744e29315f06277287c
Author:     Jonas Licht <jonas.licht <AT> fem <DOT> tu-ilmenau <DOT> de>
AuthorDate: Tue Mar 10 21:51:12 2020 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Mar 25 13:45:26 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5485730b

net-analyzer/python-gvm: Version Bump to 1.2.0

Bug: https://bugs.gentoo.org/712094
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Jonas Licht <jonas.licht <AT> fem.tu-ilmenau.de>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 net-analyzer/python-gvm/Manifest                |  1 +
 net-analyzer/python-gvm/metadata.xml            |  9 ++++++-
 net-analyzer/python-gvm/python-gvm-1.2.0.ebuild | 34 +++++++++++++++++++++++++
 3 files changed, 43 insertions(+), 1 deletion(-)

diff --git a/net-analyzer/python-gvm/Manifest b/net-analyzer/python-gvm/Manifest
index 6f471dca162..3dfcb652f5f 100644
--- a/net-analyzer/python-gvm/Manifest
+++ b/net-analyzer/python-gvm/Manifest
@@ -1 +1,2 @@
 DIST python-gvm-1.1.0.tar.gz 160289 BLAKE2B 64dbf79f6749c50cddc2b908c45c6aea6c3793f0ddb10a98a96870636ee351f1a2e66227fbcc1383c63e0e015b4c05bf4c116ac80ef35f73f7e9057f9c8dd9b5 SHA512 dae04d42a14adde274c2148f7bd4b47b0ea02d6e249d6c23dfeb15f217f04ad9ff722f2e98d13e1a7add7b61d9dabfec623ab5b45087aaf5f480447fd31a8071
+DIST python-gvm-1.2.0.tar.gz 160700 BLAKE2B 40ef2d6e01dee7a93796c5d2f29db06e2a533860f7c612000ad5250d9b291ce90164e3a7c65c77f7131fc12c4622094b22da4eeb989293ad1b33e2754063ec76 SHA512 3eacec521bbd4cbfaec08d1ccabfe1c97898288b8b56779f9e3ceb734f52d78b93faf92674c1eefc555501e0bfdb16ed26316e87c697bbdc5a673d1be2170c00

diff --git a/net-analyzer/python-gvm/metadata.xml b/net-analyzer/python-gvm/metadata.xml
index 59f08da862e..fd0b9228bd4 100644
--- a/net-analyzer/python-gvm/metadata.xml
+++ b/net-analyzer/python-gvm/metadata.xml
@@ -1,7 +1,14 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<!-- maintainer-needed -->
+	<maintainer type="person">
+		<email>jonas.licht@gmail.com</email>
+		<name>Jonas Licht</name>
+	</maintainer>
+	<maintainer type="project">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
 	<longdescription lang="en">
 	The Greenbone Vulnerability Management Python API library (python-gvm) is a collection of 
 	APIs that help with remote controlling a Greenbone Security Manager (GSM) appliance and its 

diff --git a/net-analyzer/python-gvm/python-gvm-1.2.0.ebuild b/net-analyzer/python-gvm/python-gvm-1.2.0.ebuild
new file mode 100644
index 00000000000..8643fbe95e0
--- /dev/null
+++ b/net-analyzer/python-gvm/python-gvm-1.2.0.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8} )
+inherit distutils-r1
+
+DESCRIPTION="Greenbone Vulnerability Management Python Library"
+HOMEPAGE="https://www.greenbone.net/en/"
+SRC_URI="https://github.com/greenbone/python-gvm/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+SLOT="0"
+LICENSE="GPL-3"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+	dev-python/defusedxml[${PYTHON_USEDEP}]
+	dev-python/lxml[${PYTHON_USEDEP}]
+	dev-python/paramiko[${PYTHON_USEDEP}]"
+
+DEPEND="
+	${RDEPEND}"
+
+distutils_enable_tests unittest
+
+src_prepare() {
+	distutils-r1_python_prepare_all
+	# Exlude tests & docs to fix build issue
+	sed \
+		-e "s/packages=find_packages(exclude=.*/packages=find_packages(exclude=['tests*', 'docs']),/g" \
+		-i "$S"/setup.py || die
+}


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/python-gvm/
@ 2020-07-14 12:57 Joonas Niilola
  0 siblings, 0 replies; 23+ messages in thread
From: Joonas Niilola @ 2020-07-14 12:57 UTC (permalink / raw
  To: gentoo-commits

commit:     011eee1e6d6fd3de9834b6ed347473982afa41c4
Author:     Jonas Licht <jonas.licht <AT> fem <DOT> tu-ilmenau <DOT> de>
AuthorDate: Mon Jun 29 15:23:21 2020 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Jul 14 12:57:05 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=011eee1e

net-analyzer/python-gvm: Version bump to 1.5.0

Closes: https://bugs.gentoo.org/725892
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Jonas Licht <jonas.licht <AT> fem.tu-ilmenau.de>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 net-analyzer/python-gvm/Manifest                |  1 +
 net-analyzer/python-gvm/python-gvm-1.5.0.ebuild | 36 +++++++++++++++++++++++++
 2 files changed, 37 insertions(+)

diff --git a/net-analyzer/python-gvm/Manifest b/net-analyzer/python-gvm/Manifest
index 3dfcb652f5f..628af619e9a 100644
--- a/net-analyzer/python-gvm/Manifest
+++ b/net-analyzer/python-gvm/Manifest
@@ -1,2 +1,3 @@
 DIST python-gvm-1.1.0.tar.gz 160289 BLAKE2B 64dbf79f6749c50cddc2b908c45c6aea6c3793f0ddb10a98a96870636ee351f1a2e66227fbcc1383c63e0e015b4c05bf4c116ac80ef35f73f7e9057f9c8dd9b5 SHA512 dae04d42a14adde274c2148f7bd4b47b0ea02d6e249d6c23dfeb15f217f04ad9ff722f2e98d13e1a7add7b61d9dabfec623ab5b45087aaf5f480447fd31a8071
 DIST python-gvm-1.2.0.tar.gz 160700 BLAKE2B 40ef2d6e01dee7a93796c5d2f29db06e2a533860f7c612000ad5250d9b291ce90164e3a7c65c77f7131fc12c4622094b22da4eeb989293ad1b33e2754063ec76 SHA512 3eacec521bbd4cbfaec08d1ccabfe1c97898288b8b56779f9e3ceb734f52d78b93faf92674c1eefc555501e0bfdb16ed26316e87c697bbdc5a673d1be2170c00
+DIST python-gvm-1.5.0.tar.gz 171471 BLAKE2B 57fa3cc8dfa74a16c56fb4fee0f2c47ede441892a19865271e8c034cb853751f38b3f90cbca6d538d8e59866cd45d0fd8e783a62719c523c6fc9723f4c183a79 SHA512 7c1717dd8f724566232cca50997494012d0364975151afcca8aa483f9fd85d47343f1a2af0124cb762e16d42a057b06d8f8a5e637280e14541a270b14be188e1

diff --git a/net-analyzer/python-gvm/python-gvm-1.5.0.ebuild b/net-analyzer/python-gvm/python-gvm-1.5.0.ebuild
new file mode 100644
index 00000000000..8f7d966921f
--- /dev/null
+++ b/net-analyzer/python-gvm/python-gvm-1.5.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8} )
+DISTUTILS_USE_SETUPTOOLS=pyproject.toml
+
+inherit distutils-r1
+
+DESCRIPTION="Greenbone Vulnerability Management Python Library"
+HOMEPAGE="https://www.greenbone.net/en/"
+SRC_URI="https://github.com/greenbone/python-gvm/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+SLOT="0"
+LICENSE="GPL-3"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+	dev-python/defusedxml[${PYTHON_USEDEP}]
+	dev-python/lxml[${PYTHON_USEDEP}]
+	dev-python/paramiko[${PYTHON_USEDEP}]"
+
+DEPEND="
+	${RDEPEND}"
+
+distutils_enable_tests unittest
+
+src_prepare() {
+	distutils-r1_python_prepare_all
+	# Exlude tests & docs to fix build issue
+	sed \
+		-e "s/packages=find_packages(exclude=.*/packages=find_packages(exclude=['tests*', 'docs']),/g" \
+		-i "$S"/setup.py || die
+}


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/python-gvm/
@ 2020-08-21  7:15 Joonas Niilola
  0 siblings, 0 replies; 23+ messages in thread
From: Joonas Niilola @ 2020-08-21  7:15 UTC (permalink / raw
  To: gentoo-commits

commit:     2e0b91a2b267f375c4de190e398956653f97ca61
Author:     Jonas Licht <jonas.licht <AT> fem <DOT> tu-ilmenau <DOT> de>
AuthorDate: Mon Aug 10 13:22:53 2020 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Aug 21 07:14:42 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e0b91a2

net-analyzer/python-gvm: version bump to 1.6.0

Closes: https://bugs.gentoo.org/736623
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Jonas Licht <jonas.licht <AT> fem.tu-ilmenau.de>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 net-analyzer/python-gvm/Manifest                |  1 +
 net-analyzer/python-gvm/python-gvm-1.6.0.ebuild | 28 +++++++++++++++++++++++++
 2 files changed, 29 insertions(+)

diff --git a/net-analyzer/python-gvm/Manifest b/net-analyzer/python-gvm/Manifest
index 628af619e9a..e9e4ba9eb0a 100644
--- a/net-analyzer/python-gvm/Manifest
+++ b/net-analyzer/python-gvm/Manifest
@@ -1,3 +1,4 @@
 DIST python-gvm-1.1.0.tar.gz 160289 BLAKE2B 64dbf79f6749c50cddc2b908c45c6aea6c3793f0ddb10a98a96870636ee351f1a2e66227fbcc1383c63e0e015b4c05bf4c116ac80ef35f73f7e9057f9c8dd9b5 SHA512 dae04d42a14adde274c2148f7bd4b47b0ea02d6e249d6c23dfeb15f217f04ad9ff722f2e98d13e1a7add7b61d9dabfec623ab5b45087aaf5f480447fd31a8071
 DIST python-gvm-1.2.0.tar.gz 160700 BLAKE2B 40ef2d6e01dee7a93796c5d2f29db06e2a533860f7c612000ad5250d9b291ce90164e3a7c65c77f7131fc12c4622094b22da4eeb989293ad1b33e2754063ec76 SHA512 3eacec521bbd4cbfaec08d1ccabfe1c97898288b8b56779f9e3ceb734f52d78b93faf92674c1eefc555501e0bfdb16ed26316e87c697bbdc5a673d1be2170c00
 DIST python-gvm-1.5.0.tar.gz 171471 BLAKE2B 57fa3cc8dfa74a16c56fb4fee0f2c47ede441892a19865271e8c034cb853751f38b3f90cbca6d538d8e59866cd45d0fd8e783a62719c523c6fc9723f4c183a79 SHA512 7c1717dd8f724566232cca50997494012d0364975151afcca8aa483f9fd85d47343f1a2af0124cb762e16d42a057b06d8f8a5e637280e14541a270b14be188e1
+DIST python-gvm-1.6.0.tar.gz 175162 BLAKE2B 2c2f9d96911533734807b1aa3e6a56c758122755284a4808ac4e7f974847a12ac8d148e1c8604307965422f311231d721cbbaf09207e85d4425afc5d9534b2e5 SHA512 135ae95d6b5d5226a5ed3e4a7c14e03831005e745039bca86d532cb852a41a973ea1559b1c17b6564787f9448e20c932445dfec0ec8ecf1b39366edc205ea934

diff --git a/net-analyzer/python-gvm/python-gvm-1.6.0.ebuild b/net-analyzer/python-gvm/python-gvm-1.6.0.ebuild
new file mode 100644
index 00000000000..c3d5c167201
--- /dev/null
+++ b/net-analyzer/python-gvm/python-gvm-1.6.0.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+DISTUTILS_USE_SETUPTOOLS=pyproject.toml
+
+inherit distutils-r1
+
+DESCRIPTION="Greenbone Vulnerability Management Python Library"
+HOMEPAGE="https://www.greenbone.net/en/"
+SRC_URI="https://github.com/greenbone/python-gvm/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+SLOT="0"
+LICENSE="GPL-3"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+	dev-python/defusedxml[${PYTHON_USEDEP}]
+	dev-python/lxml[${PYTHON_USEDEP}]
+	dev-python/paramiko[${PYTHON_USEDEP}]"
+
+DEPEND="
+	${RDEPEND}"
+
+distutils_enable_tests unittest


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/python-gvm/
@ 2021-03-22 13:36 Joonas Niilola
  0 siblings, 0 replies; 23+ messages in thread
From: Joonas Niilola @ 2021-03-22 13:36 UTC (permalink / raw
  To: gentoo-commits

commit:     3285b2b29823896dd52a131611366897c4220825
Author:     Jonas Licht <jonas.licht <AT> fem <DOT> tu-ilmenau <DOT> de>
AuthorDate: Thu Mar 18 22:22:31 2021 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Mar 22 13:33:55 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3285b2b2

net-analyzer/python-gvm: version bump to 21.1.3

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Jonas Licht <jonas.licht <AT> fem.tu-ilmenau.de>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 net-analyzer/python-gvm/Manifest                 |  1 +
 net-analyzer/python-gvm/python-gvm-21.1.3.ebuild | 28 ++++++++++++++++++++++++
 2 files changed, 29 insertions(+)

diff --git a/net-analyzer/python-gvm/Manifest b/net-analyzer/python-gvm/Manifest
index e9e4ba9eb0a..d25cb1d6a4f 100644
--- a/net-analyzer/python-gvm/Manifest
+++ b/net-analyzer/python-gvm/Manifest
@@ -2,3 +2,4 @@ DIST python-gvm-1.1.0.tar.gz 160289 BLAKE2B 64dbf79f6749c50cddc2b908c45c6aea6c37
 DIST python-gvm-1.2.0.tar.gz 160700 BLAKE2B 40ef2d6e01dee7a93796c5d2f29db06e2a533860f7c612000ad5250d9b291ce90164e3a7c65c77f7131fc12c4622094b22da4eeb989293ad1b33e2754063ec76 SHA512 3eacec521bbd4cbfaec08d1ccabfe1c97898288b8b56779f9e3ceb734f52d78b93faf92674c1eefc555501e0bfdb16ed26316e87c697bbdc5a673d1be2170c00
 DIST python-gvm-1.5.0.tar.gz 171471 BLAKE2B 57fa3cc8dfa74a16c56fb4fee0f2c47ede441892a19865271e8c034cb853751f38b3f90cbca6d538d8e59866cd45d0fd8e783a62719c523c6fc9723f4c183a79 SHA512 7c1717dd8f724566232cca50997494012d0364975151afcca8aa483f9fd85d47343f1a2af0124cb762e16d42a057b06d8f8a5e637280e14541a270b14be188e1
 DIST python-gvm-1.6.0.tar.gz 175162 BLAKE2B 2c2f9d96911533734807b1aa3e6a56c758122755284a4808ac4e7f974847a12ac8d148e1c8604307965422f311231d721cbbaf09207e85d4425afc5d9534b2e5 SHA512 135ae95d6b5d5226a5ed3e4a7c14e03831005e745039bca86d532cb852a41a973ea1559b1c17b6564787f9448e20c932445dfec0ec8ecf1b39366edc205ea934
+DIST python-gvm-21.1.3.tar.gz 244785 BLAKE2B 7f0a63651a01a914359ea683cf52fe2e1ced22aba0bb90d232c4e5a13f25bb0a9d76a647c2bbe34f0be9615c0ce4d7fb938eee3fbe3a2389b7483b4d55069fee SHA512 eb92be77e69303e0ece54efb5bceaefb469ab1c3f4a2714ec1c839d43584e5760618c39a133aaaeb436c9f62d6deec8f40608e792f408e8cae7c083db857183f

diff --git a/net-analyzer/python-gvm/python-gvm-21.1.3.ebuild b/net-analyzer/python-gvm/python-gvm-21.1.3.ebuild
new file mode 100644
index 00000000000..21cee4b9435
--- /dev/null
+++ b/net-analyzer/python-gvm/python-gvm-21.1.3.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+DISTUTILS_USE_SETUPTOOLS=pyproject.toml
+
+inherit distutils-r1
+
+DESCRIPTION="Greenbone Vulnerability Management Python Library"
+HOMEPAGE="https://www.greenbone.net/en/ https://github.com/greenbone/python-gvm/"
+SRC_URI="https://github.com/greenbone/python-gvm/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+SLOT="0"
+LICENSE="GPL-3"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+	dev-python/defusedxml[${PYTHON_USEDEP}]
+	dev-python/lxml[${PYTHON_USEDEP}]
+	dev-python/paramiko[${PYTHON_USEDEP}]"
+
+DEPEND="
+	${RDEPEND}"
+
+distutils_enable_tests unittest


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/python-gvm/
@ 2021-04-12 22:50 Sam James
  0 siblings, 0 replies; 23+ messages in thread
From: Sam James @ 2021-04-12 22:50 UTC (permalink / raw
  To: gentoo-commits

commit:     5946bb44c378f2fad6b02f1e36379547c70ae12d
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr  2 06:18:11 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Apr 12 22:50:16 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5946bb44

net-analyzer/python-gvm: fix variable references

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-analyzer/python-gvm/python-gvm-1.1.0.ebuild | 4 ++--
 net-analyzer/python-gvm/python-gvm-1.2.0.ebuild | 4 ++--
 net-analyzer/python-gvm/python-gvm-1.5.0.ebuild | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/net-analyzer/python-gvm/python-gvm-1.1.0.ebuild b/net-analyzer/python-gvm/python-gvm-1.1.0.ebuild
index 0fe7c72c9a9..88f993c947e 100644
--- a/net-analyzer/python-gvm/python-gvm-1.1.0.ebuild
+++ b/net-analyzer/python-gvm/python-gvm-1.1.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -30,5 +30,5 @@ src_prepare() {
 	# Exlude tests & docs to fix build issue
 	sed \
 		-e "s/packages=find_packages(exclude=.*/packages=find_packages(exclude=['tests*', 'docs']),/g" \
-		-i "$S"/setup.py || die
+		-i "${S}"/setup.py || die
 }

diff --git a/net-analyzer/python-gvm/python-gvm-1.2.0.ebuild b/net-analyzer/python-gvm/python-gvm-1.2.0.ebuild
index 940c6ebd495..fc107e0b153 100644
--- a/net-analyzer/python-gvm/python-gvm-1.2.0.ebuild
+++ b/net-analyzer/python-gvm/python-gvm-1.2.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -30,5 +30,5 @@ src_prepare() {
 	# Exlude tests & docs to fix build issue
 	sed \
 		-e "s/packages=find_packages(exclude=.*/packages=find_packages(exclude=['tests*', 'docs']),/g" \
-		-i "$S"/setup.py || die
+		-i "${S}"/setup.py || die
 }

diff --git a/net-analyzer/python-gvm/python-gvm-1.5.0.ebuild b/net-analyzer/python-gvm/python-gvm-1.5.0.ebuild
index 9bb049760a2..48cb4f75b4f 100644
--- a/net-analyzer/python-gvm/python-gvm-1.5.0.ebuild
+++ b/net-analyzer/python-gvm/python-gvm-1.5.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -32,5 +32,5 @@ src_prepare() {
 	# Exlude tests & docs to fix build issue
 	sed \
 		-e "s/packages=find_packages(exclude=.*/packages=find_packages(exclude=['tests*', 'docs']),/g" \
-		-i "$S"/setup.py || die
+		-i "${S}"/setup.py || die
 }


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/python-gvm/
@ 2021-05-31 20:53 Michał Górny
  0 siblings, 0 replies; 23+ messages in thread
From: Michał Górny @ 2021-05-31 20:53 UTC (permalink / raw
  To: gentoo-commits

commit:     1c0748525135aee0c7063f838cc82482e5d8f021
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon May 31 20:49:16 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon May 31 20:53:31 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c074852

net-analyzer/python-gvm: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 net-analyzer/python-gvm/Manifest                |  4 ---
 net-analyzer/python-gvm/python-gvm-1.1.0.ebuild | 34 -----------------------
 net-analyzer/python-gvm/python-gvm-1.2.0.ebuild | 34 -----------------------
 net-analyzer/python-gvm/python-gvm-1.5.0.ebuild | 36 -------------------------
 net-analyzer/python-gvm/python-gvm-1.6.0.ebuild | 28 -------------------
 5 files changed, 136 deletions(-)

diff --git a/net-analyzer/python-gvm/Manifest b/net-analyzer/python-gvm/Manifest
index d25cb1d6a4f..bc9ede7565f 100644
--- a/net-analyzer/python-gvm/Manifest
+++ b/net-analyzer/python-gvm/Manifest
@@ -1,5 +1 @@
-DIST python-gvm-1.1.0.tar.gz 160289 BLAKE2B 64dbf79f6749c50cddc2b908c45c6aea6c3793f0ddb10a98a96870636ee351f1a2e66227fbcc1383c63e0e015b4c05bf4c116ac80ef35f73f7e9057f9c8dd9b5 SHA512 dae04d42a14adde274c2148f7bd4b47b0ea02d6e249d6c23dfeb15f217f04ad9ff722f2e98d13e1a7add7b61d9dabfec623ab5b45087aaf5f480447fd31a8071
-DIST python-gvm-1.2.0.tar.gz 160700 BLAKE2B 40ef2d6e01dee7a93796c5d2f29db06e2a533860f7c612000ad5250d9b291ce90164e3a7c65c77f7131fc12c4622094b22da4eeb989293ad1b33e2754063ec76 SHA512 3eacec521bbd4cbfaec08d1ccabfe1c97898288b8b56779f9e3ceb734f52d78b93faf92674c1eefc555501e0bfdb16ed26316e87c697bbdc5a673d1be2170c00
-DIST python-gvm-1.5.0.tar.gz 171471 BLAKE2B 57fa3cc8dfa74a16c56fb4fee0f2c47ede441892a19865271e8c034cb853751f38b3f90cbca6d538d8e59866cd45d0fd8e783a62719c523c6fc9723f4c183a79 SHA512 7c1717dd8f724566232cca50997494012d0364975151afcca8aa483f9fd85d47343f1a2af0124cb762e16d42a057b06d8f8a5e637280e14541a270b14be188e1
-DIST python-gvm-1.6.0.tar.gz 175162 BLAKE2B 2c2f9d96911533734807b1aa3e6a56c758122755284a4808ac4e7f974847a12ac8d148e1c8604307965422f311231d721cbbaf09207e85d4425afc5d9534b2e5 SHA512 135ae95d6b5d5226a5ed3e4a7c14e03831005e745039bca86d532cb852a41a973ea1559b1c17b6564787f9448e20c932445dfec0ec8ecf1b39366edc205ea934
 DIST python-gvm-21.1.3.tar.gz 244785 BLAKE2B 7f0a63651a01a914359ea683cf52fe2e1ced22aba0bb90d232c4e5a13f25bb0a9d76a647c2bbe34f0be9615c0ce4d7fb938eee3fbe3a2389b7483b4d55069fee SHA512 eb92be77e69303e0ece54efb5bceaefb469ab1c3f4a2714ec1c839d43584e5760618c39a133aaaeb436c9f62d6deec8f40608e792f408e8cae7c083db857183f

diff --git a/net-analyzer/python-gvm/python-gvm-1.1.0.ebuild b/net-analyzer/python-gvm/python-gvm-1.1.0.ebuild
deleted file mode 100644
index 88f993c947e..00000000000
--- a/net-analyzer/python-gvm/python-gvm-1.1.0.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_7 )
-inherit distutils-r1
-
-DESCRIPTION="Greenbone Vulnerability Management Python Library"
-HOMEPAGE="https://www.greenbone.net/en/"
-SRC_URI="https://github.com/greenbone/python-gvm/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-3"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
-	dev-python/defusedxml[${PYTHON_USEDEP}]
-	dev-python/lxml[${PYTHON_USEDEP}]
-	dev-python/paramiko[${PYTHON_USEDEP}]"
-
-DEPEND="
-	${RDEPEND}"
-
-distutils_enable_tests unittest
-
-src_prepare() {
-	distutils-r1_python_prepare_all
-	# Exlude tests & docs to fix build issue
-	sed \
-		-e "s/packages=find_packages(exclude=.*/packages=find_packages(exclude=['tests*', 'docs']),/g" \
-		-i "${S}"/setup.py || die
-}

diff --git a/net-analyzer/python-gvm/python-gvm-1.2.0.ebuild b/net-analyzer/python-gvm/python-gvm-1.2.0.ebuild
deleted file mode 100644
index fc107e0b153..00000000000
--- a/net-analyzer/python-gvm/python-gvm-1.2.0.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8} )
-inherit distutils-r1
-
-DESCRIPTION="Greenbone Vulnerability Management Python Library"
-HOMEPAGE="https://www.greenbone.net/en/"
-SRC_URI="https://github.com/greenbone/python-gvm/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-3"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
-	dev-python/defusedxml[${PYTHON_USEDEP}]
-	dev-python/lxml[${PYTHON_USEDEP}]
-	dev-python/paramiko[${PYTHON_USEDEP}]"
-
-DEPEND="
-	${RDEPEND}"
-
-distutils_enable_tests unittest
-
-src_prepare() {
-	distutils-r1_python_prepare_all
-	# Exlude tests & docs to fix build issue
-	sed \
-		-e "s/packages=find_packages(exclude=.*/packages=find_packages(exclude=['tests*', 'docs']),/g" \
-		-i "${S}"/setup.py || die
-}

diff --git a/net-analyzer/python-gvm/python-gvm-1.5.0.ebuild b/net-analyzer/python-gvm/python-gvm-1.5.0.ebuild
deleted file mode 100644
index 48cb4f75b4f..00000000000
--- a/net-analyzer/python-gvm/python-gvm-1.5.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8} )
-DISTUTILS_USE_SETUPTOOLS=pyproject.toml
-
-inherit distutils-r1
-
-DESCRIPTION="Greenbone Vulnerability Management Python Library"
-HOMEPAGE="https://www.greenbone.net/en/"
-SRC_URI="https://github.com/greenbone/python-gvm/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-3"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
-	dev-python/defusedxml[${PYTHON_USEDEP}]
-	dev-python/lxml[${PYTHON_USEDEP}]
-	dev-python/paramiko[${PYTHON_USEDEP}]"
-
-DEPEND="
-	${RDEPEND}"
-
-distutils_enable_tests unittest
-
-src_prepare() {
-	distutils-r1_python_prepare_all
-	# Exlude tests & docs to fix build issue
-	sed \
-		-e "s/packages=find_packages(exclude=.*/packages=find_packages(exclude=['tests*', 'docs']),/g" \
-		-i "${S}"/setup.py || die
-}

diff --git a/net-analyzer/python-gvm/python-gvm-1.6.0.ebuild b/net-analyzer/python-gvm/python-gvm-1.6.0.ebuild
deleted file mode 100644
index c3d5c167201..00000000000
--- a/net-analyzer/python-gvm/python-gvm-1.6.0.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8,9} )
-DISTUTILS_USE_SETUPTOOLS=pyproject.toml
-
-inherit distutils-r1
-
-DESCRIPTION="Greenbone Vulnerability Management Python Library"
-HOMEPAGE="https://www.greenbone.net/en/"
-SRC_URI="https://github.com/greenbone/python-gvm/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-3"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
-	dev-python/defusedxml[${PYTHON_USEDEP}]
-	dev-python/lxml[${PYTHON_USEDEP}]
-	dev-python/paramiko[${PYTHON_USEDEP}]"
-
-DEPEND="
-	${RDEPEND}"
-
-distutils_enable_tests unittest


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/python-gvm/
@ 2022-05-02 11:16 Florian Schmaus
  0 siblings, 0 replies; 23+ messages in thread
From: Florian Schmaus @ 2022-05-02 11:16 UTC (permalink / raw
  To: gentoo-commits

commit:     fb29558a5a999d861c5cfea5ba18d94020b8ef0b
Author:     Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Mon May  2 09:24:43 2022 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Mon May  2 11:16:38 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb29558a

net-analyzer/python-gvm: add 21.11.0

Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 net-analyzer/python-gvm/Manifest                  |  1 +
 net-analyzer/python-gvm/python-gvm-21.11.0.ebuild | 27 +++++++++++++++++++++++
 2 files changed, 28 insertions(+)

diff --git a/net-analyzer/python-gvm/Manifest b/net-analyzer/python-gvm/Manifest
index bc9ede7565f3..ccb8777ca0d0 100644
--- a/net-analyzer/python-gvm/Manifest
+++ b/net-analyzer/python-gvm/Manifest
@@ -1 +1,2 @@
 DIST python-gvm-21.1.3.tar.gz 244785 BLAKE2B 7f0a63651a01a914359ea683cf52fe2e1ced22aba0bb90d232c4e5a13f25bb0a9d76a647c2bbe34f0be9615c0ce4d7fb938eee3fbe3a2389b7483b4d55069fee SHA512 eb92be77e69303e0ece54efb5bceaefb469ab1c3f4a2714ec1c839d43584e5760618c39a133aaaeb436c9f62d6deec8f40608e792f408e8cae7c083db857183f
+DIST python-gvm-21.11.0.tar.gz 230324 BLAKE2B 1c4ca09f62dbeb6863e6f2da7188fd499d38ec9e1c01a2cac3534b2bff996082a5075a437e225a51bbb98f7a6ebc67062f5bd31ac1ce1a831a82bcc85f377a62 SHA512 df1fe64c65453a782dd89615cb6426a47091c82899d73855ec14174ea01ca3066a987eacb4f553c575695c6a962ec635023d0b79eafe143b564e4dfe494cc2a9

diff --git a/net-analyzer/python-gvm/python-gvm-21.11.0.ebuild b/net-analyzer/python-gvm/python-gvm-21.11.0.ebuild
new file mode 100644
index 000000000000..b50a5c454cd0
--- /dev/null
+++ b/net-analyzer/python-gvm/python-gvm-21.11.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+DISTUTILS_USE_SETUPTOOLS=pyproject.toml
+
+inherit distutils-r1
+
+DESCRIPTION="Greenbone Vulnerability Management Python Library"
+HOMEPAGE="https://www.greenbone.net/en/ https://github.com/greenbone/python-gvm/"
+SRC_URI="https://github.com/greenbone/python-gvm/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+SLOT="0"
+LICENSE="GPL-3"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+	dev-python/defusedxml[${PYTHON_USEDEP}]
+	dev-python/lxml[${PYTHON_USEDEP}]
+	dev-python/paramiko[${PYTHON_USEDEP}]"
+
+DEPEND="${RDEPEND}"
+
+distutils_enable_tests unittest


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/python-gvm/
@ 2022-05-02 17:53 Florian Schmaus
  0 siblings, 0 replies; 23+ messages in thread
From: Florian Schmaus @ 2022-05-02 17:53 UTC (permalink / raw
  To: gentoo-commits

commit:     b47bd160a8ccb0f23eefa018bd8367fc1605d716
Author:     Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Mon May  2 17:52:29 2022 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Mon May  2 17:53:42 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b47bd160

net-analyzer/python-gvm: fix tests (jonas), PEP517 (sam), and code style

Closes: https://bugs.gentoo.org/842186
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
Suggested-by: Sam James <sam <AT> gentoo.org>
Suggested-by: Jonas Licht <jonas.licht <AT> fem.tu-ilmenau.de>

 net-analyzer/python-gvm/python-gvm-21.11.0.ebuild | 16 +++++++++++-----
 1 file changed, 11 insertions(+), 5 deletions(-)

diff --git a/net-analyzer/python-gvm/python-gvm-21.11.0.ebuild b/net-analyzer/python-gvm/python-gvm-21.11.0.ebuild
index b50a5c454cd0..72431694f204 100644
--- a/net-analyzer/python-gvm/python-gvm-21.11.0.ebuild
+++ b/net-analyzer/python-gvm/python-gvm-21.11.0.ebuild
@@ -4,24 +4,30 @@
 EAPI=8
 
 PYTHON_COMPAT=( python3_{8..10} )
-DISTUTILS_USE_SETUPTOOLS=pyproject.toml
+DISTUTILS_USE_PEP517=poetry
 
 inherit distutils-r1
 
 DESCRIPTION="Greenbone Vulnerability Management Python Library"
-HOMEPAGE="https://www.greenbone.net/en/ https://github.com/greenbone/python-gvm/"
+HOMEPAGE="https://www.greenbone.net https://github.com/greenbone/python-gvm/"
 SRC_URI="https://github.com/greenbone/python-gvm/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 SLOT="0"
 LICENSE="GPL-3"
 KEYWORDS="~amd64 ~x86"
-IUSE=""
 
 RDEPEND="
 	dev-python/defusedxml[${PYTHON_USEDEP}]
 	dev-python/lxml[${PYTHON_USEDEP}]
-	dev-python/paramiko[${PYTHON_USEDEP}]"
-
+	dev-python/paramiko[${PYTHON_USEDEP}]
+"
 DEPEND="${RDEPEND}"
 
 distutils_enable_tests unittest
+
+src_prepare() {
+	distutils-r1_src_prepare
+
+	# drop connection tests
+	rm -r tests/connections || die
+}


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/python-gvm/
@ 2022-05-09 12:07 Florian Schmaus
  0 siblings, 0 replies; 23+ messages in thread
From: Florian Schmaus @ 2022-05-09 12:07 UTC (permalink / raw
  To: gentoo-commits

commit:     effd5761c351afd028476115e360cdaba1c79c4b
Author:     Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Mon May  9 11:43:09 2022 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Mon May  9 12:07:15 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=effd5761

net-analyzer/python-gvm: update LICENSE

Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 net-analyzer/python-gvm/python-gvm-21.11.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/python-gvm/python-gvm-21.11.0.ebuild b/net-analyzer/python-gvm/python-gvm-21.11.0.ebuild
index 72431694f204..819a242b2690 100644
--- a/net-analyzer/python-gvm/python-gvm-21.11.0.ebuild
+++ b/net-analyzer/python-gvm/python-gvm-21.11.0.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://www.greenbone.net https://github.com/greenbone/python-gvm/"
 SRC_URI="https://github.com/greenbone/python-gvm/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 SLOT="0"
-LICENSE="GPL-3"
+LICENSE="GPL-3+"
 KEYWORDS="~amd64 ~x86"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/python-gvm/
@ 2022-09-18 13:58 Michał Górny
  0 siblings, 0 replies; 23+ messages in thread
From: Michał Górny @ 2022-09-18 13:58 UTC (permalink / raw
  To: gentoo-commits

commit:     74e74f66c0a419cf412ade8c85247e3d4b3a860d
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 18 13:53:38 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Sep 18 13:58:42 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74e74f66

net-analyzer/python-gvm: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 net-analyzer/python-gvm/Manifest                 |  1 -
 net-analyzer/python-gvm/python-gvm-21.1.3.ebuild | 28 ------------------------
 2 files changed, 29 deletions(-)

diff --git a/net-analyzer/python-gvm/Manifest b/net-analyzer/python-gvm/Manifest
index ccb8777ca0d0..1e97e579cc91 100644
--- a/net-analyzer/python-gvm/Manifest
+++ b/net-analyzer/python-gvm/Manifest
@@ -1,2 +1 @@
-DIST python-gvm-21.1.3.tar.gz 244785 BLAKE2B 7f0a63651a01a914359ea683cf52fe2e1ced22aba0bb90d232c4e5a13f25bb0a9d76a647c2bbe34f0be9615c0ce4d7fb938eee3fbe3a2389b7483b4d55069fee SHA512 eb92be77e69303e0ece54efb5bceaefb469ab1c3f4a2714ec1c839d43584e5760618c39a133aaaeb436c9f62d6deec8f40608e792f408e8cae7c083db857183f
 DIST python-gvm-21.11.0.tar.gz 230324 BLAKE2B 1c4ca09f62dbeb6863e6f2da7188fd499d38ec9e1c01a2cac3534b2bff996082a5075a437e225a51bbb98f7a6ebc67062f5bd31ac1ce1a831a82bcc85f377a62 SHA512 df1fe64c65453a782dd89615cb6426a47091c82899d73855ec14174ea01ca3066a987eacb4f553c575695c6a962ec635023d0b79eafe143b564e4dfe494cc2a9

diff --git a/net-analyzer/python-gvm/python-gvm-21.1.3.ebuild b/net-analyzer/python-gvm/python-gvm-21.1.3.ebuild
deleted file mode 100644
index 21cee4b94358..000000000000
--- a/net-analyzer/python-gvm/python-gvm-21.1.3.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8,9} )
-DISTUTILS_USE_SETUPTOOLS=pyproject.toml
-
-inherit distutils-r1
-
-DESCRIPTION="Greenbone Vulnerability Management Python Library"
-HOMEPAGE="https://www.greenbone.net/en/ https://github.com/greenbone/python-gvm/"
-SRC_URI="https://github.com/greenbone/python-gvm/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-3"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
-	dev-python/defusedxml[${PYTHON_USEDEP}]
-	dev-python/lxml[${PYTHON_USEDEP}]
-	dev-python/paramiko[${PYTHON_USEDEP}]"
-
-DEPEND="
-	${RDEPEND}"
-
-distutils_enable_tests unittest


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/python-gvm/
@ 2023-04-09 16:03 Michał Górny
  0 siblings, 0 replies; 23+ messages in thread
From: Michał Górny @ 2023-04-09 16:03 UTC (permalink / raw
  To: gentoo-commits

commit:     76fb95c4eae32e63a06ee7d559aa5826920335cb
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Apr  9 15:47:11 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Apr  9 15:47:11 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76fb95c4

net-analyzer/python-gvm: Enable py3.11

Closes: https://bugs.gentoo.org/897070
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 net-analyzer/python-gvm/python-gvm-21.11.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/python-gvm/python-gvm-21.11.0.ebuild b/net-analyzer/python-gvm/python-gvm-21.11.0.ebuild
index 584cc1eb5329..04a6a2b51111 100644
--- a/net-analyzer/python-gvm/python-gvm-21.11.0.ebuild
+++ b/net-analyzer/python-gvm/python-gvm-21.11.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 DISTUTILS_USE_PEP517=poetry
 
 inherit distutils-r1


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/python-gvm/
@ 2023-07-03  8:15 Florian Schmaus
  0 siblings, 0 replies; 23+ messages in thread
From: Florian Schmaus @ 2023-07-03  8:15 UTC (permalink / raw
  To: gentoo-commits

commit:     191241f17e14da162b5ea5d57ba460514ed53dba
Author:     Giuseppe Foti <foti.giuseppe <AT> gmail <DOT> com>
AuthorDate: Sat May 20 17:57:58 2023 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Mon Jul  3 08:15:25 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=191241f1

net-analyzer/python-gvm: add 23.5.1

Signed-off-by: Giuseppe Foti <foti.giuseppe <AT> gmail.com>
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 net-analyzer/python-gvm/Manifest                 |  1 +
 net-analyzer/python-gvm/metadata.xml             |  4 +++
 net-analyzer/python-gvm/python-gvm-23.5.1.ebuild | 34 ++++++++++++++++++++++++
 3 files changed, 39 insertions(+)

diff --git a/net-analyzer/python-gvm/Manifest b/net-analyzer/python-gvm/Manifest
index 1e97e579cc91..41d40df2374e 100644
--- a/net-analyzer/python-gvm/Manifest
+++ b/net-analyzer/python-gvm/Manifest
@@ -1 +1,2 @@
 DIST python-gvm-21.11.0.tar.gz 230324 BLAKE2B 1c4ca09f62dbeb6863e6f2da7188fd499d38ec9e1c01a2cac3534b2bff996082a5075a437e225a51bbb98f7a6ebc67062f5bd31ac1ce1a831a82bcc85f377a62 SHA512 df1fe64c65453a782dd89615cb6426a47091c82899d73855ec14174ea01ca3066a987eacb4f553c575695c6a962ec635023d0b79eafe143b564e4dfe494cc2a9
+DIST python-gvm-23.5.1.tar.gz 291456 BLAKE2B 529febe59d46079a48299c8f1e853d4d3e20fb241fbb9e4d05cb83c9bb0c6c98dc297ee2d0322789e178216c55975b8c49204273be9bf484e6304438ae171533 SHA512 4928b077bf10367b3f2c8c8fe737720c0e3c84b4df8cdf6e6ca440a442a915f8619519993200c81f4333eae32070af0b51265fdb1c224b11ae11f521d62a7f84

diff --git a/net-analyzer/python-gvm/metadata.xml b/net-analyzer/python-gvm/metadata.xml
index 488d3eec2494..fc9cf3041b5d 100644
--- a/net-analyzer/python-gvm/metadata.xml
+++ b/net-analyzer/python-gvm/metadata.xml
@@ -1,6 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
+	<maintainer type="person" proxied="yes">
+		<email>foti.giuseppe@gmail.com</email>
+		<name>Giuseppe Foti</name>
+	</maintainer>
 	<maintainer type="person" proxied="yes">
 		<email>jonas.licht@gmail.com</email>
 		<name>Jonas Licht</name>

diff --git a/net-analyzer/python-gvm/python-gvm-23.5.1.ebuild b/net-analyzer/python-gvm/python-gvm-23.5.1.ebuild
new file mode 100644
index 000000000000..22a851ada380
--- /dev/null
+++ b/net-analyzer/python-gvm/python-gvm-23.5.1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..11} )
+DISTUTILS_USE_PEP517=poetry
+
+inherit distutils-r1
+
+DESCRIPTION="Greenbone Vulnerability Management Python Library"
+HOMEPAGE="https://www.greenbone.net https://github.com/greenbone/python-gvm/"
+SRC_URI="https://github.com/greenbone/python-gvm/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+SLOT="0"
+LICENSE="GPL-3+"
+KEYWORDS="~amd64 ~x86"
+RESTRICT="test"
+
+RDEPEND="
+	dev-python/defusedxml[${PYTHON_USEDEP}]
+	dev-python/lxml[${PYTHON_USEDEP}]
+	dev-python/paramiko[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+distutils_enable_tests unittest
+
+src_prepare() {
+	distutils-r1_src_prepare
+
+	# drop connection tests
+	rm -r tests/connections || die
+}


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/python-gvm/
@ 2023-10-16 13:42 Florian Schmaus
  0 siblings, 0 replies; 23+ messages in thread
From: Florian Schmaus @ 2023-10-16 13:42 UTC (permalink / raw
  To: gentoo-commits

commit:     208d61e121d155f1b3b243be4e382d9a725a4ff6
Author:     Giuseppe Foti <foti.giuseppe <AT> gmail <DOT> com>
AuthorDate: Mon Oct 16 08:46:46 2023 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Mon Oct 16 13:42:26 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=208d61e1

net-analyzer/python-gvm: add 23.10.0, drop 23.5.1

Signed-off-by: Giuseppe Foti <foti.giuseppe <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/33357
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 net-analyzer/python-gvm/Manifest                                  | 2 +-
 .../{python-gvm-23.5.1.ebuild => python-gvm-23.10.0.ebuild}       | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/net-analyzer/python-gvm/Manifest b/net-analyzer/python-gvm/Manifest
index 41d40df2374e..9762a8de78b2 100644
--- a/net-analyzer/python-gvm/Manifest
+++ b/net-analyzer/python-gvm/Manifest
@@ -1,2 +1,2 @@
 DIST python-gvm-21.11.0.tar.gz 230324 BLAKE2B 1c4ca09f62dbeb6863e6f2da7188fd499d38ec9e1c01a2cac3534b2bff996082a5075a437e225a51bbb98f7a6ebc67062f5bd31ac1ce1a831a82bcc85f377a62 SHA512 df1fe64c65453a782dd89615cb6426a47091c82899d73855ec14174ea01ca3066a987eacb4f553c575695c6a962ec635023d0b79eafe143b564e4dfe494cc2a9
-DIST python-gvm-23.5.1.tar.gz 291456 BLAKE2B 529febe59d46079a48299c8f1e853d4d3e20fb241fbb9e4d05cb83c9bb0c6c98dc297ee2d0322789e178216c55975b8c49204273be9bf484e6304438ae171533 SHA512 4928b077bf10367b3f2c8c8fe737720c0e3c84b4df8cdf6e6ca440a442a915f8619519993200c81f4333eae32070af0b51265fdb1c224b11ae11f521d62a7f84
+DIST python-gvm-23.10.0.tar.gz 272387 BLAKE2B f874d6c696c1284b4dad366773aa6b98c531035d6d38b0b10b96ca1631815d51c182488d09fa2da441b1a042435f66099e9762c5a158876e1c1d9d12f675ed73 SHA512 c313e08d09fd650fb185d3aa5282bb1aef65c75cdfe11b7e6fc27fd1edddb5a6c5b301b7e348530561a65e276f1ffe1878722c267df55b68cf893a77f85208df

diff --git a/net-analyzer/python-gvm/python-gvm-23.5.1.ebuild b/net-analyzer/python-gvm/python-gvm-23.10.0.ebuild
similarity index 78%
rename from net-analyzer/python-gvm/python-gvm-23.5.1.ebuild
rename to net-analyzer/python-gvm/python-gvm-23.10.0.ebuild
index 22a851ada380..68582ab6a337 100644
--- a/net-analyzer/python-gvm/python-gvm-23.5.1.ebuild
+++ b/net-analyzer/python-gvm/python-gvm-23.10.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 DISTUTILS_USE_PEP517=poetry
 
 inherit distutils-r1
@@ -18,9 +18,9 @@ KEYWORDS="~amd64 ~x86"
 RESTRICT="test"
 
 RDEPEND="
-	dev-python/defusedxml[${PYTHON_USEDEP}]
-	dev-python/lxml[${PYTHON_USEDEP}]
-	dev-python/paramiko[${PYTHON_USEDEP}]
+	>=dev-python/defusedxml-0.6[${PYTHON_USEDEP}]
+	>=dev-python/lxml-4.5.0[${PYTHON_USEDEP}]
+	>=dev-python/paramiko-2.7.1[${PYTHON_USEDEP}]
 "
 DEPEND="${RDEPEND}"
 


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/python-gvm/
@ 2023-11-14  7:53 Florian Schmaus
  0 siblings, 0 replies; 23+ messages in thread
From: Florian Schmaus @ 2023-11-14  7:53 UTC (permalink / raw
  To: gentoo-commits

commit:     1d48bead2401d04919deaff66302dfb6b44ebdea
Author:     Giuseppe Foti <foti.giuseppe <AT> gmail <DOT> com>
AuthorDate: Mon Nov 13 20:16:33 2023 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Tue Nov 14 07:52:29 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d48bead

net-analyzer/python-gvm: drop 21.11.0

Signed-off-by: Giuseppe Foti <foti.giuseppe <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/33805
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 net-analyzer/python-gvm/Manifest                  |  1 -
 net-analyzer/python-gvm/python-gvm-21.11.0.ebuild | 33 -----------------------
 2 files changed, 34 deletions(-)

diff --git a/net-analyzer/python-gvm/Manifest b/net-analyzer/python-gvm/Manifest
index 9762a8de78b2..e909c301d160 100644
--- a/net-analyzer/python-gvm/Manifest
+++ b/net-analyzer/python-gvm/Manifest
@@ -1,2 +1 @@
-DIST python-gvm-21.11.0.tar.gz 230324 BLAKE2B 1c4ca09f62dbeb6863e6f2da7188fd499d38ec9e1c01a2cac3534b2bff996082a5075a437e225a51bbb98f7a6ebc67062f5bd31ac1ce1a831a82bcc85f377a62 SHA512 df1fe64c65453a782dd89615cb6426a47091c82899d73855ec14174ea01ca3066a987eacb4f553c575695c6a962ec635023d0b79eafe143b564e4dfe494cc2a9
 DIST python-gvm-23.10.0.tar.gz 272387 BLAKE2B f874d6c696c1284b4dad366773aa6b98c531035d6d38b0b10b96ca1631815d51c182488d09fa2da441b1a042435f66099e9762c5a158876e1c1d9d12f675ed73 SHA512 c313e08d09fd650fb185d3aa5282bb1aef65c75cdfe11b7e6fc27fd1edddb5a6c5b301b7e348530561a65e276f1ffe1878722c267df55b68cf893a77f85208df

diff --git a/net-analyzer/python-gvm/python-gvm-21.11.0.ebuild b/net-analyzer/python-gvm/python-gvm-21.11.0.ebuild
deleted file mode 100644
index 04a6a2b51111..000000000000
--- a/net-analyzer/python-gvm/python-gvm-21.11.0.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..11} )
-DISTUTILS_USE_PEP517=poetry
-
-inherit distutils-r1
-
-DESCRIPTION="Greenbone Vulnerability Management Python Library"
-HOMEPAGE="https://www.greenbone.net https://github.com/greenbone/python-gvm/"
-SRC_URI="https://github.com/greenbone/python-gvm/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-3+"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-	dev-python/defusedxml[${PYTHON_USEDEP}]
-	dev-python/lxml[${PYTHON_USEDEP}]
-	dev-python/paramiko[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-distutils_enable_tests unittest
-
-src_prepare() {
-	distutils-r1_src_prepare
-
-	# drop connection tests
-	rm -r tests/connections || die
-}


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/python-gvm/
@ 2023-11-21  8:01 Florian Schmaus
  0 siblings, 0 replies; 23+ messages in thread
From: Florian Schmaus @ 2023-11-21  8:01 UTC (permalink / raw
  To: gentoo-commits

commit:     cfa2f294c08d8fe0c9efb6f1fa1221794f951ede
Author:     Giuseppe Foti <foti.giuseppe <AT> gmail <DOT> com>
AuthorDate: Wed Nov 15 06:27:32 2023 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Tue Nov 21 08:00:30 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfa2f294

net-analyzer/python-gvm: add 23.11.0, drop 23.10.0

Signed-off-by: Giuseppe Foti <foti.giuseppe <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/33836
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 net-analyzer/python-gvm/Manifest                                        | 2 +-
 .../python-gvm/{python-gvm-23.10.0.ebuild => python-gvm-23.11.0.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/python-gvm/Manifest b/net-analyzer/python-gvm/Manifest
index e909c301d160..ec19e1336065 100644
--- a/net-analyzer/python-gvm/Manifest
+++ b/net-analyzer/python-gvm/Manifest
@@ -1 +1 @@
-DIST python-gvm-23.10.0.tar.gz 272387 BLAKE2B f874d6c696c1284b4dad366773aa6b98c531035d6d38b0b10b96ca1631815d51c182488d09fa2da441b1a042435f66099e9762c5a158876e1c1d9d12f675ed73 SHA512 c313e08d09fd650fb185d3aa5282bb1aef65c75cdfe11b7e6fc27fd1edddb5a6c5b301b7e348530561a65e276f1ffe1878722c267df55b68cf893a77f85208df
+DIST python-gvm-23.11.0.tar.gz 273395 BLAKE2B 52e497886b1380f32c68534dff08b8e11a3ac3a66cbad8d7b31af334d6e9e94e00735defce02871173043b696ae3ff373d94b4f4698b2ce01c478caf079d09fe SHA512 0596d5634b038bde787c93411c50f4c64e232857b8a4b4d2713ba6af5330d13a9702f37606e152bfd8f8319ae8a4c68a1684a4f532d13f667f1be870ff7bbb95

diff --git a/net-analyzer/python-gvm/python-gvm-23.10.0.ebuild b/net-analyzer/python-gvm/python-gvm-23.11.0.ebuild
similarity index 100%
rename from net-analyzer/python-gvm/python-gvm-23.10.0.ebuild
rename to net-analyzer/python-gvm/python-gvm-23.11.0.ebuild


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/python-gvm/
@ 2024-01-23 13:30 Florian Schmaus
  0 siblings, 0 replies; 23+ messages in thread
From: Florian Schmaus @ 2024-01-23 13:30 UTC (permalink / raw
  To: gentoo-commits

commit:     87d4dfe1d30166d32cce75624b8c3fa1aa7c77c8
Author:     Giuseppe Foti <foti.giuseppe <AT> gmail <DOT> com>
AuthorDate: Mon Jan 22 08:09:17 2024 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Tue Jan 23 13:29:29 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87d4dfe1

net-analyzer/python-gvm: add 24.1.0, drop 23.11.0

Signed-off-by: Giuseppe Foti <foti.giuseppe <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/34956
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 net-analyzer/python-gvm/Manifest                                    | 2 +-
 .../{python-gvm-23.11.0.ebuild => python-gvm-24.1.0.ebuild}         | 6 ++++--
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/net-analyzer/python-gvm/Manifest b/net-analyzer/python-gvm/Manifest
index ec19e1336065..72ac45aa37e9 100644
--- a/net-analyzer/python-gvm/Manifest
+++ b/net-analyzer/python-gvm/Manifest
@@ -1 +1 @@
-DIST python-gvm-23.11.0.tar.gz 273395 BLAKE2B 52e497886b1380f32c68534dff08b8e11a3ac3a66cbad8d7b31af334d6e9e94e00735defce02871173043b696ae3ff373d94b4f4698b2ce01c478caf079d09fe SHA512 0596d5634b038bde787c93411c50f4c64e232857b8a4b4d2713ba6af5330d13a9702f37606e152bfd8f8319ae8a4c68a1684a4f532d13f667f1be870ff7bbb95
+DIST python-gvm-24.1.0.tar.gz 287497 BLAKE2B 049154d5a516c56885c06e2a83884736c9e4009e1e69a817e541f1317d4fe0cb886f98ed1572bcb55bcfdd40ed7da6639ba52cc89b113731f24d941de3f6195b SHA512 d70d3c654aefb6e5949e35f68fd1585c243988a41165c9fefb54c8fe6dd24694391553201a95558d3fd4a6e8c88783a1fc4d2205ce9ae1a7d2fc2dafdf19825b

diff --git a/net-analyzer/python-gvm/python-gvm-23.11.0.ebuild b/net-analyzer/python-gvm/python-gvm-24.1.0.ebuild
similarity index 88%
rename from net-analyzer/python-gvm/python-gvm-23.11.0.ebuild
rename to net-analyzer/python-gvm/python-gvm-24.1.0.ebuild
index 68582ab6a337..5ded27fa294e 100644
--- a/net-analyzer/python-gvm/python-gvm-23.11.0.ebuild
+++ b/net-analyzer/python-gvm/python-gvm-24.1.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -15,12 +15,14 @@ SRC_URI="https://github.com/greenbone/python-gvm/archive/v${PV}.tar.gz -> ${P}.t
 SLOT="0"
 LICENSE="GPL-3+"
 KEYWORDS="~amd64 ~x86"
-RESTRICT="test"
 
 RDEPEND="
 	>=dev-python/defusedxml-0.6[${PYTHON_USEDEP}]
 	>=dev-python/lxml-4.5.0[${PYTHON_USEDEP}]
 	>=dev-python/paramiko-2.7.1[${PYTHON_USEDEP}]
+	test? (
+		>=net-analyzer/pontos-22.7.2[${PYTHON_USEDEP}]
+	)
 "
 DEPEND="${RDEPEND}"
 


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/python-gvm/
@ 2024-02-28 20:50 Jakov Smolić
  0 siblings, 0 replies; 23+ messages in thread
From: Jakov Smolić @ 2024-02-28 20:50 UTC (permalink / raw
  To: gentoo-commits

commit:     653dba93b463a1befa68f0a7cd4c1004e9f051f2
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 28 20:50:13 2024 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Wed Feb 28 20:50:13 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=653dba93

net-analyzer/python-gvm: Stabilize 24.1.0 amd64, #925668

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 net-analyzer/python-gvm/python-gvm-24.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/python-gvm/python-gvm-24.1.0.ebuild b/net-analyzer/python-gvm/python-gvm-24.1.0.ebuild
index 5ded27fa294e..8ec792cbd495 100644
--- a/net-analyzer/python-gvm/python-gvm-24.1.0.ebuild
+++ b/net-analyzer/python-gvm/python-gvm-24.1.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://github.com/greenbone/python-gvm/archive/v${PV}.tar.gz -> ${P}.t
 
 SLOT="0"
 LICENSE="GPL-3+"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 RDEPEND="
 	>=dev-python/defusedxml-0.6[${PYTHON_USEDEP}]


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/python-gvm/
@ 2024-04-30  8:15 Florian Schmaus
  0 siblings, 0 replies; 23+ messages in thread
From: Florian Schmaus @ 2024-04-30  8:15 UTC (permalink / raw
  To: gentoo-commits

commit:     0f8739f3e39f93cbaf8f49a3cff8d86b6278e929
Author:     Giuseppe Foti <foti.giuseppe <AT> gmail <DOT> com>
AuthorDate: Thu Apr 25 19:27:51 2024 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Tue Apr 30 08:15:20 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f8739f3

net-analyzer/python-gvm: add 24.3.0

Signed-off-by: Giuseppe Foti <foti.giuseppe <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/36425
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 net-analyzer/python-gvm/Manifest                 |  1 +
 net-analyzer/python-gvm/python-gvm-24.3.0.ebuild | 37 ++++++++++++++++++++++++
 2 files changed, 38 insertions(+)

diff --git a/net-analyzer/python-gvm/Manifest b/net-analyzer/python-gvm/Manifest
index 72ac45aa37e9..635607a85a25 100644
--- a/net-analyzer/python-gvm/Manifest
+++ b/net-analyzer/python-gvm/Manifest
@@ -1 +1,2 @@
 DIST python-gvm-24.1.0.tar.gz 287497 BLAKE2B 049154d5a516c56885c06e2a83884736c9e4009e1e69a817e541f1317d4fe0cb886f98ed1572bcb55bcfdd40ed7da6639ba52cc89b113731f24d941de3f6195b SHA512 d70d3c654aefb6e5949e35f68fd1585c243988a41165c9fefb54c8fe6dd24694391553201a95558d3fd4a6e8c88783a1fc4d2205ce9ae1a7d2fc2dafdf19825b
+DIST python-gvm-24.3.0.tar.gz 278134 BLAKE2B 0da2b7d33164f7db773b51d917755678639f58f63438c23fac95fc3ebeb0412e470ee834804d327b4b46b379672d8f3fd673e0cfdf93f7fc65fe31393a5f3509 SHA512 d6e9dcaf3e776309b18b11393049e2edd08884241a2d050806d9b82dcc91d12e2a121f532b311a83e8f9bf367694b41efe66a9a8eefbe1bfb7bb7453ce08715c

diff --git a/net-analyzer/python-gvm/python-gvm-24.3.0.ebuild b/net-analyzer/python-gvm/python-gvm-24.3.0.ebuild
new file mode 100644
index 000000000000..1f81a8089e3f
--- /dev/null
+++ b/net-analyzer/python-gvm/python-gvm-24.3.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
+DISTUTILS_USE_PEP517=poetry
+
+inherit distutils-r1
+
+DESCRIPTION="Greenbone Vulnerability Management Python Library"
+HOMEPAGE="https://www.greenbone.net https://github.com/greenbone/python-gvm/"
+SRC_URI="https://github.com/greenbone/python-gvm/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+	>=dev-python/defusedxml-0.6[${PYTHON_USEDEP}]
+	>=dev-python/lxml-4.5.0[${PYTHON_USEDEP}]
+	>=dev-python/paramiko-2.7.1[${PYTHON_USEDEP}]
+	>=dev-python/typing-extensions-4.9.0[${PYTHON_USEDEP}]
+	test? (
+		>=net-analyzer/pontos-22.7.2[${PYTHON_USEDEP}]
+	)
+"
+DEPEND="${RDEPEND}"
+
+distutils_enable_tests unittest
+
+src_prepare() {
+	distutils-r1_src_prepare
+
+	# drop connection tests
+	rm -r tests/connections || die
+}


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/python-gvm/
@ 2024-07-23  3:55 Sam James
  0 siblings, 0 replies; 23+ messages in thread
From: Sam James @ 2024-07-23  3:55 UTC (permalink / raw
  To: gentoo-commits

commit:     c34999d57966f706b83086176e19e789975e6312
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 23 03:54:38 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jul 23 03:54:38 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c34999d5

net-analyzer/python-gvm: Stabilize 24.3.0 amd64, #936504

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-analyzer/python-gvm/python-gvm-24.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/python-gvm/python-gvm-24.3.0.ebuild b/net-analyzer/python-gvm/python-gvm-24.3.0.ebuild
index 1f81a8089e3f..bb9e77bab56b 100644
--- a/net-analyzer/python-gvm/python-gvm-24.3.0.ebuild
+++ b/net-analyzer/python-gvm/python-gvm-24.3.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://github.com/greenbone/python-gvm/archive/v${PV}.tar.gz -> ${P}.t
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 RDEPEND="
 	>=dev-python/defusedxml-0.6[${PYTHON_USEDEP}]


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/python-gvm/
@ 2024-09-14 10:09 Florian Schmaus
  0 siblings, 0 replies; 23+ messages in thread
From: Florian Schmaus @ 2024-09-14 10:09 UTC (permalink / raw
  To: gentoo-commits

commit:     8661e8c172986e7f7d9e055ca919cfa88fc23fea
Author:     Giuseppe Foti <foti.giuseppe <AT> gmail <DOT> com>
AuthorDate: Sat Sep  7 22:42:43 2024 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Sat Sep 14 09:57:38 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8661e8c1

net-analyzer/python-gvm: add 24.8.0

Signed-off-by: Giuseppe Foti <foti.giuseppe <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/38514
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 net-analyzer/python-gvm/Manifest                 |  1 +
 net-analyzer/python-gvm/python-gvm-24.8.0.ebuild | 35 ++++++++++++++++++++++++
 2 files changed, 36 insertions(+)

diff --git a/net-analyzer/python-gvm/Manifest b/net-analyzer/python-gvm/Manifest
index 635607a85a25..19bd131cb19e 100644
--- a/net-analyzer/python-gvm/Manifest
+++ b/net-analyzer/python-gvm/Manifest
@@ -1,2 +1,3 @@
 DIST python-gvm-24.1.0.tar.gz 287497 BLAKE2B 049154d5a516c56885c06e2a83884736c9e4009e1e69a817e541f1317d4fe0cb886f98ed1572bcb55bcfdd40ed7da6639ba52cc89b113731f24d941de3f6195b SHA512 d70d3c654aefb6e5949e35f68fd1585c243988a41165c9fefb54c8fe6dd24694391553201a95558d3fd4a6e8c88783a1fc4d2205ce9ae1a7d2fc2dafdf19825b
 DIST python-gvm-24.3.0.tar.gz 278134 BLAKE2B 0da2b7d33164f7db773b51d917755678639f58f63438c23fac95fc3ebeb0412e470ee834804d327b4b46b379672d8f3fd673e0cfdf93f7fc65fe31393a5f3509 SHA512 d6e9dcaf3e776309b18b11393049e2edd08884241a2d050806d9b82dcc91d12e2a121f532b311a83e8f9bf367694b41efe66a9a8eefbe1bfb7bb7453ce08715c
+DIST python-gvm-24.8.0.tar.gz 289907 BLAKE2B d7e5a962f4d714406595e6bc8c939b7526389613e78dd5bc5b641ef2dc17eb33e42c51798f2c280e1a7af5a65ae0fa6ac3d059e1243b5adcdb27ce900cbcfe6d SHA512 dbc3dee750299f6e39417a442551ffc82939073cf1c4fd46076dcf05f9c59c2568bf8fc075607b36950387e11b021eb75c542c022329ff8e7ac42293f8489db9

diff --git a/net-analyzer/python-gvm/python-gvm-24.8.0.ebuild b/net-analyzer/python-gvm/python-gvm-24.8.0.ebuild
new file mode 100644
index 000000000000..bd120077c062
--- /dev/null
+++ b/net-analyzer/python-gvm/python-gvm-24.8.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
+DISTUTILS_USE_PEP517=poetry
+
+inherit distutils-r1
+
+DESCRIPTION="Greenbone Vulnerability Management Python Library"
+HOMEPAGE="https://www.greenbone.net https://github.com/greenbone/python-gvm/"
+SRC_URI="https://github.com/greenbone/python-gvm/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+	>=dev-python/lxml-4.5.0[${PYTHON_USEDEP}]
+	>=dev-python/paramiko-2.7.1[${PYTHON_USEDEP}]
+	test? (
+		>=net-analyzer/pontos-22.7.2[${PYTHON_USEDEP}]
+	)
+"
+DEPEND="${RDEPEND}"
+
+distutils_enable_tests unittest
+
+src_prepare() {
+	distutils-r1_src_prepare
+
+	# drop connection tests
+	rm -r tests/connections || die
+}


^ permalink raw reply related	[flat|nested] 23+ messages in thread

end of thread, other threads:[~2024-09-14 10:09 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-28 20:50 [gentoo-commits] repo/gentoo:master commit in: net-analyzer/python-gvm/ Jakov Smolić
  -- strict thread matches above, loose matches on Subject: below --
2024-09-14 10:09 Florian Schmaus
2024-07-23  3:55 Sam James
2024-04-30  8:15 Florian Schmaus
2024-01-23 13:30 Florian Schmaus
2023-11-21  8:01 Florian Schmaus
2023-11-14  7:53 Florian Schmaus
2023-10-16 13:42 Florian Schmaus
2023-07-03  8:15 Florian Schmaus
2023-04-09 16:03 Michał Górny
2022-09-18 13:58 Michał Górny
2022-05-09 12:07 Florian Schmaus
2022-05-02 17:53 Florian Schmaus
2022-05-02 11:16 Florian Schmaus
2021-05-31 20:53 Michał Górny
2021-04-12 22:50 Sam James
2021-03-22 13:36 Joonas Niilola
2020-08-21  7:15 Joonas Niilola
2020-07-14 12:57 Joonas Niilola
2020-03-25 13:46 Joonas Niilola
2020-03-03  6:03 Joonas Niilola
2020-01-03 10:09 Joonas Niilola
2020-01-03 10:09 Joonas Niilola

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox