dev-erlang/esip: add 1.0.47

Signed-off-by: Florian Schmaus <flow@gentoo.org>
This commit is contained in:
Florian Schmaus
2022-05-17 19:49:19 +02:00
parent 10a0da0b40
commit 245bcbf4e7
2 changed files with 34 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST esip-1.0.45.tar.gz 90984 BLAKE2B 0e27502d65fd5c2b786ef4bd1e44780167fb6f3fc7030101e691d207f1a3631d7eb57a71091ea355c425534baa18cd9c3792dc9358bab4758a1bce60ff5cf436 SHA512 9d6c1f59b44ae74f555a8d7df09d27627c23aa0d56c0e2ae0778eb6350454ddf9ac4b38db52da066616213e4b428173f9883b83fb33b9b1931dbdea6ddee6ebc
DIST esip-1.0.47.tar.gz 91238 BLAKE2B 041a04009d4687187699bfb78381dd6baefb503bdbdd4b31efeb81786e3e0a4e47085336888fd481ecf28c4e32c296adef05eba7ff17eb084da14e645773cb31 SHA512 68be1c8cf507180e73f3a16dfd8ca44ffad825c40df0d1874888afa41f3cb89b445b033036d041af29ec3fdbdab7acc68f770124171ba4af73abd0775a03c0ba

View File

@@ -0,0 +1,33 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit rebar
DESCRIPTION="ProcessOne SIP server component"
HOMEPAGE="https://github.com/processone/esip"
SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
DEPEND="
>=dev-erlang/fast_tls-1.1.15
>=dev-erlang/stun-1.2.2
>=dev-erlang/p1_utils-1.0.25
"
RDEPEND="${DEPEND}"
DOCS=( CHANGELOG.md README.md )
src_prepare() {
rebar_src_prepare
rebar_fix_include_path stun
# ebin contains lonely .gitignore file asking for removal.
rm "${S}/ebin/examples/.gitignore" || die
rmdir "${S}/ebin/examples" || die
rmdir "${S}/ebin" || die
}