Gentoo Archives: gentoo-commits

From: Florian Schmaus <flow@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-libs/cglm/, dev-libs/cglm/files/
Date: Fri, 20 Aug 2021 18:48:21
Message-Id: 1629298845.5b8370bd01bd97d6cf536ad29c8eb33bb0a0c11a.flow@gentoo
1 commit: 5b8370bd01bd97d6cf536ad29c8eb33bb0a0c11a
2 Author: Oliver Freyermuth <o.freyermuth <AT> googlemail <DOT> com>
3 AuthorDate: Wed Aug 18 15:00:45 2021 +0000
4 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 18 15:00:45 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5b8370bd
7
8 dev-libs/cglm: Drop oldest version.
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.2
11 Signed-off-by: Oliver Freyermuth <o.freyermuth <AT> googlemail.com>
12
13 dev-libs/cglm/Manifest | 1 -
14 dev-libs/cglm/cglm-0.8.2-r1.ebuild | 53 ----------------------
15 dev-libs/cglm/files/cglm-0.8.2-fix-vec3-vec4.patch | 22 ---------
16 3 files changed, 76 deletions(-)
17
18 diff --git a/dev-libs/cglm/Manifest b/dev-libs/cglm/Manifest
19 index 63b1f4f5b..78b0abb0f 100644
20 --- a/dev-libs/cglm/Manifest
21 +++ b/dev-libs/cglm/Manifest
22 @@ -1,3 +1,2 @@
23 -DIST cglm-0.8.2.tar.gz 231038 BLAKE2B 138a3aec9446e0588b0fc43462f05caf901ac8d03337120e477ec91df2bb0f65aea43921384eeb3d07d63dc4cd8b6ec016d55d6a40ab1e8db4fd6c74131817b9 SHA512 9ed9661f69fc46c7f0fe8468ec7cdf4071118adaa06b97f99134f5d04a0f7b21158df479f678f78e927c6e4a5d2e6f38c2e8d38ef40ab1f04b2b721af3e7a152
24 DIST cglm-0.8.3.tar.gz 246664 BLAKE2B 70e89d8926b3470c32ef847d2076fb1d8cbce0b0aa726f84c0bcf0207419b3ee7d70f1bfb40b1598827cd74c1b3482d86d0bb4cb3c77c3667ae341829580cca6 SHA512 71062814637e2523b2632980384fa58a639cdc1bbe8b647e7826fe334a53cd880bd5b29baac7d5eaff2bb009a97830c76b239e7273af46908ad7ab52cc8b8173
25 DIST cglm-0.8.4.tar.gz 620905 BLAKE2B 9891172bd97c714f81ec931daa82c62d7f2a91008a44b8a49a24cd899bd15b7a5d21c2e7ae322d670336233682435f0f28eab2630891d153b8df5c562478e610 SHA512 507875119eac77cb3f60fe2353cd92b39f50605fdbf68f56d27b7062b7ec6b1cadd868f70c059ebde17adaf4a9167e5082c0151f1af5b0a5e751864a1eca1fa8
26
27 diff --git a/dev-libs/cglm/cglm-0.8.2-r1.ebuild b/dev-libs/cglm/cglm-0.8.2-r1.ebuild
28 deleted file mode 100644
29 index 6c84b8aea..000000000
30 --- a/dev-libs/cglm/cglm-0.8.2-r1.ebuild
31 +++ /dev/null
32 @@ -1,53 +0,0 @@
33 -# Copyright 2019-2021 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=7
37 -
38 -inherit meson
39 -
40 -if [[ ${PV} == *9999* ]]; then
41 - inherit git-r3
42 - EGIT_REPO_URI="https://github.com/recp/cglm.git"
43 -else
44 - SRC_URI="https://github.com/recp/cglm/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
45 - KEYWORDS="~amd64"
46 -fi
47 -
48 -DESCRIPTION="OpenGL Mathematics (glm) for C"
49 -HOMEPAGE="https://github.com/recp/cglm"
50 -LICENSE="MIT"
51 -SLOT="0"
52 -
53 -IUSE="doc"
54 -
55 -BDEPEND="dev-util/meson
56 - doc? ( dev-python/sphinx )"
57 -
58 -PATCHES=(
59 - # Upstream patch: https://github.com/recp/cglm/commit/13269f4af8d3c95220f97746c968eac3ba122a32
60 - "${FILESDIR}"/${PN}-0.8.2-fix-vec3-vec4.patch
61 -)
62 -
63 -src_configure() {
64 - local emesonargs=(
65 - "-Dwerror=false"
66 - )
67 - meson_src_configure
68 -}
69 -
70 -src_compile() {
71 - default
72 - meson_src_compile
73 - if use doc; then
74 - einfo "Building documentation ..."
75 - local doc_dir="${S}/docs"
76 - cd "${doc_dir}" || die "Cannot chdir into \"${doc_dir}\"!"
77 - sphinx-build -b html source build || die "Building documentation failed!"
78 - fi
79 -}
80 -
81 -src_install() {
82 - use doc && local HTML_DOCS=( "${S}/docs/build/." )
83 - default
84 - meson_src_install
85 -}
86
87 diff --git a/dev-libs/cglm/files/cglm-0.8.2-fix-vec3-vec4.patch b/dev-libs/cglm/files/cglm-0.8.2-fix-vec3-vec4.patch
88 deleted file mode 100644
89 index 1819ab1a6..000000000
90 --- a/dev-libs/cglm/files/cglm-0.8.2-fix-vec3-vec4.patch
91 +++ /dev/null
92 @@ -1,22 +0,0 @@
93 -From 13269f4af8d3c95220f97746c968eac3ba122a32 Mon Sep 17 00:00:00 2001
94 -From: winter091 <winter091@××××××.ru>
95 -Date: Sat, 1 May 2021 16:48:31 +0300
96 -Subject: [PATCH] fix typo: vec3 -> vec4
97 -
98 ----
99 - include/cglm/call/vec4.h | 2 +-
100 - 1 file changed, 1 insertion(+), 1 deletion(-)
101 -
102 -diff --git a/include/cglm/call/vec4.h b/include/cglm/call/vec4.h
103 -index 28a3734..f56f599 100644
104 ---- a/include/cglm/call/vec4.h
105 -+++ b/include/cglm/call/vec4.h
106 -@@ -99,7 +99,7 @@ glmc_vec4_scale(vec4 v, float s, vec4 dest);
107 -
108 - CGLM_EXPORT
109 - void
110 --glmc_vec4_scale_as(vec3 v, float s, vec3 dest);
111 -+glmc_vec4_scale_as(vec4 v, float s, vec4 dest);
112 -
113 - CGLM_EXPORT
114 - void