From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8B918158086 for ; Tue, 14 Dec 2021 10:38:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DB37B2BC021; Tue, 14 Dec 2021 10:38:34 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C12452BC021 for ; Tue, 14 Dec 2021 10:38:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 806153436FB for ; Tue, 14 Dec 2021 10:38:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1E79A244 for ; Tue, 14 Dec 2021 10:38:31 +0000 (UTC) From: "Bernard Cafarelli" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Bernard Cafarelli" Message-ID: <1639478293.4b965883472cf20c4fbe27d778fb28675f3d3c1e.voyageur@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/nextcloud-client/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/nextcloud-client/nextcloud-client-3.3.6.ebuild X-VCS-Directories: net-misc/nextcloud-client/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: 4b965883472cf20c4fbe27d778fb28675f3d3c1e X-VCS-Branch: master Date: Tue, 14 Dec 2021 10:38:31 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7af40e22-e98e-482c-b1b4-1406c7085615 X-Archives-Hash: fac33b57445f789f580d83b27b14ba76 commit: 4b965883472cf20c4fbe27d778fb28675f3d3c1e Author: Bernard Cafarelli gentoo org> AuthorDate: Tue Dec 14 10:12:54 2021 +0000 Commit: Bernard Cafarelli gentoo org> CommitDate: Tue Dec 14 10:38:13 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b965883 net-misc/nextcloud-client: fix libcloudproviders disabling Closes: https://bugs.gentoo.org/828822 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Bernard Cafarelli gentoo.org> net-misc/nextcloud-client/nextcloud-client-3.3.6.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/net-misc/nextcloud-client/nextcloud-client-3.3.6.ebuild b/net-misc/nextcloud-client/nextcloud-client-3.3.6.ebuild index 35dda8ac61e3..51014054846c 100644 --- a/net-misc/nextcloud-client/nextcloud-client-3.3.6.ebuild +++ b/net-misc/nextcloud-client/nextcloud-client-3.3.6.ebuild @@ -59,6 +59,9 @@ PATCHES=( "${FILESDIR}"/${PN}-3.3.4-inkscape_to_rsvg.patch ) S="${WORKDIR}/desktop-${PV/_/-}" src_prepare() { + # We do not package libcloudproviders + sed -e "s/pkg_check_modules.*cloudproviders/#&/" -i CMakeLists.txt || die + # Keep tests in ${T} sed -i -e "s#\"/tmp#\"${T}#g" test/test*.cpp || die @@ -70,7 +73,6 @@ src_configure() { -DSYSCONF_INSTALL_DIR="${EPREFIX}"/etc -DCMAKE_INSTALL_DOCDIR=/usr/share/doc/${PF} -DBUILD_UPDATER=OFF - -DCMAKE_DISABLE_FIND_PACKAGE_Libcloudproviders=ON $(cmake_use_find_package doc Sphinx) $(cmake_use_find_package doc PdfLatex) $(cmake_use_find_package webengine Qt5WebEngine)