diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2024-05-27 20:25:25 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2024-05-27 20:25:25 +0200 |
commit | 8a74d3737e380d6ce551876b2360d1966297cd07 (patch) | |
tree | 8c626719621e2e19addfeb141d67488f56b277cf | |
parent | lxqt-base/lxqt-meta: add 2.0.0 (diff) | |
download | qt-8a74d3737e380d6ce551876b2360d1966297cd07.tar.gz qt-8a74d3737e380d6ce551876b2360d1966297cd07.tar.bz2 qt-8a74d3737e380d6ce551876b2360d1966297cd07.zip |
app-crypt/qca: treeclean
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r-- | app-crypt/qca/files/qca-disable-pgp-test.patch | 13 | ||||
-rw-r--r-- | app-crypt/qca/metadata.xml | 21 | ||||
-rw-r--r-- | app-crypt/qca/qca-9999.ebuild | 114 | ||||
-rw-r--r-- | profiles/categories | 1 |
4 files changed, 0 insertions, 149 deletions
diff --git a/app-crypt/qca/files/qca-disable-pgp-test.patch b/app-crypt/qca/files/qca-disable-pgp-test.patch deleted file mode 100644 index 7944e3c3..00000000 --- a/app-crypt/qca/files/qca-disable-pgp-test.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/unittest/CMakeLists.txt b/unittest/CMakeLists.txt -index f4d9eb9..67ef281 100644 ---- a/unittest/CMakeLists.txt -+++ b/unittest/CMakeLists.txt -@@ -23,7 +23,7 @@ add_subdirectory(keylengthunittest) - add_subdirectory(keystore) - add_subdirectory(macunittest) - add_subdirectory(metatype) --add_subdirectory(pgpunittest) -+# add_subdirectory(pgpunittest) - add_subdirectory(pipeunittest) - add_subdirectory(pkits) - add_subdirectory(rsaunittest) diff --git a/app-crypt/qca/metadata.xml b/app-crypt/qca/metadata.xml deleted file mode 100644 index 89f4f880..00000000 --- a/app-crypt/qca/metadata.xml +++ /dev/null @@ -1,21 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>kde@gentoo.org</email> - <name>Gentoo KDE Project</name> - </maintainer> - <upstream> - <bugs-to>https://bugs.kde.org/</bugs-to> - </upstream> - <use> - <flag name="botan">Enable botan plugin</flag> - <flag name="gcrypt">Enable gcrypt plugin</flag> - <flag name="gpg">Enable GnuPG plugin</flag> - <flag name="logger">Enable logger plugin</flag> - <flag name="nss">Enable NSS plugin</flag> - <flag name="pkcs11">Enable PKCS#11 plugin</flag> - <flag name="sasl">Enable SASL plugin</flag> - <flag name="softstore">Enable softstore plugin</flag> - </use> -</pkgmetadata> diff --git a/app-crypt/qca/qca-9999.ebuild b/app-crypt/qca/qca-9999.ebuild deleted file mode 100644 index 1315314c..00000000 --- a/app-crypt/qca/qca-9999.ebuild +++ /dev/null @@ -1,114 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake kde.org multibuild out-of-source-utils qmake-utils - -DESCRIPTION="Qt Cryptographic Architecture (QCA)" -HOMEPAGE="https://userbase.kde.org/QCA" - -LICENSE="LGPL-2.1" -SLOT="2" -KEYWORDS="" -IUSE="botan debug doc examples gcrypt gpg logger nss pkcs11 +qt5 qt6 sasl softstore +ssl test" -REQUIRED_USE="|| ( qt5 qt6 )" - -RESTRICT="!test? ( test )" - -RDEPEND=" - botan? ( dev-libs/botan:3= ) - gcrypt? ( dev-libs/libgcrypt:= ) - gpg? ( app-crypt/gnupg ) - nss? ( dev-libs/nss ) - pkcs11? ( - >=dev-libs/openssl-1.1 - dev-libs/pkcs11-helper - ) - qt5? ( >=dev-qt/qtcore-5.14:5 ) - qt6? ( - dev-qt/qtbase:6 - dev-qt/qt5compat:6 - ) - sasl? ( dev-libs/cyrus-sasl:2 ) - ssl? ( >=dev-libs/openssl-1.1:= ) -" -DEPEND="${RDEPEND} - test? ( - qt5? ( - dev-qt/qtnetwork:5 - dev-qt/qttest:5 - ) - qt6? ( dev-qt/qtbase:6[network,test] ) - ) -" -BDEPEND=" - doc? ( - app-text/doxygen[dot] - virtual/latex-base - ) -" - -PATCHES=( "${FILESDIR}/${PN}-disable-pgp-test.patch" ) - -qca_plugin_use() { - echo -DWITH_${2:-$1}_PLUGIN=$(usex "$1") -} - -pkg_setup() { - MULTIBUILD_VARIANTS=( $(usev qt5) $(usev qt6) ) -} - -src_configure() { - myconfigure() { - local mycmakeargs=( - -DQCA_FEATURE_INSTALL_DIR="${EPREFIX}$(${MULTIBUILD_VARIANT}_get_mkspecsdir)/features" - -DQCA_PLUGINS_INSTALL_DIR="${EPREFIX}$(${MULTIBUILD_VARIANT}_get_plugindir)" - $(qca_plugin_use botan) - $(qca_plugin_use gcrypt) - $(qca_plugin_use gpg gnupg) - $(qca_plugin_use logger) - $(qca_plugin_use nss) - $(qca_plugin_use pkcs11) - $(qca_plugin_use sasl cyrus-sasl) - $(qca_plugin_use softstore) - $(qca_plugin_use ssl ossl) - -DBUILD_TESTS=$(usex test) - ) - if [[ ${MULTIBUILD_VARIANT} == qt6 ]]; then - mycmakeargs+=( -DBUILD_WITH_QT6=ON ) - else - mycmakeargs+=( -DBUILD_WITH_QT6=OFF ) - fi - cmake_src_configure - } - - multibuild_foreach_variant myconfigure -} - -src_compile() { - multibuild_foreach_variant cmake_src_compile - if use doc; then - multibuild_for_best_variant cmake_build doc - fi -} - -src_test() { - mytest() { - local -x QCA_PLUGIN_PATH="${BUILD_DIR}/lib/qca" - cmake_src_test - } - multibuild_foreach_variant mytest -} - -src_install() { - multibuild_foreach_variant cmake_src_install - - if use doc; then - multibuild_for_best_variant run_in_build_dir dodoc -r apidocs/html - fi - - if use examples; then - dodoc -r "${S}"/examples - fi -} diff --git a/profiles/categories b/profiles/categories index d91a3622..3a8dfd43 100644 --- a/profiles/categories +++ b/profiles/categories @@ -1,5 +1,4 @@ app-arch -app-crypt app-emulation dev-libs dev-qt |