diff options
author | Matt Turner <mattst88@gentoo.org> | 2021-11-24 22:48:46 -0800 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2021-11-24 22:52:10 -0800 |
commit | 0b569f130d898ca3c1fee631dc2a88f85cda87dd (patch) | |
tree | ed14bd2aeb097576083500051fac3a0c4e690809 /dev-libs/wayland-protocols | |
parent | dev-libs/libevdev: Version bump to 1.12.0 (diff) | |
download | gentoo-0b569f130d898ca3c1fee631dc2a88f85cda87dd.tar.gz gentoo-0b569f130d898ca3c1fee631dc2a88f85cda87dd.tar.bz2 gentoo-0b569f130d898ca3c1fee631dc2a88f85cda87dd.zip |
dev-libs/wayland-protocols: Version bump to 1.24
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'dev-libs/wayland-protocols')
-rw-r--r-- | dev-libs/wayland-protocols/Manifest | 1 | ||||
-rw-r--r-- | dev-libs/wayland-protocols/wayland-protocols-1.24.ebuild | 38 |
2 files changed, 39 insertions, 0 deletions
diff --git a/dev-libs/wayland-protocols/Manifest b/dev-libs/wayland-protocols/Manifest index 9e9eff1e36cc..0c9cb95b812b 100644 --- a/dev-libs/wayland-protocols/Manifest +++ b/dev-libs/wayland-protocols/Manifest @@ -1 +1,2 @@ DIST wayland-protocols-1.23.tar.xz 74116 BLAKE2B a92f9d80e8d9062fb79c06e13141b46e0f43d0813f461e087a9fa724fa752df3b4fe5698e34e7431f3b43cca0adf7b86ab77c948060f6c02e4c7693f7975cd15 SHA512 11f09147da1dd01a9f5c921eb0bfc6244a72023a052ef96bc121e16437a2c43d0dbba748c2de832539f57371e90b16bd13069bec07391305717f8fca295ea2a6 +DIST wayland-protocols-1.24.tar.xz 77120 BLAKE2B 912132cb2b65b99184f25942e02000444ce5d37b60f33363999e8431db5835d3c0dab41dae312f0dbb02d03ab7e4f3f588e7b507e767ec132a82fd816700b09a SHA512 4b1122517db56f48a5fafd4bd0cb7f94faef6fdd2d80e6cec17e5a6bafbaf2f5a71b958ed12e6d13965494885c209b2fb6dd8331487b39c6f251e71f1e770a15 diff --git a/dev-libs/wayland-protocols/wayland-protocols-1.24.ebuild b/dev-libs/wayland-protocols/wayland-protocols-1.24.ebuild new file mode 100644 index 000000000000..f9b1910a51a1 --- /dev/null +++ b/dev-libs/wayland-protocols/wayland-protocols-1.24.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +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://wayland.freedesktop.org/releases/${P}.tar.xz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +fi + +LICENSE="MIT" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +DEPEND=" + test? ( dev-libs/wayland ) +" +RDEPEND="" +BDEPEND=" + dev-util/wayland-scanner + virtual/pkgconfig +" + +src_configure() { + local emesonargs=( + $(meson_use test tests) + ) + meson_src_configure +} |