diff options
Diffstat (limited to 'media-libs/glad/glad-2.0.8.ebuild')
-rw-r--r-- | media-libs/glad/glad-2.0.8.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/media-libs/glad/glad-2.0.8.ebuild b/media-libs/glad/glad-2.0.8.ebuild new file mode 100644 index 000000000..1f8842fa1 --- /dev/null +++ b/media-libs/glad/glad-2.0.8.ebuild @@ -0,0 +1,26 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{12..13} ) +DISTUTILS_USE_PEP517="setuptools" + +inherit distutils-r1 + +DESCRIPTION="Multi-Language Vulkan/GL/GLES/EGL/GLX/WGL Loader-Generator" +HOMEPAGE="https://github.com/Dav1dde/glad" +SRC_URI="https://github.com/Dav1dde/glad/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND="dev-python/jinja" +RDEPEND="${DEPEND}" + +src_prepare(){ + distutils-r1_src_prepare + + sed -i 's@level=logging.DEBUG@level=logging.WARN@g' "glad/__main__.py" || die +} |