Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: virtual/libc/
Date: Tue, 27 Sep 2016 23:56:05
Message-Id: 1475020540.e121d1f54ebf1273e53f719627f28eec7ecf768f.blueness@gentoo
1 commit: e121d1f54ebf1273e53f719627f28eec7ecf768f
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 27 23:55:40 2016 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 27 23:55:40 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e121d1f5
7
8 virtual/libc: prioritize uclibc-ng over uclibc
9
10 Package-Manager: portage-2.2.28
11
12 virtual/libc/libc-1.ebuild | 18 ++++++++++++++++++
13 1 file changed, 18 insertions(+)
14
15 diff --git a/virtual/libc/libc-1.ebuild b/virtual/libc/libc-1.ebuild
16 new file mode 100644
17 index 00000000..23e8ad5
18 --- /dev/null
19 +++ b/virtual/libc/libc-1.ebuild
20 @@ -0,0 +1,18 @@
21 +# Copyright 1999-2016 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=5
26 +
27 +DESCRIPTION="Virtual for the C library"
28 +SLOT="0"
29 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-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 +RDEPEND="!prefix-guest? (
34 + elibc_glibc? ( sys-libs/glibc:2.2 )
35 + elibc_musl? ( sys-libs/musl )
36 + elibc_uclibc? ( || ( sys-libs/uclibc-ng sys-libs/uclibc ) )
37 + elibc_FreeBSD? ( sys-freebsd/freebsd-lib )
38 + )"