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 09F7C138334 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 9C6F3E0C9E; Thu, 26 Dec 2019 10:53:28 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 54E60E0C9E 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 32E2734DB88 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 2CC5E77 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: <1577357595.9c56d5aaa8a9a792647ec81252894bbb65b2b95c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/pdlzip/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/pdlzip/Manifest app-arch/pdlzip/pdlzip-1.8.ebuild X-VCS-Directories: app-arch/pdlzip/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 9c56d5aaa8a9a792647ec81252894bbb65b2b95c 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: f1b46c5a-ccec-48c3-b33d-af3ba2c46583 X-Archives-Hash: a5bee54a8b324e0c445ec01d296e1de3 commit: 9c56d5aaa8a9a792647ec81252894bbb65b2b95c Author: Michał Górny gentoo org> AuthorDate: Thu Dec 26 10:48:19 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Dec 26 10:53:15 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c56d5aa app-arch/pdlzip: Remove old Signed-off-by: Michał Górny gentoo.org> app-arch/pdlzip/Manifest | 1 - app-arch/pdlzip/pdlzip-1.8.ebuild | 28 ---------------------------- 2 files changed, 29 deletions(-) diff --git a/app-arch/pdlzip/Manifest b/app-arch/pdlzip/Manifest index 9f2b38dcbce..ab89ec193a3 100644 --- a/app-arch/pdlzip/Manifest +++ b/app-arch/pdlzip/Manifest @@ -1,2 +1 @@ DIST pdlzip-1.10.tar.gz 62416 BLAKE2B 7e8a4bc5793e10a819e911535149336138473b30b552e6d728b3f547e13e34540ac8fa91d84656c3feeb2816c06cd636cf3eafc5b031cca2b63e704a8f7f6ee8 SHA512 a0da45df3af68176d1ebceccba833d0d41b04750d37e90b3da6f1bdc98a41fffcb8e0ce04a296a31351aa7babd1dcaddf08f616d103970ad5fbf13e469f287ad -DIST pdlzip-1.8.tar.gz 60564 BLAKE2B 2fd38cb6d17e0344a73cb44d36c53be373ae0ddfaa88af01c78dd54f33c6fd7ec5b52a61fbf6c134b080f42006c01d24a419bbae91d23205fd7902c312952050 SHA512 ecab8500105754499448c0cc481917404ce5b9dcfb6ba66c5c51fbc8a6189b109d025f38bc7c497aa2f602e7722f302d6b05e4ee37c5ec8f97cdf253c128ad9e diff --git a/app-arch/pdlzip/pdlzip-1.8.ebuild b/app-arch/pdlzip/pdlzip-1.8.ebuild deleted file mode 100644 index 8bee5017326..00000000000 --- a/app-arch/pdlzip/pdlzip-1.8.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit toolchain-funcs - -DESCRIPTION="Public-domain version of lzip compressor" -HOMEPAGE="http://www.nongnu.org/lzip/pdlzip.html" -SRC_URI="http://download.savannah.gnu.org/releases/lzip/pdlzip/${P}.tar.gz" - -LICENSE="public-domain" -SLOT="0" -KEYWORDS="~amd64 ~mips ~x86" -IUSE="" - -src_configure() { - local myconf=( - --prefix="${EPREFIX}"/usr - CC="$(tc-getCC)" - CFLAGS="${CFLAGS}" - CPPFLAGS="${CPPFLAGS}" - LDFLAGS="${LDFLAGS}" - ) - - # not autotools-based - ./configure "${myconf[@]}" || die -}