Gentoo Archives: gentoo-commits

From: "Andreas K. Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/sipsak/
Date: Sun, 01 Nov 2020 00:52:00
Message-Id: 1604191902.7261e631cc6d48f60e5d1f787b084f5cf54925ad.dilfridge@gentoo
1 commit: 7261e631cc6d48f60e5d1f787b084f5cf54925ad
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 1 00:51:02 2020 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 1 00:51:42 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7261e631
7
8 net-misc/sipsak: Version bump; apply workaround for gcc-10
9
10 Bug: https://bugs.gentoo.org/706350
11 Package-Manager: Portage-3.0.8, Repoman-3.0.2
12 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
13
14 net-misc/sipsak/Manifest | 1 +
15 net-misc/sipsak/sipsak-0.9.7.ebuild | 29 +++++++++++++++++++++++++++++
16 2 files changed, 30 insertions(+)
17
18 diff --git a/net-misc/sipsak/Manifest b/net-misc/sipsak/Manifest
19 index 5adb817f63f..dea131e97aa 100644
20 --- a/net-misc/sipsak/Manifest
21 +++ b/net-misc/sipsak/Manifest
22 @@ -1 +1,2 @@
23 DIST sipsak-0.9.6-1.tar.gz 158776 BLAKE2B c8bd37d63d55bc593a57455171ed2dd26c8a4e87746be7075af7c2912b400d49a44f25fad694e296c75ea9aa3e7b10cc81a457c448a3a9429a41d22b84fb794c SHA512 c2d62ddaf2ecc9616941cf002a0494d2f9c43747e6b527f8b1542e9b5ae143fc69b18fc140bd3f255896b0e8eb02f7d198cc1799a4041e2d0c95d90b653591fe
24 +DIST sipsak-0.9.7.tar.gz 199074 BLAKE2B c99bc7ace4eb5f1af193d64d156243904300e1f5fc66d1a44f578970e0d8242be3c8fa82804bfc975efcaaf6b5289c0b09b22b8d5c069fc81a16c343136be49b SHA512 695ba6e596411fdda14e6800163b934dba2dc6ee661ebc91a9f3d3509b9568d0482108fb50503953f7f9186cf11724c0faf4660436aad1929f4a70dc41286402
25
26 diff --git a/net-misc/sipsak/sipsak-0.9.7.ebuild b/net-misc/sipsak/sipsak-0.9.7.ebuild
27 new file mode 100644
28 index 00000000000..ddc1785dbe0
29 --- /dev/null
30 +++ b/net-misc/sipsak/sipsak-0.9.7.ebuild
31 @@ -0,0 +1,29 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit flag-o-matic
38 +
39 +DESCRIPTION="small command line tool for testing SIP applications and devices"
40 +HOMEPAGE="https://github.com/nils-ohlmeier/sipsak"
41 +SRC_URI="https://github.com/nils-ohlmeier/sipsak/releases/download/${PV}/${P}.tar.gz"
42 +
43 +LICENSE="GPL-2"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86"
46 +IUSE=""
47 +
48 +RDEPEND="net-libs/gnutls
49 + net-dns/c-ares"
50 +DEPEND="${RDEPEND}"
51 +
52 +src_configure() {
53 + append-cflags -std=gnu89 -fcommon
54 + econf
55 +}
56 +
57 +src_install() {
58 + emake DESTDIR="${D}" install
59 + dodoc AUTHORS ChangeLog NEWS README TODO
60 +}