Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/f2fs-tools/
Date: Thu, 22 Nov 2018 18:52:43
Message-Id: 1542912755.6411eeb058eee9193590a98491430c924e8b2be0.zlogene@gentoo
1 commit: 6411eeb058eee9193590a98491430c924e8b2be0
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 22 18:52:14 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 22 18:52:35 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6411eeb0
7
8 sys-fs/f2fs-tools: Version bump (v1.12.0)
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 sys-fs/f2fs-tools/Manifest | 1 +
14 sys-fs/f2fs-tools/f2fs-tools-1.12.0.ebuild | 36 ++++++++++++++++++++++++++++++
15 2 files changed, 37 insertions(+)
16
17 diff --git a/sys-fs/f2fs-tools/Manifest b/sys-fs/f2fs-tools/Manifest
18 index 46ae091b21a..c4855f82f4e 100644
19 --- a/sys-fs/f2fs-tools/Manifest
20 +++ b/sys-fs/f2fs-tools/Manifest
21 @@ -1,3 +1,4 @@
22 DIST f2fs-tools-1.10.0.tar.xz 342904 BLAKE2B ba4dec55e11959b2dd9461b1b02d173c7766908bfdbca9f6da7aa134b4a3b5cf2bda3c2e380b3fab46afdda0be9181ae5fe85ed9d085f816a1ff96e847e2a836 SHA512 e6e9fc10bd8051db86880c415ceb50900bf0cc919f1d9fe39026b5320de7c93cbcc1d817fab73130817042ed551fc5fd55ef9b589caeca9fca63fd3098f7a853
23 DIST f2fs-tools-1.11.0.tar.gz 278795 BLAKE2B 8faefb1554283291ad2dc2b66800b88bbdcf07dcb1896a206fd56d52eaa19761c6b008a4961bcec12843a96d2df1744bb5394b4f7bf3830315f4bd3180850e8d SHA512 a69fbd01826909576634f40343293addae3a9c3be09bf8210e2abc1ae12f385fe24dd71c623d14a0a15a81d12f404f193981caaadacbd663bc1502de9a8f7fb7
24 +DIST f2fs-tools-1.12.0.tar.gz 286528 BLAKE2B ca2e17fa6c48905fc1905fdec865143a003260bd60f659cd9f6c427b371c39f4c869f7265dc198888adf7ef7d4d8ba7ed2a3733c52aab18277f5371cb2cb3be3 SHA512 3f1a914540f57f94bbdc33ad66ee0b02b26fe380b05f9209f226cb3df8e84e29aa4e8e91d77f52bf737915b2785d4b9723becf5a95d75e8821b2e107e991cbad
25 DIST f2fs-tools-1.6.1.tar.xz 282152 BLAKE2B f8535a5415e012834b749bba2123151d8a39c8fa757905c45be20478d6a795ff64dfbcf0cf9679f2bd70cb1d92717d8df70efb4beb4d749677a6c8758ebdde0e SHA512 108327042079d9e864899a20f2dd94019be1b957fd7ffa295af097c5b93a5065ea9c36de9bae83f84a6412ac496340849fc44de041e24461a2919073eed15cf2
26
27 diff --git a/sys-fs/f2fs-tools/f2fs-tools-1.12.0.ebuild b/sys-fs/f2fs-tools/f2fs-tools-1.12.0.ebuild
28 new file mode 100644
29 index 00000000000..c99c00edbd7
30 --- /dev/null
31 +++ b/sys-fs/f2fs-tools/f2fs-tools-1.12.0.ebuild
32 @@ -0,0 +1,36 @@
33 +# Copyright 1999-2018 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +inherit autotools
39 +
40 +DESCRIPTION="Tools for Flash-Friendly File System (F2FS)"
41 +HOMEPAGE="https://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/about/"
42 +SRC_URI="https://dev.gentoo.org/~zlogene/distfiles/${CATEGORY}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="GPL-2"
45 +SLOT="0/6"
46 +KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86"
47 +IUSE="selinux"
48 +
49 +RDEPEND="selinux? ( sys-libs/libselinux )"
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 +}