Gentoo Archives: gentoo-commits

From: Anna Vyalkova <cyber+gentoo@×××××.in>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-libs/cglm/
Date: Wed, 01 Jun 2022 05:03:13
Message-Id: 1654059769.873873b18a149a45abc90072261e1393c636799d.cybertailor@gentoo
1 commit: 873873b18a149a45abc90072261e1393c636799d
2 Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
3 AuthorDate: Wed Jun 1 04:48:08 2022 +0000
4 Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
5 CommitDate: Wed Jun 1 05:02:49 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=873873b1
7
8 dev-libs/cglm: drop 0.8.4
9
10 Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
11
12 dev-libs/cglm/Manifest | 1 -
13 dev-libs/cglm/cglm-0.8.4.ebuild | 39 ---------------------------------------
14 2 files changed, 40 deletions(-)
15
16 diff --git a/dev-libs/cglm/Manifest b/dev-libs/cglm/Manifest
17 index da7d3c1b8..0ff60093d 100644
18 --- a/dev-libs/cglm/Manifest
19 +++ b/dev-libs/cglm/Manifest
20 @@ -1,2 +1 @@
21 -DIST cglm-0.8.4.tar.gz 620905 BLAKE2B 9891172bd97c714f81ec931daa82c62d7f2a91008a44b8a49a24cd899bd15b7a5d21c2e7ae322d670336233682435f0f28eab2630891d153b8df5c562478e610 SHA512 507875119eac77cb3f60fe2353cd92b39f50605fdbf68f56d27b7062b7ec6b1cadd868f70c059ebde17adaf4a9167e5082c0151f1af5b0a5e751864a1eca1fa8
22 DIST cglm-0.8.5.tar.gz 621734 BLAKE2B 7cde681529a1e43444a431793bbeb09122c636b50650489c44b98f03a01477c5192e2109e6777d5a9c4254dbe6fd91371011762c77f76011a245dbbddf24f359 SHA512 a8f6df415dc482a9b16bb7ff44aba77c32e7297b48d5e7b0fb5b2e0d92fc80cad8e436d0c83fdd7cc0836ba451137d72af2f0f823ce9698000bf257b3019b7c5
23
24 diff --git a/dev-libs/cglm/cglm-0.8.4.ebuild b/dev-libs/cglm/cglm-0.8.4.ebuild
25 deleted file mode 100644
26 index 92e9105c7..000000000
27 --- a/dev-libs/cglm/cglm-0.8.4.ebuild
28 +++ /dev/null
29 @@ -1,39 +0,0 @@
30 -# Copyright 2019-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -DOCS_BUILDER="sphinx"
36 -DOCS_AUTODOC=0
37 -DOCS_DIR="${S}/docs/source"
38 -
39 -PYTHON_COMPAT=( python3_{8,9} )
40 -
41 -inherit python-any-r1
42 -inherit docs meson
43 -
44 -if [[ ${PV} == *9999* ]]; then
45 - inherit git-r3
46 - EGIT_REPO_URI="https://github.com/recp/cglm.git"
47 -else
48 - SRC_URI="https://github.com/recp/cglm/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
49 - KEYWORDS="~amd64"
50 -fi
51 -
52 -DESCRIPTION="OpenGL Mathematics (glm) for C"
53 -HOMEPAGE="https://github.com/recp/cglm"
54 -LICENSE="MIT"
55 -SLOT="0"
56 -
57 -src_configure() {
58 - local emesonargs=(
59 - "-Dwerror=false"
60 - )
61 - meson_src_configure
62 -}
63 -
64 -src_compile() {
65 - default
66 - meson_src_compile
67 - docs_compile
68 -}