commit:     9dd6d19fe9de88c494b515f04783db9f037152c9
Author:     Kerin Millar <kfm <AT> plushkava <DOT> net>
AuthorDate: Sun Sep 14 04:30:44 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Sep 14 04:49:45 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9dd6d19f

sys-apps/locale-gen: drop 3.5 and 3.6

Signed-off-by: Kerin Millar <kfm <AT> plushkava.net>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-apps/locale-gen/Manifest              |  2 --
 sys-apps/locale-gen/locale-gen-3.5.ebuild | 57 -------------------------------
 sys-apps/locale-gen/locale-gen-3.6.ebuild | 57 -------------------------------
 3 files changed, 116 deletions(-)

diff --git a/sys-apps/locale-gen/Manifest b/sys-apps/locale-gen/Manifest
index 2e12b650ac41..8a21681d4800 100644
--- a/sys-apps/locale-gen/Manifest
+++ b/sys-apps/locale-gen/Manifest
@@ -1,4 +1,2 @@
 DIST locale-gen-2.23.tar.bz2 7664 BLAKE2B 
a529b62fbb840c9352f06e8f5c80fc764425a2619dc69cc820f550a026d391788d5e2cfeeb46a8b5b9716da63340b4fce57a5b523edd4196ee1219c1200cb752
 SHA512 
c1245caadb04403c535a836f19bc410d0f04b5c0e297ea5be9852e6d71e08e528071ae769d63d31a677dda8fdd618b4c4d581ed525cf8786b82d8f37636db754
 DIST locale-gen-3.4.tar.bz2 21116 BLAKE2B 
97739bd3be34407639fbe77b9538e792dd1b94ba9a0612262f8df0a0cb70c3b513e1348470d5350a2ad0a2e92ac7287921c62b32c72815c82f43a271a8d3cdda
 SHA512 
38ec6801142be282e25ff913e78ca48dce5faecd5bfa0187cd85065622195c746b63ccc05b9818b7a1240b8d01f38c8ca8fa45737d6ac5ae0ac41675c1b49584
-DIST locale-gen-3.5.tar.bz2 17361 BLAKE2B 
57ff109cfc523523981d347e1c5fc0e7242c9c03484c2638354e485931c83733676815d5d8bb5240a90e23d739ddd8206ccb8cfecc095c032a6a9e2d707bdfb8
 SHA512 
36826d19bb8abac2e47be1882abc1303d8e804001870acd4828bc60dece48de44850efc0d46d9de5727b2c79c2d627491807dacefa24112a5e1b5b9b27a88dfc
-DIST locale-gen-3.6.tar.bz2 17379 BLAKE2B 
b578717a0a73b90f222c6983d6b92271878f2c2bb1e90c7c8353c86cd8d92b2ec2612da44e14a5095bcb80e1eca993fa1cda0397d6f01fd128abdbdf1446dd26
 SHA512 
6ed4671822a91bf8ffbb37e33f0de871398314072c7d2e9461edf504b882241b629fa3ce2f6909dc610c4245759d2c2b28be5440df7776794005dae12ce0f5a7

diff --git a/sys-apps/locale-gen/locale-gen-3.5.ebuild 
b/sys-apps/locale-gen/locale-gen-3.5.ebuild
deleted file mode 100644
index c380120ac933..000000000000
--- a/sys-apps/locale-gen/locale-gen-3.5.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 2023-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="Generate locales based upon the config file /etc/locale.gen"
-HOMEPAGE="https://gitweb.gentoo.org/proj/locale-gen.git/";
-
-if [[ ${PV} == 9999 ]] ; then
-       EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/locale-gen.git";
-       inherit git-r3
-else
-       
SRC_URI="https://gitweb.gentoo.org/proj/locale-gen.git/snapshot/${P}.tar.bz2";
-
-       KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-
-BDEPEND="
-       >=dev-lang/perl-5.36
-       dev-perl/File-Slurper
-"
-RDEPEND="
-       >=dev-lang/perl-5.36
-       !<sys-libs/glibc-2.37-r3
-"
-
-src_prepare() {
-       # EPREFIX is readonly.
-       local -x MY_EPREFIX=${EPREFIX}
-
-       eapply_user
-
-       perl -pi -e '$f //= ($. == 1 && s/^#!\h*\K/$ENV{MY_EPREFIX}/); END { 
exit !$f }' "${PN}" \
-       || die "Failed to prefixify ${PN}"
-}
-
-src_install() {
-       dosbin locale-gen
-       doman *.[0-8]
-       insinto /etc
-       {
-               cat <<-'EOF' &&
-               # This file defines which locales to incorporate into the glibc 
locale archive.
-               # See the locale.gen(5) and locale-gen(8) man pages for more 
details.
-
-               EOF
-               # Run the interpreter by name so as not to have to prefixify 
mkconfig.
-               perl mkconfig "${EROOT}"
-       } | newins - locale.gen
-       if (( PIPESTATUS[0] || PIPESTATUS[1] )); then
-               die "Failed to generate and/or install locale.gen"
-       fi
-       keepdir /usr/lib/locale
-}

diff --git a/sys-apps/locale-gen/locale-gen-3.6.ebuild 
b/sys-apps/locale-gen/locale-gen-3.6.ebuild
deleted file mode 100644
index c380120ac933..000000000000
--- a/sys-apps/locale-gen/locale-gen-3.6.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 2023-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="Generate locales based upon the config file /etc/locale.gen"
-HOMEPAGE="https://gitweb.gentoo.org/proj/locale-gen.git/";
-
-if [[ ${PV} == 9999 ]] ; then
-       EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/locale-gen.git";
-       inherit git-r3
-else
-       
SRC_URI="https://gitweb.gentoo.org/proj/locale-gen.git/snapshot/${P}.tar.bz2";
-
-       KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-
-BDEPEND="
-       >=dev-lang/perl-5.36
-       dev-perl/File-Slurper
-"
-RDEPEND="
-       >=dev-lang/perl-5.36
-       !<sys-libs/glibc-2.37-r3
-"
-
-src_prepare() {
-       # EPREFIX is readonly.
-       local -x MY_EPREFIX=${EPREFIX}
-
-       eapply_user
-
-       perl -pi -e '$f //= ($. == 1 && s/^#!\h*\K/$ENV{MY_EPREFIX}/); END { 
exit !$f }' "${PN}" \
-       || die "Failed to prefixify ${PN}"
-}
-
-src_install() {
-       dosbin locale-gen
-       doman *.[0-8]
-       insinto /etc
-       {
-               cat <<-'EOF' &&
-               # This file defines which locales to incorporate into the glibc 
locale archive.
-               # See the locale.gen(5) and locale-gen(8) man pages for more 
details.
-
-               EOF
-               # Run the interpreter by name so as not to have to prefixify 
mkconfig.
-               perl mkconfig "${EROOT}"
-       } | newins - locale.gen
-       if (( PIPESTATUS[0] || PIPESTATUS[1] )); then
-               die "Failed to generate and/or install locale.gen"
-       fi
-       keepdir /usr/lib/locale
-}

Reply via email to