Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/ospd/
Date: Wed, 13 Mar 2019 14:59:20
Message-Id: 1552489132.2606424a059cf0e6c86f2abee3e58cfe908702ad.monsieurp@gentoo
1 commit: 2606424a059cf0e6c86f2abee3e58cfe908702ad
2 Author: Hasan ÇALIŞIR <hasan.calisir <AT> psauxit <DOT> com>
3 AuthorDate: Thu Feb 7 01:56:56 2019 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 13 14:58:52 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2606424a
7
8 net-analyzer/ospd: version bump to 1.3.2.
9
10 Bump to 1.3.2.
11 Bump to EAPI 7.
12
13 This also brings new improvements.
14
15 This package is part of net-analyzer/openvas.
16
17 Acked-by: Hasan Calisir <hasan.calisir <AT> psauxit.com>
18 Reported-by: NP-Hardass <np-hardass <AT> gentoo.org>
19 Signed-off-by: Hasan ÇALIŞIR <hasan.calisir <AT> psauxit.com>
20 Package-Manager: Portage-2.3.51, Repoman-2.3.11
21 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
22
23 net-analyzer/ospd/Manifest | 1 +
24 net-analyzer/ospd/metadata.xml | 12 +++++++++++-
25 net-analyzer/ospd/ospd-1.3.2.ebuild | 33 +++++++++++++++++++++++++++++++++
26 3 files changed, 45 insertions(+), 1 deletion(-)
27
28 diff --git a/net-analyzer/ospd/Manifest b/net-analyzer/ospd/Manifest
29 index 5e879c38eab..522fe6904d8 100644
30 --- a/net-analyzer/ospd/Manifest
31 +++ b/net-analyzer/ospd/Manifest
32 @@ -1 +1,2 @@
33 DIST ospd-1.0.0.tar.gz 39656 BLAKE2B 754a7fcca382617ce7eed33d8d148d516c550435da7abed0e294e216898c0ad96d53bae62e5396b590812015c9a71be5346187d521c4051d5b2dc04345336b59 SHA512 64b1b42c5292dc8cf8b1ffde9082f4d05ff62f4d0bf2ed7b2b5d2ba4d3c3611ae8af30b39c8becb9f6bdc36eb519a0b881cdeb50891e5a2273003f6181cbebfb
34 +DIST ospd-1.3.2.tar.gz 39097 BLAKE2B 4c102e1e6857f89015666950e2d7a107bf81c861f9c6d4d74aab33f77585ea871e353aa95deb3f84a1bb4cd391f40121ca927835ebec9db2545eb8f606e96df7 SHA512 26ec0b45d74df687264ce2d5e42a6f51cfb982f8fe00863294b990ee8db819b7f54ebf3f095094c32c2bc91a51d987ac83f15f4bf15e931d4ffd215b72ac6bec
35
36 diff --git a/net-analyzer/ospd/metadata.xml b/net-analyzer/ospd/metadata.xml
37 index 6f49eba8f49..fa26aa942e1 100644
38 --- a/net-analyzer/ospd/metadata.xml
39 +++ b/net-analyzer/ospd/metadata.xml
40 @@ -1,5 +1,15 @@
41 <?xml version="1.0" encoding="UTF-8"?>
42 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
43 <pkgmetadata>
44 -<!-- maintainer-needed -->
45 + <maintainer type="person">
46 + <email>hasan.calisir@×××××××.com</email>
47 + <name>Hasan ÇALIŞIR</name>
48 + </maintainer>
49 + <maintainer type="project">
50 + <email>proxy-maint@g.o</email>
51 + <name>Proxy Maintainers</name>
52 + </maintainer>
53 + <use>
54 + <flag name="extras">Html docs support</flag>
55 + </use>
56 </pkgmetadata>
57
58 diff --git a/net-analyzer/ospd/ospd-1.3.2.ebuild b/net-analyzer/ospd/ospd-1.3.2.ebuild
59 new file mode 100644
60 index 00000000000..976983ae950
61 --- /dev/null
62 +++ b/net-analyzer/ospd/ospd-1.3.2.ebuild
63 @@ -0,0 +1,33 @@
64 +# Copyright 1999-2019 Gentoo Authors
65 +# Distributed under the terms of the GNU General Public License v2
66 +
67 +EAPI=7
68 +
69 +PYTHON_COMPAT=( python3_{4,5,6,7} )
70 +inherit distutils-r1
71 +
72 +DESCRIPTION="Openvas OSP (Open Scanner Protocol)"
73 +HOMEPAGE="http://www.openvas.org/"
74 +SRC_URI="https://github.com/greenbone/ospd/archive/v1.3.2.tar.gz -> ${P}.tar.gz"
75 +
76 +SLOT="0"
77 +LICENSE="GPL-2"
78 +KEYWORDS="~amd64 ~x86"
79 +IUSE="extras"
80 +
81 +RDEPEND="
82 + dev-python/defusedxml[${PYTHON_USEDEP}]
83 + dev-python/lxml[${PYTHON_USEDEP}]
84 + dev-python/paramiko[${PYTHON_USEDEP}]
85 + >=net-analyzer/greenbone-security-assistant-7.0.3"
86 +
87 +DEPEND="
88 + ${RDEPEND}"
89 +
90 +python_compile() {
91 + if use extras; then
92 + bash "${S}"/doc/generate || die
93 + HTML_DOCS=( "${S}"/doc/. )
94 + fi
95 + distutils-r1_python_compile
96 +}