* [gentoo-commits] repo/proj/guru:master commit in: dev-libs/cglm/
@ 2021-05-02 9:27 Theo Anderson
0 siblings, 0 replies; 12+ messages in thread
From: Theo Anderson @ 2021-05-02 9:27 UTC (permalink / raw
To: gentoo-commits
commit: 5e0f19d8ba42207b76ff9d53cf9cfd2230ea717a
Author: Oliver Freyermuth <o.freyermuth <AT> googlemail <DOT> com>
AuthorDate: Sat May 1 15:35:48 2021 +0000
Commit: Theo Anderson <telans <AT> posteo <DOT> de>
CommitDate: Sat May 1 15:35:48 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5e0f19d8
dev-libs/cglm: new ebuild
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Oliver Freyermuth <o.freyermuth <AT> googlemail.com>
dev-libs/cglm/Manifest | 1 +
dev-libs/cglm/cglm-0.8.2.ebuild | 41 +++++++++++++++++++++++++++++++++++++++++
dev-libs/cglm/cglm-9999.ebuild | 41 +++++++++++++++++++++++++++++++++++++++++
dev-libs/cglm/metadata.xml | 16 ++++++++++++++++
4 files changed, 99 insertions(+)
diff --git a/dev-libs/cglm/Manifest b/dev-libs/cglm/Manifest
new file mode 100644
index 000000000..1b93ded5f
--- /dev/null
+++ b/dev-libs/cglm/Manifest
@@ -0,0 +1 @@
+DIST cglm-0.8.2.tar.gz 231038 BLAKE2B 138a3aec9446e0588b0fc43462f05caf901ac8d03337120e477ec91df2bb0f65aea43921384eeb3d07d63dc4cd8b6ec016d55d6a40ab1e8db4fd6c74131817b9 SHA512 9ed9661f69fc46c7f0fe8468ec7cdf4071118adaa06b97f99134f5d04a0f7b21158df479f678f78e927c6e4a5d2e6f38c2e8d38ef40ab1f04b2b721af3e7a152
diff --git a/dev-libs/cglm/cglm-0.8.2.ebuild b/dev-libs/cglm/cglm-0.8.2.ebuild
new file mode 100644
index 000000000..b3201d57d
--- /dev/null
+++ b/dev-libs/cglm/cglm-0.8.2.ebuild
@@ -0,0 +1,41 @@
+# Copyright 2019-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson
+
+if [[ ${PV} == *9999* ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/recp/cglm.git"
+else
+ SRC_URI="https://github.com/recp/cglm/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="OpenGL Mathematics (glm) for C"
+HOMEPAGE="https://github.com/recp/cglm"
+LICENSE="MIT"
+SLOT="0"
+
+IUSE="doc"
+
+BDEPEND="dev-util/meson
+ doc? ( dev-python/sphinx )"
+
+src_compile() {
+ default
+ meson_src_compile
+ if use doc; then
+ einfo "Building documentation ..."
+ local doc_dir="${S}/docs"
+ cd "${doc_dir}" || die "Cannot chdir into \"${doc_dir}\"!"
+ sphinx-build -b html source build || die "Building documentation failed!"
+ fi
+}
+
+src_install() {
+ use doc && local HTML_DOCS=( "${S}/docs/build/." )
+ default
+ meson_src_install
+}
diff --git a/dev-libs/cglm/cglm-9999.ebuild b/dev-libs/cglm/cglm-9999.ebuild
new file mode 100644
index 000000000..b3201d57d
--- /dev/null
+++ b/dev-libs/cglm/cglm-9999.ebuild
@@ -0,0 +1,41 @@
+# Copyright 2019-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson
+
+if [[ ${PV} == *9999* ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/recp/cglm.git"
+else
+ SRC_URI="https://github.com/recp/cglm/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="OpenGL Mathematics (glm) for C"
+HOMEPAGE="https://github.com/recp/cglm"
+LICENSE="MIT"
+SLOT="0"
+
+IUSE="doc"
+
+BDEPEND="dev-util/meson
+ doc? ( dev-python/sphinx )"
+
+src_compile() {
+ default
+ meson_src_compile
+ if use doc; then
+ einfo "Building documentation ..."
+ local doc_dir="${S}/docs"
+ cd "${doc_dir}" || die "Cannot chdir into \"${doc_dir}\"!"
+ sphinx-build -b html source build || die "Building documentation failed!"
+ fi
+}
+
+src_install() {
+ use doc && local HTML_DOCS=( "${S}/docs/build/." )
+ default
+ meson_src_install
+}
diff --git a/dev-libs/cglm/metadata.xml b/dev-libs/cglm/metadata.xml
new file mode 100644
index 000000000..b063dadad
--- /dev/null
+++ b/dev-libs/cglm/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>o.freyermuth@googlemail.com</email>
+ <name>Oliver Freyermuth</name>
+ </maintainer>
+ <upstream>
+ <bugs-to>https://github.com/recp/cglm/issues</bugs-to>
+ <changelog>https://github.com/recp/cglm/releases</changelog>
+ <remote-id type="github">recp/cglm</remote-id>
+ </upstream>
+ <longdescription lang="en">
+ cglm is an optimized 3D math library written in C99 (compatible with C89). It is similar to original glm library except this is mainly for C.
+ </longdescription>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-libs/cglm/
@ 2021-05-03 10:11 Andrew Ammerlaan
0 siblings, 0 replies; 12+ messages in thread
From: Andrew Ammerlaan @ 2021-05-03 10:11 UTC (permalink / raw
To: gentoo-commits
commit: fee29b1d9c01368f1c175e43a42f54e6fef881fd
Author: Oliver Freyermuth <o.freyermuth <AT> googlemail <DOT> com>
AuthorDate: Sun May 2 13:04:39 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sun May 2 13:04:39 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fee29b1d
dev-libs/cglm: Disable -Werror.
Closes: https://bugs.gentoo.org/787677
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Oliver Freyermuth <o.freyermuth <AT> googlemail.com>
dev-libs/cglm/cglm-0.8.2.ebuild | 7 +++++++
dev-libs/cglm/cglm-9999.ebuild | 7 +++++++
2 files changed, 14 insertions(+)
diff --git a/dev-libs/cglm/cglm-0.8.2.ebuild b/dev-libs/cglm/cglm-0.8.2.ebuild
index b3201d57d..4009cf449 100644
--- a/dev-libs/cglm/cglm-0.8.2.ebuild
+++ b/dev-libs/cglm/cglm-0.8.2.ebuild
@@ -23,6 +23,13 @@ IUSE="doc"
BDEPEND="dev-util/meson
doc? ( dev-python/sphinx )"
+src_configure() {
+ local emesonargs=(
+ "-Dwerror=false"
+ )
+ meson_src_configure
+}
+
src_compile() {
default
meson_src_compile
diff --git a/dev-libs/cglm/cglm-9999.ebuild b/dev-libs/cglm/cglm-9999.ebuild
index b3201d57d..4009cf449 100644
--- a/dev-libs/cglm/cglm-9999.ebuild
+++ b/dev-libs/cglm/cglm-9999.ebuild
@@ -23,6 +23,13 @@ IUSE="doc"
BDEPEND="dev-util/meson
doc? ( dev-python/sphinx )"
+src_configure() {
+ local emesonargs=(
+ "-Dwerror=false"
+ )
+ meson_src_configure
+}
+
src_compile() {
default
meson_src_compile
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-libs/cglm/
@ 2021-05-30 14:47 Andrew Ammerlaan
0 siblings, 0 replies; 12+ messages in thread
From: Andrew Ammerlaan @ 2021-05-30 14:47 UTC (permalink / raw
To: gentoo-commits
commit: 0947a2e5486efd520c3f1217ebd330f38ceed314
Author: Oliver Freyermuth <o.freyermuth <AT> googlemail <DOT> com>
AuthorDate: Sun May 30 13:37:43 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Sun May 30 13:37:43 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0947a2e5
dev-libs/cglm: version bump to 0.8.3.
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Oliver Freyermuth <o.freyermuth <AT> googlemail.com>
dev-libs/cglm/Manifest | 1 +
dev-libs/cglm/cglm-0.8.3.ebuild | 48 +++++++++++++++++++++++++++++++++++++++++
2 files changed, 49 insertions(+)
diff --git a/dev-libs/cglm/Manifest b/dev-libs/cglm/Manifest
index 1b93ded5f..0f5c7fae7 100644
--- a/dev-libs/cglm/Manifest
+++ b/dev-libs/cglm/Manifest
@@ -1 +1,2 @@
DIST cglm-0.8.2.tar.gz 231038 BLAKE2B 138a3aec9446e0588b0fc43462f05caf901ac8d03337120e477ec91df2bb0f65aea43921384eeb3d07d63dc4cd8b6ec016d55d6a40ab1e8db4fd6c74131817b9 SHA512 9ed9661f69fc46c7f0fe8468ec7cdf4071118adaa06b97f99134f5d04a0f7b21158df479f678f78e927c6e4a5d2e6f38c2e8d38ef40ab1f04b2b721af3e7a152
+DIST cglm-0.8.3.tar.gz 246664 BLAKE2B 70e89d8926b3470c32ef847d2076fb1d8cbce0b0aa726f84c0bcf0207419b3ee7d70f1bfb40b1598827cd74c1b3482d86d0bb4cb3c77c3667ae341829580cca6 SHA512 71062814637e2523b2632980384fa58a639cdc1bbe8b647e7826fe334a53cd880bd5b29baac7d5eaff2bb009a97830c76b239e7273af46908ad7ab52cc8b8173
diff --git a/dev-libs/cglm/cglm-0.8.3.ebuild b/dev-libs/cglm/cglm-0.8.3.ebuild
new file mode 100644
index 000000000..4009cf449
--- /dev/null
+++ b/dev-libs/cglm/cglm-0.8.3.ebuild
@@ -0,0 +1,48 @@
+# Copyright 2019-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson
+
+if [[ ${PV} == *9999* ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/recp/cglm.git"
+else
+ SRC_URI="https://github.com/recp/cglm/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="OpenGL Mathematics (glm) for C"
+HOMEPAGE="https://github.com/recp/cglm"
+LICENSE="MIT"
+SLOT="0"
+
+IUSE="doc"
+
+BDEPEND="dev-util/meson
+ doc? ( dev-python/sphinx )"
+
+src_configure() {
+ local emesonargs=(
+ "-Dwerror=false"
+ )
+ meson_src_configure
+}
+
+src_compile() {
+ default
+ meson_src_compile
+ if use doc; then
+ einfo "Building documentation ..."
+ local doc_dir="${S}/docs"
+ cd "${doc_dir}" || die "Cannot chdir into \"${doc_dir}\"!"
+ sphinx-build -b html source build || die "Building documentation failed!"
+ fi
+}
+
+src_install() {
+ use doc && local HTML_DOCS=( "${S}/docs/build/." )
+ default
+ meson_src_install
+}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-libs/cglm/
@ 2021-05-30 15:53 Andrew Ammerlaan
0 siblings, 0 replies; 12+ messages in thread
From: Andrew Ammerlaan @ 2021-05-30 15:53 UTC (permalink / raw
To: gentoo-commits
commit: 6affc71a3c6eede0e0a004f1dcf938fb34fe6c5e
Author: Oliver Freyermuth <o.freyermuth <AT> googlemail <DOT> com>
AuthorDate: Sun May 30 15:04:37 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Sun May 30 15:04:37 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6affc71a
dev-libs/cglm: use docs.eclass in most recent versions.
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Oliver Freyermuth <o.freyermuth <AT> googlemail.com>
dev-libs/cglm/cglm-0.8.3.ebuild | 27 +++++++++------------------
dev-libs/cglm/cglm-9999.ebuild | 27 +++++++++------------------
2 files changed, 18 insertions(+), 36 deletions(-)
diff --git a/dev-libs/cglm/cglm-0.8.3.ebuild b/dev-libs/cglm/cglm-0.8.3.ebuild
index 4009cf449..6fbdc797c 100644
--- a/dev-libs/cglm/cglm-0.8.3.ebuild
+++ b/dev-libs/cglm/cglm-0.8.3.ebuild
@@ -3,7 +3,14 @@
EAPI=7
-inherit meson
+DOCS_BUILDER="sphinx"
+DOCS_AUTODOC=0
+DOCS_DIR="${S}/docs/source"
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+
+inherit python-any-r1
+inherit docs meson
if [[ ${PV} == *9999* ]]; then
inherit git-r3
@@ -18,11 +25,6 @@ HOMEPAGE="https://github.com/recp/cglm"
LICENSE="MIT"
SLOT="0"
-IUSE="doc"
-
-BDEPEND="dev-util/meson
- doc? ( dev-python/sphinx )"
-
src_configure() {
local emesonargs=(
"-Dwerror=false"
@@ -33,16 +35,5 @@ src_configure() {
src_compile() {
default
meson_src_compile
- if use doc; then
- einfo "Building documentation ..."
- local doc_dir="${S}/docs"
- cd "${doc_dir}" || die "Cannot chdir into \"${doc_dir}\"!"
- sphinx-build -b html source build || die "Building documentation failed!"
- fi
-}
-
-src_install() {
- use doc && local HTML_DOCS=( "${S}/docs/build/." )
- default
- meson_src_install
+ docs_compile
}
diff --git a/dev-libs/cglm/cglm-9999.ebuild b/dev-libs/cglm/cglm-9999.ebuild
index 4009cf449..6fbdc797c 100644
--- a/dev-libs/cglm/cglm-9999.ebuild
+++ b/dev-libs/cglm/cglm-9999.ebuild
@@ -3,7 +3,14 @@
EAPI=7
-inherit meson
+DOCS_BUILDER="sphinx"
+DOCS_AUTODOC=0
+DOCS_DIR="${S}/docs/source"
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+
+inherit python-any-r1
+inherit docs meson
if [[ ${PV} == *9999* ]]; then
inherit git-r3
@@ -18,11 +25,6 @@ HOMEPAGE="https://github.com/recp/cglm"
LICENSE="MIT"
SLOT="0"
-IUSE="doc"
-
-BDEPEND="dev-util/meson
- doc? ( dev-python/sphinx )"
-
src_configure() {
local emesonargs=(
"-Dwerror=false"
@@ -33,16 +35,5 @@ src_configure() {
src_compile() {
default
meson_src_compile
- if use doc; then
- einfo "Building documentation ..."
- local doc_dir="${S}/docs"
- cd "${doc_dir}" || die "Cannot chdir into \"${doc_dir}\"!"
- sphinx-build -b html source build || die "Building documentation failed!"
- fi
-}
-
-src_install() {
- use doc && local HTML_DOCS=( "${S}/docs/build/." )
- default
- meson_src_install
+ docs_compile
}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-libs/cglm/
@ 2021-08-20 18:48 Florian Schmaus
0 siblings, 0 replies; 12+ messages in thread
From: Florian Schmaus @ 2021-08-20 18:48 UTC (permalink / raw
To: gentoo-commits
commit: 0f4dd5aa3e726fd8ebbe5f277f512e8fc810dd9a
Author: Oliver Freyermuth <o.freyermuth <AT> googlemail <DOT> com>
AuthorDate: Wed Aug 18 14:59:53 2021 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Wed Aug 18 14:59:53 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0f4dd5aa
dev-libs/cglm: version bump to 0.8.3.
Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Oliver Freyermuth <o.freyermuth <AT> googlemail.com>
dev-libs/cglm/Manifest | 1 +
dev-libs/cglm/cglm-0.8.4.ebuild | 39 +++++++++++++++++++++++++++++++++++++++
2 files changed, 40 insertions(+)
diff --git a/dev-libs/cglm/Manifest b/dev-libs/cglm/Manifest
index 0f5c7fae7..63b1f4f5b 100644
--- a/dev-libs/cglm/Manifest
+++ b/dev-libs/cglm/Manifest
@@ -1,2 +1,3 @@
DIST cglm-0.8.2.tar.gz 231038 BLAKE2B 138a3aec9446e0588b0fc43462f05caf901ac8d03337120e477ec91df2bb0f65aea43921384eeb3d07d63dc4cd8b6ec016d55d6a40ab1e8db4fd6c74131817b9 SHA512 9ed9661f69fc46c7f0fe8468ec7cdf4071118adaa06b97f99134f5d04a0f7b21158df479f678f78e927c6e4a5d2e6f38c2e8d38ef40ab1f04b2b721af3e7a152
DIST cglm-0.8.3.tar.gz 246664 BLAKE2B 70e89d8926b3470c32ef847d2076fb1d8cbce0b0aa726f84c0bcf0207419b3ee7d70f1bfb40b1598827cd74c1b3482d86d0bb4cb3c77c3667ae341829580cca6 SHA512 71062814637e2523b2632980384fa58a639cdc1bbe8b647e7826fe334a53cd880bd5b29baac7d5eaff2bb009a97830c76b239e7273af46908ad7ab52cc8b8173
+DIST cglm-0.8.4.tar.gz 620905 BLAKE2B 9891172bd97c714f81ec931daa82c62d7f2a91008a44b8a49a24cd899bd15b7a5d21c2e7ae322d670336233682435f0f28eab2630891d153b8df5c562478e610 SHA512 507875119eac77cb3f60fe2353cd92b39f50605fdbf68f56d27b7062b7ec6b1cadd868f70c059ebde17adaf4a9167e5082c0151f1af5b0a5e751864a1eca1fa8
diff --git a/dev-libs/cglm/cglm-0.8.4.ebuild b/dev-libs/cglm/cglm-0.8.4.ebuild
new file mode 100644
index 000000000..6fbdc797c
--- /dev/null
+++ b/dev-libs/cglm/cglm-0.8.4.ebuild
@@ -0,0 +1,39 @@
+# Copyright 2019-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DOCS_BUILDER="sphinx"
+DOCS_AUTODOC=0
+DOCS_DIR="${S}/docs/source"
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+
+inherit python-any-r1
+inherit docs meson
+
+if [[ ${PV} == *9999* ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/recp/cglm.git"
+else
+ SRC_URI="https://github.com/recp/cglm/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="OpenGL Mathematics (glm) for C"
+HOMEPAGE="https://github.com/recp/cglm"
+LICENSE="MIT"
+SLOT="0"
+
+src_configure() {
+ local emesonargs=(
+ "-Dwerror=false"
+ )
+ meson_src_configure
+}
+
+src_compile() {
+ default
+ meson_src_compile
+ docs_compile
+}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-libs/cglm/
@ 2022-03-25 11:24 Ronny Gutbrod
0 siblings, 0 replies; 12+ messages in thread
From: Ronny Gutbrod @ 2022-03-25 11:24 UTC (permalink / raw
To: gentoo-commits
commit: 8918b200bf59cc797b9c3d16853b88d25fcb51ff
Author: Oliver Freyermuth <o.freyermuth <AT> googlemail <DOT> com>
AuthorDate: Sun Mar 20 19:37:28 2022 +0000
Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Sun Mar 20 19:37:28 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8918b200
dev-libs/cglm: Drop oldest version.
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Oliver Freyermuth <o.freyermuth <AT> googlemail.com>
dev-libs/cglm/Manifest | 1 -
dev-libs/cglm/cglm-0.8.3.ebuild | 39 ---------------------------------------
2 files changed, 40 deletions(-)
diff --git a/dev-libs/cglm/Manifest b/dev-libs/cglm/Manifest
index 5549c097f..da7d3c1b8 100644
--- a/dev-libs/cglm/Manifest
+++ b/dev-libs/cglm/Manifest
@@ -1,3 +1,2 @@
-DIST cglm-0.8.3.tar.gz 246664 BLAKE2B 70e89d8926b3470c32ef847d2076fb1d8cbce0b0aa726f84c0bcf0207419b3ee7d70f1bfb40b1598827cd74c1b3482d86d0bb4cb3c77c3667ae341829580cca6 SHA512 71062814637e2523b2632980384fa58a639cdc1bbe8b647e7826fe334a53cd880bd5b29baac7d5eaff2bb009a97830c76b239e7273af46908ad7ab52cc8b8173
DIST cglm-0.8.4.tar.gz 620905 BLAKE2B 9891172bd97c714f81ec931daa82c62d7f2a91008a44b8a49a24cd899bd15b7a5d21c2e7ae322d670336233682435f0f28eab2630891d153b8df5c562478e610 SHA512 507875119eac77cb3f60fe2353cd92b39f50605fdbf68f56d27b7062b7ec6b1cadd868f70c059ebde17adaf4a9167e5082c0151f1af5b0a5e751864a1eca1fa8
DIST cglm-0.8.5.tar.gz 621734 BLAKE2B 7cde681529a1e43444a431793bbeb09122c636b50650489c44b98f03a01477c5192e2109e6777d5a9c4254dbe6fd91371011762c77f76011a245dbbddf24f359 SHA512 a8f6df415dc482a9b16bb7ff44aba77c32e7297b48d5e7b0fb5b2e0d92fc80cad8e436d0c83fdd7cc0836ba451137d72af2f0f823ce9698000bf257b3019b7c5
diff --git a/dev-libs/cglm/cglm-0.8.3.ebuild b/dev-libs/cglm/cglm-0.8.3.ebuild
deleted file mode 100644
index 92e9105c7..000000000
--- a/dev-libs/cglm/cglm-0.8.3.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 2019-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DOCS_BUILDER="sphinx"
-DOCS_AUTODOC=0
-DOCS_DIR="${S}/docs/source"
-
-PYTHON_COMPAT=( python3_{8,9} )
-
-inherit python-any-r1
-inherit docs meson
-
-if [[ ${PV} == *9999* ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/recp/cglm.git"
-else
- SRC_URI="https://github.com/recp/cglm/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
-fi
-
-DESCRIPTION="OpenGL Mathematics (glm) for C"
-HOMEPAGE="https://github.com/recp/cglm"
-LICENSE="MIT"
-SLOT="0"
-
-src_configure() {
- local emesonargs=(
- "-Dwerror=false"
- )
- meson_src_configure
-}
-
-src_compile() {
- default
- meson_src_compile
- docs_compile
-}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-libs/cglm/
@ 2022-03-25 11:24 Ronny Gutbrod
0 siblings, 0 replies; 12+ messages in thread
From: Ronny Gutbrod @ 2022-03-25 11:24 UTC (permalink / raw
To: gentoo-commits
commit: 4c9fe7636d84f325292817af91fe2e1bd32455d8
Author: Oliver Freyermuth <o.freyermuth <AT> googlemail <DOT> com>
AuthorDate: Sun Mar 20 19:37:14 2022 +0000
Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Sun Mar 20 19:37:14 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4c9fe763
dev-libs/cglm: Bump to version 0.8.5.
Also bumps to EAPI 8 and allows Python 3.10.
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Oliver Freyermuth <o.freyermuth <AT> googlemail.com>
dev-libs/cglm/Manifest | 1 +
dev-libs/cglm/{cglm-9999.ebuild => cglm-0.8.5.ebuild} | 6 +++---
dev-libs/cglm/cglm-9999.ebuild | 6 +++---
3 files changed, 7 insertions(+), 6 deletions(-)
diff --git a/dev-libs/cglm/Manifest b/dev-libs/cglm/Manifest
index 78b0abb0f..5549c097f 100644
--- a/dev-libs/cglm/Manifest
+++ b/dev-libs/cglm/Manifest
@@ -1,2 +1,3 @@
DIST cglm-0.8.3.tar.gz 246664 BLAKE2B 70e89d8926b3470c32ef847d2076fb1d8cbce0b0aa726f84c0bcf0207419b3ee7d70f1bfb40b1598827cd74c1b3482d86d0bb4cb3c77c3667ae341829580cca6 SHA512 71062814637e2523b2632980384fa58a639cdc1bbe8b647e7826fe334a53cd880bd5b29baac7d5eaff2bb009a97830c76b239e7273af46908ad7ab52cc8b8173
DIST cglm-0.8.4.tar.gz 620905 BLAKE2B 9891172bd97c714f81ec931daa82c62d7f2a91008a44b8a49a24cd899bd15b7a5d21c2e7ae322d670336233682435f0f28eab2630891d153b8df5c562478e610 SHA512 507875119eac77cb3f60fe2353cd92b39f50605fdbf68f56d27b7062b7ec6b1cadd868f70c059ebde17adaf4a9167e5082c0151f1af5b0a5e751864a1eca1fa8
+DIST cglm-0.8.5.tar.gz 621734 BLAKE2B 7cde681529a1e43444a431793bbeb09122c636b50650489c44b98f03a01477c5192e2109e6777d5a9c4254dbe6fd91371011762c77f76011a245dbbddf24f359 SHA512 a8f6df415dc482a9b16bb7ff44aba77c32e7297b48d5e7b0fb5b2e0d92fc80cad8e436d0c83fdd7cc0836ba451137d72af2f0f823ce9698000bf257b3019b7c5
diff --git a/dev-libs/cglm/cglm-9999.ebuild b/dev-libs/cglm/cglm-0.8.5.ebuild
similarity index 89%
copy from dev-libs/cglm/cglm-9999.ebuild
copy to dev-libs/cglm/cglm-0.8.5.ebuild
index 92e9105c7..4fb50580e 100644
--- a/dev-libs/cglm/cglm-9999.ebuild
+++ b/dev-libs/cglm/cglm-0.8.5.ebuild
@@ -1,13 +1,13 @@
-# Copyright 2019-2021 Gentoo Authors
+# Copyright 2019-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
DOCS_BUILDER="sphinx"
DOCS_AUTODOC=0
DOCS_DIR="${S}/docs/source"
-PYTHON_COMPAT=( python3_{8,9} )
+PYTHON_COMPAT=( python3_{8,9,10} )
inherit python-any-r1
inherit docs meson
diff --git a/dev-libs/cglm/cglm-9999.ebuild b/dev-libs/cglm/cglm-9999.ebuild
index 92e9105c7..4fb50580e 100644
--- a/dev-libs/cglm/cglm-9999.ebuild
+++ b/dev-libs/cglm/cglm-9999.ebuild
@@ -1,13 +1,13 @@
-# Copyright 2019-2021 Gentoo Authors
+# Copyright 2019-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
DOCS_BUILDER="sphinx"
DOCS_AUTODOC=0
DOCS_DIR="${S}/docs/source"
-PYTHON_COMPAT=( python3_{8,9} )
+PYTHON_COMPAT=( python3_{8,9,10} )
inherit python-any-r1
inherit docs meson
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-libs/cglm/
@ 2022-06-01 11:17 Andrew Ammerlaan
0 siblings, 0 replies; 12+ messages in thread
From: Andrew Ammerlaan @ 2022-06-01 11:17 UTC (permalink / raw
To: gentoo-commits
commit: 873873b18a149a45abc90072261e1393c636799d
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Wed Jun 1 04:48:08 2022 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Wed Jun 1 05:02:49 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=873873b1
dev-libs/cglm: drop 0.8.4
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-libs/cglm/Manifest | 1 -
dev-libs/cglm/cglm-0.8.4.ebuild | 39 ---------------------------------------
2 files changed, 40 deletions(-)
diff --git a/dev-libs/cglm/Manifest b/dev-libs/cglm/Manifest
index da7d3c1b8..0ff60093d 100644
--- a/dev-libs/cglm/Manifest
+++ b/dev-libs/cglm/Manifest
@@ -1,2 +1 @@
-DIST cglm-0.8.4.tar.gz 620905 BLAKE2B 9891172bd97c714f81ec931daa82c62d7f2a91008a44b8a49a24cd899bd15b7a5d21c2e7ae322d670336233682435f0f28eab2630891d153b8df5c562478e610 SHA512 507875119eac77cb3f60fe2353cd92b39f50605fdbf68f56d27b7062b7ec6b1cadd868f70c059ebde17adaf4a9167e5082c0151f1af5b0a5e751864a1eca1fa8
DIST cglm-0.8.5.tar.gz 621734 BLAKE2B 7cde681529a1e43444a431793bbeb09122c636b50650489c44b98f03a01477c5192e2109e6777d5a9c4254dbe6fd91371011762c77f76011a245dbbddf24f359 SHA512 a8f6df415dc482a9b16bb7ff44aba77c32e7297b48d5e7b0fb5b2e0d92fc80cad8e436d0c83fdd7cc0836ba451137d72af2f0f823ce9698000bf257b3019b7c5
diff --git a/dev-libs/cglm/cglm-0.8.4.ebuild b/dev-libs/cglm/cglm-0.8.4.ebuild
deleted file mode 100644
index 92e9105c7..000000000
--- a/dev-libs/cglm/cglm-0.8.4.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 2019-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DOCS_BUILDER="sphinx"
-DOCS_AUTODOC=0
-DOCS_DIR="${S}/docs/source"
-
-PYTHON_COMPAT=( python3_{8,9} )
-
-inherit python-any-r1
-inherit docs meson
-
-if [[ ${PV} == *9999* ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/recp/cglm.git"
-else
- SRC_URI="https://github.com/recp/cglm/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
-fi
-
-DESCRIPTION="OpenGL Mathematics (glm) for C"
-HOMEPAGE="https://github.com/recp/cglm"
-LICENSE="MIT"
-SLOT="0"
-
-src_configure() {
- local emesonargs=(
- "-Dwerror=false"
- )
- meson_src_configure
-}
-
-src_compile() {
- default
- meson_src_compile
- docs_compile
-}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-libs/cglm/
@ 2022-11-01 2:55 Ronny Gutbrod
0 siblings, 0 replies; 12+ messages in thread
From: Ronny Gutbrod @ 2022-11-01 2:55 UTC (permalink / raw
To: gentoo-commits
commit: c435e079dc5bf391ed354710f2ed00c2f2cf97d2
Author: Oliver Freyermuth <o.freyermuth <AT> googlemail <DOT> com>
AuthorDate: Sun Oct 30 14:07:42 2022 +0000
Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Sun Oct 30 14:07:42 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c435e079
dev-libs/cglm: Add doc dependency on sphinx_rtd_theme.
Closes: https://bugs.gentoo.org/878791
Signed-off-by: Oliver Freyermuth <o.freyermuth <AT> googlemail.com>
dev-libs/cglm/cglm-0.8.7.ebuild | 9 ++++++++-
dev-libs/cglm/cglm-9999.ebuild | 9 ++++++++-
2 files changed, 16 insertions(+), 2 deletions(-)
diff --git a/dev-libs/cglm/cglm-0.8.7.ebuild b/dev-libs/cglm/cglm-0.8.7.ebuild
index b148db8ed..ddb415056 100644
--- a/dev-libs/cglm/cglm-0.8.7.ebuild
+++ b/dev-libs/cglm/cglm-0.8.7.ebuild
@@ -4,7 +4,8 @@
EAPI=8
DOCS_BUILDER="sphinx"
-DOCS_AUTODOC=0
+DOCS_AUTODOC=1
+DOCS_DEPEND="dev-python/sphinx_rtd_theme"
DOCS_DIR="${S}/docs/source"
PYTHON_COMPAT=( python3_{8..11} )
@@ -25,6 +26,12 @@ HOMEPAGE="https://github.com/recp/cglm"
LICENSE="MIT"
SLOT="0"
+src_prepare() {
+ default
+ # Enable autodoc since themeing plugin is used.
+ sed -i "s#'sphinx.ext.githubpages'#'sphinx.ext.githubpages','sphinx.ext.autodoc'#" docs/source/conf.py || die
+}
+
src_configure() {
local emesonargs=(
"-Dwerror=false"
diff --git a/dev-libs/cglm/cglm-9999.ebuild b/dev-libs/cglm/cglm-9999.ebuild
index b148db8ed..ddb415056 100644
--- a/dev-libs/cglm/cglm-9999.ebuild
+++ b/dev-libs/cglm/cglm-9999.ebuild
@@ -4,7 +4,8 @@
EAPI=8
DOCS_BUILDER="sphinx"
-DOCS_AUTODOC=0
+DOCS_AUTODOC=1
+DOCS_DEPEND="dev-python/sphinx_rtd_theme"
DOCS_DIR="${S}/docs/source"
PYTHON_COMPAT=( python3_{8..11} )
@@ -25,6 +26,12 @@ HOMEPAGE="https://github.com/recp/cglm"
LICENSE="MIT"
SLOT="0"
+src_prepare() {
+ default
+ # Enable autodoc since themeing plugin is used.
+ sed -i "s#'sphinx.ext.githubpages'#'sphinx.ext.githubpages','sphinx.ext.autodoc'#" docs/source/conf.py || die
+}
+
src_configure() {
local emesonargs=(
"-Dwerror=false"
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-libs/cglm/
@ 2022-12-16 16:39 Florian Schmaus
0 siblings, 0 replies; 12+ messages in thread
From: Florian Schmaus @ 2022-12-16 16:39 UTC (permalink / raw
To: gentoo-commits
commit: efcfce92c52e7ac61de30d13ac686e4dbe2a13d5
Author: Oliver Freyermuth <o.freyermuth <AT> googlemail <DOT> com>
AuthorDate: Thu Dec 15 21:24:18 2022 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Thu Dec 15 21:24:18 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=efcfce92
dev-libs/cglm: add 0.8.8
Signed-off-by: Oliver Freyermuth <o.freyermuth <AT> googlemail.com>
dev-libs/cglm/Manifest | 1 +
dev-libs/cglm/cglm-0.8.8.ebuild | 46 +++++++++++++++++++++++++++++++++++++++++
2 files changed, 47 insertions(+)
diff --git a/dev-libs/cglm/Manifest b/dev-libs/cglm/Manifest
index 3dab91aad..3d8d27652 100644
--- a/dev-libs/cglm/Manifest
+++ b/dev-libs/cglm/Manifest
@@ -1,2 +1,3 @@
DIST cglm-0.8.5.tar.gz 621734 BLAKE2B 7cde681529a1e43444a431793bbeb09122c636b50650489c44b98f03a01477c5192e2109e6777d5a9c4254dbe6fd91371011762c77f76011a245dbbddf24f359 SHA512 a8f6df415dc482a9b16bb7ff44aba77c32e7297b48d5e7b0fb5b2e0d92fc80cad8e436d0c83fdd7cc0836ba451137d72af2f0f823ce9698000bf257b3019b7c5
DIST cglm-0.8.7.tar.gz 630522 BLAKE2B 063daa82a52136bb8f19ac120afa3813e2a5edab8db161fe87de6217402b37be4db0e904619659e2bd4a4c152dd47d5aeba704aec326b7d5d100c9957932ff1f SHA512 658b9af42111a4e2f68a3fe0665d51a5b2b34abefa404374d843d5b5506eac51d07e9e29549e69683d18982856e175573d218ceb55617870f239c00b1bf6bc0f
+DIST cglm-0.8.8.tar.gz 631074 BLAKE2B 381de733722ef7cc7deb8799da2e7ccb2efeec1fd8cf9322c98216e796b829d4b81208e93c6b0e4f14b868fe60d498142b59c5de48e578df656333f4196967f9 SHA512 a89f76378aee6ee8a7a38b9ce975bff1873590b4cb83daaf658b2875578758d05e15e92ef7141df3109ee37e6b097eda0bb2e60b13fdeca536a72053145c5ece
diff --git a/dev-libs/cglm/cglm-0.8.8.ebuild b/dev-libs/cglm/cglm-0.8.8.ebuild
new file mode 100644
index 000000000..ddb415056
--- /dev/null
+++ b/dev-libs/cglm/cglm-0.8.8.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2019-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DOCS_BUILDER="sphinx"
+DOCS_AUTODOC=1
+DOCS_DEPEND="dev-python/sphinx_rtd_theme"
+DOCS_DIR="${S}/docs/source"
+
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit python-any-r1
+inherit docs meson
+
+if [[ ${PV} == *9999* ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/recp/cglm.git"
+else
+ SRC_URI="https://github.com/recp/cglm/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="OpenGL Mathematics (glm) for C"
+HOMEPAGE="https://github.com/recp/cglm"
+LICENSE="MIT"
+SLOT="0"
+
+src_prepare() {
+ default
+ # Enable autodoc since themeing plugin is used.
+ sed -i "s#'sphinx.ext.githubpages'#'sphinx.ext.githubpages','sphinx.ext.autodoc'#" docs/source/conf.py || die
+}
+
+src_configure() {
+ local emesonargs=(
+ "-Dwerror=false"
+ )
+ meson_src_configure
+}
+
+src_compile() {
+ default
+ meson_src_compile
+ docs_compile
+}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-libs/cglm/
@ 2022-12-16 16:39 Florian Schmaus
0 siblings, 0 replies; 12+ messages in thread
From: Florian Schmaus @ 2022-12-16 16:39 UTC (permalink / raw
To: gentoo-commits
commit: 36cb11dd8d77766736c5481e2c2a44b49169aaf9
Author: Oliver Freyermuth <o.freyermuth <AT> googlemail <DOT> com>
AuthorDate: Thu Dec 15 21:24:27 2022 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Thu Dec 15 21:24:27 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=36cb11dd
dev-libs/cglm: drop 0.8.5
Signed-off-by: Oliver Freyermuth <o.freyermuth <AT> googlemail.com>
dev-libs/cglm/Manifest | 1 -
dev-libs/cglm/cglm-0.8.5.ebuild | 39 ---------------------------------------
2 files changed, 40 deletions(-)
diff --git a/dev-libs/cglm/Manifest b/dev-libs/cglm/Manifest
index 3d8d27652..1f3e0b5f5 100644
--- a/dev-libs/cglm/Manifest
+++ b/dev-libs/cglm/Manifest
@@ -1,3 +1,2 @@
-DIST cglm-0.8.5.tar.gz 621734 BLAKE2B 7cde681529a1e43444a431793bbeb09122c636b50650489c44b98f03a01477c5192e2109e6777d5a9c4254dbe6fd91371011762c77f76011a245dbbddf24f359 SHA512 a8f6df415dc482a9b16bb7ff44aba77c32e7297b48d5e7b0fb5b2e0d92fc80cad8e436d0c83fdd7cc0836ba451137d72af2f0f823ce9698000bf257b3019b7c5
DIST cglm-0.8.7.tar.gz 630522 BLAKE2B 063daa82a52136bb8f19ac120afa3813e2a5edab8db161fe87de6217402b37be4db0e904619659e2bd4a4c152dd47d5aeba704aec326b7d5d100c9957932ff1f SHA512 658b9af42111a4e2f68a3fe0665d51a5b2b34abefa404374d843d5b5506eac51d07e9e29549e69683d18982856e175573d218ceb55617870f239c00b1bf6bc0f
DIST cglm-0.8.8.tar.gz 631074 BLAKE2B 381de733722ef7cc7deb8799da2e7ccb2efeec1fd8cf9322c98216e796b829d4b81208e93c6b0e4f14b868fe60d498142b59c5de48e578df656333f4196967f9 SHA512 a89f76378aee6ee8a7a38b9ce975bff1873590b4cb83daaf658b2875578758d05e15e92ef7141df3109ee37e6b097eda0bb2e60b13fdeca536a72053145c5ece
diff --git a/dev-libs/cglm/cglm-0.8.5.ebuild b/dev-libs/cglm/cglm-0.8.5.ebuild
deleted file mode 100644
index 4fb50580e..000000000
--- a/dev-libs/cglm/cglm-0.8.5.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 2019-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DOCS_BUILDER="sphinx"
-DOCS_AUTODOC=0
-DOCS_DIR="${S}/docs/source"
-
-PYTHON_COMPAT=( python3_{8,9,10} )
-
-inherit python-any-r1
-inherit docs meson
-
-if [[ ${PV} == *9999* ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/recp/cglm.git"
-else
- SRC_URI="https://github.com/recp/cglm/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
-fi
-
-DESCRIPTION="OpenGL Mathematics (glm) for C"
-HOMEPAGE="https://github.com/recp/cglm"
-LICENSE="MIT"
-SLOT="0"
-
-src_configure() {
- local emesonargs=(
- "-Dwerror=false"
- )
- meson_src_configure
-}
-
-src_compile() {
- default
- meson_src_compile
- docs_compile
-}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-libs/cglm/
@ 2023-02-25 7:17 Viorel Munteanu
0 siblings, 0 replies; 12+ messages in thread
From: Viorel Munteanu @ 2023-02-25 7:17 UTC (permalink / raw
To: gentoo-commits
commit: 0952745ce7bad1baad3baec0c01ab4f31841bf70
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Sat Feb 25 00:02:23 2023 +0000
Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Sat Feb 25 00:02:26 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0952745c
dev-libs/cglm: treeclean (in ::gentoo now)
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-libs/cglm/Manifest | 2 --
dev-libs/cglm/cglm-0.8.8.ebuild | 46 -----------------------------------------
dev-libs/cglm/cglm-0.8.9.ebuild | 46 -----------------------------------------
dev-libs/cglm/cglm-9999.ebuild | 46 -----------------------------------------
dev-libs/cglm/metadata.xml | 16 --------------
5 files changed, 156 deletions(-)
diff --git a/dev-libs/cglm/Manifest b/dev-libs/cglm/Manifest
deleted file mode 100644
index 05dcd5ca9..000000000
--- a/dev-libs/cglm/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST cglm-0.8.8.tar.gz 631074 BLAKE2B 381de733722ef7cc7deb8799da2e7ccb2efeec1fd8cf9322c98216e796b829d4b81208e93c6b0e4f14b868fe60d498142b59c5de48e578df656333f4196967f9 SHA512 a89f76378aee6ee8a7a38b9ce975bff1873590b4cb83daaf658b2875578758d05e15e92ef7141df3109ee37e6b097eda0bb2e60b13fdeca536a72053145c5ece
-DIST cglm-0.8.9.tar.gz 631331 BLAKE2B 17f6f8d379aa81ee9327315b121cc7629fcc394fe032c1e1540e5153b2d3b0a2129f27eb46a8ae4323aa826b2bfff310b9039f78953d52d0bd994ba493fcdbd9 SHA512 ac0a042d61c60eac7d6616e5bc0f5c3e77b1a45f58f6732b34edc9a0d714046777e4b490200a3b54c6325ddad5b5faeb3648a299685f748f8b0618ce66a9a7f4
diff --git a/dev-libs/cglm/cglm-0.8.8.ebuild b/dev-libs/cglm/cglm-0.8.8.ebuild
deleted file mode 100644
index 6c3dd814c..000000000
--- a/dev-libs/cglm/cglm-0.8.8.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 2019-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DOCS_BUILDER="sphinx"
-DOCS_AUTODOC=1
-DOCS_DEPEND="dev-python/sphinx-rtd-theme"
-DOCS_DIR="${S}/docs/source"
-
-PYTHON_COMPAT=( python3_{8..11} )
-
-inherit python-any-r1
-inherit docs meson
-
-if [[ ${PV} == *9999* ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/recp/cglm.git"
-else
- SRC_URI="https://github.com/recp/cglm/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
-fi
-
-DESCRIPTION="OpenGL Mathematics (glm) for C"
-HOMEPAGE="https://github.com/recp/cglm"
-LICENSE="MIT"
-SLOT="0"
-
-src_prepare() {
- default
- # Enable autodoc since themeing plugin is used.
- sed -i "s#'sphinx.ext.githubpages'#'sphinx.ext.githubpages','sphinx.ext.autodoc'#" docs/source/conf.py || die
-}
-
-src_configure() {
- local emesonargs=(
- "-Dwerror=false"
- )
- meson_src_configure
-}
-
-src_compile() {
- default
- meson_src_compile
- docs_compile
-}
diff --git a/dev-libs/cglm/cglm-0.8.9.ebuild b/dev-libs/cglm/cglm-0.8.9.ebuild
deleted file mode 100644
index 614d475d7..000000000
--- a/dev-libs/cglm/cglm-0.8.9.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 2019-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DOCS_BUILDER="sphinx"
-DOCS_AUTODOC=1
-DOCS_DEPEND="dev-python/sphinx-rtd-theme"
-DOCS_DIR="${S}/docs/source"
-
-PYTHON_COMPAT=( python3_{8..11} )
-
-inherit python-any-r1
-inherit docs meson
-
-if [[ ${PV} == *9999* ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/recp/cglm.git"
-else
- SRC_URI="https://github.com/recp/cglm/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
-fi
-
-DESCRIPTION="OpenGL Mathematics (glm) for C"
-HOMEPAGE="https://github.com/recp/cglm"
-LICENSE="MIT"
-SLOT="0"
-
-src_prepare() {
- default
- # Enable autodoc since themeing plugin is used.
- sed -i "s#'sphinx.ext.githubpages'#'sphinx.ext.githubpages','sphinx.ext.autodoc'#" docs/source/conf.py || die
-}
-
-src_configure() {
- local emesonargs=(
- "-Dwerror=false"
- )
- meson_src_configure
-}
-
-src_compile() {
- default
- meson_src_compile
- docs_compile
-}
diff --git a/dev-libs/cglm/cglm-9999.ebuild b/dev-libs/cglm/cglm-9999.ebuild
deleted file mode 100644
index 6c3dd814c..000000000
--- a/dev-libs/cglm/cglm-9999.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 2019-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DOCS_BUILDER="sphinx"
-DOCS_AUTODOC=1
-DOCS_DEPEND="dev-python/sphinx-rtd-theme"
-DOCS_DIR="${S}/docs/source"
-
-PYTHON_COMPAT=( python3_{8..11} )
-
-inherit python-any-r1
-inherit docs meson
-
-if [[ ${PV} == *9999* ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/recp/cglm.git"
-else
- SRC_URI="https://github.com/recp/cglm/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
-fi
-
-DESCRIPTION="OpenGL Mathematics (glm) for C"
-HOMEPAGE="https://github.com/recp/cglm"
-LICENSE="MIT"
-SLOT="0"
-
-src_prepare() {
- default
- # Enable autodoc since themeing plugin is used.
- sed -i "s#'sphinx.ext.githubpages'#'sphinx.ext.githubpages','sphinx.ext.autodoc'#" docs/source/conf.py || die
-}
-
-src_configure() {
- local emesonargs=(
- "-Dwerror=false"
- )
- meson_src_configure
-}
-
-src_compile() {
- default
- meson_src_compile
- docs_compile
-}
diff --git a/dev-libs/cglm/metadata.xml b/dev-libs/cglm/metadata.xml
deleted file mode 100644
index b063dadad..000000000
--- a/dev-libs/cglm/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>o.freyermuth@googlemail.com</email>
- <name>Oliver Freyermuth</name>
- </maintainer>
- <upstream>
- <bugs-to>https://github.com/recp/cglm/issues</bugs-to>
- <changelog>https://github.com/recp/cglm/releases</changelog>
- <remote-id type="github">recp/cglm</remote-id>
- </upstream>
- <longdescription lang="en">
- cglm is an optimized 3D math library written in C99 (compatible with C89). It is similar to original glm library except this is mainly for C.
- </longdescription>
-</pkgmetadata>
^ permalink raw reply related [flat|nested] 12+ messages in thread
end of thread, other threads:[~2023-02-25 7:17 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-25 11:24 [gentoo-commits] repo/proj/guru:master commit in: dev-libs/cglm/ Ronny Gutbrod
-- strict thread matches above, loose matches on Subject: below --
2023-02-25 7:17 Viorel Munteanu
2022-12-16 16:39 Florian Schmaus
2022-12-16 16:39 Florian Schmaus
2022-11-01 2:55 Ronny Gutbrod
2022-06-01 11:17 Andrew Ammerlaan
2022-03-25 11:24 Ronny Gutbrod
2021-08-20 18:48 Florian Schmaus
2021-05-30 15:53 Andrew Ammerlaan
2021-05-30 14:47 Andrew Ammerlaan
2021-05-03 10:11 Andrew Ammerlaan
2021-05-02 9:27 Theo Anderson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox