Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/ospd/
Date: Fri, 01 Nov 2019 14:11:39
Message-Id: 1572617016.9d516a3e15f695590c44f6ddbd2fb7a44e0f8027.juippis@gentoo
1 commit: 9d516a3e15f695590c44f6ddbd2fb7a44e0f8027
2 Author: Hasan ÇALIŞIR <hasan.calisir <AT> psauxit <DOT> com>
3 AuthorDate: Wed Oct 30 18:43:23 2019 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 1 14:03:36 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d516a3e
7
8 net-analyzer/ospd: bump to 2.0.0.
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.16
11 Signed-off-by: Hasan ÇALIŞIR <hasan.calisir <AT> psauxit.com>
12 Closes: https://github.com/gentoo/gentoo/pull/13502
13 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
14
15 net-analyzer/ospd/Manifest | 1 +
16 net-analyzer/ospd/ospd-2.0.0.ebuild | 32 ++++++++++++++++++++++++++++++++
17 2 files changed, 33 insertions(+)
18
19 diff --git a/net-analyzer/ospd/Manifest b/net-analyzer/ospd/Manifest
20 index 3cce3451ef6..702675e43a0 100644
21 --- a/net-analyzer/ospd/Manifest
22 +++ b/net-analyzer/ospd/Manifest
23 @@ -1 +1,2 @@
24 DIST ospd-1.3.2.tar.gz 39097 BLAKE2B 4c102e1e6857f89015666950e2d7a107bf81c861f9c6d4d74aab33f77585ea871e353aa95deb3f84a1bb4cd391f40121ca927835ebec9db2545eb8f606e96df7 SHA512 26ec0b45d74df687264ce2d5e42a6f51cfb982f8fe00863294b990ee8db819b7f54ebf3f095094c32c2bc91a51d987ac83f15f4bf15e931d4ffd215b72ac6bec
25 +DIST ospd-2.0.0.tar.gz 81645 BLAKE2B 4c0c7af3caf274ea9e6a43790eb1e9d386ce42d9976e5e9625b49ffe12d8db2e613109458dcc59f322bc00aee39a4a89045caf302182474d1fab4ca1c4ff1bcf SHA512 971b4b57c39844ef08a0ae56d4bf87f0440c993960b5ad37516c622ad41eb2ab30fabb9d0a05fd043a9a1d98e446eaab9d5018cc1607fd711c533475f4703012
26
27 diff --git a/net-analyzer/ospd/ospd-2.0.0.ebuild b/net-analyzer/ospd/ospd-2.0.0.ebuild
28 new file mode 100644
29 index 00000000000..ae035362d7d
30 --- /dev/null
31 +++ b/net-analyzer/ospd/ospd-2.0.0.ebuild
32 @@ -0,0 +1,32 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +PYTHON_COMPAT=( python3_{5,6,7} )
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Base class for scanner wrappers,communication protocol for GVM"
42 +HOMEPAGE="https://www.greenbone.net/en/"
43 +SRC_URI="https://github.com/greenbone/ospd/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +SLOT="0"
46 +LICENSE="GPL-2"
47 +KEYWORDS="~amd64 ~x86"
48 +IUSE="extras"
49 +
50 +RDEPEND="
51 + dev-python/defusedxml[${PYTHON_USEDEP}]
52 + dev-python/lxml[${PYTHON_USEDEP}]
53 + dev-python/paramiko[${PYTHON_USEDEP}]"
54 +
55 +DEPEND="
56 + ${RDEPEND}"
57 +
58 +python_compile() {
59 + if use extras; then
60 + bash "${S}"/doc/generate || die
61 + HTML_DOCS=( "${S}"/doc/. )
62 + fi
63 + distutils-r1_python_compile
64 +}