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: Sun, 16 Sep 2018 20:29:58
Message-Id: 1537129770.9de0ea561d0e620e1649be3ae20b058cebc4fa49.zlogene@gentoo
1 commit: 9de0ea561d0e620e1649be3ae20b058cebc4fa49
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 16 20:29:30 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 16 20:29:30 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9de0ea56
7
8 sys-fs/f2fs-tools: Version bump (v1.11.0)
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 sys-fs/f2fs-tools/Manifest | 1 +
13 sys-fs/f2fs-tools/f2fs-tools-1.11.0.ebuild | 36 ++++++++++++++++++++++++++++++
14 2 files changed, 37 insertions(+)
15
16 diff --git a/sys-fs/f2fs-tools/Manifest b/sys-fs/f2fs-tools/Manifest
17 index 307e9b4e764..46ae091b21a 100644
18 --- a/sys-fs/f2fs-tools/Manifest
19 +++ b/sys-fs/f2fs-tools/Manifest
20 @@ -1,2 +1,3 @@
21 DIST f2fs-tools-1.10.0.tar.xz 342904 BLAKE2B ba4dec55e11959b2dd9461b1b02d173c7766908bfdbca9f6da7aa134b4a3b5cf2bda3c2e380b3fab46afdda0be9181ae5fe85ed9d085f816a1ff96e847e2a836 SHA512 e6e9fc10bd8051db86880c415ceb50900bf0cc919f1d9fe39026b5320de7c93cbcc1d817fab73130817042ed551fc5fd55ef9b589caeca9fca63fd3098f7a853
22 +DIST f2fs-tools-1.11.0.tar.gz 278795 BLAKE2B 8faefb1554283291ad2dc2b66800b88bbdcf07dcb1896a206fd56d52eaa19761c6b008a4961bcec12843a96d2df1744bb5394b4f7bf3830315f4bd3180850e8d SHA512 a69fbd01826909576634f40343293addae3a9c3be09bf8210e2abc1ae12f385fe24dd71c623d14a0a15a81d12f404f193981caaadacbd663bc1502de9a8f7fb7
23 DIST f2fs-tools-1.6.1.tar.xz 282152 BLAKE2B f8535a5415e012834b749bba2123151d8a39c8fa757905c45be20478d6a795ff64dfbcf0cf9679f2bd70cb1d92717d8df70efb4beb4d749677a6c8758ebdde0e SHA512 108327042079d9e864899a20f2dd94019be1b957fd7ffa295af097c5b93a5065ea9c36de9bae83f84a6412ac496340849fc44de041e24461a2919073eed15cf2
24
25 diff --git a/sys-fs/f2fs-tools/f2fs-tools-1.11.0.ebuild b/sys-fs/f2fs-tools/f2fs-tools-1.11.0.ebuild
26 new file mode 100644
27 index 00000000000..37c94581a16
28 --- /dev/null
29 +++ b/sys-fs/f2fs-tools/f2fs-tools-1.11.0.ebuild
30 @@ -0,0 +1,36 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
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://dev.gentoo.org/~zlogene/distfiles/${CATEGORY}/${PN}/${P}.tar.gz"
41 +
42 +LICENSE="GPL-2"
43 +SLOT="0/4"
44 +KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86"
45 +IUSE="selinux"
46 +
47 +RDEPEND="selinux? ( sys-libs/libselinux )"
48 +DEPEND="${RDEPEND}"
49 +
50 +src_prepare() {
51 + default
52 + eautoreconf
53 +}
54 +
55 +src_configure() {
56 + #This is required to install to /sbin, bug #481110
57 + econf \
58 + --bindir="${EPREFIX}"/sbin \
59 + --disable-static \
60 + $(use_with selinux)
61 +}
62 +
63 +src_install() {
64 + default
65 + find "${D}" -name "*.la" -delete || die
66 +}