public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Matt Turner" <mattst88@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/libxkbcommon/
Date: Mon,  9 Oct 2023 20:32:00 +0000 (UTC)	[thread overview]
Message-ID: <1696883517.d4cb3846fc9bc4078299ab57f7e4f6c2d14b314e.mattst88@gentoo> (raw)

commit:     d4cb3846fc9bc4078299ab57f7e4f6c2d14b314e
Author:     Leonardo Hernández Hernández <leohdz172 <AT> proton <DOT> me>
AuthorDate: Mon Oct  9 00:00:34 2023 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Mon Oct  9 20:31:57 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4cb3846

x11-libs/libxkbcommon: add 1.6.0

Signed-off-by: Leonardo Hernández Hernández <leohdz172 <AT> proton.me>
Closes: https://github.com/gentoo/gentoo/pull/33256
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 x11-libs/libxkbcommon/Manifest                  |  1 +
 x11-libs/libxkbcommon/libxkbcommon-1.6.0.ebuild | 69 +++++++++++++++++++++++++
 2 files changed, 70 insertions(+)

diff --git a/x11-libs/libxkbcommon/Manifest b/x11-libs/libxkbcommon/Manifest
index 0328e5e29ab7..6b78dd3f50e5 100644
--- a/x11-libs/libxkbcommon/Manifest
+++ b/x11-libs/libxkbcommon/Manifest
@@ -1 +1,2 @@
 DIST libxkbcommon-1.5.0.tar.xz 472700 BLAKE2B 5dcfb514c297f71629f20b444cb29c5d26ce9def1c1173a125fb0c0c259d76194fcef7a407d8efda2d2d87c9b90abac34e2fc1742cfd6053df511a3ef205c8ef SHA512 bbba6665f052c04c7450413cc5e2badd6bfd41326b0e4c60e3ec01d730cae695fd34ce2662b8a91ece7a76b974a0ea330f7462dd5d2db148b0d0da26264ced9c
+DIST libxkbcommon-1.6.0.tar.xz 510456 BLAKE2B ffd373161f12ea6448a9206f57710355ab65b81ebab5dce74e4dfcee1bdc9175406fc434560648f5933b83cac163099c8564c3add6f51d34856def39ab077850 SHA512 4f93225eada1c5d0806bbc01f72d82d72729f4580ade963ff6a386711c9b2232aae5213c8488abf01c3b81f0e1fdb7f4d8a4d3786113ccc134251ff164c4be5c

diff --git a/x11-libs/libxkbcommon/libxkbcommon-1.6.0.ebuild b/x11-libs/libxkbcommon/libxkbcommon-1.6.0.ebuild
new file mode 100644
index 000000000000..ea6a904b5f8e
--- /dev/null
+++ b/x11-libs/libxkbcommon/libxkbcommon-1.6.0.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+if [[ ${PV} = *9999* ]]; then
+	GIT_ECLASS="git-r3"
+	EGIT_REPO_URI="https://github.com/xkbcommon/${PN}"
+else
+	SRC_URI="https://xkbcommon.org/download/${P}.tar.xz"
+	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+fi
+
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit meson-multilib ${GIT_ECLASS} python-any-r1 virtualx
+
+DESCRIPTION="Keymap handling library for toolkits and window systems"
+HOMEPAGE="https://xkbcommon.org/ https://github.com/xkbcommon/libxkbcommon/"
+LICENSE="MIT"
+IUSE="doc static-libs test tools wayland X"
+RESTRICT="!test? ( test )"
+SLOT="0"
+
+BDEPEND="
+	sys-devel/bison
+	doc? ( app-doc/doxygen )
+	test? ( ${PYTHON_DEPS} )
+	wayland? ( dev-util/wayland-scanner )
+"
+RDEPEND="
+	X? ( >=x11-libs/libxcb-1.10:=[${MULTILIB_USEDEP}] )
+	wayland? ( >=dev-libs/wayland-1.2.0[${MULTILIB_USEDEP}] )
+	dev-libs/libxml2[${MULTILIB_USEDEP}]
+	x11-misc/compose-tables
+	x11-misc/xkeyboard-config
+"
+DEPEND="${RDEPEND}
+	X? ( x11-base/xorg-proto )
+	wayland? ( >=dev-libs/wayland-protocols-1.12 )
+"
+
+pkg_setup() {
+	if use test; then
+		python-any-r1_pkg_setup
+	fi
+}
+
+multilib_src_configure() {
+	local emesonargs=(
+		-Ddefault_library="$(usex static-libs both shared)"
+		-Dxkb-config-root="${EPREFIX}/usr/share/X11/xkb"
+		$(meson_native_use_bool tools enable-tools)
+		$(meson_use X enable-x11)
+		$(meson_native_use_bool doc enable-docs)
+		$(meson_use wayland enable-wayland)
+	)
+	meson_src_configure
+}
+
+multilib_src_test() {
+	virtx meson_src_test
+}
+
+multilib_src_install_all() {
+	if use doc; then
+		mv "${ED}"/usr/share/doc/{${PN},${P}} || die
+	fi
+}


             reply	other threads:[~2023-10-09 20:32 UTC|newest]

