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 8FB63138334 for ; Thu, 26 Dec 2019 10:53:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ED5ECE0CA4; Thu, 26 Dec 2019 10:53:28 +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 D1DAAE0CA3 for ; Thu, 26 Dec 2019 10:53:28 +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 9221434DB99 for ; Thu, 26 Dec 2019 10:53:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 790BF7B for ; Thu, 26 Dec 2019 10:53:24 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1577357599.5c62d9d31160330e8277c15f9beab02c79fbea31.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/plzip/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/plzip/Manifest app-arch/plzip/plzip-1.6.ebuild X-VCS-Directories: app-arch/plzip/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 5c62d9d31160330e8277c15f9beab02c79fbea31 X-VCS-Branch: master Date: Thu, 26 Dec 2019 10:53:24 +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: 8894aa7e-41e7-447d-ba2d-a6b681696118 X-Archives-Hash: b8632176db472820799cf38cca07bb2c commit: 5c62d9d31160330e8277c15f9beab02c79fbea31 Author: Michał Górny gentoo org> AuthorDate: Thu Dec 26 10:50:05 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Dec 26 10:53:19 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c62d9d3 app-arch/plzip: Remove old Signed-off-by: Michał Górny gentoo.org> app-arch/plzip/Manifest | 1 - app-arch/plzip/plzip-1.6.ebuild | 31 ------------------------------- 2 files changed, 32 deletions(-) diff --git a/app-arch/plzip/Manifest b/app-arch/plzip/Manifest index 6b472e35175..ac879667e47 100644 --- a/app-arch/plzip/Manifest +++ b/app-arch/plzip/Manifest @@ -1,2 +1 @@ -DIST plzip-1.6.tar.gz 66214 BLAKE2B 8f3865b8170c456cd37ac550b68e0846316f4c7329dda4470b3298d139ca392d000a357a1ec52c0f7c2303e6612ea4a1204e93c2fa487e70f387d9cffe96c21b SHA512 14f794e290eb58bcdf1fc5699c08c36f57473e36eeb3920dff519741c4265883f8ee348095a9315562812574c3f5ece7bd7ef4a11fbd955fe2ee54e361900f77 DIST plzip-1.8.tar.gz 72365 BLAKE2B 66b8881b6c70932c66e40edab22235103d671a870c980c0b0b08754e94fbc1b2d0f2eeb26deac4f27fbc89d69c3b588bd51cb973b7b59cbb2d0f6ab4cc9a115d SHA512 e8e822f8ae77e06178538b62075fa1c5d9cbc76c78bee7ad595a4637cd4077f53fd9e3fe61ca3fbddaa8b950e739d97527dc8fbecae04de1ac3ef83d0d5f13b4 diff --git a/app-arch/plzip/plzip-1.6.ebuild b/app-arch/plzip/plzip-1.6.ebuild deleted file mode 100644 index 1d8e4b07cda..00000000000 --- a/app-arch/plzip/plzip-1.6.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit toolchain-funcs - -DESCRIPTION="Parallel lzip compressor" -HOMEPAGE="http://www.nongnu.org/lzip/plzip.html" -SRC_URI="http://download.savannah.gnu.org/releases/lzip/${PN}/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND="app-arch/lzlib:0=" -DEPEND=${RDEPEND} - -src_configure() { - local myconf=( - --prefix="${EPREFIX}"/usr - CXX="$(tc-getCXX)" - CPPFLAGS="${CPPFLAGS}" - CXXFLAGS="${CXXFLAGS}" - LDFLAGS="${LDFLAGS}" - ) - - # not autotools-based - ./configure "${myconf[@]}" || die -}