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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 95480158090 for ; Fri, 13 May 2022 22:13:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BFE47E07AE; Fri, 13 May 2022 22:13:10 +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 9F079E07AE for ; Fri, 13 May 2022 22:13:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8309D341834 for ; Fri, 13 May 2022 22:13:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 36D4E430 for ; Fri, 13 May 2022 22:13:08 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1652479977.cccdc7f1126b3989bcebdfa192e5ccd888f67563.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/bzip3/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/bzip3/Manifest app-arch/bzip3/bzip3-1.1.1.ebuild app-arch/bzip3/metadata.xml X-VCS-Directories: app-arch/bzip3/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: cccdc7f1126b3989bcebdfa192e5ccd888f67563 X-VCS-Branch: master Date: Fri, 13 May 2022 22:13:08 +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: 2206f14a-2f4c-450a-ab6a-a83b40a5dcbf X-Archives-Hash: 3eb881b60f993164114ba7b823d6e2f7 commit: cccdc7f1126b3989bcebdfa192e5ccd888f67563 Author: Maciej Barć gentoo org> AuthorDate: Fri May 13 22:10:21 2022 +0000 Commit: Maciej Barć gentoo org> CommitDate: Fri May 13 22:12:57 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cccdc7f1 app-arch/bzip3: new package; add version 1.1.1 Signed-off-by: Maciej Barć gentoo.org> app-arch/bzip3/Manifest | 1 + app-arch/bzip3/bzip3-1.1.1.ebuild | 41 +++++++++++++++++++++++++++++++++++++++ app-arch/bzip3/metadata.xml | 21 ++++++++++++++++++++ 3 files changed, 63 insertions(+) diff --git a/app-arch/bzip3/Manifest b/app-arch/bzip3/Manifest new file mode 100644 index 000000000000..744f1488a184 --- /dev/null +++ b/app-arch/bzip3/Manifest @@ -0,0 +1 @@ +DIST bzip3-1.1.1.tar.gz 2349860 BLAKE2B dd740b631b66db40bce35cccc0a46e4bbfe2a929aeaa2b083419e94cfcf3967c97fc6233e50fb1b0cb185ebd23bcad082567ca11ad5f0f037bdc4a95eb792f77 SHA512 22c7e415b2cd423b08a99051fd54bf0773e11a978559c9c382a4667087d6f1671de9ec564a5badbe1e8283aba83f5d1c70392ba7a0a96c8669ffee302d5d47e9 diff --git a/app-arch/bzip3/bzip3-1.1.1.ebuild b/app-arch/bzip3/bzip3-1.1.1.ebuild new file mode 100644 index 000000000000..d985f7ce980b --- /dev/null +++ b/app-arch/bzip3/bzip3-1.1.1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="A better and stronger spiritual successor to BZip2" +HOMEPAGE="https://github.com/kspalaiologos/bzip2/" + +if [[ ${PV} == *9999* ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/kspalaiologos/${PN}.git" +else + SRC_URI="https://github.com/kspalaiologos/${PN}/archive/${PV}.tar.gz + -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="LGPL-3" +SLOT="0" +IUSE="static-libs" + +src_prepare() { + default + eautoreconf + + echo ${PV} > .tarball-version || die +} + +src_configure() { + econf $(use_enable static-libs static) +} + +src_install() { + default + + if ! use static-libs ; then + find "${ED}" -type f -name '*.la' -delete || die + fi +} diff --git a/app-arch/bzip3/metadata.xml b/app-arch/bzip3/metadata.xml new file mode 100644 index 000000000000..5dee14e0081f --- /dev/null +++ b/app-arch/bzip3/metadata.xml @@ -0,0 +1,21 @@ + + + + + + xgqt@gentoo.org + Maciej Barć + + + A better, faster and stronger spiritual successor to BZip2. Features higher + compression ratios and better performance thanks to a order-0 context + mixing entropy coder, a fast Burrows-Wheeler transform code making use of + suffix arrays and a RLE with Lempel Ziv+Prediction pass based on LZ77-style + string matching and PPM-style context modeling. + Like its ancestor, BZip3 excels at compressing text or code. + + + https://github.com/kspalaiologos/bzip3/issues/ + kspalaiologos/bzip3 + +