mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-19 15:59:00 -04:00
27 lines
618 B
Bash
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
|
|
}
|