Thread overview: 189+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-10-09 20:32 Matt Turner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-02-10 17:30 [gentoo-commits] repo/gentoo:master commit in: x11-libs/libxkbcommon/ Matt Turner
2024-06-09 18:54 Matt Turner
2024-05-17  0:24 Matt Turner
2024-04-26 13:07 Sam James
2024-04-26 13:07 Sam James
2024-04-26 12:52 Sam James
2024-04-26 12:52 Sam James
2024-04-26 12:50 Sam James
2024-04-26 12:50 Sam James
2024-04-26  6:03 Arthur Zamarin
2024-03-26 15:26 Matt Turner
2024-03-06 21:51 Matt Turner
2024-03-06 21:51 Matt Turner
2024-01-22 15:42 Sam James
2024-01-08 12:28 Sam James
2023-11-25 17:31 Matt Turner
2023-11-25  9:37 Arthur Zamarin
2023-11-16 19:58 Arthur Zamarin
2023-11-16 19:42 Arthur Zamarin
2023-11-16 17:17 Arthur Zamarin
2023-11-16 17:17 Arthur Zamarin
2023-11-16 17:17 Arthur Zamarin
2023-11-16 17:17 Arthur Zamarin
2023-10-09 20:32 Matt Turner
2023-10-09 20:32 Matt Turner
2023-03-13 20:07 Matt Turner
2023-03-13 19:18 Arthur Zamarin
2023-03-04 13:51 Arthur Zamarin
2023-03-04  7:04 Arthur Zamarin
2023-03-03 18:47 Arthur Zamarin
2023-03-03 18:42 Arthur Zamarin
2023-03-03  5:57 Arthur Zamarin
2023-03-02 19:52 Arthur Zamarin
2023-01-10 23:41 Matt Turner
2022-06-24 16:26 Matt Turner
2022-06-17  6:56 Agostino Sarubbo
2022-06-16 15:16 Sam James
2022-06-16 15:16 Sam James
2022-06-16  7:39 Agostino Sarubbo
2022-06-16  7:38 Agostino Sarubbo
2022-06-16  6:10 Agostino Sarubbo
2022-06-16  6:09 Agostino Sarubbo
2022-05-29 15:23 Matt Turner
2022-05-28  1:35 Sam James
2022-05-25 18:00 Jakov Smolić
2022-05-25 17:57 Jakov Smolić
2022-05-24 18:32 Matt Turner
2022-05-08 23:01 Sam James
2022-05-08  7:34 WANG Xuerui
2022-05-07 17:55 Jakov Smolić
2022-02-06 23:11 Matt Turner
2021-11-18  7:48 Matt Turner
2021-11-17 22:55 Georgy Yakovlev
2021-11-17 16:51 Arthur Zamarin
2021-11-17  7:49 Sam James
2021-11-15  8:38 Jakov Smolić
2021-11-15  1:12 Sam James
2021-11-12 20:51 Sam James
2021-11-07 22:10 Jakov Smolić
2021-09-24  2:54 Matt Turner
2021-06-04  1:14 Matt Turner
2021-05-29 18:16 Matt Turner
2021-05-27 19:23 Sam James
2021-05-27 19:18 Sam James
2021-05-27 19:18 Sam James
2021-05-27 19:14 Sam James
2021-05-27 19:11 Sam James
2021-05-27 19:11 Sam James
2021-05-21  2:30 Matt Turner
2021-05-04  2:07 Matt Turner
2021-04-08  3:05 Matt Turner
2021-03-04 20:21 Matt Turner
2020-12-31 16:59 Matt Turner
2020-12-24  3:42 Matt Turner
2020-12-20 19:17 Thomas Deutschmann
2020-12-20 16:59 Mike Gilbert
2020-12-20 11:46 Mikle Kolyada
2020-12-19 15:08 Sam James
2020-12-13 23:30 Sam James
2020-12-07 15:27 Sam James
2020-12-07  5:23 Sam James
2020-12-06 20:48 Sam James
2020-11-25 16:19 Matt Turner
2020-11-22 21:16 Matt Turner
2020-09-28 21:26 Matt Turner
2020-09-17 14:00 Lars Wendler
2020-08-09 17:52 Matt Turner
2020-07-31 17:53 Sergei Trofimovich
2020-07-21  9:33 Agostino Sarubbo
2020-07-21  8:48 Agostino Sarubbo
2020-07-19  1:47 Sam James
2020-07-17 20:47 Sam James
2020-07-17 15:15 Agostino Sarubbo
2020-07-17 15:09 Agostino Sarubbo
2020-07-17 15:07 Agostino Sarubbo
2020-06-30  8:21 Lars Wendler
2020-03-29 10:48 Sergei Trofimovich
2020-03-11 18:42 Matt Turner
2020-03-08 10:49 Mart Raudsepp
2020-03-05 15:10 Agostino Sarubbo
2020-03-05 15:09 Agostino Sarubbo
2020-03-05 13:23 Agostino Sarubbo
2020-03-05 12:54 Agostino Sarubbo
2020-03-05 11:51 Agostino Sarubbo
2020-03-05 11:40 Agostino Sarubbo
2020-03-05 11:37 Agostino Sarubbo
2020-01-21 17:00 Lars Wendler
2019-12-05 23:21 Matt Turner
2019-11-26 22:54 Matt Turner
2019-11-26 19:35 Sergei Trofimovich
2019-11-26  0:58 Thomas Deutschmann
2019-11-22 13:44 Matt Turner
2019-11-22  9:34 Mikle Kolyada
2019-11-20 11:48 Agostino Sarubbo
2019-11-20 11:35 Agostino Sarubbo
2019-11-20 11:21 Agostino Sarubbo
2019-11-18 22:08 Aaron Bauman
2019-11-18 14:29 Agostino Sarubbo
2019-10-21 14:46 Lars Wendler
2019-10-20 22:55 Thomas Deutschmann
2019-10-20 20:17 Matt Turner
2019-05-01 20:47 Matt Turner
2019-05-01 18:24 Matt Turner
2019-04-30 15:37 Sergei Trofimovich
2019-04-28  9:35 Mikle Kolyada
2019-04-28  4:21 Matt Turner
2019-04-28  0:48 Matt Turner
2019-04-27 11:52 Mikle Kolyada
2019-04-27 11:47 Mikle Kolyada
2019-04-27  4:29 Aaron Bauman
2019-04-27  3:15 Aaron Bauman
2019-02-28 22:51 Matt Turner
2019-02-28  7:15 Matt Turner
2019-02-12 22:42 Matt Turner
2019-01-19 20:09 Mart Raudsepp
2018-11-01 19:07 Sergei Trofimovich
2018-09-16 15:44 Matt Turner
2018-09-16  7:54 Mikle Kolyada
2018-09-15 18:19 Sergei Trofimovich
2018-09-15 12:10 Sergei Trofimovich
2018-09-14 12:17 Tobias Klausmann
2018-09-13 14:46 Agostino Sarubbo
2018-09-12 20:47 Thomas Deutschmann
2018-09-11 20:57 Matt Turner
2018-09-11 20:57 Matt Turner
2018-08-08 19:25 Matt Turner
2018-07-21 15:24 Mikle Kolyada
2018-05-20 21:07 Matt Turner
2018-05-20 18:37 Matt Turner
2018-05-20 18:37 Matt Turner
2018-05-20 16:16 Matt Turner
2018-05-20 16:16 Matt Turner
2018-05-14 12:38 Tobias Klausmann
2018-05-14  0:22 Aaron Bauman
2018-05-13 22:06 Thomas Deutschmann
2018-05-13  9:53 Sergei Trofimovich
2018-05-12 15:33 Sergei Trofimovich
2018-03-28  8:59 Matt Turner
2018-03-19 19:51 Sergei Trofimovich
2018-03-13 19:51 Michał Górny
2017-12-19  3:42 Lars Wendler
2017-08-07  8:00 Lars Wendler
2017-07-30  9:23 Michał Górny
2017-06-24  8:40 Markus Meier
2017-06-13 12:31 Agostino Sarubbo
2017-06-04 19:20 Tobias Klausmann
2017-06-01  9:13 Agostino Sarubbo
2017-05-31 13:06 Agostino Sarubbo
2017-05-30 13:16 Manuel Rüger
2017-03-04  7:23 Matt Turner
2017-03-04  7:23 Matt Turner
2017-03-04  7:23 Matt Turner
2017-03-04  7:23 Matt Turner
2017-03-04  7:23 Matt Turner
2017-01-25 12:28 Agostino Sarubbo
2017-01-22 17:20 Agostino Sarubbo
2017-01-20  4:34 Lars Wendler
2016-11-26 21:50 Lars Wendler
2016-11-17 10:48 Agostino Sarubbo
2016-11-16 10:44 Agostino Sarubbo
2016-09-22 15:55 Tobias Klausmann
2016-09-17 11:14 Pacho Ramos
2016-09-17 10:49 Pacho Ramos
2016-08-06 10:56 Markus Meier
2016-08-03  4:32 Jeroen Roovers
2016-04-10  0:08 Manuel Rüger
2016-03-19 14:19 Manuel Rüger
2016-03-19 14:19 Manuel Rüger

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1696883517.d4cb3846fc9bc4078299ab57f7e4f6c2d14b314e.mattst88@gentoo \
    --to=mattst88@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox