Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/f2fs-tools/
Date: Mon, 30 May 2022 15:34:02
Message-Id: 1653924817.e78e28caf724398ebcdda3ea4debb5bf069af663.blueness@gentoo
1 commit: e78e28caf724398ebcdda3ea4debb5bf069af663
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 30 15:33:37 2022 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Mon May 30 15:33:37 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e78e28ca
7
8 sys-fs/f2fs-tools: bump to version 1.15.0
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>
12
13 sys-fs/f2fs-tools/Manifest | 1 +
14 sys-fs/f2fs-tools/f2fs-tools-1.15.0.ebuild | 38 ++++++++++++++++++++++++++++++
15 2 files changed, 39 insertions(+)
16
17 diff --git a/sys-fs/f2fs-tools/Manifest b/sys-fs/f2fs-tools/Manifest
18 index b5c7b55ff879..c14b471509d5 100644
19 --- a/sys-fs/f2fs-tools/Manifest
20 +++ b/sys-fs/f2fs-tools/Manifest
21 @@ -1 +1,2 @@
22 DIST f2fs-tools-1.14.0.tar.gz 371225 BLAKE2B 4b015e751ca7a8df8769de7a49afa1351717581d09973537d80780ff83f64db9a6fbf454a9a85d8acb761a8d00443a94d09d83cfaba9e5203c0fd656a96d505a SHA512 951b74178f99722550e73f331be066f124f6ee6022710f6b47ae47390b978b08f12a7f2a268d82ca69a32bf440cd3ce3adddc8a4c49c32df83da87e7f659f98d
23 +DIST f2fs-tools-1.15.0.tar.gz 387663 BLAKE2B 1e55f87c839cee6431d9a83e9786201e9b6b872be27c8b92854b30b0fd1c651a9b7235ce93e70c530bfa7a4e9f4dfd309c72702b3338a4aa96e365b29424fb1d SHA512 61e40f16296091b55cec2dbdc6306af6abc2d3f854f39ef03a741b7f6f47348f915498375789f017f8da27fa7d27c79c905dd047693518adde503ea7ebf89387
24
25 diff --git a/sys-fs/f2fs-tools/f2fs-tools-1.15.0.ebuild b/sys-fs/f2fs-tools/f2fs-tools-1.15.0.ebuild
26 new file mode 100644
27 index 000000000000..5cda3fe17880
28 --- /dev/null
29 +++ b/sys-fs/f2fs-tools/f2fs-tools-1.15.0.ebuild
30 @@ -0,0 +1,38 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +inherit autotools
37 +
38 +DESCRIPTION="Tools for Flash-Friendly File System (F2FS)"
39 +HOMEPAGE="https://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/about/"
40 +SRC_URI="https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/${PN}.git/snapshot/${P}.tar.gz"
41 +
42 +LICENSE="GPL-2"
43 +SLOT="0/9"
44 +KEYWORDS="~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~x86"
45 +IUSE="selinux"
46 +
47 +RDEPEND="
48 + selinux? ( sys-libs/libselinux )
49 + elibc_musl? ( sys-libs/queue-standalone )"
50 +DEPEND="${RDEPEND}"
51 +
52 +src_prepare() {
53 + default
54 + eautoreconf
55 +}
56 +
57 +src_configure() {
58 + #This is required to install to /sbin, bug #481110
59 + econf \
60 + --bindir="${EPREFIX}"/sbin \
61 + --disable-static \
62 + $(use_with selinux)
63 +}
64 +
65 +src_install() {
66 + default
67 + find "${D}" -name "*.la" -delete || die
68 +}