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: Thu, 30 Sep 2021 17:07:51
Message-Id: 1633021656.9a27ebe0db2fb73bfcbd1f02b5496524b42d7134.billie@gentoo
1 commit: 9a27ebe0db2fb73bfcbd1f02b5496524b42d7134
2 Author: Daniel Pielmeier <billie <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 30 17:07:36 2021 +0000
4 Commit: Daniel Pielmeier <billie <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 30 17:07:36 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a27ebe0
7
8 sys-fs/fatsort: Version bump.
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Daniel Pielmeier <billie <AT> gentoo.org>
12
13 sys-fs/fatsort/Manifest | 1 +
14 sys-fs/fatsort/fatsort-1.6.4.625.ebuild | 34 +++++++++++++++++++++++++++++++++
15 2 files changed, 35 insertions(+)
16
17 diff --git a/sys-fs/fatsort/Manifest b/sys-fs/fatsort/Manifest
18 index 13e5a1b2086..f4ffba9723b 100644
19 --- a/sys-fs/fatsort/Manifest
20 +++ b/sys-fs/fatsort/Manifest
21 @@ -1 +1,2 @@
22 DIST fatsort-1.6.3.622.tar.xz 123644 BLAKE2B 1db530753bdaee4ebda9ab36a47f6794584bc590de4cbf8d144a5baa770c080c9d27a1ecadd5a22de72538887c4e10f161f3c4fb3afb3e63bd18834897ebe905 SHA512 309c7424e53fb74f57d0c4272a1a4b3df57fa1130d7e7adae0ac73ac1c8b1900504e49efd0cc4dafea3efa2fbc9191f343b10bb97b647dd6124197356cd01c53
23 +DIST fatsort-1.6.4.625.tar.xz 123964 BLAKE2B 4d958886af48e9f6d6a39b128b5ff96b809e67667026483a5abfb3db6f16d8a5ebb257433f2a7fbba6c7e4d81614477cc4cec437bcfba868a2c2fb6b13b15c42 SHA512 1d67c3cb515295d0a47054803e5b2a625875e71f41b2fad17f9d495b6aa4a291776696692545800bb4d5b826e9d622ea34077c81f7f08f41b8dfd70491e439ef
24
25 diff --git a/sys-fs/fatsort/fatsort-1.6.4.625.ebuild b/sys-fs/fatsort/fatsort-1.6.4.625.ebuild
26 new file mode 100644
27 index 00000000000..85bf5c3f352
28 --- /dev/null
29 +++ b/sys-fs/fatsort/fatsort-1.6.4.625.ebuild
30 @@ -0,0 +1,34 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit toolchain-funcs
37 +
38 +DESCRIPTION="Sorts files on FAT16/32 partitions, ideal for basic audio players"
39 +HOMEPAGE="http://fatsort.sourceforge.net/"
40 +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
41 +
42 +LICENSE="GPL-2"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +
46 +src_prepare() {
47 + default
48 +
49 + sed -i -e 's|/usr/local|/usr|g' \
50 + $(find ./ -name Makefile || die) || die
51 +}
52 +
53 +src_compile() {
54 + emake \
55 + CC=$(tc-getCC) LD=$(tc-getCC) \
56 + CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \
57 + man
58 +}
59 +
60 +src_test() {
61 + # Tests require root permissions and mounting filesystems which does
62 + # not work inside the ebuild environment
63 + true
64 +}