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 D1920158042 for ; Mon, 11 Nov 2024 21:20:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B4BDBE07F1; Mon, 11 Nov 2024 21:20:50 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9FAF5E07F1 for ; Mon, 11 Nov 2024 21:20:50 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B87C43409EC for ; Mon, 11 Nov 2024 21:20:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 28DC81A26 for ; Mon, 11 Nov 2024 21:20:48 +0000 (UTC) From: "Eli Burch" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Eli Burch" Message-ID: <1731359963.136407c217b8f6a9949f491553303f86ad1f007f.redawl@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev 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: redawl X-VCS-Committer-Name: Eli Burch X-VCS-Revision: 136407c217b8f6a9949f491553303f86ad1f007f X-VCS-Branch: dev Date: Mon, 11 Nov 2024 21:20:48 +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: 70e4c454-0568-4a43-bec6-94798cd62244 X-Archives-Hash: bc182baae437cd28c2913e44a5eb0559 commit: 136407c217b8f6a9949f491553303f86ad1f007f Author: Eli Burch burchbytes com> AuthorDate: Mon Nov 11 21:19:11 2024 +0000 Commit: Eli Burch burchbytes 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 -}