Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/sofia-sip/
Date: Sat, 24 Sep 2022 16:46:55
Message-Id: 1664034617.89071d5d89c24d1b54590b97ab2b301aab3c99cf.mattst88@gentoo
1 commit: 89071d5d89c24d1b54590b97ab2b301aab3c99cf
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 24 15:50:03 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 24 15:50:17 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89071d5d
7
8 net-libs/sofia-sip: Version bump to 1.13.9
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 net-libs/sofia-sip/Manifest | 1 +
13 net-libs/sofia-sip/sofia-sip-1.13.9.ebuild | 44 ++++++++++++++++++++++++++++++
14 2 files changed, 45 insertions(+)
15
16 diff --git a/net-libs/sofia-sip/Manifest b/net-libs/sofia-sip/Manifest
17 index 0f045034c438..f445d44655ed 100644
18 --- a/net-libs/sofia-sip/Manifest
19 +++ b/net-libs/sofia-sip/Manifest
20 @@ -1 +1,2 @@
21 DIST sofia-sip-1.13.8.tar.gz 2551359 BLAKE2B 505d3cdac29b00589f63782c296b68f36ba9247ef87bcbda7b2765c0079aa2313ac72c0062ada5ba29e07faa892a991722c53468756ce8ef4cd385b90afda564 SHA512 f857eb9cf25d3306476bc6d0bda786385529021d498cf0c2c779cdbae31295af4ed59a67fb0c882b09bac738623d273a94ebbda360c7a2b3d7da140852ccc6fa
22 +DIST sofia-sip-1.13.9.tar.gz 2551559 BLAKE2B 69b5c0e995475a23012e2608a4b146058689c5243221ea1569e40514408884cf602dce2a53cf2468c449bbce14f03082aece0a9249f1a517829d963e56a1792d SHA512 bec7c11d94cc7243d6e1d11eb6fe0b666c018d9eb599896766b55773825cf3e218267d7e6efd1a9f7cb6e1eab79c2b6a38095bfc5a8f013a647588a676f707ec
23
24 diff --git a/net-libs/sofia-sip/sofia-sip-1.13.9.ebuild b/net-libs/sofia-sip/sofia-sip-1.13.9.ebuild
25 new file mode 100644
26 index 000000000000..d974b5a9f4df
27 --- /dev/null
28 +++ b/net-libs/sofia-sip/sofia-sip-1.13.9.ebuild
29 @@ -0,0 +1,44 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit autotools
36 +
37 +DESCRIPTION="RFC3261 compliant SIP User-Agent library"
38 +HOMEPAGE="https://github.com/freeswitch/sofia-sip"
39 +SRC_URI="https://github.com/freeswitch/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
40 +
41 +LICENSE="LGPL-2.1+ BSD public-domain" # See COPYRIGHT
42 +SLOT="0"
43 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-linux"
44 +IUSE="ssl test"
45 +RESTRICT="!test? ( test )"
46 +
47 +RDEPEND="
48 + dev-libs/glib:2
49 + ssl? (
50 + dev-libs/openssl:0=
51 + )"
52 +DEPEND="${RDEPEND}
53 + test? ( dev-libs/check )"
54 +BDEPEND="virtual/pkgconfig"
55 +
56 +src_prepare() {
57 + default
58 + eautoreconf
59 +}
60 +
61 +src_configure() {
62 + econf \
63 + --disable-static \
64 + $(use_with ssl openssl)
65 +}
66 +
67 +src_install() {
68 + default
69 + dodoc RELEASE
70 +
71 + # no static archives
72 + find "${D}" -name '*.la' -delete || die
73 +}