From: "Joonas Niilola" <juippis@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/ospd/, net-analyzer/ospd/files/
Date: Tue, 14 Jul 2020 12:57:41 +0000 (UTC) [thread overview]
Message-ID: <1594731425.4df48af0910a92dfe03143ae3fe6e134c6968612.juippis@gentoo> (raw)
commit: 4df48af0910a92dfe03143ae3fe6e134c6968612
Author: Jonas Licht <jonas.licht <AT> fem <DOT> tu-ilmenau <DOT> de>
AuthorDate: Mon Jun 29 15:28:16 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=4df48af0
net-analyzer/ospd: drop old
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/ospd/Manifest | 1 -
.../ospd/files/ospd-2.0.0-socket-permission.patch | 53 ----------------------
net-analyzer/ospd/ospd-2.0.0-r1.ebuild | 40 ----------------
3 files changed, 94 deletions(-)
diff --git a/net-analyzer/ospd/Manifest b/net-analyzer/ospd/Manifest
index e7ad4aee8cd..ff299eea6a3 100644
--- a/net-analyzer/ospd/Manifest
+++ b/net-analyzer/ospd/Manifest
@@ -1,2 +1 @@
-DIST ospd-2.0.0.tar.gz 81645 BLAKE2B 4c0c7af3caf274ea9e6a43790eb1e9d386ce42d9976e5e9625b49ffe12d8db2e613109458dcc59f322bc00aee39a4a89045caf302182474d1fab4ca1c4ff1bcf SHA512 971b4b57c39844ef08a0ae56d4bf87f0440c993960b5ad37516c622ad41eb2ab30fabb9d0a05fd043a9a1d98e446eaab9d5018cc1607fd711c533475f4703012
DIST ospd-2.0.1.tar.gz 87313 BLAKE2B cf527742246ceb5acaf69900d48f1800ef98153026fa6aae2661e4a3aafad6f69221fa7c7f34a222a0972cf5550a9543696b1e7a4368ef050574ca08f72f0978 SHA512 4aed0e1a22ea6c0db26977e7b0bde9c9c37890422f3480ad83ef23ad193b7ae3dd7352872c4fe377808d2a398317a4c1d38d7ab2ef5a0266c544e0ef55a0365a
diff --git a/net-analyzer/ospd/files/ospd-2.0.0-socket-permission.patch b/net-analyzer/ospd/files/ospd-2.0.0-socket-permission.patch
deleted file mode 100644
index b6adefd7b15..00000000000
--- a/net-analyzer/ospd/files/ospd-2.0.0-socket-permission.patch
+++ /dev/null
@@ -1,53 +0,0 @@
-From 8f359bb07901a18609974d5f3e587b8fe8c36177 Mon Sep 17 00:00:00 2001
-From: Juan Jose Nicola <juan.nicola@greenbone.net>
-Date: Wed, 16 Oct 2019 11:45:30 +0200
-Subject: [PATCH] Fix set permission on unix socket. It was trying to set the
- permissions on the unix socket before creating it.
-
----
- CHANGELOG.md | 7 +++++++
- ospd/server.py | 6 +++---
- 2 files changed, 10 insertions(+), 3 deletions(-)
-
-diff --git a/CHANGELOG.md b/CHANGELOG.md
-index 56cb80f..0f173cb 100644
---- a/CHANGELOG.md
-+++ b/CHANGELOG.md
-@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
-
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
-
-+## [2.0.1] (unreleased)
-+
-+### Fixed
-+- Fix set permission in unix socket. [#157](https://github.com/greenbone/ospd/pull/157)
-+
-+[2.0.1]: https://github.com/greenbone/ospd/compare/v2.0.0...ospd-2.0
-+
- ## [2.0.0] (2019-10-11)
-
- ### Added
-diff --git a/ospd/server.py b/ospd/server.py
-index 5523de3..9356abf 100644
---- a/ospd/server.py
-+++ b/ospd/server.py
-@@ -202,9 +202,6 @@ def start(self, stream_callback: StreamCallbackType):
- self._cleanup_socket()
- self._create_parent_dirs()
-
-- if self.socket_path.exists():
-- os.chmod(str(self.socket_path), self.socket_mode)
--
- try:
- self.stream_callback = stream_callback
- self.server = ThreadedUnixSocketServer(self, str(self.socket_path))
-@@ -217,6 +214,9 @@ def start(self, stream_callback: StreamCallbackType):
- )
- )
-
-+ if self.socket_path.exists():
-+ self.socket_path.chmod(self.socket_mode)
-+
- def close(self):
- super().close()
- self._cleanup_socket()
diff --git a/net-analyzer/ospd/ospd-2.0.0-r1.ebuild b/net-analyzer/ospd/ospd-2.0.0-r1.ebuild
deleted file mode 100644
index d6eb8b8a8df..00000000000
--- a/net-analyzer/ospd/ospd-2.0.0-r1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# 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=rdepend
-inherit distutils-r1
-
-DESCRIPTION="Base class for scanner wrappers,communication protocol for GVM"
-HOMEPAGE="https://www.greenbone.net/en/"
-SRC_URI="https://github.com/greenbone/ospd/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~x86"
-IUSE="extras"
-
-RDEPEND="
- dev-python/defusedxml[${PYTHON_USEDEP}]
- dev-python/lxml[${PYTHON_USEDEP}]
- dev-python/paramiko[${PYTHON_USEDEP}]"
-
-DEPEND="
- ${RDEPEND}"
-
-PATCHES=(
- # fixes socket permissions see https://github.com/greenbone/ospd-openvas/issues/170
- "${FILESDIR}/${P}-socket-permission.patch"
-)
-
-distutils_enable_tests unittest
-
-python_compile() {
- if use extras; then
- bash "${S}"/doc/generate || die
- HTML_DOCS=( "${S}"/doc/. )
- fi
- distutils-r1_python_compile
-}
reply other threads:[~2020-07-14 12:57 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1594731425.4df48af0910a92dfe03143ae3fe6e134c6968612.juippis@gentoo \
--to=juippis@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox