From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 852B613835B for ; Thu, 24 Sep 2020 01:06:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 30BBFE082D; Thu, 24 Sep 2020 01:06:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 130A3E082D for ; Thu, 24 Sep 2020 01:06:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8CFD8335DBD for ; Thu, 24 Sep 2020 01:06:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0D97037A for ; Thu, 24 Sep 2020 01:06:11 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1600909554.1d35f9cd9edec1ac911b9a1028c520a6ef5cf757.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/sipsak/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/sipsak/sipsak-0.9.6_p1-r1.ebuild X-VCS-Directories: net-misc/sipsak/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 1d35f9cd9edec1ac911b9a1028c520a6ef5cf757 X-VCS-Branch: master Date: Thu, 24 Sep 2020 01:06:11 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ee8e6855-957d-4434-93ec-0b18a8163167 X-Archives-Hash: 8c3cd6c66d2cbcf6636dced4d5dfde95 commit: 1d35f9cd9edec1ac911b9a1028c520a6ef5cf757 Author: Aaron Bauman gentoo org> AuthorDate: Thu Sep 24 00:37:02 2020 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Thu Sep 24 01:05:54 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d35f9cd net-misc/sipsak: drop old Signed-off-by: Aaron Bauman gentoo.org> net-misc/sipsak/sipsak-0.9.6_p1-r1.ebuild | 35 ------------------------------- 1 file changed, 35 deletions(-) diff --git a/net-misc/sipsak/sipsak-0.9.6_p1-r1.ebuild b/net-misc/sipsak/sipsak-0.9.6_p1-r1.ebuild deleted file mode 100644 index c8263660039..00000000000 --- a/net-misc/sipsak/sipsak-0.9.6_p1-r1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit eutils - -DESCRIPTION="small command line tool for testing SIP applications and devices" -HOMEPAGE="https://sourceforge.net/projects/sipsak.berlios/" -SRC_URI="mirror://sourceforge/sipsak.berlios/${P/_p/-}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~sparc ~x86" -IUSE="gnutls" - -RDEPEND="gnutls? ( net-libs/gnutls ) - net-dns/c-ares" -DEPEND="${RDEPEND}" - -S=${WORKDIR}/${P/_p1} - -src_prepare() { - epatch "${FILESDIR}/${PV}-callback.patch" -} - -src_configure() { - econf \ - $(use_enable gnutls) -} - -src_install() { - emake DESTDIR="${D}" install - dodoc AUTHORS ChangeLog NEWS README TODO -}