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: Sat, 08 Feb 2020 14:07:06
Message-Id: 1581170797.cf4a49ea2a34d9fe9e8d635b836d7b8a2200ef33.billie@gentoo
1 commit: cf4a49ea2a34d9fe9e8d635b836d7b8a2200ef33
2 Author: Daniel Pielmeier <billie <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 8 14:06:37 2020 +0000
4 Commit: Daniel Pielmeier <billie <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 8 14:06:37 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf4a49ea
7
8 sys-fs/fatsort: Version bump to fatsort-1.6.2.605.
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Daniel Pielmeier <billie <AT> gentoo.org>
12
13 sys-fs/fatsort/Manifest | 1 +
14 sys-fs/fatsort/fatsort-1.6.2.605.ebuild | 33 +++++++++++++++++++++++++++++++++
15 2 files changed, 34 insertions(+)
16
17 diff --git a/sys-fs/fatsort/Manifest b/sys-fs/fatsort/Manifest
18 index 12cff7154cf..ec6beb5a3ed 100644
19 --- a/sys-fs/fatsort/Manifest
20 +++ b/sys-fs/fatsort/Manifest
21 @@ -1 +1,2 @@
22 DIST fatsort-1.5.0.456.tar.xz 56100 BLAKE2B 996f144c67a2311ef9962b06e776d0a0c8897814383e50c9f48f5af0bc800159ee34c10d9f8d51dae5160844dfe9fcbc4b56bb9883cbdb0402a0ea20198fc1d6 SHA512 fe9d8108494fd64da730ec40882582fc16a89e76a5ba4e8040d03a3dbbf12c525904abe24814337713f5f1d15c72e8321b27fad69db816c073a96fbfd15ea486
23 +DIST fatsort-1.6.2.605.tar.xz 122928 BLAKE2B 2690233828e47a4809aac14a8d64dc8d95a824bec52f787190186adbe066d5d4e6f9c6d1873fc6b809c6df6879d12154430f44d412944963bdff49e673079d12 SHA512 0d119c99c5efff4c10367152fc6efe95e2cb1c39405ca02dd25b66cc68c7420b5b28c0daca1346b7928633bac8ace2d05d731502f989d39ca5c783dcec69ccc7
24
25 diff --git a/sys-fs/fatsort/fatsort-1.6.2.605.ebuild b/sys-fs/fatsort/fatsort-1.6.2.605.ebuild
26 new file mode 100644
27 index 00000000000..e80f5c53a7f
28 --- /dev/null
29 +++ b/sys-fs/fatsort/fatsort-1.6.2.605.ebuild
30 @@ -0,0 +1,33 @@
31 +# Copyright 1999-2020 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
51 +}
52 +
53 +src_compile() {
54 + emake CC=$(tc-getCC) LD=$(tc-getCC) \
55 + CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \
56 + DESTDIR="${D}"
57 +}
58 +
59 +src_test() {
60 + # Tests require root permissions and mounting filesystems which does
61 + # not work inside the ebuild environment
62 + true
63 +}