From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3F523158089 for ; Fri, 22 Sep 2023 08:32:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 81E3A2BC014; Fri, 22 Sep 2023 08:32:08 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6C6AB2BC014 for ; Fri, 22 Sep 2023 08:32:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 49BA733BEB2 for ; Fri, 22 Sep 2023 08:32:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BF31511D4 for ; Fri, 22 Sep 2023 08:32:05 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1695371462.1a33da47e59649895b62ba70111a3d046c06685a.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-voip/sipvicious/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-voip/sipvicious/sipvicious-0.3.4-r1.ebuild X-VCS-Directories: net-voip/sipvicious/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 1a33da47e59649895b62ba70111a3d046c06685a X-VCS-Branch: master Date: Fri, 22 Sep 2023 08:32:05 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e98e6d28-e829-4c13-a50b-546df7a17143 X-Archives-Hash: 64035ce665f9b7235cfbd838bad8faa5 commit: 1a33da47e59649895b62ba70111a3d046c06685a Author: Jaco Kroon uls co za> AuthorDate: Wed Aug 30 21:26:57 2023 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Fri Sep 22 08:31:02 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a33da47 net-voip/sipvicious: 0.3.4-r1 (PEP517). Closes: https://bugs.gentoo.org/910014 Signed-off-by: Jaco Kroon uls.co.za> Signed-off-by: Joonas Niilola gentoo.org> net-voip/sipvicious/sipvicious-0.3.4-r1.ebuild | 29 ++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/net-voip/sipvicious/sipvicious-0.3.4-r1.ebuild b/net-voip/sipvicious/sipvicious-0.3.4-r1.ebuild new file mode 100644 index 000000000000..c7af6c8c7db5 --- /dev/null +++ b/net-voip/sipvicious/sipvicious-0.3.4-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 2020-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..12} ) +DISTUTILS_SINGLE_IMPL=1 + +DISTUTILS_USE_PEP517=setuptools + +inherit distutils-r1 + +DESCRIPTION="SIPVicious is a SIP security package" +HOMEPAGE="https://github.com/EnableSecurity/sipvicious/wiki" +SRC_URI="https://github.com/EnableSecurity/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="$(python_gen_cond_dep ' + dev-python/dnspython[${PYTHON_USEDEP}] + dev-python/reportlab[${PYTHON_USEDEP}] + ')" + +src_prepare() { + default + sed -re 's:man/man1:share/man/man1:' -i setup.py || die "Error updating man page installation location." +}