From 4c42a9ddf02389bbb1a1d3bf5ec68ab05e4305e5 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Thu, 18 Dec 2025 10:39:03 -0500 Subject: [PATCH] dev-libs/wayland-protocols: Version bump to 1.47 Signed-off-by: Matt Turner --- dev-libs/wayland-protocols/Manifest | 1 + .../wayland-protocols-1.47.ebuild | 37 +++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 dev-libs/wayland-protocols/wayland-protocols-1.47.ebuild diff --git a/dev-libs/wayland-protocols/Manifest b/dev-libs/wayland-protocols/Manifest index 5944430b6651..e4f8544530d5 100644 --- a/dev-libs/wayland-protocols/Manifest +++ b/dev-libs/wayland-protocols/Manifest @@ -1,2 +1,3 @@ DIST wayland-protocols-1.45.tar.xz 130040 BLAKE2B 9c70bf8975056e4038492101c38acdc476b28e277200144ff6e436e573b1e023e609b0a7bbf8f5acedecbfb268af6b41d11d4c101ffecebafe29440f4dcee4c1 SHA512 d0557a75eb486fb824f182648bec346e270cb1ada8727613377ab95b0ccb595c516de242f486110c88b7009e98c87b071bf5b598f84466e5624aa1d81f19e195 DIST wayland-protocols-1.46.tar.xz 135476 BLAKE2B 6bae156ec16dc4675b96c5ebd3b5b97ba49aa2169b331e2407f3b1b6fd46e31c8823ba103306cdaeaceb80012f03e88e12c0e7ab01e8199955fe6767522759e3 SHA512 867b55357b9ca49d14504e3066c2d4e39762b4706bae4ca30330d8e8fad954531d2e055595d1ceb544e37cca6cce68152f12cf093ee9805987975619a3b24958 +DIST wayland-protocols-1.47.tar.xz 136148 BLAKE2B 2b6fcd847016ccd0a8fb5e47a6429274a34ce414948f02da0d56d51855dc732c56c8266be38388deacb6af6491146da0049f6e003cec823a1d362bd2f429e678 SHA512 2a89d5b2f16a42a195acd09ff5e093e4ef021ee7f50447bb59890d5fe630bad353485b6edcdfd5e193e8262ce538a4aff57a49b2dd5cc14b2858bf3e5b7ee17e diff --git a/dev-libs/wayland-protocols/wayland-protocols-1.47.ebuild b/dev-libs/wayland-protocols/wayland-protocols-1.47.ebuild new file mode 100644 index 000000000000..88fd7ea8817d --- /dev/null +++ b/dev-libs/wayland-protocols/wayland-protocols-1.47.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson + +DESCRIPTION="Wayland protocol files" +HOMEPAGE="https://wayland.freedesktop.org/" + +if [[ ${PV} = 9999* ]]; then + EGIT_REPO_URI="https://gitlab.freedesktop.org/wayland/${PN}.git/" + inherit git-r3 +else + SRC_URI="https://gitlab.freedesktop.org/wayland/${PN}/-/releases/${PV}/downloads/${P}.tar.xz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +fi + +LICENSE="MIT" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +DEPEND=" + test? ( dev-libs/wayland ) +" +BDEPEND=" + >=dev-util/wayland-scanner-1.23.0 + virtual/pkgconfig +" + +src_configure() { + local emesonargs=( + $(meson_use test tests) + ) + meson_src_configure +}