Diff locale-gen-2.23-r1 with a locale-gen-3.0

/usr/portage/sys-apps/locale-gen/locale-gen-3.0.ebuild 2025-07-29 16:22:17.376467925 +0300
1
# Copyright 2023 Gentoo Authors
1
# Copyright 2023-2025 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5

  
6
inherit prefix
7

  
8 6
DESCRIPTION="Generate locales based upon the config file /etc/locale.gen"
9 7
HOMEPAGE="https://gitweb.gentoo.org/proj/locale-gen.git/"
10 8
SRC_URI="https://gitweb.gentoo.org/proj/locale-gen.git/snapshot/${P}.tar.bz2"
11 9

  
12
# Totally unclear what the license is. Following here the statement
13
# in the Debian file that the tools accompanying glibc are GPL-2+
14
LICENSE="GPL-2+"
10
LICENSE="GPL-2"
15 11

  
16 12
SLOT="0"
17
KEYWORDS="~alpha amd64 arm arm64 hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
13
#KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
18 14

  
19 15
RDEPEND="
20
	app-alternatives/awk
21
	app-alternatives/gzip
22
	sys-apps/gentoo-functions
23
	sys-apps/grep
16
	dev-lang/perl
24 17
	!<sys-libs/glibc-2.37-r3
25 18
"
26
DEPEND=""
27

  
28
src_prepare() {
29
	default
30
	eprefixify locale-gen
31
}
32 19

  
33 20
src_install() {
34 21
	dosbin locale-gen
Thank you!