Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/
Date: Sat, 30 Jun 2018 09:19:51
Message-Id: 1530348720.bbbdba31c7a4205898bd22c652bd3c9f55aecdc8.jer@gentoo
1 commit: bbbdba31c7a4205898bd22c652bd3c9f55aecdc8
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 30 08:52:00 2018 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 30 08:52:00 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbbdba31
7
8 sys-fs/squashfs-tools: Update live ebuild.
9
10 Package-Manager: Portage-2.3.41, Repoman-2.3.9
11
12 sys-fs/squashfs-tools/squashfs-tools-9999.ebuild | 20 ++++++--------------
13 1 file changed, 6 insertions(+), 14 deletions(-)
14
15 diff --git a/sys-fs/squashfs-tools/squashfs-tools-9999.ebuild b/sys-fs/squashfs-tools/squashfs-tools-9999.ebuild
16 index c06d73d0508..11c0570d7f4 100644
17 --- a/sys-fs/squashfs-tools/squashfs-tools-9999.ebuild
18 +++ b/sys-fs/squashfs-tools/squashfs-tools-9999.ebuild
19 @@ -1,29 +1,23 @@
20 -# Copyright 1999-2017 Gentoo Foundation
21 +# Copyright 1999-2018 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23
24 EAPI=6
25 -
26 -inherit eutils git-r3 toolchain-funcs flag-o-matic
27 -
28 -DEB_VER="3"
29 +inherit flag-o-matic git-r3 toolchain-funcs
30
31 DESCRIPTION="Tool for creating compressed filesystem type squashfs"
32 HOMEPAGE="http://squashfs.sourceforge.net"
33 -EGIT_REPO_URI="
34 - https://git.kernel.org/pub/scm/fs/squashfs/squashfs-tools.git
35 -"
36 -
37 +EGIT_REPO_URI="https://github.com/plougher/squashfs-tools"
38 LICENSE="GPL-2"
39 SLOT="0"
40 -KEYWORDS=""
41 IUSE="debug lz4 lzma lzo static xattr +xz zstd"
42 +KEYWORDS=""
43
44 LIB_DEPEND="
45 - sys-libs/zlib[static-libs(+)]
46 !xz? ( !lzo? ( sys-libs/zlib[static-libs(+)] ) )
47 lz4? ( app-arch/lz4[static-libs(+)] )
48 lzma? ( app-arch/xz-utils[static-libs(+)] )
49 lzo? ( dev-libs/lzo[static-libs(+)] )
50 + sys-libs/zlib[static-libs(+)]
51 xattr? ( sys-apps/attr[static-libs(+)] )
52 xz? ( app-arch/xz-utils[static-libs(+)] )
53 zstd? ( app-arch/zstd[static-libs(+)] )
54 @@ -66,8 +60,6 @@ src_compile() {
55 }
56
57 src_install() {
58 - cd "${WORKDIR}"/${P}/${PN} || die
59 - dobin mksquashfs unsquashfs
60 - cd .. || die
61 + dobin "${WORKDIR}"/${P}/${PN}/{mksquashfs,unsquashfs}
62 dodoc CHANGES README RELEASE-README RELEASE-READMEs/*
63 }