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 8B16B1395E2 for ; Sun, 27 Nov 2016 09:18:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D5995E08D5; Sun, 27 Nov 2016 09:18:02 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8604DE08D5 for ; Sun, 27 Nov 2016 09:18:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9CCDD3411B5 for ; Sun, 27 Nov 2016 09:18:00 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E141549C for ; Sun, 27 Nov 2016 09:17:58 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1480238267.05f7d5800a01f9e3f77efff3a6ebbef91cd38042.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/squashfs-tools/squashfs-tools-4.3-r2.ebuild sys-fs/squashfs-tools/squashfs-tools-9999.ebuild X-VCS-Directories: sys-fs/squashfs-tools/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 05f7d5800a01f9e3f77efff3a6ebbef91cd38042 X-VCS-Branch: master Date: Sun, 27 Nov 2016 09:17:58 +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-Archives-Salt: cca08ca7-96a9-419f-9f71-59fae8894aba X-Archives-Hash: 08dedbe58f924364676a1c1e8884bf5f commit: 05f7d5800a01f9e3f77efff3a6ebbef91cd38042 Author: Mike Frysinger gentoo org> AuthorDate: Sun Nov 27 09:15:37 2016 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Sun Nov 27 09:17:47 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05f7d580 sys-fs/squashfs-tools: add USE=debug support for internal tool tracing sys-fs/squashfs-tools/squashfs-tools-4.3-r2.ebuild | 3 ++- sys-fs/squashfs-tools/squashfs-tools-9999.ebuild | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.3-r2.ebuild b/sys-fs/squashfs-tools/squashfs-tools-4.3-r2.ebuild index 047b874..ee38c95 100644 --- a/sys-fs/squashfs-tools/squashfs-tools-4.3-r2.ebuild +++ b/sys-fs/squashfs-tools/squashfs-tools-4.3-r2.ebuild @@ -15,7 +15,7 @@ SRC_URI="mirror://sourceforge/squashfs/squashfs${PV}.tar.gz LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="lz4 lzma lzo static xattr +xz" +IUSE="debug lz4 lzma lzo static xattr +xz" LIB_DEPEND="sys-libs/zlib[static-libs(+)] !xz? ( !lzo? ( sys-libs/zlib[static-libs(+)] ) ) @@ -53,6 +53,7 @@ src_configure() { ) tc-export CC + use debug && append-cppflags -DSQUASHFS_TRACE use static && append-ldflags -static } diff --git a/sys-fs/squashfs-tools/squashfs-tools-9999.ebuild b/sys-fs/squashfs-tools/squashfs-tools-9999.ebuild index 7815a95..b2c2c5a 100644 --- a/sys-fs/squashfs-tools/squashfs-tools-9999.ebuild +++ b/sys-fs/squashfs-tools/squashfs-tools-9999.ebuild @@ -16,7 +16,7 @@ EGIT_REPO_URI=" LICENSE="GPL-2" SLOT="0" KEYWORDS="" -IUSE="lz4 lzma lzo static xattr +xz" +IUSE="debug lz4 lzma lzo static xattr +xz" LIB_DEPEND="sys-libs/zlib[static-libs(+)] !xz? ( !lzo? ( sys-libs/zlib[static-libs(+)] ) ) @@ -50,6 +50,7 @@ src_configure() { ) tc-export CC + use debug && append-cppflags -DSQUASHFS_TRACE use static && append-ldflags -static }