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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 73AED158087 for ; Mon, 24 Jan 2022 17:33:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 72BB8E0794; Mon, 24 Jan 2022 17:33:32 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0C303E0794 for ; Mon, 24 Jan 2022 17:33:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2CB4E342F8B for ; Mon, 24 Jan 2022 17:33:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7C510250 for ; Mon, 24 Jan 2022 17:33:28 +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: <1643045542.f5ac2e62c29b654f971454917073c8879d4fb9a5.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/lunzip/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/lunzip/Manifest app-arch/lunzip/lunzip-1.13.ebuild app-arch/lunzip/metadata.xml X-VCS-Directories: app-arch/lunzip/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: f5ac2e62c29b654f971454917073c8879d4fb9a5 X-VCS-Branch: master Date: Mon, 24 Jan 2022 17:33:28 +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: 09c88212-ce5e-4a09-bab1-96db4149f7cd X-Archives-Hash: cca588f57355735f0c51cfc653313b97 commit: f5ac2e62c29b654f971454917073c8879d4fb9a5 Author: Michał Górny gentoo org> AuthorDate: Mon Jan 24 17:32:19 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Jan 24 17:32:22 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5ac2e62 app-arch/lunzip: New package, v1.13 Add lunzip, the standalone decompressor for the lzip format. This package is needed for the lzip suite to be more complete in Gentoo. Signed-off-by: Michał Górny gentoo.org> app-arch/lunzip/Manifest | 1 + app-arch/lunzip/lunzip-1.13.ebuild | 27 +++++++++++++++++++++++++++ app-arch/lunzip/metadata.xml | 8 ++++++++ 3 files changed, 36 insertions(+) diff --git a/app-arch/lunzip/Manifest b/app-arch/lunzip/Manifest new file mode 100644 index 000000000000..c52d5b73ad65 --- /dev/null +++ b/app-arch/lunzip/Manifest @@ -0,0 +1 @@ +DIST lunzip-1.13.tar.gz 66541 BLAKE2B 45b6a4ffaac6d9b8ddeeebe5e33609bf4e671ad7370570035bacf41ee8ad35f49e14f495dfba650de284fedca1a63ebafe7f67c18083b4add94caaf7709d8e2b SHA512 67f950883b7062d37601bc16d7d64c07f6c580afbf3c0f61394dd6fb5d41c27214484b1dea7aabd41db06d18162b95b5734674646c4fcc833268cabe8cba91bb diff --git a/app-arch/lunzip/lunzip-1.13.ebuild b/app-arch/lunzip/lunzip-1.13.ebuild new file mode 100644 index 000000000000..5c5c0ab1b983 --- /dev/null +++ b/app-arch/lunzip/lunzip-1.13.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="Decompressor for the lzip format, written in C" +HOMEPAGE="https://www.nongnu.org/lzip/lunzip.html" +SRC_URI="https://download.savannah.gnu.org/releases/lzip/lunzip/${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64" + +src_configure() { + # not autotools-based + local myconf=( + --prefix="${EPREFIX}"/usr + CXX="$(tc-getCXX)" + CPPFLAGS="${CPPFLAGS}" + CXXFLAGS="${CXXFLAGS}" + LDFLAGS="${LDFLAGS}" + ) + + ./configure "${myconf[@]}" || die +} diff --git a/app-arch/lunzip/metadata.xml b/app-arch/lunzip/metadata.xml new file mode 100644 index 000000000000..076793e3f54b --- /dev/null +++ b/app-arch/lunzip/metadata.xml @@ -0,0 +1,8 @@ + + + + + mgorny@gentoo.org + Michał Górny + +