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 828D71382C5 for ; Thu, 7 Jan 2021 21:06:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 56DB4E0839; Thu, 7 Jan 2021 21:06:13 +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 3D567E0839 for ; Thu, 7 Jan 2021 21:06:13 +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 26AB9340BF6 for ; Thu, 7 Jan 2021 21:06:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 88E3C48D for ; Thu, 7 Jan 2021 21:06:09 +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: <1610053267.6f1e469d60041f416c19a17a8990220daccf4c95.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.9.ebuild X-VCS-Directories: app-arch/plzip/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 6f1e469d60041f416c19a17a8990220daccf4c95 X-VCS-Branch: master Date: Thu, 7 Jan 2021 21:06:09 +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: 93db3e6f-ad8b-41ed-ab7b-e4df846a80f4 X-Archives-Hash: a926b643fdd3365d5ead72b33b46fdb2 commit: 6f1e469d60041f416c19a17a8990220daccf4c95 Author: Michał Górny gentoo org> AuthorDate: Thu Jan 7 21:01:07 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Jan 7 21:01:07 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f1e469d app-arch/plzip: Bump to 1.9 Signed-off-by: Michał Górny gentoo.org> app-arch/plzip/Manifest | 1 + app-arch/plzip/plzip-1.9.ebuild | 31 +++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/app-arch/plzip/Manifest b/app-arch/plzip/Manifest index ac879667e47..17b0e2c6c69 100644 --- a/app-arch/plzip/Manifest +++ b/app-arch/plzip/Manifest @@ -1 +1,2 @@ DIST plzip-1.8.tar.gz 72365 BLAKE2B 66b8881b6c70932c66e40edab22235103d671a870c980c0b0b08754e94fbc1b2d0f2eeb26deac4f27fbc89d69c3b588bd51cb973b7b59cbb2d0f6ab4cc9a115d SHA512 e8e822f8ae77e06178538b62075fa1c5d9cbc76c78bee7ad595a4637cd4077f53fd9e3fe61ca3fbddaa8b950e739d97527dc8fbecae04de1ac3ef83d0d5f13b4 +DIST plzip-1.9.tar.gz 93312 BLAKE2B a5b9a81cfffa17eca9a4cf4d6b037ad943235022142bd053ec8bcfc4dd99b2b730d69332fa54187ba7704266666efde52d23e13f91c290b9cddb96a87023173e SHA512 3bca603ba6337462bde3967e7c7a7e66287f3a71adf8db987429fcdcb06ebbb90b52e666a7f98ac699bc158cbda21a9cce02490131d33fc44171b84ebb3a4a19 diff --git a/app-arch/plzip/plzip-1.9.ebuild b/app-arch/plzip/plzip-1.9.ebuild new file mode 100644 index 00000000000..07980c802cd --- /dev/null +++ b/app-arch/plzip/plzip-1.9.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="Parallel lzip compressor" +HOMEPAGE="https://www.nongnu.org/lzip/plzip.html" +SRC_URI="https://download.savannah.gnu.org/releases/lzip/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~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 +}