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 38288138334 for ; Wed, 9 Oct 2019 00:38:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5E9F2E082D; Wed, 9 Oct 2019 00:38:52 +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 3F881E082D for ; Wed, 9 Oct 2019 00:38:52 +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 0559434BA88 for ; Wed, 9 Oct 2019 00:38:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4D3167F0 for ; Wed, 9 Oct 2019 00:38:48 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1570581500.e75b3770b7fc858a691e1fe7a0cc39b33aabc3dd.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/squashfs-tools-ng/metadata.xml sys-fs/squashfs-tools-ng/squashfs-tools-ng-9999.ebuild X-VCS-Directories: sys-fs/squashfs-tools-ng/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: e75b3770b7fc858a691e1fe7a0cc39b33aabc3dd X-VCS-Branch: master Date: Wed, 9 Oct 2019 00:38:48 +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: cc157fcd-4ff0-4e71-976a-24f2135b30f2 X-Archives-Hash: 8ed5dbaae9151f488ac81e84e3883691 commit: e75b3770b7fc858a691e1fe7a0cc39b33aabc3dd Author: Matt Turner gentoo org> AuthorDate: Wed Oct 9 00:36:55 2019 +0000 Commit: Matt Turner gentoo org> CommitDate: Wed Oct 9 00:38:20 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e75b3770 sys-fs/squashfs-tools-ng: Handle libsquashfs * Add IUSE=tools * Update LICENSE * Disable static libs and delete *.la files Signed-off-by: Matt Turner gentoo.org> sys-fs/squashfs-tools-ng/metadata.xml | 1 + sys-fs/squashfs-tools-ng/squashfs-tools-ng-9999.ebuild | 11 +++++++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/sys-fs/squashfs-tools-ng/metadata.xml b/sys-fs/squashfs-tools-ng/metadata.xml index a98fd7a51d6..9d251701516 100644 --- a/sys-fs/squashfs-tools-ng/metadata.xml +++ b/sys-fs/squashfs-tools-ng/metadata.xml @@ -6,6 +6,7 @@ Matt Turner + Build the gensquashfs, rdsquashfs, sqfs2tar, sqfsdiff, and tar2sqfs tools Enable support for XZ ("LZMA2") compression using app-arch/xz-utils diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-9999.ebuild b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-9999.ebuild index b77878296fd..22a2dbc93b6 100644 --- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-9999.ebuild +++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-9999.ebuild @@ -13,9 +13,9 @@ else SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz" fi -LICENSE="GPL-3+" +LICENSE="LGPL-3+ tools? ( GPL-3+ )" SLOT="0" -IUSE="lz4 lzo selinux +xz zstd" +IUSE="lz4 lzo selinux +tools +xz zstd" DEPEND=" sys-libs/zlib:= @@ -34,11 +34,18 @@ src_prepare() { src_configure() { local myconf=( + --disable-static $(use_with lz4) $(use_with lzo) $(use_with selinux) + $(use_with tools) $(use_with xz) $(use_with zstd) ) econf "${myconf[@]}" } + +src_install() { + default + find "${D}" -name "*.la" -delete || die +}