From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 601B9158042 for ; Tue, 12 Nov 2024 13:21:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DAB67E086A; Tue, 12 Nov 2024 13:20:59 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BF2BDE086A for ; Tue, 12 Nov 2024 13:20:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DC1F5342F99 for ; Tue, 12 Nov 2024 13:20:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7619E21C8 for ; Tue, 12 Nov 2024 13:20:55 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1731359963.136407c217b8f6a9949f491553303f86ad1f007f.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: media-libs/glad/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-libs/glad/Manifest media-libs/glad/glad-2.0.7.ebuild X-VCS-Directories: media-libs/glad/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: 136407c217b8f6a9949f491553303f86ad1f007f X-VCS-Branch: master Date: Tue, 12 Nov 2024 13:20:55 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b4fba078-798b-40ca-a4a7-e22142928860 X-Archives-Hash: 969883d4c08b5b70e19d16d0befcf0ee commit: 136407c217b8f6a9949f491553303f86ad1f007f Author: Eli Burch burchbytes com> AuthorDate: Mon Nov 11 21:19:11 2024 +0000 Commit: David Roman gmail com> CommitDate: Mon Nov 11 21:19:23 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=136407c2 media-libs/glad: drop 2.0.7, jinja -> jinja2 Signed-off-by: Eli Burch burchbytes.com> media-libs/glad/Manifest | 1 - media-libs/glad/glad-2.0.7.ebuild | 27 --------------------------- 2 files changed, 28 deletions(-) diff --git a/media-libs/glad/Manifest b/media-libs/glad/Manifest index 20bff6008..d690738d6 100644 --- a/media-libs/glad/Manifest +++ b/media-libs/glad/Manifest @@ -1,2 +1 @@ -DIST glad-2.0.7.tar.gz 634044 BLAKE2B b6bb2157742d4d186f83a4bb1d97e1b62a7266970cd6fa4d80218f264df48161647cd520dbd6fbde6bfd96b81e938e724a15153d4721b2fa6f678d145c7927f0 SHA512 6aae5e36acd319913f3c313da2a552d3033f7acbfd38fd07da99e737a23eaf250091134d82eceaf106aaa26bdd9f3a95b64dea635d5a82010e4d9a0ba69fc0e1 DIST glad-2.0.8.tar.gz 645593 BLAKE2B cceee457246dd6edf03da895dc7fd8e7a8e9ab616b88e9703377a5749f827476d743b80a6a3753276b69ffa7987be523e6590d14c756e8d2afc799fdf01d655b SHA512 ec964d0080c9714803f0464492b237039d2bede805d21aa9e487f3bf910447fd6440eeca59f3795dc4d5dd3b3df35101714fa21ea19eb29f6a021864a2310acd diff --git a/media-libs/glad/glad-2.0.7.ebuild b/media-libs/glad/glad-2.0.7.ebuild deleted file mode 100644 index 601646833..000000000 --- a/media-libs/glad/glad-2.0.7.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# 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/jinja2" -RDEPEND="${DEPEND}" - -src_prepare(){ - distutils-r1_src_prepare - - sed -i 's@level=logging.DEBUG@level=logging.WARN@g' "glad/__main__.py" || die - sed -i 's@find_packages@find_namespace_packages@g' "setup.py" || die -}