diff options
author | Jaco Kroon <jaco@uls.co.za> | 2021-08-18 21:43:57 +0200 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2021-08-23 04:52:08 -0400 |
commit | 50b79eeac80f400caf13125818789d5a5711ccc3 (patch) | |
tree | f0e43d922bd2c7ca0185bf3dc71dc2d2af0590f1 /net-voip/sipvicious | |
parent | dev-python/jsonext: add github upstream metadata (diff) | |
download | gentoo-50b79eeac80f400caf13125818789d5a5711ccc3.tar.gz gentoo-50b79eeac80f400caf13125818789d5a5711ccc3.tar.bz2 gentoo-50b79eeac80f400caf13125818789d5a5711ccc3.zip |
net-voip/sipvicious: version 0.3.4
Closes: https://bugs.gentoo.org/809473
Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Jaco Kroon <jaco@uls.co.za>
Closes: https://github.com/gentoo/gentoo/pull/22018
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'net-voip/sipvicious')
-rw-r--r-- | net-voip/sipvicious/Manifest | 1 | ||||
-rw-r--r-- | net-voip/sipvicious/sipvicious-0.3.4.ebuild | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/net-voip/sipvicious/Manifest b/net-voip/sipvicious/Manifest index 1f7def0b3068..e0facb191d01 100644 --- a/net-voip/sipvicious/Manifest +++ b/net-voip/sipvicious/Manifest @@ -1,2 +1,3 @@ DIST sipvicious-0.3.0.tar.gz 43097 BLAKE2B 5ddcdf775db0ade6e61e77009c7991d8523db02dbdd6e8588c23f5cd6f4d2868dd1d78e7f17322cde67414b4eb2b8c89f2d4ee0079487e5f5f7ee75f4759adf5 SHA512 35aa3ea7d3cfd6f84716cd95a263357881196eaa180375d1f0a392a1478292ba9a8bf6cd53888448523f7faa447c82cc43fb1ef6c105a0e93e6c7854a51da172 DIST sipvicious-0.3.3.tar.gz 46217 BLAKE2B 4ef872ecea9113f3ec24df98133230f678ccfff24380c2fafff810a4cbc3e2fe26866deb3595a7540cd42d34fd5bc045e6a2f51c7eb6403a445f33acd74e2213 SHA512 d1bcfdc62054d7b8188c35f7b1d14284b1f66e5501e40747819a79d578677b724ce0d38b28b497c7afa390c6d46fd410749408109ec4e08ba0adfde53b5b79bc +DIST sipvicious-0.3.4.tar.gz 48296 BLAKE2B 75f3d190cb4224ada84cd7c714eb545e44a9759589890a559d3cb5243c5430c0aa81138e3cd294926901e961a5ec156c8d991b648c70e1d8fc2dc906473d507d SHA512 5e8d60ee1e70cd7f6dd9e862560def34b33171a20a4af87275ef1434ae62f19bf120b4000079bc273ecf1aaf05c87cdd6b299c64a44738e3f658b3ede5ca17c3 diff --git a/net-voip/sipvicious/sipvicious-0.3.4.ebuild b/net-voip/sipvicious/sipvicious-0.3.4.ebuild new file mode 100644 index 000000000000..602867da146f --- /dev/null +++ b/net-voip/sipvicious/sipvicious-0.3.4.ebuild @@ -0,0 +1,27 @@ +# Copyright 2020-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +DISTUTILS_SINGLE_IMPL=1 + +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." +} |