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 D693F138335 for ; Sun, 27 Oct 2019 17:11:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 01607E0997; Sun, 27 Oct 2019 17:11:26 +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 BFD4CE0997 for ; Sun, 27 Oct 2019 17:11:25 +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 BA18534C416 for ; Sun, 27 Oct 2019 17:11:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 93606884 for ; Sun, 27 Oct 2019 17:11:22 +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: <1572196276.e579b8f0f365f663bc64c53ad70d282763d09aa3.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/libarchive/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/libarchive/libarchive-3.4.0.ebuild app-arch/libarchive/metadata.xml X-VCS-Directories: app-arch/libarchive/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: e579b8f0f365f663bc64c53ad70d282763d09aa3 X-VCS-Branch: master Date: Sun, 27 Oct 2019 17:11:22 +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: f6bfe2f5-7b6f-4620-a205-879a1790a1ae X-Archives-Hash: 001e457151f5820690ec40b1d7cad0e6 commit: e579b8f0f365f663bc64c53ad70d282763d09aa3 Author: Michał Górny gentoo org> AuthorDate: Sun Oct 27 13:28:26 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Oct 27 17:11:16 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e579b8f0 app-arch/libarchive: Add explicit flag for blake2 (libb2) Closes: https://bugs.gentoo.org/698254 Signed-off-by: Michał Górny gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/13466 Signed-off-by: Michał Górny gentoo.org> app-arch/libarchive/libarchive-3.4.0.ebuild | 4 +++- app-arch/libarchive/metadata.xml | 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/app-arch/libarchive/libarchive-3.4.0.ebuild b/app-arch/libarchive/libarchive-3.4.0.ebuild index ded576e7b67..136aaa944c9 100644 --- a/app-arch/libarchive/libarchive-3.4.0.ebuild +++ b/app-arch/libarchive/libarchive-3.4.0.ebuild @@ -11,10 +11,11 @@ SRC_URI="https://www.libarchive.org/downloads/${P}.tar.gz" LICENSE="BSD BSD-2 BSD-4 public-domain" SLOT="0/13" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sh ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="acl +bzip2 +e2fsprogs expat +iconv kernel_linux libressl lz4 +lzma lzo nettle static-libs +threads xattr +zlib zstd" +IUSE="acl blake2 +bzip2 +e2fsprogs expat +iconv kernel_linux libressl lz4 +lzma lzo nettle static-libs +threads xattr +zlib zstd" RDEPEND=" acl? ( virtual/acl[${MULTILIB_USEDEP}] ) + blake2? ( app-crypt/libb2[${MULTILIB_USEDEP}] ) bzip2? ( app-arch/bzip2[${MULTILIB_USEDEP}] ) expat? ( dev-libs/expat[${MULTILIB_USEDEP}] ) !expat? ( dev-libs/libxml2[${MULTILIB_USEDEP}] ) @@ -57,6 +58,7 @@ multilib_src_configure() { $(use_enable acl) $(use_enable static-libs static) $(use_enable xattr) + $(use_with blake2 libb2) $(use_with bzip2 bz2lib) $(use_with expat) $(use_with !expat xml2) diff --git a/app-arch/libarchive/metadata.xml b/app-arch/libarchive/metadata.xml index 1da101e8d49..82253c34ca0 100644 --- a/app-arch/libarchive/metadata.xml +++ b/app-arch/libarchive/metadata.xml @@ -9,6 +9,9 @@ C library and command-line tools for reading and writing tar, cpio, zip, ISO, and other archive formats. + + Enable Blake2 hash support via app-crypt/libb2. + Allow accessing bzip2-compressed archives through libbz2 (which comes with app-arch/bzip2). This only affects