libquotient, bump version (#10960)

This commit is contained in:
Schrijvers Luc
2024-08-28 18:00:47 +02:00
committed by GitHub
parent c56d397ee9
commit 08cddc6361
2 changed files with 18 additions and 8 deletions

View File

@@ -7,9 +7,9 @@ Versions 0.5.x and older use the previous name - libQMatrixClient."
HOMEPAGE="https://github.com/quotient-im/libQuotient"
COPYRIGHT="Quotient contributors"
LICENSE="GNU LGPL v2.1"
REVISION="2"
REVISION="1"
SOURCE_URI="https://github.com/quotient-im/libQuotient/archive/refs/tags/$portVersion.tar.gz"
CHECKSUM_SHA256="5e5539fe9616c9f63985b0aabfab1858f1626e3d71a14709eeedd85af0471c7c"
CHECKSUM_SHA256="12ff2fa8b80a934b9dd88fa3416a4b88e94bc0e18a8df0dcebfc90614dd2f5c9"
SOURCE_DIR="libQuotient-$portVersion"
ARCHITECTURES="all !x86_gcc2"
@@ -58,10 +58,9 @@ BUILD()
$cmakeDirArgs \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_WITH_QT6=OFF \
-DQuotient_INSTALL_TESTS=OFF \
-DBUILD_TESTING=OFF \
-DQuotient_ENABLE_E2EE=OFF \
-DBUILD_SHARED_LIBS=ON
cmake --build build --target all $jobArgs
}
@@ -80,3 +79,8 @@ INSTALL()
$developDir \
$libDir/cmake
}
TEST()
{
ctest --test-dir build --output-on-failure
}

View File

@@ -7,9 +7,9 @@ Versions 0.5.x and older use the previous name - libQMatrixClient."
HOMEPAGE="https://github.com/quotient-im/libQuotient"
COPYRIGHT="Quotient contributors"
LICENSE="GNU LGPL v2.1"
REVISION="4"
REVISION="1"
SOURCE_URI="https://github.com/quotient-im/libQuotient/archive/refs/tags/$portVersion.tar.gz"
CHECKSUM_SHA256="5e5539fe9616c9f63985b0aabfab1858f1626e3d71a14709eeedd85af0471c7c"
CHECKSUM_SHA256="12ff2fa8b80a934b9dd88fa3416a4b88e94bc0e18a8df0dcebfc90614dd2f5c9"
SOURCE_DIR="libQuotient-$portVersion"
ARCHITECTURES="all !x86_gcc2"
@@ -48,7 +48,7 @@ BUILD_REQUIRES="
devel:libolm$secondaryArchSuffix
devel:libQt6Core$secondaryArchSuffix
devel:libQt6Keychain$secondaryArchSuffix
devel:libssl$secondaryArchSuffix
devel:libssl$secondaryArchSuffix >= 3
"
BUILD_PREREQUIRES="
cmd:cmake
@@ -61,7 +61,7 @@ BUILD()
cmake -Bbuild -S. $cmakeDirArgs \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_WITH_QT6=ON \
-DQuotient_INSTALL_TESTS=OFF \
-DBUILD_TESTING=OFF \
-DQuotient_ENABLE_E2EE=ON \
-DBUILD_SHARED_LIBS=ON
make -Cbuild $jobArgs
@@ -82,3 +82,9 @@ INSTALL()
$developDir \
$libDir/cmake
}
TEST()
{
# 88% tests passed, 1 tests failed out of 8
ctest --test-dir build --output-on-failure
}