guru/media-libs/glad/glad-2.0.8.ebuild
Eli Burch 6d173fbed0
media-libs/glad: add 2.0.8, drop 2.0.6
Signed-off-by: Eli Burch <eli.burch@burchbytes.com>
2024-09-29 07:55:49 -07:00

27 lines
618 B
Bash

# 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
}