Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: virtual/libc/
Date: Wed, 01 Apr 2020 21:14:26
Message-Id: 1585775650.3fb8b72d261cb84c00da3146e191676ec67e0b28.slyfox@gentoo
1 commit: 3fb8b72d261cb84c00da3146e191676ec67e0b28
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 1 21:06:40 2020 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 1 21:14:10 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fb8b72d
7
8 virtual/libc: update to EAPI=7
9
10 Package-Manager: Portage-2.3.96, Repoman-2.3.22
11 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
12
13 virtual/libc/libc-1-r1.ebuild | 25 +++++++++++++++++++++++++
14 1 file changed, 25 insertions(+)
15
16 diff --git a/virtual/libc/libc-1-r1.ebuild b/virtual/libc/libc-1-r1.ebuild
17 new file mode 100644
18 index 00000000000..61b2be760b5
19 --- /dev/null
20 +++ b/virtual/libc/libc-1-r1.ebuild
21 @@ -0,0 +1,25 @@
22 +# Copyright 1999-2020 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +DESCRIPTION="Virtual for the C library"
28 +SLOT="0"
29 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
30 +
31 +# explicitly depend on SLOT 2.2 of glibc, because it sets
32 +# a different SLOT for cross-compiling
33 +# Cygwin uses newlib, which lacks libcrypt
34 +RDEPEND="!prefix-guest? (
35 + elibc_glibc? ( sys-libs/glibc:2.2 )
36 + elibc_musl? ( sys-libs/musl )
37 + elibc_uclibc? ( sys-libs/uclibc-ng )
38 + )
39 + prefix-guest? (
40 + elibc_Cygwin? ( sys-libs/cygwin-crypt )
41 + !sys-libs/glibc
42 + !sys-libs/musl
43 + !sys-libs/uclibc-ng
44 + !sys-libs/uclibc
45 + !sys-freebsd/freebsd-lib
46 + )"