Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: profiles/, dev-libs/libwacom/
Date: Mon, 30 May 2022 15:14:35
Message-Id: 1653923661.8dc2ce1f56f5a19a37452611d353ae903d957494.mattst88@gentoo
1 commit: 8dc2ce1f56f5a19a37452611d353ae903d957494
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 30 14:46:10 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Mon May 30 15:14:21 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8dc2ce1f
7
8 dev-libs/libwacom: Version bump to 2.2.0
9
10 package.mask'd for now.
11
12 Bug: https://bugs.gentoo.org/848501
13 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
14
15 dev-libs/libwacom/Manifest | 1 +
16 dev-libs/libwacom/libwacom-2.2.0.ebuild | 67 +++++++++++++++++++++++++++++++++
17 profiles/package.mask | 5 +++
18 3 files changed, 73 insertions(+)
19
20 diff --git a/dev-libs/libwacom/Manifest b/dev-libs/libwacom/Manifest
21 index 0960301449ea..85e5bab31a89 100644
22 --- a/dev-libs/libwacom/Manifest
23 +++ b/dev-libs/libwacom/Manifest
24 @@ -1,2 +1,3 @@
25 DIST libwacom-1.11.tar.bz2 519285 BLAKE2B fb26190d752316b5d25659d2ae76681bfff1803463360aa138eab91ed7d7ef2d04dfb6bdd4f8c2effc45a495ef3afc312a817d4fd41cd8167172cafd9f5cee9f SHA512 24e8183502dd2b928d53b3d26d8479210e855c94c225649d63ac33062a30615654ff0ab8666a25503fb3253125539cd845ca467fb228a01c608dc3adbbec73b5
26 DIST libwacom-1.12.tar.bz2 543819 BLAKE2B fdbfba23d7b1e047757b0c0ff698a484cadc91c199459e1da49bfd5a5406aeb62d2ca43856f7d8363c3f36c7c05f4d3160e8fb576c3d18f085144dec259d49c5 SHA512 4e0084eda01e78f52336f3f1f1ea3ea86cb9c5fdd6d6c0316662405ebe2a328d6837f8db855e58f5fa95a640a5d456a081a7de339a372bf851bc0d5c69530379
27 +DIST libwacom-2.2.0.tar.xz 106444 BLAKE2B e47d07b8631f85cbde743cf3fe0f9ab5fc26673e62bf0a018463903e0f81a576ca3dd9bb3da8d0049338a87ca384f217e56dd3bc59ad713e6f7b4c20563d8ba4 SHA512 3bded4a72bec230f3318e72bdfd81fa577d4a86103a89367e01e993319f4dbb9ccc73c834c04d5a63f43a8b94457bf64e567d7e3f8d2a0e08b189300c63782a8
28
29 diff --git a/dev-libs/libwacom/libwacom-2.2.0.ebuild b/dev-libs/libwacom/libwacom-2.2.0.ebuild
30 new file mode 100644
31 index 000000000000..53a1e7bfb7a7
32 --- /dev/null
33 +++ b/dev-libs/libwacom/libwacom-2.2.0.ebuild
34 @@ -0,0 +1,67 @@
35 +# Copyright 1999-2022 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=8
39 +
40 +PYTHON_COMPAT=( python3_{8..11} )
41 +inherit meson python-any-r1 udev
42 +
43 +DESCRIPTION="Library for identifying Wacom tablets and their model-specific features"
44 +HOMEPAGE="https://github.com/linuxwacom/libwacom"
45 +SRC_URI="https://github.com/linuxwacom/${PN}/releases/download/${P}/${P}.tar.xz"
46 +
47 +LICENSE="MIT"
48 +SLOT="0/9" # libwacom SONAME
49 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
50 +IUSE="doc test"
51 +RESTRICT="!test? ( test )"
52 +
53 +RDEPEND="
54 + dev-libs/glib:2
55 + dev-libs/libgudev:=
56 +"
57 +DEPEND="${RDEPEND}"
58 +BDEPEND="
59 + virtual/pkgconfig
60 + doc? ( app-doc/doxygen )
61 + test? (
62 + ${PYTHON_DEPS}
63 + $(python_gen_any_dep '
64 + dev-python/python-libevdev[${PYTHON_USEDEP}]
65 + dev-python/pyudev[${PYTHON_USEDEP}]
66 + dev-python/pytest[${PYTHON_USEDEP}]
67 + ')
68 + )
69 +"
70 +
71 +python_check_deps() {
72 + has_version -b "dev-python/python-libevdev[${PYTHON_USEDEP}]" &&
73 + has_version -b "dev-python/pyudev[${PYTHON_USEDEP}]" &&
74 + has_version -b "dev-python/pytest[${PYTHON_USEDEP}]"
75 +}
76 +
77 +pkg_setup() {
78 + if use test; then
79 + python-any-r1_pkg_setup
80 + fi
81 +}
82 +
83 +src_prepare() {
84 + default
85 +
86 + # Don't call systemd daemon-reload in the test suite
87 + sed -i -e '/daemon-reload/d' test/test_udev_rules.py || die
88 +}
89 +
90 +src_configure() {
91 + local emesonargs=(
92 + $(meson_feature doc documentation)
93 + $(meson_feature test tests)
94 + -Dudev-dir=$(get_udevdir)
95 + )
96 + meson_src_configure
97 +}
98 +
99 +pkg_postinst() {
100 + udev_reload
101 +}
102
103 diff --git a/profiles/package.mask b/profiles/package.mask
104 index cb10c2104442..474b25296bd0 100644
105 --- a/profiles/package.mask
106 +++ b/profiles/package.mask
107 @@ -33,6 +33,11 @@
108
109 #--- END OF EXAMPLES ---
110
111 +# Matt Turner <mattst88@g.o> (2022-05-30)
112 +# libwacom-2 broke ABI compatibility; reverse dependencies need to be updated.
113 +# Bug #848501
114 +>=dev-libs/libwacom-2.0
115 +
116 # Hans de Graaff <graaff@g.o> (2022-05-29)
117 # Old slots that are no longer used by dependencies. Upgrade to the
118 # latest slot instead. Masked for removal in one month.