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, 10 Feb 2025 17:30:14 +0000 (UTC) [thread overview]
Message-ID: <1739208610.0569d7b325888b9f40673deefa5ba1b08fb4a213.mattst88@gentoo> (raw)
commit: 0569d7b325888b9f40673deefa5ba1b08fb4a213
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 10 17:28:15 2025 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Mon Feb 10 17:30:10 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0569d7b3
x11-libs/libxkbcommon: Version bump to 1.8.0
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
x11-libs/libxkbcommon/Manifest | 1 +
x11-libs/libxkbcommon/libxkbcommon-1.8.0.ebuild | 72 +++++++++++++++++++++++++
2 files changed, 73 insertions(+)
diff --git a/x11-libs/libxkbcommon/Manifest b/x11-libs/libxkbcommon/Manifest
index a1157ae386b3..9befa22703d2 100644
--- a/x11-libs/libxkbcommon/Manifest
+++ b/x11-libs/libxkbcommon/Manifest
@@ -1 +1,2 @@
DIST libxkbcommon-1.7.0.tar.xz 534312 BLAKE2B b85cd8a78fce3c624e0c64c26a37b6d99bb8b8f3de489c6909826f53bdb6d33842f7ffcf955f6a9a8eb57cad53fc9756bd15d05aeb813b0f92985827243949a8 SHA512 4b74a9f3f63e2ebc1cbdcaa963c70362e55fa527e1d89b6a1fd30d7a84a8b60c1b3dc99bcfbde85aa31890e0b2f62f0bad3c8ff8340fe6a930ee662b33448ba5
+DIST libxkbcommon-1.8.0.tar.gz 995648 BLAKE2B 8edd795aff35c881bfad7905b4dc73d4a99fde23afad1b8874cb599490b5245e6b1d83a97dfd7a2031c1d232618c9a8ecfd586990b4a46df1eb87944f20660c1 SHA512 2e9a9c02bcc515c43db38266ad4b23d3530be3de28d05e086d3c12155cf1c569609a55fa4ea4ca9b0adbd8d2a553724bfa78f63481487bfee6379b3664f3aed0
diff --git a/x11-libs/libxkbcommon/libxkbcommon-1.8.0.ebuild b/x11-libs/libxkbcommon/libxkbcommon-1.8.0.ebuild
new file mode 100644
index 000000000000..4c16b4dcbd79
--- /dev/null
+++ b/x11-libs/libxkbcommon/libxkbcommon-1.8.0.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2025 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://github.com/xkbcommon/libxkbcommon/archive/refs/tags/xkbcommon-${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+ S="${WORKDIR}/libxkbcommon-xkbcommon-${PV}"
+fi
+
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit bash-completion-r1 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"
+SLOT="0"
+
+IUSE="doc static-libs test tools wayland X"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+ app-alternatives/yacc
+ doc? ( app-text/doxygen[dot] )
+ test? ( ${PYTHON_DEPS} )
+ tools? ( wayland? ( dev-util/wayland-scanner ) )
+"
+RDEPEND="
+ X? ( >=x11-libs/libxcb-1.10:=[${MULTILIB_USEDEP}] )
+ tools? ( 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 )
+ tools? ( 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"
+ -Dbash-completion-path="$(get_bashcompdir)"
+ $(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
+}
next reply other threads:[~2025-02-10 17:30 UTC|newest]
Thread overview: 195+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-10 17:30 Matt Turner [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-17 7:35 [gentoo-commits] repo/gentoo:master commit in: x11-libs/libxkbcommon/ Sam James
2025-03-17 7:35 Sam James
2025-03-17 7:35 Sam James
2025-03-17 7:35 Sam James
2025-03-17 7:35 Sam James
2025-03-13 4:30 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-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=1739208610.0569d7b325888b9f40673deefa5ba1b08fb4a213.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