diff options
author | Daniel Pielmeier <billie@gentoo.org> | 2023-09-16 09:33:48 +0200 |
---|---|---|
committer | Daniel Pielmeier <billie@gentoo.org> | 2023-09-16 09:33:48 +0200 |
commit | dd2ebae4a46e82cecf92cf13e5466acb5042ac3f (patch) | |
tree | 3e1ad4066d4bcbf028fafbfcf79844a421d9cf54 /sys-fs | |
parent | net-print/hplip: drop 3.23.3 (diff) | |
download | gentoo-dd2ebae4a46e82cecf92cf13e5466acb5042ac3f.tar.gz gentoo-dd2ebae4a46e82cecf92cf13e5466acb5042ac3f.tar.bz2 gentoo-dd2ebae4a46e82cecf92cf13e5466acb5042ac3f.zip |
sys-fs/fatsort: drop 1.6.4.625
Signed-off-by: Daniel Pielmeier <billie@gentoo.org>
Diffstat (limited to 'sys-fs')
-rw-r--r-- | sys-fs/fatsort/Manifest | 1 | ||||
-rw-r--r-- | sys-fs/fatsort/fatsort-1.6.4.625.ebuild | 34 |
2 files changed, 0 insertions, 35 deletions
diff --git a/sys-fs/fatsort/Manifest b/sys-fs/fatsort/Manifest index dafa0ada036f..16391f44ec6b 100644 --- a/sys-fs/fatsort/Manifest +++ b/sys-fs/fatsort/Manifest @@ -1,2 +1 @@ -DIST fatsort-1.6.4.625.tar.xz 123964 BLAKE2B 4d958886af48e9f6d6a39b128b5ff96b809e67667026483a5abfb3db6f16d8a5ebb257433f2a7fbba6c7e4d81614477cc4cec437bcfba868a2c2fb6b13b15c42 SHA512 1d67c3cb515295d0a47054803e5b2a625875e71f41b2fad17f9d495b6aa4a291776696692545800bb4d5b826e9d622ea34077c81f7f08f41b8dfd70491e439ef DIST fatsort-1.6.5.640.tar.xz 131792 BLAKE2B 6e89c2240241642c828e462d44832e533351f5d6dcde78617b55fe61e24d30c92ebe567eaa4c2293e0db1671e60955cd2d48c83ade9acb6988371bbb05cd0953 SHA512 e4b0e6f007686ed873df8415e09787203cf508a27b94ac033c38b47bf9938f5d8fb130d98cc6588a376ea0004a8f8add55dc38e2fb9b133e6984b24bce3160ca diff --git a/sys-fs/fatsort/fatsort-1.6.4.625.ebuild b/sys-fs/fatsort/fatsort-1.6.4.625.ebuild deleted file mode 100644 index 2c171133543c..000000000000 --- a/sys-fs/fatsort/fatsort-1.6.4.625.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="Sorts files on FAT16/32 partitions, ideal for basic audio players" -HOMEPAGE="http://fatsort.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" - -src_prepare() { - default - - sed -i -e 's|/usr/local|/usr|g' \ - $(find ./ -name Makefile || die) || die -} - -src_compile() { - emake \ - CC="$(tc-getCC)" LD="$(tc-getCC)" \ - CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \ - man -} - -src_test() { - # Tests require root permissions and mounting filesystems which does - # not work inside the ebuild environment - true -} |