Gentoo Archives: gentoo-commits

From: Daniel Pielmeier <billie@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/fatsort/
Date: Mon, 04 Sep 2017 15:37:32
Message-Id: 1504539414.ccf7a1badbe3cc004b5c10f557de4b7801a2b814.billie@gentoo
1 commit: ccf7a1badbe3cc004b5c10f557de4b7801a2b814
2 Author: Daniel Pielmeier <billie <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 4 15:36:54 2017 +0000
4 Commit: Daniel Pielmeier <billie <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 4 15:36:54 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccf7a1ba
7
8 sys-fs/fatsort: Version bump.
9
10 Switch to EAPI 6. Disable tests.
11
12 Package-Manager: Portage-2.3.6, Repoman-2.3.1
13
14 sys-fs/fatsort/Manifest | 1 +
15 sys-fs/fatsort/fatsort-1.4.2.ebuild | 38 +++++++++++++++++++++++++++++++++++++
16 2 files changed, 39 insertions(+)
17
18 diff --git a/sys-fs/fatsort/Manifest b/sys-fs/fatsort/Manifest
19 index e949381427c..c5686e91eb1 100644
20 --- a/sys-fs/fatsort/Manifest
21 +++ b/sys-fs/fatsort/Manifest
22 @@ -1 +1,2 @@
23 DIST fatsort-1.3.365.tar.gz 57209 SHA256 77acc374b189e80e3d75d3508f3c0ca559f8030f1c220f7cfde719a4adb03f3d SHA512 e3611841501e6dded8fd6270188ffb00191a20e93d84b0729cd2e215d37317f48e08bd67da41b88604858ef6f661e4b921b80645f454b78f91bfd2d0d4254d29 WHIRLPOOL 0998259baf3f315b0d7485fdf7d8172fa4c8f17f3f41fd163780eeaf7b6eda6c2e5dfdd99e9d0dd603bcd53aa6fc2a1ea6e1e2a2f14d211a8fc01b8db4ddeb9d
24 +DIST fatsort-1.4.2.439.tar.xz 41852 SHA256 bdbcf99307baef3e76d99700691ac525c9a9cf96d8433b45c89314940cc6a1e0 SHA512 c51b5316b34e1a74e2a8d1c625716fd022d32e40a92ef56b88fbc940b5e6dd6c978b733f180477e8b5b3235b46cd16eb74798c5aadd45de9ead1f1bafdf52fee WHIRLPOOL d72031ef071c2748488935a35ac8d7ba84d162312e35ac69fb5799e699f495ae190fb9230f875a2624c013d5eba4a3e9c49f7fbda76b661fc55a1692adae7951
25
26 diff --git a/sys-fs/fatsort/fatsort-1.4.2.ebuild b/sys-fs/fatsort/fatsort-1.4.2.ebuild
27 new file mode 100644
28 index 00000000000..355a59c1440
29 --- /dev/null
30 +++ b/sys-fs/fatsort/fatsort-1.4.2.ebuild
31 @@ -0,0 +1,38 @@
32 +# Copyright 1999-2017 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +inherit toolchain-funcs
38 +
39 +SVN_REV=439
40 +MY_P=${P}.${SVN_REV}
41 +
42 +DESCRIPTION="Sorts files on FAT16/32 partitions, ideal for basic audio players"
43 +HOMEPAGE="http://fatsort.sourceforge.net/"
44 +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.xz"
45 +
46 +LICENSE="GPL-2"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~x86"
49 +
50 +S=${WORKDIR}/${MY_P}
51 +
52 +src_prepare() {
53 + default
54 +
55 + sed -i -e '/^\(MANDIR=\|SBINDIR=\)/s|/usr/local|/usr|' \
56 + $(find ./ -name Makefile) || die
57 +}
58 +
59 +src_compile() {
60 + emake CC=$(tc-getCC) LD=$(tc-getCC) \
61 + CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \
62 + DESTDIR="${D}"
63 +}
64 +
65 +src_test() {
66 + # Tests require root permissions and mounting filesystems which does
67 + # not work inside the ebuild environment
68 + true
69 +}