diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2024-10-07 22:32:56 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2024-10-08 01:06:00 +0200 |
commit | eb7dcf2d08a97ced4b02950ade6a8e88e0ccaf98 (patch) | |
tree | 125b64b75cee44cd0e5e05c790b1b38933f2412a /net-libs | |
parent | net-im/neochat: drop 24.05.2-r1, 24.08.1-r1 (diff) | |
download | gentoo-eb7dcf2d08a97ced4b02950ade6a8e88e0ccaf98.tar.gz gentoo-eb7dcf2d08a97ced4b02950ade6a8e88e0ccaf98.tar.bz2 gentoo-eb7dcf2d08a97ced4b02950ade6a8e88e0ccaf98.zip |
net-libs/libquotient: Drop IUSE qt5,qt6 and multibuild, make it Qt6 only
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/libquotient/libquotient-0.8.2-r1.ebuild | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/net-libs/libquotient/libquotient-0.8.2-r1.ebuild b/net-libs/libquotient/libquotient-0.8.2-r1.ebuild new file mode 100644 index 000000000000..ea3fa2bf7d41 --- /dev/null +++ b/net-libs/libquotient/libquotient-0.8.2-r1.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="Qt-based SDK to develop applications for Matrix" +HOMEPAGE="https://github.com/quotient-im/libQuotient" +SRC_URI="https://github.com/quotient-im/libQuotient/archive/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/libQuotient-${PV}" + +LICENSE="LGPL-2+" +SLOT="0/${PV}" # FIXME: check soname on next version bump +KEYWORDS="amd64 arm64 ~ppc64 x86" +IUSE="test" + +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-libs/olm + dev-libs/openssl:= + >=dev-libs/qtkeychain-0.14.1-r1:=[qt6] + dev-qt/qtbase:6[gui,network,sql,ssl] + dev-qt/qtmultimedia:6 +" +DEPEND="${RDEPEND} + test? ( dev-qt/qtbase:6[concurrent] ) +" + +PATCHES=( + # downstream patches + "${FILESDIR}"/${PN}-0.8.0-no-android.patch + "${FILESDIR}"/${PN}-0.8.0-no-tests.patch +) + +src_configure() { + local mycmakeargs=( + -DBUILD_TESTING=$(usex test) + -DQuotient_ENABLE_E2EE=ON + -DBUILD_WITH_QT6=ON + ) + + use test && mycmakeargs+=( + -DQuotient_INSTALL_TESTS=OFF + ) + cmake_src_configure +} + +src_test() { + # https://github.com/quotient-im/libQuotient/issues/435 + # testolmaccount requires network connection/server set up + local myctestargs=( + -j1 + -E "(testolmaccount)" + ) + cmake_src_test +} |