[gentoo-commits] repo/gentoo:master commit in: profiles/default/linux/uclibc/amd64/, profiles/, ...

2018-12-13 Thread Anthony G. Basile
commit: a1d57444115bef5767e7f65682bb59f4d0864326
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Thu Dec 13 15:34:05 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Thu Dec 13 15:35:51 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1d57444

profiles: deprecate old amd64 uclibc profiles

Signed-off-by: Anthony G. Basile  gentoo.org>

 profiles/default/linux/uclibc/amd64/deprecated  | 1 +
 profiles/hardened/linux/uclibc/amd64/deprecated | 1 +
 profiles/profiles.desc  | 2 --
 3 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/profiles/default/linux/uclibc/amd64/deprecated 
b/profiles/default/linux/uclibc/amd64/deprecated
new file mode 100644
index 000..8a945baef61
--- /dev/null
+++ b/profiles/default/linux/uclibc/amd64/deprecated
@@ -0,0 +1 @@
+default/linux/amd64/17.0/uclibc

diff --git a/profiles/hardened/linux/uclibc/amd64/deprecated 
b/profiles/hardened/linux/uclibc/amd64/deprecated
new file mode 100644
index 000..b5528b4811c
--- /dev/null
+++ b/profiles/hardened/linux/uclibc/amd64/deprecated
@@ -0,0 +1 @@
+default/linux/amd64/17.0/uclibc/hardened

diff --git a/profiles/profiles.desc b/profiles/profiles.desc
index 1af3d3b3d7f..c94c61e9df9 100644
--- a/profiles/profiles.desc
+++ b/profiles/profiles.desc
@@ -339,8 +339,6 @@ x86 default/linux/x86/17.0/musl/selinux 
exp
 
 # Non-embedded uclibc profiles
 # @MAINTAINER: ucl...@gentoo.org
-amd64  default/linux/uclibc/amd64  exp
-amd64  hardened/linux/uclibc/amd64 exp
 amd64  default/linux/amd64/17.0/uclibc exp
 amd64  default/linux/amd64/17.0/uclibc/hardenedexp
 armdefault/linux/uclibc/arm/armv7a exp



[gentoo-commits] repo/gentoo:master commit in: profiles/default/linux/uclibc/amd64/, profiles/arch/amd64/no-multilib/, ...

2018-07-28 Thread Michał Górny
commit: d257e92ba64033f18de25e516b6beb8dd5fe06b6
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jul 28 11:42:32 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jul 28 11:44:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d257e92b

games-strategy/heroes3-demo: Remove last-rited pkg

Closes: https://bugs.gentoo.org/654650

 games-strategy/heroes3-demo/Manifest   |  1 -
 .../heroes3-demo/heroes3-demo-1.3.1a.ebuild| 65 --
 games-strategy/heroes3-demo/metadata.xml   |  8 ---
 profiles/arch/amd64/no-multilib/package.mask   |  1 -
 profiles/default/linux/uclibc/amd64/package.mask   |  3 +-
 .../hardened/linux/amd64/no-multilib/package.mask  |  1 -
 profiles/package.mask  |  5 --
 7 files changed, 1 insertion(+), 83 deletions(-)

diff --git a/games-strategy/heroes3-demo/Manifest 
b/games-strategy/heroes3-demo/Manifest
deleted file mode 100644
index d0162416876..000
--- a/games-strategy/heroes3-demo/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST heroes3-demo.run 99026773 BLAKE2B 
48963111c1f076acc2eb3f34a3b86d64943777ea76e8fba09f883bdfe4b89c4daa07e9e5dc584f2a11adda957869728c0806726ef21c6ff82843605e32e34ab7
 SHA512 
a3f60f12f7ce8ea0f160ec211e1f077693ff2f5e4b8b85ae0e31f1230a910b4df7c8c6a340762d4f09c9845d6141d235307f933305557a75fc63f409e077ac71

