dev-util/directx-headers: Version bump to 1.615.0

Signed-off-by: Matt Turner <mattst88@gentoo.org>
This commit is contained in:
Matt Turner 2025-04-19 15:09:24 -04:00
parent 73b2e47334
commit 48db543d65
No known key found for this signature in database
GPG Key ID: ACEB29740C9A4E97
2 changed files with 31 additions and 0 deletions

View File

@ -1 +1,2 @@
DIST directx-headers-1.614.1.tar.gz 458944 BLAKE2B 7c23727450d98e2dc4dcdc04119c380683c6789bb969bf3a4e29dc1b44479f3cb063238f18805332171227e41f8a8539d6f87ec26ba7a6c8cb3a394f0f818cc2 SHA512 934108052b9aa54b888c301f358a9d5b8f9ce1a5902e33b80c3273c963d10984faa7da167f1fed203462fe016e30443cb5e0d014de63fc9c0a81a674f757a7a9
DIST directx-headers-1.615.0.tar.gz 464590 BLAKE2B 1e2bcebd9d341b99e1faf915c762e751f4067984c16b5480bdebdaf19f881d4b87c10b74bc4024a44e862db23be6e1ba49cb011d0b8f53f3875977d40092a518 SHA512 2098b307d5a8ce3f9b0830dbb4840242070f73ad6c51451d80f837cf13cc95dd17de83e8aafa9f9394ab04b8d23939afe95872c497e334d73d315693d5fc0c75

View File

@ -0,0 +1,30 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_PN=DirectX-Headers
inherit meson-multilib
if [[ ${PV} == *9999* ]]; then
EGIT_REPO_URI="https://github.com/microsoft/${MY_PN}.git"
inherit git-r3
else
SRC_URI="https://github.com/microsoft/${MY_PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm64 ~x86"
S="${WORKDIR}"/${MY_PN}-${PV}
fi
DESCRIPTION="DirectX header files and WSL stubs"
HOMEPAGE="https://github.com/microsoft/DirectX-Headers"
LICENSE="MIT"
SLOT="0"
multilib_src_configure() {
local emesonargs=(
-Dbuild-test=false
)
meson_src_configure
}