diff options
author | 2024-01-06 15:58:06 +0100 | |
---|---|---|
committer | 2024-01-07 15:32:34 +0100 | |
commit | 78e8ed53bce569f494dd1a78bc434da29375a442 (patch) | |
tree | adcd50eb69e53a47772d91a540458cff4e9c0ac5 /net-libs | |
parent | net-misc/smb4k: drop 3.2.4 (diff) | |
download | gentoo-78e8ed53bce569f494dd1a78bc434da29375a442.tar.gz gentoo-78e8ed53bce569f494dd1a78bc434da29375a442.tar.bz2 gentoo-78e8ed53bce569f494dd1a78bc434da29375a442.zip |
net-libs/libquotient: drop 0.8.1.2
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/libquotient/libquotient-0.8.1.2.ebuild | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/net-libs/libquotient/libquotient-0.8.1.2.ebuild b/net-libs/libquotient/libquotient-0.8.1.2.ebuild deleted file mode 100644 index 77b91909c07b..000000000000 --- a/net-libs/libquotient/libquotient-0.8.1.2.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2023 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:=[qt5(+)] - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtmultimedia:5 - dev-qt/qtnetwork:5[ssl] - dev-qt/qtsql:5 -" -DEPEND="${RDEPEND} - test? ( - dev-qt/qtconcurrent:5 - dev-qt/qttest:5 - ) -" - -PATCHES=( - # downstream patches - "${FILESDIR}"/${PN}-0.8.0-no-android.patch - "${FILESDIR}"/${PN}-0.8.0-no-tests.patch -) - -src_configure() { - local mycmakeargs=( - -DBUILD_WITH_QT6=OFF - -DBUILD_TESTING=$(usex test) - -DQuotient_ENABLE_E2EE=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 -} |