diff --git a/games-strategy/heroes3-demo/heroes3-demo-1.3.1a.ebuild 
b/games-strategy/heroes3-demo/heroes3-demo-1.3.1a.ebuild
deleted file mode 100644
index d20f909b2cb..000
--- a/games-strategy/heroes3-demo/heroes3-demo-1.3.1a.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils unpacker games
-
-MY_PN=${PN%-demo}
-
-DESCRIPTION="turn-based 2D medieval combat"
-HOMEPAGE="http://www.lokigames.com/products/heroes3/;
-SRC_URI="mirror://lokigames/loki_demos/${PN}.run"
-
-LICENSE="all-rights-reserved"
-SLOT="0"
-# Should also work on ppc
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-RESTRICT="mirror bindist strip"
-
-DEPEND="games-util/loki_patch"
-RDEPEND=">=sys-libs/lib-compat-loki-0.2
-   || (
-   ppc? (
-   x11-libs/libX11
-   )
-   !ppc? (
-   x11-libs/libX11[abi_x86_32(-)]
-   )
-   )"
-
-dir=${GAMES_PREFIX_OPT}/${PN}
-QA_PREBUILT="${dir:1}/*"
-
-S=${WORKDIR}
-
-src_install() {
-   # Apply patch
-   loki_patch patch.dat data/ || die
-
-   local demo="data/demos/${MY_PN}_demo"
-
-   local exe_stub="${MY_PN}_demo"
-   if use ppc ; then
-   exe="${exe_stub}.ppc"
-   else
-   exe="${exe_stub}.x86"
-   fi
-
-   insinto "${dir}"
-   exeinto "${dir}"
-   doins -r "${demo}"/*
-   rm "${D}/${dir}"/{${exe_stub}*,*.sh} || die
-   doexe "${demo}/${exe}"
-
-   einfo "Linking libs provided by 'sys-libs/lib-compat-loki' to '${dir}'."
-   dosym /lib/loki_ld-linux.so.2 "${dir}"/ld-linux.so.2
-   dosym /usr/lib/loki_libc.so.6 "${dir}"/libc.so.6
-   dosym /usr/lib/loki_libnss_files.so.2 "${dir}"/libnss_files.so.2
-
-   games_make_wrapper ${PN} "./${exe}" "${dir}"
-   newicon "${demo}/icon.xpm" ${PN}.png
-   make_desktop_entry ${PN} "Heroes of Might and Magic III (Demo)" ${PN}
-
-   prepgamesdirs
-}

diff --git a/games-strategy/heroes3-demo/metadata.xml 
b/games-strategy/heroes3-demo/metadata.xml
deleted file mode 100644
index 78274e0fa55..000
--- a/games-strategy/heroes3-demo/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-
-   ga...@gentoo.org
-   Gentoo Games Project
-
-

diff --git a/profiles/arch/amd64/no-multilib/package.mask 
b/profiles/arch/amd64/no-multilib/package.mask
index bbcccdd6586..234aec7ab9a 100644
--- a/profiles/arch/amd64/no-multilib/package.mask
+++ b/profiles/arch/amd64/no-multilib/package.mask
@@ -132,7 +132,6 @@ games-strategy/darwinia-demo
 games-strategy/defcon-demo
 games-strategy/dominions2
 games-strategy/heroes3
-games-strategy/heroes3-demo
 games-strategy/knights-demo
 games-strategy/majesty-demo
 games-strategy/smac

diff --git a/profiles/default/linux/uclibc/amd64/package.mask 
b/profiles/default/linux/uclibc/amd64/package.mask
index 6c805c2936e..830ad9d325e 100644
--- a/profiles/default/linux/uclibc/amd64/package.mask
+++ b/profiles/default/linux/uclibc/amd64/package.mask
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 # AMD64 Team 
@@ -97,7 +97,6 @@ games-strategy/darwinia-demo
 games-strategy/defcon-demo
 games-strategy/dominions2
 games-strategy/heroes3
-games-strategy/heroes3-demo
 games-strategy/majesty-demo
 games-strategy/smac
 games-strategy/spaz

diff --git a/profiles/hardened/linux/amd64/no-multilib/package.mask 

[gentoo-commits] repo/gentoo:master commit in: profiles/default/linux/uclibc/amd64/, profiles/, ...

2017-11-13 Thread Austin English
commit: 552f9369dca83401c226534390ddcf6a4ca8c64a
Author: Austin English  gentoo  org>
AuthorDate: Tue Nov 14 00:22:32 2017 +
Commit: Austin English  gentoo  org>
CommitDate: Tue Nov 14 00:38:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=552f9369

profiles/package.mask: remove last-rited pkg

Signed-off-by: Austin English  gentoo.org>

 profiles/arch/amd64/no-multilib/package.mask   |  8 
 profiles/default/linux/uclibc/amd64/package.mask   |  8 
 profiles/default/linux/uclibc/package.mask |  1 -
 profiles/hardened/linux/amd64/no-multilib/package.mask |  8 
 profiles/hardened/linux/musl/package.mask  |  1 -
 profiles/package.mask  | 13 -
 6 files changed, 39 deletions(-)

diff --git a/profiles/arch/amd64/no-multilib/package.mask 
b/profiles/arch/amd64/no-multilib/package.mask
index 2eedb72cc02..4ac7cc1d55f 100644
--- a/profiles/arch/amd64/no-multilib/package.mask
+++ b/profiles/arch/amd64/no-multilib/package.mask
@@ -120,14 +120,6 @@ games-rpg/baldurs-gate-ee
 games-rpg/dear-esther
 games-rpg/dungeon-defenders
 games-rpg/eschalon-book-1-demo
-games-rpg/nwmouse
-games-rpg/nwmovies
-games-rpg/nwn
-games-rpg/nwn-cep
-games-rpg/nwn-data
-games-rpg/nwn-penultima
-games-rpg/nwn-penultimarerolled
-games-rpg/nwn-shadowlordsdreamcatcherdemon
 games-rpg/penumbra-collection
 games-rpg/wasteland2
 games-server/etqw-ded

diff --git a/profiles/default/linux/uclibc/amd64/package.mask 
b/profiles/default/linux/uclibc/amd64/package.mask
index 4a5b04f53b7..0c19d60a460 100644
--- a/profiles/default/linux/uclibc/amd64/package.mask
+++ b/profiles/default/linux/uclibc/amd64/package.mask
@@ -91,14 +91,6 @@ games-fps/ut2004-demo
 games-puzzle/hoh-bin
 games-roguelike/adom
 games-rpg/eschalon-book-1-demo
-games-rpg/nwmouse
-games-rpg/nwmovies
-games-rpg/nwn
-games-rpg/nwn-cep
-games-rpg/nwn-data
-games-rpg/nwn-penultima
-games-rpg/nwn-penultimarerolled
-games-rpg/nwn-shadowlordsdreamcatcherdemon
 games-rpg/penumbra-collection
 games-server/etqw-ded
 games-server/nwn-ded

diff --git a/profiles/default/linux/uclibc/package.mask 
b/profiles/default/linux/uclibc/package.mask
index 686411a2734..b257ae14c4f 100644
--- a/profiles/default/linux/uclibc/package.mask
+++ b/profiles/default/linux/uclibc/package.mask
@@ -56,7 +56,6 @@ games-fps/ut2004-troopers
 games-fps/ut2004-unwheel
 games-puzzle/world-of-goo
 games-puzzle/world-of-goo-demo
-games-rpg/nwmouse
 games-rpg/wasteland2
 games-server/etqw-ded
 games-server/ut2004-ded

diff --git a/profiles/hardened/linux/amd64/no-multilib/package.mask 
b/profiles/hardened/linux/amd64/no-multilib/package.mask
index 342edcab543..f99dca5254d 100644
--- a/profiles/hardened/linux/amd64/no-multilib/package.mask
+++ b/profiles/hardened/linux/amd64/no-multilib/package.mask
@@ -115,14 +115,6 @@ games-roguelike/adom
 games-rpg/baldurs-gate-ee
 games-rpg/dear-esther
 games-rpg/eschalon-book-1-demo
-games-rpg/nwmouse
-games-rpg/nwmovies
-games-rpg/nwn
-games-rpg/nwn-cep
-games-rpg/nwn-data
-games-rpg/nwn-penultima
-games-rpg/nwn-penultimarerolled
-games-rpg/nwn-shadowlordsdreamcatcherdemon
 games-server/etqw-ded
 games-server/nwn-ded
 games-server/ut2003-ded

diff --git a/profiles/hardened/linux/musl/package.mask 
b/profiles/hardened/linux/musl/package.mask
index b636d3295bb..0a53545f761 100644
--- a/profiles/hardened/linux/musl/package.mask
+++ b/profiles/hardened/linux/musl/package.mask
@@ -89,7 +89,6 @@ games-roguelike/adom
 games-rpg/dear-esther
 games-rpg/dungeon-defenders
 games-rpg/eschalon-book-1-demo
-games-rpg/nwmouse
 games-rpg/penumbra-collection
 games-rpg/wasteland2
 games-server/etqw-ded

diff --git a/profiles/package.mask b/profiles/package.mask
index a2e3039dfb2..b97a9733e65 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -394,19 +394,6 @@ app-editors/atom:beta
 # time being.
 >=dev-java/javatoolkit-0.6.0
 
-# Austin English  (05 Sep 2017)
-# Download has been broken for nearly a year, no alternative found
-# Bug: https://bugs.gentoo.org/599390
-# Removal in 30 days
-games-rpg/nwmouse
-games-rpg/nwmovies
-games-rpg/nwn
-games-rpg/nwn-cep
-games-rpg/nwn-data
-games-rpg/nwn-penultima
-games-rpg/nwn-penultimarerolled
-games-rpg/nwn-shadowlordsdreamcatcherdemon
-
 # Gilles Dartiguelongue  (04 Sep 2017)
 # Incompatible changes in API in Enchant 2. Bug #629838.
 >=app-text/enchant-2



[gentoo-commits] repo/gentoo:master commit in: profiles/default/linux/uclibc/amd64/, profiles/hardened/linux/amd64/no-multilib/, ...

2017-08-14 Thread Michał Górny
commit: 668ec1f0924a56d76d4ce1e82711837e5ec83c73
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Aug 14 21:31:51 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Aug 14 21:39:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=668ec1f0

sci-chemistry/icm: Remove last-rited pkg, #622414

 profiles/arch/amd64/no-multilib/package.mask   |   1 -
 profiles/default/linux/uclibc/amd64/package.mask   |   1 -
 .../hardened/linux/amd64/no-multilib/package.mask  |   1 -
 profiles/package.mask  |   5 -
 sci-chemistry/icm/Manifest |   2 -
 sci-chemistry/icm/files/90icm  |   3 -
 sci-chemistry/icm/files/icm.xpm| 326 -
 sci-chemistry/icm/icm-3.7.2e.ebuild| 138 -
 sci-chemistry/icm/icm-3.7.3b.ebuild| 138 -
 sci-chemistry/icm/metadata.xml |  12 -
 10 files changed, 627 deletions(-)

diff --git a/profiles/arch/amd64/no-multilib/package.mask 
b/profiles/arch/amd64/no-multilib/package.mask
index 623db0cafba..2eedb72cc02 100644
--- a/profiles/arch/amd64/no-multilib/package.mask
+++ b/profiles/arch/amd64/no-multilib/package.mask
@@ -158,7 +158,6 @@ net-print/cndrvcups-lb
 sci-biology/foldingathome
 sci-chemistry/cara-bin
 sci-chemistry/cyana
-sci-chemistry/icm
 sci-chemistry/mars
 sci-electronics/eagle
 sci-libs/ipp

diff --git a/profiles/default/linux/uclibc/amd64/package.mask 
b/profiles/default/linux/uclibc/amd64/package.mask
index dd83eb7521a..4a5b04f53b7 100644
--- a/profiles/default/linux/uclibc/amd64/package.mask
+++ b/profiles/default/linux/uclibc/amd64/package.mask
@@ -127,7 +127,6 @@ sci-biology/foldingathome
 sci-electronics/eagle
 sci-chemistry/cara-bin
 sci-chemistry/cyana
-sci-chemistry/icm
 sci-chemistry/mars
 sci-libs/ipp
 sys-libs/lib-compat-loki

diff --git a/profiles/hardened/linux/amd64/no-multilib/package.mask 
b/profiles/hardened/linux/amd64/no-multilib/package.mask
index 57156db7e47..342edcab543 100644
--- a/profiles/hardened/linux/amd64/no-multilib/package.mask
+++ b/profiles/hardened/linux/amd64/no-multilib/package.mask
@@ -152,7 +152,6 @@ sci-biology/foldingathome
 sci-electronics/eagle
 sci-chemistry/cara-bin
 sci-chemistry/cyana
-sci-chemistry/icm
 sci-chemistry/mars
 sci-chemistry/xdsgui
 sci-chemistry/xdsstat-bin

diff --git a/profiles/package.mask b/profiles/package.mask
index 1b24e7ff9e9..2213a2b0943 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -239,11 +239,6 @@ media-gfx/autotrace
 app-mobilephone/esms
 
 # Pacho Ramos  (14 Jul 2017)
-# Proprietary software, fetch restricted, not actively maintained, needs to
-# be updated, with multiple QA issues, bug #622414. Removal in a month.
-sci-chemistry/icm
-
-# Pacho Ramos  (14 Jul 2017)
 # Doesn't work with >=openvpn-2.3, bug 470696
 # Fix is work in progress, see above bug. dilfridge@g.o
 net-vpn/kvpnc

diff --git a/sci-chemistry/icm/Manifest b/sci-chemistry/icm/Manifest
deleted file mode 100644
index 3ccc244f135..000
--- a/sci-chemistry/icm/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST icm-3.7-2e-linux.sh 345626160 SHA256 
89e2db76b6dbe0b5305e7e5dd67c43c3850924eb238373288151083af0cf SHA512 
996955f70f24605d705e9ce44397b26306808c8f6742ac38d7b0926c0df11ad678d365c3b25926765a286c20be9ea5f27acba25fa6281f4222ac7859e3593b77
 WHIRLPOOL 
16d0205fbf2dc72db1d36a537ee43778b4b597ec103497cad146c935b7ed1c3bde1eaed76afa41554504b899f8f5c3ec72e958d4de3c5f29526a05a9f278ab85
-DIST icm-3.7-3b-linux.sh 361208642 SHA256 
8dbdf3d0c56ede2d60eb0c32928c6194ed606898c0335a5ffa79c1d33c2d3195 SHA512 
b2865623db3acc7b3cf81eceaacd0cacb540b402935a5cd5c1d52efec1cadb243f033f2331cd12748d92b493fd2872bb840068239a3776123904c68d6f19efa2
 WHIRLPOOL 
48161846010d6fdf58fecda2a330295dee334a20bfe94f3096c4d0bd19e2c2dc115a4b3116162d0ea5f694e8d53fe0c881df2845ac72b2f27c209d1f92ea8a8b

diff --git a/sci-chemistry/icm/files/90icm b/sci-chemistry/icm/files/90icm
deleted file mode 100644
index ce8966c406c..000
--- a/sci-chemistry/icm/files/90icm
+++ /dev/null
@@ -1,3 +0,0 @@
-ICMHOME=/opt/icm
-LM_LICENSE_FILE=/opt/icm/licenses/license.dat
-MANPATH=/opt/icm/man

diff --git a/sci-chemistry/icm/files/icm.xpm b/sci-chemistry/icm/files/icm.xpm
deleted file mode 100644
index fd6e1ed3e2e..000
--- a/sci-chemistry/icm/files/icm.xpm
+++ /dev/null
@@ -1,326 +0,0 @@
-/* XPM */
-static char *icm[] = {
-/* columns rows colors chars-per-pixel */
-"63 64 256 2 ",
-"   c #7C0E13",
-".  c #6C171B",
-"X  c #5F3B3A",
-"o  c #663436",
-"O  c #5C554F",
-"+  c #6E756A",
-"@  c #90090F",
-"#  c #B70003",
-"$  c #AD0C11",
-"%  c #8A2B2D",
-"&  c #A02C2E",
-"*  c #C90104",
-"=  c #DD050B",
-"-  c #E30309",
-";  c #F2181A",
-":  c #E71014",
-">  c #85605A",
-",  c #837468",
-"<  c #976263",
-"1  c #6D837A",
-"2  c #003EA9",
-"3  c #053CB8",
-"4  c #002EB9",
-"5  c #0044AC",
-"6  c #024BAC",
-"7  c #0045A6",
-"8  

[gentoo-commits] repo/gentoo:master commit in: profiles/default/linux/uclibc/amd64/, profiles/default/linux/uclibc/ppc/, ...

2015-10-25 Thread Anthony G. Basile
commit: b25e71c8ac306b925de9bca11bdb9c6cf622c03a
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Oct 26 03:14:21 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Oct 26 03:14:21 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b25e71c8

profiles: quote some variables in default/linux/uclibc

 profiles/default/linux/uclibc/amd64/make.defaults   | 2 +-
 profiles/default/linux/uclibc/mips/make.defaults| 2 +-
 profiles/default/linux/uclibc/mips/mipsel/make.defaults | 2 +-
 profiles/default/linux/uclibc/ppc/make.defaults | 2 +-
 profiles/default/linux/uclibc/x86/make.defaults | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/profiles/default/linux/uclibc/amd64/make.defaults 
b/profiles/default/linux/uclibc/amd64/make.defaults
index 3e8b3eb..5170460 100644
--- a/profiles/default/linux/uclibc/amd64/make.defaults
+++ b/profiles/default/linux/uclibc/amd64/make.defaults
@@ -16,7 +16,7 @@ FCFLAGS="${CFLAGS}"
 ABI="amd64"
 DEFAULT_ABI="amd64"
 MULTILIB_ABIS="amd64"
-CHOST_amd64=${CHOST}
+CHOST_amd64="${CHOST}"
 LIBDIR_amd64="lib"
 IUSE_IMPLICIT="abi_x86_64"
 

diff --git a/profiles/default/linux/uclibc/mips/make.defaults 
b/profiles/default/linux/uclibc/mips/make.defaults
index 83ecdce..1a0e930 100644
--- a/profiles/default/linux/uclibc/mips/make.defaults
+++ b/profiles/default/linux/uclibc/mips/make.defaults
@@ -16,6 +16,6 @@ FCFLAGS="${CFLAGS}"
 ABI="o32"
 DEFAULT_ABI="o32"
 MULTILIB_ABIS="o32"
-CHOST_o32=${CHOST}
+CHOST_o32="${CHOST}"
 LIBDIR_o32="lib"
 IUSE_IMPLICIT="abi_mips_o32"

diff --git a/profiles/default/linux/uclibc/mips/mipsel/make.defaults 
b/profiles/default/linux/uclibc/mips/mipsel/make.defaults
index 6355202..cfb232d 100644
--- a/profiles/default/linux/uclibc/mips/mipsel/make.defaults
+++ b/profiles/default/linux/uclibc/mips/mipsel/make.defaults
@@ -3,4 +3,4 @@
 # $Id$
 
 CHOST="mipsel-gentoo-linux-uclibc"
-CHOST_o32=${CHOST}
+CHOST_o32="${CHOST}"

diff --git a/profiles/default/linux/uclibc/ppc/make.defaults 
b/profiles/default/linux/uclibc/ppc/make.defaults
index 2610601..1ffb33c 100644
--- a/profiles/default/linux/uclibc/ppc/make.defaults
+++ b/profiles/default/linux/uclibc/ppc/make.defaults
@@ -16,6 +16,6 @@ FCFLAGS="${CFLAGS}"
 ABI="ppc"
 DEFAULT_ABI="ppc"
 MULTILIB_ABIS="ppc"
-CHOST_ppc=${CHOST}
+CHOST_ppc="${CHOST}"
 LIBDIR_ppc="lib"
 IUSE_IMPLICIT="abi_ppc_32"

diff --git a/profiles/default/linux/uclibc/x86/make.defaults 
b/profiles/default/linux/uclibc/x86/make.defaults
index 0773843..17f8085 100644
--- a/profiles/default/linux/uclibc/x86/make.defaults
+++ b/profiles/default/linux/uclibc/x86/make.defaults
@@ -16,7 +16,7 @@ FCFLAGS="${CFLAGS}"
 ABI="x86"
 DEFAULT_ABI="x86"
 MULTILIB_ABIS="x86"
-CHOST_x86=${CHOST}
+CHOST_x86="${CHOST}"
 LIBDIR_x86="lib"
 IUSE_IMPLICIT="abi_x86_32"
 



[gentoo-commits] repo/gentoo:master commit in: profiles/default/linux/uclibc/amd64/, profiles/hardened/linux/amd64/no-multilib/, ...

2015-09-18 Thread Andreas Hüttel
commit: 202c3ed851d76532606f197d2b969d8410acb43f
Author: Andreas K. Huettel (dilfridge)  gentoo  org>
AuthorDate: Fri Sep 18 23:54:54 2015 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri Sep 18 23:54:54 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=202c3ed8

profiles: Unmask vmware-player on no-multilib profiles, bug 340054

 profiles/arch/amd64/no-multilib/package.mask   | 1 -
 profiles/default/linux/uclibc/amd64/package.mask   | 1 -
 profiles/hardened/linux/amd64/no-multilib/package.mask | 1 -
 3 files changed, 3 deletions(-)

diff --git a/profiles/arch/amd64/no-multilib/package.mask 
b/profiles/arch/amd64/no-multilib/package.mask
index 167964d..f8b7fff 100644
--- a/profiles/arch/amd64/no-multilib/package.mask
+++ b/profiles/arch/amd64/no-multilib/package.mask
@@ -14,7 +14,6 @@ app-emulation/crossover-office-bin
 app-emulation/crossover-office-pro-bin
 app-emulation/playonlinux
 app-emulation/q4wine
-app-emulation/vmware-player
 >=app-i18n/atokx3-3.0.0
 app-office/ooextras
 app-emulation/winetricks

diff --git a/profiles/default/linux/uclibc/amd64/package.mask 
b/profiles/default/linux/uclibc/amd64/package.mask
index 2d7c2e2..314b9f4 100644
--- a/profiles/default/linux/uclibc/amd64/package.mask
+++ b/profiles/default/linux/uclibc/amd64/package.mask
@@ -17,7 +17,6 @@ app-emulation/q4wine
 app-emulation/virtualbox
 app-emulation/virtualbox-extpack-oracle
 app-emulation/virtualbox-guest-additions
-app-emulation/vmware-player
 >=app-i18n/atokx3-3.0.0
 app-office/lotus-notes
 app-office/ooextras

diff --git a/profiles/hardened/linux/amd64/no-multilib/package.mask 
b/profiles/hardened/linux/amd64/no-multilib/package.mask
index 2fd3ac1..5d72de9 100644
--- a/profiles/hardened/linux/amd64/no-multilib/package.mask
+++ b/profiles/hardened/linux/amd64/no-multilib/package.mask
@@ -31,7 +31,6 @@ app-emulation/crossover-office-bin
 app-emulation/crossover-office-pro-bin
 app-emulation/playonlinux
 app-emulation/q4wine
-app-emulation/vmware-player
 >=app-i18n/atokx3-3.0.0
 app-office/ooextras
 app-emulation/winetricks



[gentoo-commits] repo/gentoo:master commit in: profiles/default/linux/uclibc/amd64/, profiles/hardened/linux/musl/amd64/

2015-08-31 Thread Anthony G. Basile
commit: 36ff928926951d85c68c44362f91a85ee96a2c75
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Aug 31 17:45:04 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Aug 31 17:46:10 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36ff9289

profiles: CPU_FLAGS_X86 for uclibc and musl should reflect arch/amd64

 profiles/default/linux/uclibc/amd64/make.defaults | 4 
 profiles/hardened/linux/musl/amd64/make.defaults  | 4 
 2 files changed, 8 insertions(+)

diff --git a/profiles/default/linux/uclibc/amd64/make.defaults 
b/profiles/default/linux/uclibc/amd64/make.defaults
index 94caf16..3e8b3eb 100644
--- a/profiles/default/linux/uclibc/amd64/make.defaults
+++ b/profiles/default/linux/uclibc/amd64/make.defaults
@@ -20,6 +20,10 @@ CHOST_amd64=${CHOST}
 LIBDIR_amd64="lib"
 IUSE_IMPLICIT="abi_x86_64"
 
+# Anthony G. Basile  (31 Aug 2015)
+# Relect these flags from arch/amd64 which we don't inherit
+CPU_FLAGS_X86="mmx mmxext sse sse2"
+
 # Anthony G. Basile  (26 Jan 2013)
 # Unhide the CPU_FLAGS_X86 USE_EXPANDs.
 USE_EXPAND_HIDDEN="-CPU_FLAGS_X86"

diff --git a/profiles/hardened/linux/musl/amd64/make.defaults 
b/profiles/hardened/linux/musl/amd64/make.defaults
index 29634fd..ee429b6 100644
--- a/profiles/hardened/linux/musl/amd64/make.defaults
+++ b/profiles/hardened/linux/musl/amd64/make.defaults
@@ -20,6 +20,10 @@ CHOST_amd64=${CHOST}
 LIBDIR_amd64="lib"
 IUSE_IMPLICIT="abi_x86_64"
 
+# Anthony G. Basile  (31 Aug 2015)
+# Relect these flags from arch/amd64 which we don't inherit
+CPU_FLAGS_X86="mmx mmxext sse sse2"
+
 # Anthony G. Basile  (26 Jan 2013)
 # Unhide the CPU_FLAGS_X86 USE_EXPANDs.
 USE_EXPAND_HIDDEN="-CPU_FLAGS_X86"