Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/prefix:master commit in: net-misc/sipsak/
Date: Sat, 10 Apr 2021 07:20:21
Message-Id: 1618039139.4e4d7292b296d60bfd38c340058b85c35d062eb0.sam@gentoo
1 commit: 4e4d7292b296d60bfd38c340058b85c35d062eb0
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 10 07:18:59 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 10 07:18:59 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=4e4d7292
7
8 net-misc/sipsak: drop old EAPI 2 package
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 net-misc/sipsak/Manifest | 1 -
13 net-misc/sipsak/metadata.xml | 10 --------
14 net-misc/sipsak/sipsak-0.9.6_p1.ebuild | 45 ----------------------------------
15 3 files changed, 56 deletions(-)
16
17 diff --git a/net-misc/sipsak/Manifest b/net-misc/sipsak/Manifest
18 deleted file mode 100644
19 index 5adb817f63..0000000000
20 --- a/net-misc/sipsak/Manifest
21 +++ /dev/null
22 @@ -1 +0,0 @@
23 -DIST sipsak-0.9.6-1.tar.gz 158776 BLAKE2B c8bd37d63d55bc593a57455171ed2dd26c8a4e87746be7075af7c2912b400d49a44f25fad694e296c75ea9aa3e7b10cc81a457c448a3a9429a41d22b84fb794c SHA512 c2d62ddaf2ecc9616941cf002a0494d2f9c43747e6b527f8b1542e9b5ae143fc69b18fc140bd3f255896b0e8eb02f7d198cc1799a4041e2d0c95d90b653591fe
24
25 diff --git a/net-misc/sipsak/metadata.xml b/net-misc/sipsak/metadata.xml
26 deleted file mode 100644
27 index 9a14eb279e..0000000000
28 --- a/net-misc/sipsak/metadata.xml
29 +++ /dev/null
30 @@ -1,10 +0,0 @@
31 -<?xml version="1.0" encoding="UTF-8"?>
32 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 -<pkgmetadata>
34 - <maintainer type="person">
35 - <email>chainsaw@g.o</email>
36 - </maintainer>
37 - <upstream>
38 - <remote-id type="sourceforge">sipsak.berlios</remote-id>
39 - </upstream>
40 -</pkgmetadata>
41
42 diff --git a/net-misc/sipsak/sipsak-0.9.6_p1.ebuild b/net-misc/sipsak/sipsak-0.9.6_p1.ebuild
43 deleted file mode 100644
44 index 12f5933453..0000000000
45 --- a/net-misc/sipsak/sipsak-0.9.6_p1.ebuild
46 +++ /dev/null
47 @@ -1,45 +0,0 @@
48 -# Copyright 1999-2017 Gentoo Foundation
49 -# Distributed under the terms of the GNU General Public License v2
50 -# $Header: /var/cvsroot/gentoo-x86/net-misc/sipsak/sipsak-0.9.6_p1.ebuild,v 1.8 2010/10/28 12:33:26 ssuominen Exp $
51 -
52 -EAPI=2
53 -
54 -DESCRIPTION="small command line tool for testing SIP applications and devices"
55 -HOMEPAGE="http://sipsak.org/"
56 -SRC_URI="mirror://berlios/sipsak/${P/_p/-}.tar.gz"
57 -
58 -LICENSE="GPL-2"
59 -SLOT="0"
60 -KEYWORDS="~amd64-linux ~x86-linux ~ppc-macos"
61 -IUSE="gnutls"
62 -
63 -RDEPEND="gnutls? ( net-libs/gnutls )
64 - net-dns/c-ares"
65 -# ares? ( net-dns/c-ares )"
66 -DEPEND="${RDEPEND}"
67 -
68 -S=${WORKDIR}/${P/_p1}
69 -
70 -src_prepare() {
71 - if [[ ${CHOST} == *-darwin* ]] ; then
72 - # On Darwin this breaks compilation, it seems -fstack-protector is
73 - # accepted by the compiler, but actually introduces a -lssp_nonshared
74 - # which causes linking failures
75 - sed -i -e 's/ssp_cc=yes/ssp_cc=no/' "${S}"/configure || die
76 - fi
77 -}
78 -
79 -src_configure() {
80 - econf \
81 - $(use_enable gnutls)
82 -}
83 -
84 -src_compile() {
85 - econf $(use_enable gnutls) || die 'configure failed'
86 - emake || die 'make failed'
87 -}
88 -
89 -src_install() {
90 - emake DESTDIR="${D}" install || die
91 - dodoc AUTHORS ChangeLog NEWS README TODO
92 -}