Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/
Date: Mon, 05 Sep 2022 17:43:46
Message-Id: 1662399811.bb2501af4e5ac01b9c2aa23aad1778473ef78faf.mgorny@gentoo
1 commit: bb2501af4e5ac01b9c2aa23aad1778473ef78faf
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 5 14:15:49 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 5 17:43:31 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb2501af
7
8 sys-fs/squashfs-tools: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild | 53 -----------------------
13 1 file changed, 53 deletions(-)
14
15 diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild b/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild
16 deleted file mode 100644
17 index c8e5c9198e74..000000000000
18 --- a/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild
19 +++ /dev/null
20 @@ -1,53 +0,0 @@
21 -# Copyright 1999-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -inherit flag-o-matic toolchain-funcs
26 -
27 -DESCRIPTION="tools to create and extract Squashfs filesystems"
28 -HOMEPAGE="https://github.com/plougher/squashfs-tools/"
29 -SRC_URI="
30 - https://github.com/plougher/squashfs-tools/archive/${PV}.tar.gz
31 - -> ${P}.tar.gz"
32 -
33 -LICENSE="GPL-2"
34 -SLOT="0"
35 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
36 -IUSE="debug lz4 lzma lzo xattr zstd"
37 -
38 -RDEPEND="
39 - sys-libs/zlib
40 - lz4? ( app-arch/lz4 )
41 - lzma? ( app-arch/xz-utils )
42 - lzo? ( dev-libs/lzo )
43 - xattr? ( sys-apps/attr )
44 - zstd? ( app-arch/zstd )
45 -"
46 -DEPEND=${RDEPEND}
47 -
48 -use10() { usex "${1}" 1 0; }
49 -
50 -src_configure() {
51 - # set up make command line variables in EMAKE_SQUASHFS_CONF
52 - EMAKE_SQUASHFS_CONF=(
53 - LZMA_XZ_SUPPORT=$(use10 lzma)
54 - LZO_SUPPORT=$(use10 lzo)
55 - LZ4_SUPPORT=$(use10 lz4)
56 - XATTR_SUPPORT=$(use10 xattr)
57 - XZ_SUPPORT=$(use10 lzma)
58 - ZSTD_SUPPORT=$(use10 zstd)
59 - )
60 -
61 - tc-export CC
62 - use debug && append-cppflags -DSQUASHFS_TRACE
63 -}
64 -
65 -src_compile() {
66 - emake "${EMAKE_SQUASHFS_CONF[@]}" -C squashfs-tools
67 -}
68 -
69 -src_install() {
70 - dobin squashfs-tools/{mksquashfs,unsquashfs}
71 - dodoc ACKNOWLEDGEMENTS CHANGES README*
72 - dodoc -r RELEASE-READMEs
73 -}