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 BBED9138331 for ; Sun, 20 May 2018 19:10:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8F545E0870; Sun, 20 May 2018 19:10:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 667CBE0870 for ; Sun, 20 May 2018 19:10:29 +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 1EB0E335D00 for ; Sun, 20 May 2018 19:10:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1A0752F for ; Sun, 20 May 2018 19:10:25 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1526843360.9a4b31798049c980d874baa3eaab34cc2e3bc7e1.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libtar/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libtar/libtar-1.2.20-r3.ebuild X-VCS-Directories: dev-libs/libtar/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 9a4b31798049c980d874baa3eaab34cc2e3bc7e1 X-VCS-Branch: master Date: Sun, 20 May 2018 19:10:25 +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: 20a55e69-ecc5-4904-8ddc-669b83f0535c X-Archives-Hash: 426fdedd7f00b8610baa40a1e876cfd9 commit: 9a4b31798049c980d874baa3eaab34cc2e3bc7e1 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun May 20 15:08:46 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun May 20 19:09:20 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a4b3179 dev-libs/libtar: Drop old Package-Manager: Portage-2.3.38, Repoman-2.3.9 dev-libs/libtar/libtar-1.2.20-r3.ebuild | 60 --------------------------------- 1 file changed, 60 deletions(-) diff --git a/dev-libs/libtar/libtar-1.2.20-r3.ebuild b/dev-libs/libtar/libtar-1.2.20-r3.ebuild deleted file mode 100644 index 6642c68d62e..00000000000 --- a/dev-libs/libtar/libtar-1.2.20-r3.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -AUTOTOOLS_AUTORECONF=1 -inherit autotools-utils - -DESCRIPTION="C library for manipulating tar archives" -HOMEPAGE="http://www.feep.net/libtar/ http://repo.or.cz/w/libtar.git/" -SRC_URI="https://dev.gentoo.org/~pinkbyte/distfiles/snapshots/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="static-libs zlib" - -RDEPEND="zlib? ( sys-libs/zlib ) - !zlib? ( app-arch/gzip )" -DEPEND="${RDEPEND}" - -S="${WORKDIR}/${PN}" - -# There is no test and 'check' target errors out due to mixing of automake & -# non-automake makefiles. -# https://bugs.gentoo.org/show_bug.cgi?id=526436 -RESTRICT="test" - -PATCHES=( - "${FILESDIR}"/${PN}-1.2.11-free.patch - "${FILESDIR}"/${PN}-1.2.11-impl-dec.patch - "${FILESDIR}"/CVE-2013-4420.patch -) - -src_prepare() { - sed -i \ - -e '/INSTALL_PROGRAM/s:-s::' \ - {doc,lib{,tar}}/Makefile.in || die - - autotools-utils_src_prepare -} - -src_configure() { - local myeconfargs=( - --disable-encap - --disable-epkg-install - $(use_with zlib) - ) - - autotools-utils_src_configure -} - -src_install() { - autotools-utils_src_install - - dodoc ChangeLog* README TODO - newdoc compat/README README.compat - newdoc compat/TODO TODO.compat - newdoc listhash/TODO TODO.listhash -}