From c43761c9e85b834ad35140138ad3ac075f41a0d8 Mon Sep 17 00:00:00 2001 From: tastytea Date: Thu, 7 Jan 2021 15:16:51 +0100 Subject: [PATCH] dev-libs/libQuotient: Remove package, is in ::gentoo. net-libs/libquotient is in ::gentoo since 2021-01-03: . Since the name changed, I updated net-im/spectral ebuilds. --- dev-libs/libQuotient/Manifest | 2 - dev-libs/libQuotient/libQuotient-0.6.1.ebuild | 37 ---------------- dev-libs/libQuotient/libQuotient-0.6.3.ebuild | 44 ------------------- dev-libs/libQuotient/libQuotient-9999.ebuild | 44 ------------------- dev-libs/libQuotient/metadata.xml | 15 ------- net-im/spectral/spectral-854.ebuild | 4 +- net-im/spectral/spectral-9999.ebuild | 4 +- 7 files changed, 4 insertions(+), 146 deletions(-) delete mode 100644 dev-libs/libQuotient/Manifest delete mode 100644 dev-libs/libQuotient/libQuotient-0.6.1.ebuild delete mode 100644 dev-libs/libQuotient/libQuotient-0.6.3.ebuild delete mode 100644 dev-libs/libQuotient/libQuotient-9999.ebuild delete mode 100644 dev-libs/libQuotient/metadata.xml diff --git a/dev-libs/libQuotient/Manifest b/dev-libs/libQuotient/Manifest deleted file mode 100644 index 619348f..0000000 --- a/dev-libs/libQuotient/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST libQuotient-0.6.1.tar.gz 557477 BLAKE2B f0e90c0bbf2eccc93cbb9a4598368929ebe2e03aea9db3b4ea1782e41cd96ae9812b649c3d2f3f3e62f09d7266dd4c27c24d87163c0ae05c0d122e734e6f59e2 SHA512 17f6bac381d62e3975d6099a92a80c6855ba078947f9855960e7c963c05e094127eb926e922868456eb0694bd5eb1f4294bb12bfdea73db1724313359a330e2e -DIST libQuotient-0.6.3.tar.gz 559142 BLAKE2B 77ba0583a90e9d29d44ce9a70909d6b51462a1f16dbc2e9d321eb9d638329af41fe7b0c4f7569e5d46f3a9c12d32b1ef0b926c5e285bc3ed9b70ba6d4dbe8024 SHA512 a81d88b00edc2af8ad9a6a297f1d65ef5d96fb305f503b46f29381df1bb007b42e44b207fb649316c38c977a5b03c93f884407dccdc48ab066af6b004dd9a9d6 diff --git a/dev-libs/libQuotient/libQuotient-0.6.1.ebuild b/dev-libs/libQuotient/libQuotient-0.6.1.ebuild deleted file mode 100644 index c6c938e..0000000 --- a/dev-libs/libQuotient/libQuotient-0.6.1.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="A Qt5 library to write cross-platform clients for Matrix" -HOMEPAGE="https://github.com/qmatrixclient/libqmatrixclient" - -inherit cmake - -if [[ ${PV} == "9999" ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/quotient-im/"${PN}".git" -else - SRC_URI="https://github.com/quotient-im/libQuotient/archive/"${PV}".tar.gz -> "${P}".tar.gz" - KEYWORDS="~amd64" -fi - -LICENSE="GPL-3" -SLOT="0" - -RDEPEND="" -DEPEND=" - ${RDEPEND} - dev-qt/qtcore - dev-qt/qtmultimedia - !!dev-libs/libqmatrixclient -" - -S=""${WORKDIR}"/"${PN}"-"${PV}"" - -src_configure() { - local mycmakeargs=( - -DBUILD_SHARED_LIBS=ON - ) - cmake_src_configure -} diff --git a/dev-libs/libQuotient/libQuotient-0.6.3.ebuild b/dev-libs/libQuotient/libQuotient-0.6.3.ebuild deleted file mode 100644 index 4d34ec8..0000000 --- a/dev-libs/libQuotient/libQuotient-0.6.3.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -DESCRIPTION="A Qt5 library to write cross-platform clients for Matrix" -HOMEPAGE="https://matrix.org/docs/projects/sdk/quotient" - -if [[ ${PV} == "9999" ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/quotient-im/"${PN}".git" -else - SRC_URI="https://github.com/quotient-im/libQuotient/archive/"${PV}".tar.gz -> "${P}".tar.gz" - KEYWORDS="~amd64" -fi - -LICENSE="GPL-3" -SLOT="0" -IUSE="e2e extra" - -RDEPEND=" - dev-qt/qtcore - dev-qt/qtgui - dev-qt/qtmultimedia - dev-qt/qtnetwork - dev-qt/qttest - e2e? ( dev-libs/libQtOlm ) - !!dev-libs/libqmatrixclient -" -DEPEND="${RDEPEND}" - -S=""${WORKDIR}"/"${PN}"-"${PV}"" - -src_configure() { - local mycmakeargs=( - -DBUILD_SHARED_LIBS=ON - -DQuotient_ENABLE_E2EE=$(usex e2e) - -DUSE_INTREE_LIBQOLM=OFF - -DQuotient_INSTALL_TESTS=$(usex extra) - ) - cmake_src_configure -} diff --git a/dev-libs/libQuotient/libQuotient-9999.ebuild b/dev-libs/libQuotient/libQuotient-9999.ebuild deleted file mode 100644 index 4d34ec8..0000000 --- a/dev-libs/libQuotient/libQuotient-9999.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -DESCRIPTION="A Qt5 library to write cross-platform clients for Matrix" -HOMEPAGE="https://matrix.org/docs/projects/sdk/quotient" - -if [[ ${PV} == "9999" ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/quotient-im/"${PN}".git" -else - SRC_URI="https://github.com/quotient-im/libQuotient/archive/"${PV}".tar.gz -> "${P}".tar.gz" - KEYWORDS="~amd64" -fi - -LICENSE="GPL-3" -SLOT="0" -IUSE="e2e extra" - -RDEPEND=" - dev-qt/qtcore - dev-qt/qtgui - dev-qt/qtmultimedia - dev-qt/qtnetwork - dev-qt/qttest - e2e? ( dev-libs/libQtOlm ) - !!dev-libs/libqmatrixclient -" -DEPEND="${RDEPEND}" - -S=""${WORKDIR}"/"${PN}"-"${PV}"" - -src_configure() { - local mycmakeargs=( - -DBUILD_SHARED_LIBS=ON - -DQuotient_ENABLE_E2EE=$(usex e2e) - -DUSE_INTREE_LIBQOLM=OFF - -DQuotient_INSTALL_TESTS=$(usex extra) - ) - cmake_src_configure -} diff --git a/dev-libs/libQuotient/metadata.xml b/dev-libs/libQuotient/metadata.xml deleted file mode 100644 index c69cb35..0000000 --- a/dev-libs/libQuotient/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - hedmoo@yahoo.com - Andreas Westman Dorcsak - - - quotient-im/libQuotient - - - Build with e2e encryption support - Install quotest tool - - diff --git a/net-im/spectral/spectral-854.ebuild b/net-im/spectral/spectral-854.ebuild index 5710d61..c7dcb0b 100644 --- a/net-im/spectral/spectral-854.ebuild +++ b/net-im/spectral/spectral-854.ebuild @@ -1,4 +1,4 @@ -# Copyright 2020 Gentoo Authors +# Copyright 2020-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -31,7 +31,7 @@ RDEPEND=" dev-qt/qtmultimedia[qml] dev-qt/qtwidgets >=dev-qt/qtquickcontrols2-5.12 - >=dev-libs/libQuotient-0.6.0 + >=net-libs/libquotient-0.6.0 dev-libs/libQtOlm dev-libs/qtkeychain || ( media-fonts/roboto media-fonts/noto ) diff --git a/net-im/spectral/spectral-9999.ebuild b/net-im/spectral/spectral-9999.ebuild index 554b1c5..6110e36 100644 --- a/net-im/spectral/spectral-9999.ebuild +++ b/net-im/spectral/spectral-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 2020 Gentoo Authors +# Copyright 2020-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -31,7 +31,7 @@ RDEPEND=" dev-qt/qtmultimedia[qml] dev-qt/qtwidgets >=dev-qt/qtquickcontrols2-5.12 - >=dev-libs/libQuotient-0.6_beta1 + >=net-libs/libquotient-0.6_beta1 dev-libs/libQtOlm dev-libs/qtkeychain || ( media-fonts/roboto media-fonts/noto )