Gentoo Archives: gentoo-commits

From: Alexey Shvetsov <alexxy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/glm/
Date: Mon, 08 Apr 2019 16:28:00
Message-Id: 1554740851.4db2df53d8ec073989fc1cd2d3c6e7c384f9c767.alexxy@gentoo
1 commit: 4db2df53d8ec073989fc1cd2d3c6e7c384f9c767
2 Author: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 8 16:27:31 2019 +0000
4 Commit: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 8 16:27:31 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4db2df53
7
8 media-libs/glm: Drop buggy version
9
10 Has compatibility issues. Fixed in .4 version
11 https://github.com/g-truc/glm/issues/851
12
13 Package-Manager: Portage-2.3.62, Repoman-2.3.12
14 Signed-off-by: Alexey Shvetsov <alexxy <AT> gentoo.org>
15
16 media-libs/glm/Manifest | 1 -
17 media-libs/glm/glm-0.9.9.3.ebuild | 31 -------------------------------
18 2 files changed, 32 deletions(-)
19
20 diff --git a/media-libs/glm/Manifest b/media-libs/glm/Manifest
21 index e57346a546b..5a8a8c49456 100644
22 --- a/media-libs/glm/Manifest
23 +++ b/media-libs/glm/Manifest
24 @@ -1,3 +1,2 @@
25 DIST glm-0.9.9.2.tar.gz 4572279 BLAKE2B 8b9ade542989b3f73f1a80403b73b5c04c5d64ae259891a6b41564eb7b4417876d527ea8440352f2feec6480ec926ca877a4849c4e75c6ece3692d24d87c942a SHA512 80a5fbeaaea5f1034cd6f8ad3f4daf8b5fa8d9410ccce15ced20f37e24c0f6083332fde82b1fa7357399b3e37c1a31dd3a14f257b7847a5f1ddefa627b50351a
26 -DIST glm-0.9.9.3.tar.gz 4577239 BLAKE2B 167312e95a43417dba59481b1d45976d9249af9fda9ebb6d0ec598e706bc2469b8c0928877683d47335e0c55ee881a20c1c7f648dd77e183880f7c2792bd5277 SHA512 44152ea6438763feda3b78813287fd59d3574a9630a41647a157825bf5ce4a18fbbecae5a5ccd94acc118ed3d42cbce53d3a67f25632d0c00ab77e7de2bb4650
27 DIST glm-0.9.9.4.tar.gz 4578404 BLAKE2B 4c0bb64bb477ca46d45b4d25d7d992a39a82a7d745d4564dfac04c7f6e31ea0741b33d2d6c7832580e6f51f62a2efe269a9601c10d87f1e68b333e71e20c3d02 SHA512 50e4784fcd5f1da4ae27830948ffe4b412ec53447b89d30c6dcc2b4e0f9ec05cca4b07461d3d8a339eb103fae8dac325fabc87607b5397122ce2021d6e15a1a1
28
29 diff --git a/media-libs/glm/glm-0.9.9.3.ebuild b/media-libs/glm/glm-0.9.9.3.ebuild
30 deleted file mode 100644
31 index 6d61f3165de..00000000000
32 --- a/media-libs/glm/glm-0.9.9.3.ebuild
33 +++ /dev/null
34 @@ -1,31 +0,0 @@
35 -# Copyright 1999-2018 Gentoo Authors
36 -# Distributed under the terms of the GNU General Public License v2
37 -
38 -EAPI=6
39 -
40 -inherit cmake-utils
41 -
42 -DESCRIPTION="OpenGL Mathematics"
43 -HOMEPAGE="http://glm.g-truc.net/"
44 -SRC_URI="https://github.com/g-truc/glm/archive/${PV}.tar.gz -> ${P}.tar.gz"
45 -
46 -LICENSE="|| ( HappyBunny MIT )"
47 -SLOT="0"
48 -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
49 -IUSE="test cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_avx cpu_flags_x86_avx2"
50 -
51 -RDEPEND="virtual/opengl"
52 -
53 -src_configure() {
54 - if use test; then
55 - local mycmakeargs=(
56 - -DGLM_TEST_ENABLE=ON
57 - -DGLM_TEST_ENABLE_SIMD_SSE2="$(usex cpu_flags_x86_sse2 ON OFF)"
58 - -DGLM_TEST_ENABLE_SIMD_SSE3="$(usex cpu_flags_x86_sse3 ON OFF)"
59 - -DGLM_TEST_ENABLE_SIMD_AVX="$(usex cpu_flags_x86_avx ON OFF)"
60 - -DGLM_TEST_ENABLE_SIMD_AVX2="$(usex cpu_flags_x86_avx2 ON OFF)"
61 - )
62 - fi
63 -
64 - cmake-utils_src_configure
65 -}