diff --git a/dev-perl/Curses/Curses-1.370.0-r1.ebuild b/dev-perl/Curses/Curses-1.370.0-r1.ebuild
deleted file mode 100644
index c68700755c863..0000000000000
--- a/dev-perl/Curses/Curses-1.370.0-r1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DIST_AUTHOR=GIRAFFED
-DIST_VERSION=1.37
-DIST_EXAMPLES=("demo" "demo2" "demo.form" "demo.menu" "demo.panel" "gdc")
-inherit perl-module
-
-DESCRIPTION="Curses interface modules for Perl"
-
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~s390 sparc x86"
-IUSE="+unicode test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- sys-libs/ncurses:=[unicode(+)?]
- virtual/perl-Data-Dumper
-"
-DEPEND="
- sys-libs/ncurses:=[unicode(+)?]
-"
-BDEPEND="${RDEPEND}
- virtual/perl-ExtUtils-MakeMaker
- test? ( virtual/perl-Test-Simple )
-"
-
-src_configure() {
- myconf="${myconf} FORMS PANELS MENUS"
- mydoc=HISTORY
- export CURSES_LIBTYPE="$(usex unicode ncursesw ncurses)"
- local nc_tool="${CURSES_LIBTYPE}$(has_version 'sys-libs/ncurses:0/6' && echo 6 || echo 5)-config"
- export CURSES_LDFLAGS=$( ${nc_tool} --libs )
- export CURSES_CFLAGS=$( ${nc_tool} --cflags )
- perl-module_src_configure
- if ! use unicode ; then
- sed -i 's:
:"/usr/include/form.h":' "${S}"/c-config.h || die
- fi
-}
-src_compile() {
- mymake=(
- "OPTIMIZE=${CFLAGS}"
- )
- perl-module_src_compile
-}
diff --git a/dev-perl/Curses/Curses-1.380.0.ebuild b/dev-perl/Curses/Curses-1.380.0.ebuild
deleted file mode 100644
index e1d1e2c6ba794..0000000000000
--- a/dev-perl/Curses/Curses-1.380.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DIST_AUTHOR=GIRAFFED
-DIST_VERSION=1.38
-DIST_EXAMPLES=("demo" "demo2" "demo.form" "demo.menu" "demo.panel")
-inherit perl-module
-
-DESCRIPTION="Curses interface modules for Perl"
-
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~s390 sparc x86"
-IUSE="+unicode"
-
-RDEPEND="
- sys-libs/ncurses:=[unicode(+)?]
- virtual/perl-Data-Dumper
-"
-DEPEND="
- sys-libs/ncurses:=[unicode(+)?]
-"
-BDEPEND="${RDEPEND}
- virtual/perl-ExtUtils-MakeMaker
- test? ( virtual/perl-Test-Simple )
-"
-
-src_configure() {
- myconf="${myconf} FORMS PANELS MENUS"
- mydoc=HISTORY
- export CURSES_LIBTYPE="$(usex unicode ncursesw ncurses)"
- local nc_tool="${CURSES_LIBTYPE}$(has_version 'sys-libs/ncurses:0/6' && echo 6 || echo 5)-config"
- export CURSES_LDFLAGS=$( ${nc_tool} --libs )
- export CURSES_CFLAGS=$( ${nc_tool} --cflags )
- perl-module_src_configure
- if ! use unicode ; then
- sed -i 's::"/usr/include/form.h":' "${S}"/c-config.h || die
- fi
-}
diff --git a/dev-perl/Curses/Curses-1.410.0.ebuild b/dev-perl/Curses/Curses-1.410.0.ebuild
deleted file mode 100644
index e48c4a2a9cdc6..0000000000000
--- a/dev-perl/Curses/Curses-1.410.0.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
-
-DIST_AUTHOR=GIRAFFED
-DIST_VERSION=1.41
-DIST_EXAMPLES=("demo" "demo2" "demo.form" "demo.menu" "demo.panel")
-inherit perl-module toolchain-funcs
-
-DESCRIPTION="Curses interface modules for Perl"
-
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~s390 sparc x86"
-IUSE="+unicode"
-
-RDEPEND="
- >=sys-libs/ncurses-6:=[unicode(+)?]
- virtual/perl-Data-Dumper
-"
-DEPEND="
- >=sys-libs/ncurses-6:=[unicode(+)?]
-"
-BDEPEND="
- ${RDEPEND}
- virtual/perl-ExtUtils-MakeMaker
- test? ( virtual/perl-Test-Simple )
-"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-1.410.0-clang16.patch
-)
-
-src_configure() {
- myconf=( FORMS PANELS MENUS )
- mydoc=( HISTORY )
-
- export CURSES_LIBTYPE="$(usex unicode ncursesw ncurses)"
- export CURSES_LDFLAGS=$($(tc-getPKG_CONFIG) --libs ${CURSES_LIBTYPE})
- export CURSES_CFLAGS=$($(tc-getPKG_CONFIG) --cflags ${CURSES_LIBTYPE})
-
- perl-module_src_configure
-
- if ! use unicode ; then
- sed -i 's::"${ESYSROOT}/usr/include/form.h":' "${S}"/c-config.h || die
- fi
-}
diff --git a/dev-perl/Curses/Curses-1.430.0.ebuild b/dev-perl/Curses/Curses-1.430.0.ebuild
deleted file mode 100644
index a6903b94d95e3..0000000000000
--- a/dev-perl/Curses/Curses-1.430.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DIST_AUTHOR=GIRAFFED
-DIST_VERSION=1.43
-DIST_EXAMPLES=("demo" "demo2" "demo.form" "demo.menu" "demo.panel")
-inherit perl-module toolchain-funcs
-
-DESCRIPTION="Curses interface modules for Perl"
-
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~s390 sparc x86"
-IUSE="+unicode"
-
-RDEPEND="
- >=sys-libs/ncurses-6:=[unicode(+)?]
- virtual/perl-Data-Dumper
-"
-DEPEND="
- >=sys-libs/ncurses-6:=[unicode(+)?]
-"
-BDEPEND="
- ${RDEPEND}
- virtual/perl-ExtUtils-MakeMaker
- test? ( virtual/perl-Test-Simple )
-"
-
-src_configure() {
- myconf=( FORMS PANELS MENUS )
- mydoc=( HISTORY )
-
- export CURSES_LIBTYPE="$(usex unicode ncursesw ncurses)"
- export CURSES_LDFLAGS=$($(tc-getPKG_CONFIG) --libs ${CURSES_LIBTYPE})
- export CURSES_CFLAGS=$($(tc-getPKG_CONFIG) --cflags ${CURSES_LIBTYPE})
-
- perl-module_src_configure
-
- if ! use unicode ; then
- sed -i "s::\"${ESYSROOT}/usr/include/form.h\":" "${S}"/c-config.h || die
- fi
-}
diff --git a/dev-perl/Curses/Manifest b/dev-perl/Curses/Manifest
index 4902dad2e22ff..def879cfe765d 100644
--- a/dev-perl/Curses/Manifest
+++ b/dev-perl/Curses/Manifest
@@ -1,5 +1 @@
-DIST Curses-1.37.tar.gz 135763 BLAKE2B b42f81d5a382b8cf6c8323cc5c13fd39dcc57081ad2e3de9e940f06a0126879d301ccaebc5c34fb5cb4bffd1263b0681243164539c450db50cd3388e6fd35823 SHA512 10886e725b174fdabc0c9b86a9ef9b717949f0fb03561bfc315e8503be689be7945d1ceeea2f950628ce480c2cc8081736d3b8f28042ea677b252298a9eb4827
-DIST Curses-1.38.tar.gz 135789 BLAKE2B 68817bfafcfe2b9d9480c12f2490f9281b5e0cc51bbcfd795e2728a21ef24e12362cfc0896d7b5d6678f35f25fb80c0aee4cde5cf06ec8b3871168cd059649d6 SHA512 27999e71f19576c930a794c9f478e8a3b6b3b1d1e68c4ca57b712f20c98a83dba46295c012a6c618d097b661ec30441c8147e26579218ecef977d7c7996c7442
-DIST Curses-1.41.tar.gz 137458 BLAKE2B 04cb8fc655d0f8ce629fad453923a82ee8c3f7b95e042f036b1c1dc6781e181c04716f8166ebfc0a34eab2402271e8e05ce9438af7a7276c11d22fd9106733f7 SHA512 a8d091f3f79be6368bb0e465563cc736a934f66f489d8c1ec86dca71c22705c7969e1468c9d330cc6653994af550f8f95282b0fd504174d2f77b7d32e98be108
-DIST Curses-1.43.tar.gz 138539 BLAKE2B 18557b1e992d9532f18ff97d804b13b845113371f91e79779bdc35df7c3297e77ba64ae9fa25af1045a7b5602a45b80f4fd511a842a6fd616b1a5f9d21933578 SHA512 8fd4592b3eb4466e89ca2c64fc43e2f5cbb97b75802ec236e34962b4732b014820ff1c1ee089f0b4ac9a65d4110cdf89887263c1a664cf094353c767a2af215c
DIST Curses-1.44.tar.gz 139766 BLAKE2B 822ff66038b551476a26f174bccba213d8d4e238144129245c68a8e239b8c0c68e6cb351637e158d39af7878a83a436776833898623f934c91b694d71ef34426 SHA512 2c7f9ad9971c1afe6c1bee59581466f848ab1128e546effccd2118cb7bce1962ec7f6a8da60be3cdd1405f6b0a44f7c29c5f7900cbc436940592b1075fbfb6f7
diff --git a/dev-perl/Curses/files/Curses-1.410.0-clang16.patch b/dev-perl/Curses/files/Curses-1.410.0-clang16.patch
deleted file mode 100644
index 1f11a893b2d4f..0000000000000
--- a/dev-perl/Curses/files/Curses-1.410.0-clang16.patch
+++ /dev/null
@@ -1,84 +0,0 @@
-Fedora sent upstream by email: https://bugzilla.redhat.com/show_bug.cgi?id=2148432#c2.
-
-https://src.fedoraproject.org/rpms/perl-Curses/c/2633f3adcd14dff61d6d45f97c8bc4f65ce06d82?branch=rawhide
-Add missing int types for C99 compatibility.
---- a/testint.c
-+++ b/testint.c
-@@ -8,6 +8,7 @@
-
- #include "c-config.h"
-
-+int
- main() {
- int ret;
-
---- a/testtyp.c
-+++ b/testtyp.c
-@@ -8,6 +8,7 @@
-
- #include "c-config.h"
-
-+int
- main() {
- typedef SYM c_sym_t;
- }
-
---- a/test.syms
-+++ b/test.syms
-@@ -24,6 +24,9 @@ use warnings;
- use English;
-
- my $verbose;
-+my $panels;
-+my $menus;
-+my $forms;
-
- sub makeCompileCommand($) {
- my ($compileR) = @_;
-@@ -74,22 +77,31 @@ sub makeCompileCommand($) {
- #
- # _C_SYM_ and _C_FILE_ will be filled in later
-
-+ my $defs_prefix = '-D';
- if ($OSNAME =~ m{VMS}i) {
-- $compile =~ s{#DEFS#}{DEFINE=SYM="_C_SYM_"};
-+ $defs_prefix = 'DEFINE-';
- $compile =~ s{#FILE#}{_C_FILE_.c};
- $compile =~ s{#NULL#}{}; # no non-verbose way
- }
- elsif ($OSNAME eq 'MSWin32') {
-- $compile =~ s{#DEFS#}{-DSYM="_C_SYM_"};
- $compile =~ s{#FILE#}{_C_FILE_.c};
- $compile =~ s{#NULL#}{>nul 2>&1};
- }
- else {
-- $compile =~ s{#DEFS#}{-DSYM="_C_SYM_"};
- $compile =~ s{#FILE#}{-o _C_FILE_ _C_FILE_.c};
- $compile =~ s{#NULL#}{>/dev/null 2>&1};
- }
-
-+ # Make these defines from CursesDef.h available early, so that
-+ # the feature probing uses the correct build configuration.
-+ my @defs = (qq(${defs_prefix}SYM="_C_SYM_"));
-+ push @defs, qq(${defs_prefix}C_PANELFUNCTION="1") if $panels;
-+ push @defs, qq(${defs_prefix}C_MENUFUNCTION="1") if $menus;
-+ push @defs, qq(${defs_prefix}C_FORMFUNCTION="1") if $forms;
-+
-+ $compile =~ s{#DEFS#}{join " ", @defs}e;
-+
-+
- if ($compile =~ m{#.+#}) {
- die "OOPS: internal error constructing a compile command. " .
- "We failed to substitute for a #xxx# substitution variable " .
-@@ -109,10 +121,6 @@ print("Set CURSES_VERBOSE environment variable to see the details of the " .
- "tests.\n");
- print("\n");
-
--my $panels;
--my $menus;
--my $forms;
--
- if ($ENV{CURSES_VERBOSE}) {
- $verbose = 1;
- } else {
-