forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-qt/qtsensors: 5.15.8 version bump
Signed-off-by: Andreas Sturmlechner <[email protected]>
- Loading branch information
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST qtsensors-everywhere-opensource-src-5.15.7.tar.xz 2059352 BLAKE2B 37057cef183c1cc5a0ffd8839955059d5a4fa9de2adc1bc60abb0566a09c0adfe926b2a211c88668d88027f08816729f1881c4d00c4f7739e1f71f849f8d184b SHA512 dca0b149f086b0a949809bdc78f1551b27036608802a04f274d7bec38e5eb53ac2c3d78cda83f6d447aa6fc9490bdc19135e925c429cd9ea7290dae27bf00fcd | ||
DIST qtsensors-everywhere-opensource-src-5.15.8.tar.xz 2058928 BLAKE2B f6af6fe7c26d54af9785d54eab76b7ac274723f648b885e723fd048f5870fe6f550dd57125c6fdfd0ad9e814be66155a0342fa73327b0e58b105ca891b5d10af SHA512 333bc05dd3bf4ba8ca4069279bf5e73f59475dd0d6e0411f16dc796f4cceb4354a7730be931ad868ef7052ebf8e36e151155dbe6576e9f33a38494bb589611d9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Copyright 1999-2023 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
inherit qt5-build | ||
|
||
DESCRIPTION="Hardware sensor access library for the Qt5 framework" | ||
|
||
if [[ ${QT5_BUILD_TYPE} == release ]]; then | ||
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" | ||
fi | ||
|
||
# TODO: simulator | ||
IUSE="qml" | ||
|
||
RDEPEND=" | ||
=dev-qt/qtcore-${QT5_PV}* | ||
=dev-qt/qtdbus-${QT5_PV}* | ||
qml? ( =dev-qt/qtdeclarative-${QT5_PV}* ) | ||
" | ||
DEPEND="${RDEPEND}" | ||
|
||
src_prepare() { | ||
qt_use_disable_mod qml quick \ | ||
src/src.pro | ||
|
||
qt5-build_src_prepare | ||
} |