From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- profiles/features/multilib/eapi | 1 + profiles/features/multilib/lib32/eapi | 1 + profiles/features/multilib/lib32/make.defaults | 13 +++++++++ profiles/features/multilib/lib32/parent | 1 + profiles/features/multilib/make.defaults | 39 ++++++++++++++++++++++++++ profiles/features/multilib/package.use.force | 8 ++++++ profiles/features/multilib/package.use.mask | 8 ++++++ profiles/features/multilib/use.mask | 9 ++++++ 8 files changed, 80 insertions(+) create mode 100644 profiles/features/multilib/eapi create mode 100644 profiles/features/multilib/lib32/eapi create mode 100644 profiles/features/multilib/lib32/make.defaults create mode 100644 profiles/features/multilib/lib32/parent create mode 100644 profiles/features/multilib/make.defaults create mode 100644 profiles/features/multilib/package.use.force create mode 100644 profiles/features/multilib/package.use.mask create mode 100644 profiles/features/multilib/use.mask (limited to 'profiles/features/multilib') diff --git a/profiles/features/multilib/eapi b/profiles/features/multilib/eapi new file mode 100644 index 000000000000..7ed6ff82de6b --- /dev/null +++ b/profiles/features/multilib/eapi @@ -0,0 +1 @@ +5 diff --git a/profiles/features/multilib/lib32/eapi b/profiles/features/multilib/lib32/eapi new file mode 100644 index 000000000000..7ed6ff82de6b --- /dev/null +++ b/profiles/features/multilib/lib32/eapi @@ -0,0 +1 @@ +5 diff --git a/profiles/features/multilib/lib32/make.defaults b/profiles/features/multilib/lib32/make.defaults new file mode 100644 index 000000000000..b3ab33c98e43 --- /dev/null +++ b/profiles/features/multilib/lib32/make.defaults @@ -0,0 +1,13 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +# Let baselayout create the lib symlink. +SYMLINK_LIB="yes" + +# 32-bit LIBDIR +LIBDIR_ppc="lib32" +LIBDIR_x86="lib32" +LIBDIR_x86_fbsd="lib32" +LIBDIR_sparc32="lib32" +LIBDIR_s390="lib32" diff --git a/profiles/features/multilib/lib32/parent b/profiles/features/multilib/lib32/parent new file mode 100644 index 000000000000..f3229c5b9876 --- /dev/null +++ b/profiles/features/multilib/lib32/parent @@ -0,0 +1 @@ +.. diff --git a/profiles/features/multilib/make.defaults b/profiles/features/multilib/make.defaults new file mode 100644 index 000000000000..72248e2390ef --- /dev/null +++ b/profiles/features/multilib/make.defaults @@ -0,0 +1,39 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +# Jorge Manuel B. S. Vicetto (16 Nov 2011) +# Rename STAGE1_USE to BOOTSTRAP_USE and stack it to the parent value +# This is so we build with multilib from the start +BOOTSTRAP_USE="${BOOTSTRAP_USE} multilib" + +# Default USE=multilib to on. This rarely impact packages as they should be +# using the multilib eclass anyways. #435094 +USE="multilib" + +# FEATURES="multilib-strict" specific settings. +MULTILIB_STRICT_DIRS="/lib32 /lib /usr/lib32 /usr/lib /usr/kde/*/lib32 /usr/kde/*/lib /usr/qt/*/lib32 /usr/qt/*/lib /usr/X11R6/lib32 /usr/X11R6/lib" +MULTILIB_STRICT_DENY="64-bit.*shared object" +MULTILIB_STRICT_EXEMPT="(perl5|gcc|gcc-lib|binutils|eclipse-3|debug|portage|udev|systemd|clang|python-exec)" + +# 64-bit LIBDIR +LIBDIR_amd64="lib64" +LIBDIR_amd64_fbsd="lib64" +LIBDIR_arm64="lib64" +LIBDIR_n64="lib64" # MIPS n64 +LIBDIR_ppc64="lib64" +LIBDIR_s390x="lib64" +LIBDIR_sparc64="lib64" + +# 32-bit LIBDIR +LIBDIR_arm="lib" +LIBDIR_x86="lib" +LIBDIR_x86_fbsd="lib" +LIBDIR_o32="lib" # MIPS o32 +LIBDIR_ppc="lib" +LIBDIR_s390="lib" +LIBDIR_sparc32="lib" + +# Somewhere in-between! +LIBDIR_x32="libx32" # x86-64 x32 +LIBDIR_n32="lib32" # MIPS n32 diff --git a/profiles/features/multilib/package.use.force b/profiles/features/multilib/package.use.force new file mode 100644 index 000000000000..41bce5b8803d --- /dev/null +++ b/profiles/features/multilib/package.use.force @@ -0,0 +1,8 @@ +# Copyright 2004-2014 Gentoo Foundation. +# Distributed under the terms of the GNU General Public License, v2 +# $Id$ + +# These packages must have multilib turned on in order to work sanely. +sys-apps/sandbox multilib +sys-devel/gcc multilib +sys-libs/glibc multilib diff --git a/profiles/features/multilib/package.use.mask b/profiles/features/multilib/package.use.mask new file mode 100644 index 000000000000..1ee6a4ac7bc5 --- /dev/null +++ b/profiles/features/multilib/package.use.mask @@ -0,0 +1,8 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +# Matt Turner (19 Sep 2012) +# multilib requires 32-bit libGL provided by emul-linux-x86-opengl +# but also collides with 32-bit libGLU installed by emul-linux-x86-opengl +media-libs/glu multilib diff --git a/profiles/features/multilib/use.mask b/profiles/features/multilib/use.mask new file mode 100644 index 000000000000..9f5667e1fc80 --- /dev/null +++ b/profiles/features/multilib/use.mask @@ -0,0 +1,9 @@ +# Copyright 2004-2008 Gentoo Foundation. +# Distributed under the terms of the GNU General Public License, v2 +# $Id$ + +# SECTION: Unmask + +# 2008/02/13 - Chris Gianelloni +# Unmask multilib, since we need to use it. +-multilib -- cgit v1.2.3-65-gdbad