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: Thu, 01 Mar 2018 01:07:28
Message-Id: 1519866436.14fc76ae0ade2b986ca8d73a35e5383e0a81372b.blueness@gentoo
1 commit: 14fc76ae0ade2b986ca8d73a35e5383e0a81372b
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 1 00:56:02 2018 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 1 01:07:16 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14fc76ae
7
8 sys-fs/f2fs-tools: version bump to 1.10.0
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 sys-fs/f2fs-tools/Manifest | 1 +
13 sys-fs/f2fs-tools/f2fs-tools-1.10.0.ebuild | 31 ++++++++++++++++++++++++++++++
14 2 files changed, 32 insertions(+)
15
16 diff --git a/sys-fs/f2fs-tools/Manifest b/sys-fs/f2fs-tools/Manifest
17 index b21abced774..1e590d9c288 100644
18 --- a/sys-fs/f2fs-tools/Manifest
19 +++ b/sys-fs/f2fs-tools/Manifest
20 @@ -1,3 +1,4 @@
21 +DIST f2fs-tools-1.10.0.tar.xz 342904 BLAKE2B ba4dec55e11959b2dd9461b1b02d173c7766908bfdbca9f6da7aa134b4a3b5cf2bda3c2e380b3fab46afdda0be9181ae5fe85ed9d085f816a1ff96e847e2a836 SHA512 e6e9fc10bd8051db86880c415ceb50900bf0cc919f1d9fe39026b5320de7c93cbcc1d817fab73130817042ed551fc5fd55ef9b589caeca9fca63fd3098f7a853
22 DIST f2fs-tools-1.6.1.tar.xz 282152 BLAKE2B f8535a5415e012834b749bba2123151d8a39c8fa757905c45be20478d6a795ff64dfbcf0cf9679f2bd70cb1d92717d8df70efb4beb4d749677a6c8758ebdde0e SHA512 108327042079d9e864899a20f2dd94019be1b957fd7ffa295af097c5b93a5065ea9c36de9bae83f84a6412ac496340849fc44de041e24461a2919073eed15cf2
23 DIST f2fs-tools-1.8.0.tar.xz 301108 BLAKE2B b3c0eebcb4a462c97c01586b46b6b4739c2ebfaf535d146508e9fec6e4fbe442883b89d785d35993fc828eccddf177534dccb449790353557fea2f9f1c6fe24c SHA512 aff27e1113cc3034194e496883570143bd6a3cc7cc077e868255052298a401cc36c423579b4e695fe3e480d770ae05f9d14d9bb4bbc0311bdd5e23e37950a27f
24 DIST f2fs-tools-1.9.0.tar.xz 337676 BLAKE2B 4c6895f5faabed427db32c846df462c588acb5ec3cb45d318c1c71d2e5f241047d6871d0bbfa99116b23c26b9223069dc224f4b97c3253a283d79234b2ddd41e SHA512 aa76d4bf595b3d17607846f2531327f2c26c8724b4fdb2572074e028965c2300fcd880d57246f5c15d8dd4b9ae62fc93552edecdd504d7313fca5839590f16e5
25
26 diff --git a/sys-fs/f2fs-tools/f2fs-tools-1.10.0.ebuild b/sys-fs/f2fs-tools/f2fs-tools-1.10.0.ebuild
27 new file mode 100644
28 index 00000000000..94561df90d6
29 --- /dev/null
30 +++ b/sys-fs/f2fs-tools/f2fs-tools-1.10.0.ebuild
31 @@ -0,0 +1,31 @@
32 +# Copyright 1999-2018 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +DESCRIPTION="Tools for Flash-Friendly File System (F2FS)"
38 +HOMEPAGE="https://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/about/"
39 +SRC_URI="https://dev.gentoo.org/~blueness/f2fs-tools/${P}.tar.xz"
40 +
41 +LICENSE="GPL-2"
42 +SLOT="0/4"
43 +KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86"
44 +IUSE="selinux"
45 +
46 +RDEPEND="
47 + sys-apps/util-linux
48 + selinux? ( sys-libs/libselinux )"
49 +DEPEND="$RDEPEND"
50 +
51 +src_configure() {
52 + #This is required to install to /sbin, bug #481110
53 + econf \
54 + --bindir="${EPREFIX}"/sbin \
55 + --disable-static \
56 + $(use_with selinux)
57 +}
58 +
59 +src_install() {
60 + default
61 + find "${D}" -name "*.la" -delete || die
62 +}