summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConrad Kostecki <conikost@gentoo.org>2024-12-23 20:18:45 +0100
committerConrad Kostecki <conikost@gentoo.org>2024-12-23 20:31:42 +0100
commita161013664ddbef9c4f5bba95ed3735f11cef08c (patch)
treedd2bcc08adc85d9b2a0e496ca339ca0803d13f4a /app-text
parentapp-text/msort: fix qa VariableOrderWrong (diff)
downloadgentoo-a161013664ddbef9c4f5bba95ed3735f11cef08c.tar.gz
gentoo-a161013664ddbef9c4f5bba95ed3735f11cef08c.tar.bz2
gentoo-a161013664ddbef9c4f5bba95ed3735f11cef08c.zip
app-text/msort: drop 8.53-r2
Closes: https://bugs.gentoo.org/880333 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'app-text')
-rw-r--r--app-text/msort/msort-8.53-r2.ebuild47
1 files changed, 0 insertions, 47 deletions
diff --git a/app-text/msort/msort-8.53-r2.ebuild b/app-text/msort/msort-8.53-r2.ebuild
deleted file mode 100644
index 39dfa9ff4a68..000000000000
--- a/app-text/msort/msort-8.53-r2.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-DESCRIPTION="A program for sorting files in sophisticated ways"
-HOMEPAGE="https://billposer.org/Software/msort.html"
-SRC_URI="https://billposer.org/Software/Downloads/${P}.tar.bz2"
-
-KEYWORDS="amd64 x86"
-LICENSE="GPL-3 LGPL-3"
-SLOT="0"
-IUSE="heap +icu +libuninum"
-
-RDEPEND="dev-libs/tre
- icu? ( dev-libs/icu:= )
- !icu? ( dev-libs/libutf8proc:= )
- libuninum? ( dev-libs/libuninum:= )"
-
-DEPEND="${RDEPEND}"
-
-PATCHES=(
- "${FILESDIR}/${P}-fix-icu-build.patch"
- "${FILESDIR}/${P}-fix-missing-limits-header.patch"
- "${FILESDIR}/${P}-fix-segfault-on-certain-input.patch"
- "${FILESDIR}/${P}-respect-users-cflags.patch"
- "${FILESDIR}/${P}-configure-clang16.patch"
-)
-
-src_prepare() {
- default
-
- eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- $(use_enable !heap allocaok)
- $(use_enable !icu utf8proc)
- $(use_enable libuninum uninum)
- --disable-debugbuild
- )
-
- econf "${myeconfargs[@]}"
-}