Gentoo Archives: gentoo-commits

From: Alon Bar-Lev <alonbl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/crypto++/
Date: Fri, 04 May 2018 19:22:54
Message-Id: 1525461754.b973b43800f3114ed819fc32e3024bc7bbe0c0ed.alonbl@gentoo
1 commit: b973b43800f3114ed819fc32e3024bc7bbe0c0ed
2 Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 4 19:06:41 2018 +0000
4 Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
5 CommitDate: Fri May 4 19:22:34 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b973b438
7
8 dev-libs/crypto++: remove cpu-flag USE
9
10 Closes: https://bugs.gentoo.org/654598
11 Package-Manager: Portage-2.3.24, Repoman-2.3.6
12
13 .../crypto++/{crypto++-7.0.0-r1.ebuild => crypto++-7.0.0-r2.ebuild} | 6 ------
14 1 file changed, 6 deletions(-)
15
16 diff --git a/dev-libs/crypto++/crypto++-7.0.0-r1.ebuild b/dev-libs/crypto++/crypto++-7.0.0-r2.ebuild
17 similarity index 73%
18 rename from dev-libs/crypto++/crypto++-7.0.0-r1.ebuild
19 rename to dev-libs/crypto++/crypto++-7.0.0-r2.ebuild
20 index 850fe2a0c03..24273393bf5 100644
21 --- a/dev-libs/crypto++/crypto++-7.0.0-r1.ebuild
22 +++ b/dev-libs/crypto++/crypto++-7.0.0-r2.ebuild
23 @@ -13,8 +13,6 @@ LICENSE="Boost-1.0"
24 SLOT="0/7" # subslot is so version
25 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x64-macos"
26 IUSE="+asm static-libs"
27 -IUSE_CPU_FLAGS=" aes sse3 sse4_1 sse4_2"
28 -IUSE+=" ${IUSE_CPU_FLAGS// / cpu_flags_x86_}"
29
30 DEPEND="app-arch/unzip"
31
32 @@ -29,10 +27,6 @@ pkg_setup() {
33 src_compile() {
34
35 use asm || append-cxxflags -DCRYPTOPP_DISABLE_ASM
36 - use cpu_flags_x86_aes || append-cxxflags -DCRYPTOPP_DISABLE_AESNI
37 - use cpu_flags_x86_sse3 || append-cxxflags -DCRYPTOPP_DISABLE_SSSE3
38 - use cpu_flags_x86_sse4_1 || append-cxxflags -DCRYPTOPP_DISABLE_SSE4
39 - use cpu_flags_x86_sse4_2 || append-cxxflags -DCRYPTOPP_DISABLE_SSE4
40
41 # ASM isn't Darwin/Mach-O ready, #479554, buildsys doesn't grok CPPFLAGS
42 [[ ${CHOST} == *-darwin* ]] && append-cxxflags -DCRYPTOPP_DISABLE_ASM