mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-12 08:33:15 -04:00
dev-python/pyglm: new package, add 2.7.3
Signed-off-by: Henri Gasc <gasc@eurecom.fr>
This commit is contained in:
2
dev-python/pyglm/Manifest
Normal file
2
dev-python/pyglm/Manifest
Normal file
@@ -0,0 +1,2 @@
|
||||
DIST pyglm-2.7.3-glm.gh.tar.gz 232356 BLAKE2B ae9c1dada06c33240eac906af5e6ecad903a19d62640aa569371a0aa223ebc0afa6d7f3cfc4ad419376bc43d5877e5e606f5e419d048306247f8b3eba352ca1d SHA512 9005100f39990b5b61eced679863d116bb6375060384c6e4cddbd2dc0caa3a66d165d9b294de84fdfe58e610f15500ffa172ca0760eba4efff9d91c65a310852
|
||||
DIST pyglm-2.7.3.gh.tar.gz 735017 BLAKE2B 9584c9f7dd7121843ccaa8b036d535532b29b3d4eee48b5ce24daddd1669160cf9f5262c08ef8c6912ccb3f8e39958a63563a2e0369ebc88b5673a3bd4822c77 SHA512 e48019abc27f8c6dfbad48d7fd94169f0cea24fb8ba3428ea7f418e7129eb900fc1c670b96637a3b7ff8a5fefbd3dbaa399738eb508523460d5b2a62e148a202
|
||||
12
dev-python/pyglm/metadata.xml
Normal file
12
dev-python/pyglm/metadata.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM 'https://www.gentoo.org/dtd/metadata.dtd'>
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>gasc@eurecom.fr</email>
|
||||
<name>Gasc Henri</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="pypi">PyGLM</remote-id>
|
||||
<remote-id type="github">Zuzu-Typ/PyGLM</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
39
dev-python/pyglm/pyglm-2.7.3.ebuild
Normal file
39
dev-python/pyglm/pyglm-2.7.3.ebuild
Normal file
@@ -0,0 +1,39 @@
|
||||
# Copyright 2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_EXT=1
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYTHON_COMPAT=( python3_{10..13} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
HASH="fbc534be62f8c785db989f8ae7526edf6d0dc306"
|
||||
DESCRIPTION="Fast OpenGL Mathematics (GLM) for Python"
|
||||
HOMEPAGE="https://github.com/Zuzu-Typ/PyGLM https://pypi.org/project/PyGLM"
|
||||
SRC_URI="
|
||||
https://github.com/Zuzu-Typ/PyGLM/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz
|
||||
https://github.com/Zuzu-Typ/glm/archive/${HASH}.tar.gz -> ${P}-glm.gh.tar.gz
|
||||
"
|
||||
|
||||
LICENSE="ZLIB"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
RDEPEND="
|
||||
media-libs/glm
|
||||
test? ( dev-python/numpy[${PYTHON_USEDEP}] )
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
mv "${WORKDIR}/glm-${HASH}"/* -t "${S}/glm"
|
||||
}
|
||||
|
||||
EPYTEST_DESELECT=(
|
||||
# Tests fails, see https://github.com/Zuzu-Typ/PyGLM/issues/227
|
||||
test/PyGLM_test.py::test_findMSB
|
||||
test/PyGLM_test.py::test_bitCount
|
||||
)
|
||||
distutils_enable_tests pytest
|
||||
Reference in New Issue
Block a user