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 2C35A1382C5 for ; Sun, 21 Feb 2021 08:25:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 81C31E0903; Sun, 21 Feb 2021 08:25:54 +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 5D42FE0905 for ; Sun, 21 Feb 2021 08:25:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 7A284340FA8 for ; Sun, 21 Feb 2021 08:25:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 998E84F3 for ; Sun, 21 Feb 2021 08:25:50 +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: <1613895799.660e8120d86c5c0a32fa5a6249f71cc59486bf70.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/lzip/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/lzip/Manifest app-arch/lzip/lzip-1.21.ebuild X-VCS-Directories: app-arch/lzip/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 660e8120d86c5c0a32fa5a6249f71cc59486bf70 X-VCS-Branch: master Date: Sun, 21 Feb 2021 08:25:50 +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: 5c981e3c-789f-4fda-9d90-175827546aaf X-Archives-Hash: 46421ecff0105a8069cdb52b6171ef01 commit: 660e8120d86c5c0a32fa5a6249f71cc59486bf70 Author: Michał Górny gentoo org> AuthorDate: Sun Feb 21 08:13:48 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Feb 21 08:23:19 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=660e8120 app-arch/lzip: Remove old Signed-off-by: Michał Górny gentoo.org> app-arch/lzip/Manifest | 1 - app-arch/lzip/lzip-1.21.ebuild | 26 -------------------------- 2 files changed, 27 deletions(-) diff --git a/app-arch/lzip/Manifest b/app-arch/lzip/Manifest index bb9a4c360a2..7627a121f50 100644 --- a/app-arch/lzip/Manifest +++ b/app-arch/lzip/Manifest @@ -1,2 +1 @@ -DIST lzip-1.21.tar.gz 105558 BLAKE2B 07658ec901bdfc255fef5af24b62614b2db9821b9a2820daa5137fd47ede0b68bbf3eac340ad5484d2ef7011d15c2eaccf19abc9e33b5c96273fc9b9d323083e SHA512 02e31a8fc9431e88edbb0fd467e9dd0947203e693e6581be1a8d25d96c74d9c3794f1fef9e4c993553ba74330c8f5851cad6315b49f263fe9cf2444225af4362 DIST lzip-1.22.tar.gz 120769 BLAKE2B d6d4faaff981d64219e27364c7072f9e1309507220e80d4195d866c3429db537a9fa9b7a4ac67ef5c267cad0f6e43ce997a98f1e47a88b228bd1aa437c991140 SHA512 318de74effdbdfa79070d28919459a85bf1efe662b818b8af2a3daa964b6c24e3386c37de360c6d5b8b624d549b5c9ed777c6234561129c477e03d92ac2db206 diff --git a/app-arch/lzip/lzip-1.21.ebuild b/app-arch/lzip/lzip-1.21.ebuild deleted file mode 100644 index fc8241c82e5..00000000000 --- a/app-arch/lzip/lzip-1.21.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit toolchain-funcs - -DESCRIPTION="lossless data compressor based on the LZMA algorithm" -HOMEPAGE="https://www.nongnu.org/lzip/lzip.html" -SRC_URI="https://download.savannah.gnu.org/releases/${PN}/${P/_/-}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" - -S="${WORKDIR}/${P/_/-}" - -src_configure() { - # not autotools-based - ./configure \ - --prefix="${EPREFIX}"/usr \ - CXX="$(tc-getCXX)" \ - CPPFLAGS="${CPPFLAGS}" \ - CXXFLAGS="${CXXFLAGS}" \ - LDFLAGS="${LDFLAGS}" || die -}