mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-08 12:30:44 +02:00
sipvicious-0.3.7.ebuild
This commit is contained in:
parent
61f50e440d
commit
57ebe288a5
3 changed files with 47 additions and 0 deletions
1
net-voip/sipvicious/Manifest
Normal file
1
net-voip/sipvicious/Manifest
Normal file
|
|
@ -0,0 +1 @@
|
|||
DIST sipvicious-0.3.7.tar.gz 54781 BLAKE2B 1c309a2aa996c5e34d2be85d459e4f47280467bc7178518767832bea9c55c85d9b22fff78f815cd7677eeaa882bf70955139e334ddf7a604bc62a37b6bfaaac6 SHA512 478f183641e11b7e7e4a8294bceb44333aa27968781ed7a7240664f0b5b174c869c5b566f1302f45b7469ce499e4ce8e07addd88667e5ae72fa2af564c9b8ce3
|
||||
12
net-voip/sipvicious/metadata.xml
Normal file
12
net-voip/sipvicious/metadata.xml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>jkroon@gentoo.org</email>
|
||||
<name>Jaco Kroon</name>
|
||||
</maintainer>
|
||||
<stabilize-allarches/>
|
||||
<upstream>
|
||||
<remote-id type="github">EnableSecurity/sipvicious</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
34
net-voip/sipvicious/sipvicious-0.3.7.ebuild
Normal file
34
net-voip/sipvicious/sipvicious-0.3.7.ebuild
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
# Copyright 2026 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{12..14} )
|
||||
#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="
|
||||
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."
|
||||
}
|
||||
|
||||
distutils_enable_tests unittest
|
||||
|
||||
python_test() {
|
||||
eunittest -s tests
|
||||
}
|
||||
Loading…
Reference in a new issue