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 C70BA138334 for ; Sat, 30 Jun 2018 09:19:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F02B5E089B; Sat, 30 Jun 2018 09:19:50 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 C2111E089B for ; Sat, 30 Jun 2018 09:19:50 +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 B5BE2335C8A for ; Sat, 30 Jun 2018 09:19:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F02EB2E2 for ; Sat, 30 Jun 2018 09:19:47 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1530348720.bbbdba31c7a4205898bd22c652bd3c9f55aecdc8.jer@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-9999.ebuild X-VCS-Directories: sys-fs/squashfs-tools/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: bbbdba31c7a4205898bd22c652bd3c9f55aecdc8 X-VCS-Branch: master Date: Sat, 30 Jun 2018 09:19:47 +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: 9dd8ea4f-9771-4061-90f7-329abb350785 X-Archives-Hash: 942629893829cd8a5f3933d274f957b5 commit: bbbdba31c7a4205898bd22c652bd3c9f55aecdc8 Author: Jeroen Roovers gentoo org> AuthorDate: Sat Jun 30 08:52:00 2018 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Sat Jun 30 08:52:00 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbbdba31 sys-fs/squashfs-tools: Update live ebuild. Package-Manager: Portage-2.3.41, Repoman-2.3.9 sys-fs/squashfs-tools/squashfs-tools-9999.ebuild | 20 ++++++-------------- 1 file changed, 6 insertions(+), 14 deletions(-) diff --git a/sys-fs/squashfs-tools/squashfs-tools-9999.ebuild b/sys-fs/squashfs-tools/squashfs-tools-9999.ebuild index c06d73d0508..11c0570d7f4 100644 --- a/sys-fs/squashfs-tools/squashfs-tools-9999.ebuild +++ b/sys-fs/squashfs-tools/squashfs-tools-9999.ebuild @@ -1,29 +1,23 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 - -inherit eutils git-r3 toolchain-funcs flag-o-matic - -DEB_VER="3" +inherit flag-o-matic git-r3 toolchain-funcs DESCRIPTION="Tool for creating compressed filesystem type squashfs" HOMEPAGE="http://squashfs.sourceforge.net" -EGIT_REPO_URI=" - https://git.kernel.org/pub/scm/fs/squashfs/squashfs-tools.git -" - +EGIT_REPO_URI="https://github.com/plougher/squashfs-tools" LICENSE="GPL-2" SLOT="0" -KEYWORDS="" IUSE="debug lz4 lzma lzo static xattr +xz zstd" +KEYWORDS="" LIB_DEPEND=" - sys-libs/zlib[static-libs(+)] !xz? ( !lzo? ( sys-libs/zlib[static-libs(+)] ) ) lz4? ( app-arch/lz4[static-libs(+)] ) lzma? ( app-arch/xz-utils[static-libs(+)] ) lzo? ( dev-libs/lzo[static-libs(+)] ) + sys-libs/zlib[static-libs(+)] xattr? ( sys-apps/attr[static-libs(+)] ) xz? ( app-arch/xz-utils[static-libs(+)] ) zstd? ( app-arch/zstd[static-libs(+)] ) @@ -66,8 +60,6 @@ src_compile() { } src_install() { - cd "${WORKDIR}"/${P}/${PN} || die - dobin mksquashfs unsquashfs - cd .. || die + dobin "${WORKDIR}"/${P}/${PN}/{mksquashfs,unsquashfs} dodoc CHANGES README RELEASE-README RELEASE-READMEs/* }