Gentoo Archives: gentoo-commits

From: Alfredo Tupone <tupone@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/glm/
Date: Fri, 29 Oct 2021 19:39:57
Message-Id: 1635536383.2845ab331f93763cbd52e3a575c5a424e96fd931.tupone@gentoo
1 commit: 2845ab331f93763cbd52e3a575c5a424e96fd931
2 Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 29 19:39:17 2021 +0000
4 Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 29 19:39:43 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2845ab33
7
8 media-libs/glm: drop old version
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
12
13 media-libs/glm/Manifest | 1 -
14 media-libs/glm/glm-0.9.9.5.ebuild | 32 --------------------------------
15 2 files changed, 33 deletions(-)
16
17 diff --git a/media-libs/glm/Manifest b/media-libs/glm/Manifest
18 index e165587e7d2..1c55b37d8d8 100644
19 --- a/media-libs/glm/Manifest
20 +++ b/media-libs/glm/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST glm-0.9.9.5.tar.gz 4578601 BLAKE2B 9ce4dc7e638a651f958e2e0e1bfa0da121aefc382579838bfd810952bb8f4253e17caa6d743de713c86a4e8bd5f1afa38f8162e5f2d98ab141d94574d1103d40 SHA512 3b329acf5144aab1c0f47f8045d34e097699bd6685118ad8322c5ce23afdcb44ba2bb07e49301db06355b8eef7d4340b72251d55e113b533740d1e6ef6609911
23 DIST glm-0.9.9.7.tar.gz 4357077 BLAKE2B 59746a8775e0fc20fe8a8c3ae01c48841066d6092ce3cd7fa93bbf29f5247c42645bc920a3dbf3f0b4b61eb1e47f46514d9cd98c4e6df133ced0072ba6a570ee SHA512 9c557788d6382777317c94f8b30bc3df7e533877705514fa5d384f97b076d6bc750e841acbecdec8113e21af07bd8850159f5f1e079aaa2cde25540b480f983b
24 DIST glm-0.9.9.8.tar.gz 4368032 BLAKE2B 41e4d4a9fbd75c6c6717e43b6a6ae09bb7da3b4b2ee7c5b04308f3aa875b306638b638aca3e457c039845c489fcf0716a080ec2166bf5e9db93c25944f4ba81a SHA512 9484b0c12175414237c5b9486a2990099b1cb727e442f25ecda18b081aa661f7e92a44481f642989553cd3da7992a773441ee5688991bd539ce19fb66a5ce9e8
25
26 diff --git a/media-libs/glm/glm-0.9.9.5.ebuild b/media-libs/glm/glm-0.9.9.5.ebuild
27 deleted file mode 100644
28 index b439b0bf903..00000000000
29 --- a/media-libs/glm/glm-0.9.9.5.ebuild
30 +++ /dev/null
31 @@ -1,32 +0,0 @@
32 -# Copyright 1999-2019 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -inherit cmake-utils
38 -
39 -DESCRIPTION="OpenGL Mathematics"
40 -HOMEPAGE="http://glm.g-truc.net/"
41 -SRC_URI="https://github.com/g-truc/glm/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="|| ( HappyBunny MIT )"
44 -SLOT="0"
45 -KEYWORDS="~amd64 ~arm arm64 ~ppc64 ~x86"
46 -IUSE="test cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_avx cpu_flags_x86_avx2"
47 -RESTRICT="!test? ( test )"
48 -
49 -RDEPEND="virtual/opengl"
50 -
51 -src_configure() {
52 - if use test; then
53 - local mycmakeargs=(
54 - -DGLM_TEST_ENABLE=ON
55 - -DGLM_TEST_ENABLE_SIMD_SSE2="$(usex cpu_flags_x86_sse2 ON OFF)"
56 - -DGLM_TEST_ENABLE_SIMD_SSE3="$(usex cpu_flags_x86_sse3 ON OFF)"
57 - -DGLM_TEST_ENABLE_SIMD_AVX="$(usex cpu_flags_x86_avx ON OFF)"
58 - -DGLM_TEST_ENABLE_SIMD_AVX2="$(usex cpu_flags_x86_avx2 ON OFF)"
59 - )
60 - fi
61 -
62 - cmake-utils_src_configure
63 -}