mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 17:09:10 -07:00
dev-libs/libwacom: Version bump to 2.17.0
Signed-off-by: Matt Turner <mattst88@gentoo.org>
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
DIST libwacom-2.15.0.tar.xz 174644 BLAKE2B c52c9eab66fb9cfc58ed78d09c0890a72a472e92ce96ba9095e10694e18e96afe0106c4877106e2dcb54f77076edb600deaef664082252488898b74826e150e2 SHA512 436bf92e8e7578f88272fe9d5cc94941cd44219a5e37ec3a6b7aa4d8f2546933adb55da892d0bd00233ef7dcdd390a997cb802f9c78817401cfd82cf266b99ca
|
||||
DIST libwacom-2.16.1.tar.xz 175036 BLAKE2B 60382947f720541f909ec43deab122b737ecc91cc7f7348d9dba8d347676202fd250ad049954156b3372b068ccce6aa0c02f5a53f4e20dee306e4835f619df8a SHA512 9aa78256ee0d485619f85ad1f0b7b0636f936f27c5d42856292653e16f43353c14bae49d635decbacc06bf43fdc0f318a40e8f06faf6e1801a713200c15e8498
|
||||
DIST libwacom-2.17.0.tar.xz 179796 BLAKE2B 9026f4b2caef0ed06f2514042ccc67334f82931fbb069ab19c2518d824bc9cc3e2e7865736e91b54b9aa3f58755a1fa539adf6b4b266b4079f1099dc626fcfc3 SHA512 da0ef60920877d434a7b77923dd401bea9d784b2d9da72b3fa33a9c6f2572bf0144ba1aa94a76873b05acb2efdecaf9e3096c1853471f7960dbe3bfd9b23311d
|
||||
|
||||
61
dev-libs/libwacom/libwacom-2.17.0.ebuild
Normal file
61
dev-libs/libwacom/libwacom-2.17.0.ebuild
Normal file
@@ -0,0 +1,61 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{11..14} )
|
||||
inherit meson python-any-r1 udev
|
||||
|
||||
DESCRIPTION="Library for identifying Wacom tablets and their model-specific features"
|
||||
HOMEPAGE="https://github.com/linuxwacom/libwacom"
|
||||
SRC_URI="https://github.com/linuxwacom/${PN}/releases/download/${P}/${P}.tar.xz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0/9" # libwacom SONAME
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86"
|
||||
IUSE="doc test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND="
|
||||
dev-libs/glib:2
|
||||
dev-libs/libevdev
|
||||
dev-libs/libgudev:=
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
BDEPEND="
|
||||
${PYTHON_DEPS}
|
||||
virtual/pkgconfig
|
||||
doc? ( app-text/doxygen )
|
||||
test? (
|
||||
$(python_gen_any_dep '
|
||||
dev-python/libevdev[${PYTHON_USEDEP}]
|
||||
dev-python/pyudev[${PYTHON_USEDEP}]
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
')
|
||||
)
|
||||
"
|
||||
|
||||
python_check_deps() {
|
||||
use test || return 0
|
||||
python_has_version \
|
||||
"dev-python/libevdev[${PYTHON_USEDEP}]" \
|
||||
"dev-python/pyudev[${PYTHON_USEDEP}]" \
|
||||
"dev-python/pytest[${PYTHON_USEDEP}]"
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local emesonargs=(
|
||||
$(meson_feature doc documentation)
|
||||
$(meson_feature test tests)
|
||||
-Dudev-dir=$(get_udevdir)
|
||||
)
|
||||
meson_src_configure
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
udev_reload
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
udev_reload
|
||||
}
|
||||
Reference in New Issue
Block a user