diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2024-03-02 20:49:19 +0100 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2024-03-02 20:50:07 +0100 |
commit | f311efe5b48bf892441bd4b553b5468f0e11428c (patch) | |
tree | 49a8d841b7273b5acc24e7dff207cf970b69db0c /media-libs/glm | |
parent | net-misc/miniupnpd: Bump to 2.3.5 (diff) | |
download | gentoo-f311efe5b48bf892441bd4b553b5468f0e11428c.tar.gz gentoo-f311efe5b48bf892441bd4b553b5468f0e11428c.tar.bz2 gentoo-f311efe5b48bf892441bd4b553b5468f0e11428c.zip |
media-libs/glm: drop 1.0.0, 1.0.0-r1
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
Diffstat (limited to 'media-libs/glm')
-rw-r--r-- | media-libs/glm/Manifest | 1 | ||||
-rw-r--r-- | media-libs/glm/glm-1.0.0-r1.ebuild | 69 | ||||
-rw-r--r-- | media-libs/glm/glm-1.0.0.ebuild | 62 |
3 files changed, 0 insertions, 132 deletions
diff --git a/media-libs/glm/Manifest b/media-libs/glm/Manifest index 94cda1d380db..9701cf7e2d20 100644 --- a/media-libs/glm/Manifest +++ b/media-libs/glm/Manifest @@ -1,3 +1,2 @@ DIST glm-0.9.9.8.tar.gz 4368032 BLAKE2B 41e4d4a9fbd75c6c6717e43b6a6ae09bb7da3b4b2ee7c5b04308f3aa875b306638b638aca3e457c039845c489fcf0716a080ec2166bf5e9db93c25944f4ba81a SHA512 9484b0c12175414237c5b9486a2990099b1cb727e442f25ecda18b081aa661f7e92a44481f642989553cd3da7992a773441ee5688991bd539ce19fb66a5ce9e8 -DIST glm-1.0.0.tar.gz 4523789 BLAKE2B 66c26067085bd5878dc1f6e473c1c8449d2a609351ababd8f893010983b9e20dae8e7cb2c9a4469b7e46592b7d350fda75e2975676b8696288065a7b776a21a5 SHA512 62e22002a6369a54e1f0ee2885a65f2780af7d2a446573e5387b81518f5dc7e8076053837cb99ae850a0166ce8b0f077bed009e8986d9884d01c456ce467553f DIST glm-1.0.1.tar.gz 4567161 BLAKE2B 2a6f399710f5812d4060b994df454e0c0e4fc7fcaccdfa62de6de2886987349b266944313539a398733708043c887f1324fe33eef8aa2205ef77e7c0dff28fec SHA512 c6c6fa1ea7a7e97820e36ee042a78be248ae828c99c1b1111080d9bf334a5160c9993a70312351c92a867cd49907c95f9f357c8dfe2bc29946da6e83e27ba20c diff --git a/media-libs/glm/glm-1.0.0-r1.ebuild b/media-libs/glm/glm-1.0.0-r1.ebuild deleted file mode 100644 index 1f037d446d41..000000000000 --- a/media-libs/glm/glm-1.0.0-r1.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake flag-o-matic - -DESCRIPTION="OpenGL Mathematics" -HOMEPAGE="http://glm.g-truc.net/" -SRC_URI="https://github.com/g-truc/glm/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="|| ( HappyBunny MIT )" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" -IUSE="test cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_avx cpu_flags_x86_avx2" -RESTRICT="!test? ( test )" - -PATCHES=( - "${FILESDIR}"/${PN}-0.9.9.6-simd.patch - "${FILESDIR}"/${P}-clang.patch - "${FILESDIR}"/${PN}-0.9.9.8-big-endian-tests.patch -) - -DOCS=( manual.md readme.md ) - -src_configure() { - # Header-only library - local mycmakeargs=( - -DGLM_BUILD_INSTALL=ON - -DGLM_BUILD_LIBRARY=OFF - -DGLM_BUILD_TESTS=$(usex test) - ) - - if use test; then - # See https://github.com/g-truc/glm/pull/1087 - # https://bugs.gentoo.org/818235 - test-flag-CXX -fno-ipa-modref && append-cxxflags -fno-ipa-modref - - mycmakeargs+=( - -DGLM_TEST_ENABLE=ON - -DGLM_TEST_ENABLE_SIMD_SSE2="$(usex cpu_flags_x86_sse2 ON OFF)" - -DGLM_TEST_ENABLE_SIMD_SSE3="$(usex cpu_flags_x86_sse3 ON OFF)" - -DGLM_TEST_ENABLE_SIMD_AVX="$(usex cpu_flags_x86_avx ON OFF)" - -DGLM_TEST_ENABLE_SIMD_AVX2="$(usex cpu_flags_x86_avx2 ON OFF)" - ) - fi - - cmake_src_configure - - sed \ - -e "s:@CMAKE_INSTALL_PREFIX@:${EPREFIX}/usr:" \ - -e "s:@GLM_VERSION@:$(ver_cut 1-3):" \ - "${FILESDIR}"/glm.pc.in \ - > "${BUILD_DIR}/glm.pc" || die -} - -src_compile() { - # Header-only library - if use test; then - cmake_src_compile - fi -} - -src_install() { - cmake_src_install - - insinto /usr/share/pkgconfig - doins "${BUILD_DIR}/glm.pc" -} diff --git a/media-libs/glm/glm-1.0.0.ebuild b/media-libs/glm/glm-1.0.0.ebuild deleted file mode 100644 index 5138d21e6371..000000000000 --- a/media-libs/glm/glm-1.0.0.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake flag-o-matic - -DESCRIPTION="OpenGL Mathematics" -HOMEPAGE="http://glm.g-truc.net/" -SRC_URI="https://github.com/g-truc/glm/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="|| ( HappyBunny MIT )" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" -IUSE="test cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_avx cpu_flags_x86_avx2" -RESTRICT="!test? ( test )" - -PATCHES=( - "${FILESDIR}"/${PN}-0.9.9.6-simd.patch - "${FILESDIR}"/${P}-clang.patch - "${FILESDIR}"/${PN}-0.9.9.8-big-endian-tests.patch -) - -src_configure() { - # Header-only library - if use test; then - # See https://github.com/g-truc/glm/pull/1087 - # https://bugs.gentoo.org/818235 - test-flag-CXX -fno-ipa-modref && append-cxxflags -fno-ipa-modref - - local mycmakeargs=( - -DGLM_TEST_ENABLE=ON - -DGLM_TEST_ENABLE_SIMD_SSE2="$(usex cpu_flags_x86_sse2 ON OFF)" - -DGLM_TEST_ENABLE_SIMD_SSE3="$(usex cpu_flags_x86_sse3 ON OFF)" - -DGLM_TEST_ENABLE_SIMD_AVX="$(usex cpu_flags_x86_avx ON OFF)" - -DGLM_TEST_ENABLE_SIMD_AVX2="$(usex cpu_flags_x86_avx2 ON OFF)" - ) - cmake_src_configure - fi - - sed \ - -e "s:@CMAKE_INSTALL_PREFIX@:${EPREFIX}/usr:" \ - -e "s:@GLM_VERSION@:$(ver_cut 1-3):" \ - "${FILESDIR}"/glm.pc.in \ - > "${BUILD_DIR}/glm.pc" || die -} - -src_compile() { - # Header-only library - if use test; then - cmake_src_compile - fi -} - -src_install() { - doheader -r glm - insinto /usr/share/pkgconfig - doins "${BUILD_DIR}/glm.pc" - insinto /usr/share - doins -r cmake - dodoc readme.md manual.md -} |