Diff gnulib-2022.05.26.07.24.56 with a gnulib-9999-r1

/usr/portage/dev-libs/gnulib/gnulib-9999-r1.ebuild 2023-10-09 14:52:29.500368350 +0300
1 1
# Copyright 1999-2022 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5

  
6
GIT_TAG="5293ada82e1ea38e9e5cdd3724c73204d703f07b"
6
inherit git-r3
7 7

  
8
DESCRIPTION="Library of common routines intended to be shared"
8
DESCRIPTION="Gnulib is a library of common routines intended to be shared at the source level"
9 9
HOMEPAGE="https://www.gnu.org/software/gnulib"
10
SRC_URI="https://git.savannah.gnu.org/cgit/${PN}.git/snapshot/${PN}-${GIT_TAG}.tar.xz"
11 10

  
11
EGIT_REPO_URI="https://git.savannah.gnu.org/r/${PN}.git"
12 12
LICENSE="GPL-3+ LGPL-2.1+ FDL-1.3+"
13 13
SLOT="0"
14
KEYWORDS="~arm64-macos ~x64-macos ~x64-solaris"
14
KEYWORDS=""
15 15
IUSE="doc"
16 16

  
17
S="${WORKDIR}/${PN}-${GIT_TAG}"
18

  
19 17
src_compile() {
20 18
	if use doc; then
21 19
		emake -C doc info html
Thank you!