From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 65DDE1382AC for ; Tue, 21 Jun 2016 05:57:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F067AE0907; Tue, 21 Jun 2016 05:57:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 86F5CE0907 for ; Tue, 21 Jun 2016 05:57:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3031D33E3A9 for ; Tue, 21 Jun 2016 05:57:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 26DBE2413 for ; Tue, 21 Jun 2016 05:57:36 +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: <1466488578.0d635f65afc6c69f0a8ebacfc3caf873f4bb28c8.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libtirpc/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libtirpc/libtirpc-0.1.10.ebuild X-VCS-Directories: net-libs/libtirpc/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 0d635f65afc6c69f0a8ebacfc3caf873f4bb28c8 X-VCS-Branch: master Date: Tue, 21 Jun 2016 05:57:36 +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-Archives-Salt: eba71531-94eb-4beb-a343-8a576ec6ec81 X-Archives-Hash: cf5411dd10a3eadeea9028d209a63c06 commit: 0d635f65afc6c69f0a8ebacfc3caf873f4bb28c8 Author: Aaron Bauman gentoo org> AuthorDate: Tue Jun 21 05:56:18 2016 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Tue Jun 21 05:56:18 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d635f65 net-libs/libtirpc: remove vulnerable version per security bug #466902 net-libs/libtirpc/libtirpc-0.1.10.ebuild | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/net-libs/libtirpc/libtirpc-0.1.10.ebuild b/net-libs/libtirpc/libtirpc-0.1.10.ebuild deleted file mode 100644 index 23fc663..0000000 --- a/net-libs/libtirpc/libtirpc-0.1.10.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -DESCRIPTION="Transport Independent RPC library (SunRPC replacement)" -HOMEPAGE="http://libtirpc.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="kerberos" - -DEPEND="kerberos? ( net-libs/libgssglue )" - -src_compile() { - econf $(use_enable kerberos gss) || die - emake || die -} - -src_install() { - dodir /etc - emake install DESTDIR="${D}" || die - dodoc AUTHORS ChangeLog NEWS README THANKS TODO -}