From unknown Sun Jun 22 07:51:22 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#58426] [PATCH] gnu: nheko: Do not build api docs. Resent-From: Michael Rohleder Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 11 Oct 2022 05:33:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 58426 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 58426@debbugs.gnu.org Cc: Michael Rohleder X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.166546635319208 (code B ref -1); Tue, 11 Oct 2022 05:33:01 +0000 Received: (at submit) by debbugs.gnu.org; 11 Oct 2022 05:32:33 +0000 Received: from localhost ([127.0.0.1]:50598 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oi7sW-0004zk-K6 for submit@debbugs.gnu.org; Tue, 11 Oct 2022 01:32:32 -0400 Received: from lists.gnu.org ([209.51.188.17]:39752) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oi7sV-0004zd-AO for submit@debbugs.gnu.org; Tue, 11 Oct 2022 01:32:31 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:60882) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oi7sU-0005mY-Sx for guix-patches@gnu.org; Tue, 11 Oct 2022 01:32:31 -0400 Received: from sxb1nlsmtp02.prod.sxb1.secureserver.net ([92.204.71.167]:34996) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oi7sG-0008DA-JE for guix-patches@gnu.org; Tue, 11 Oct 2022 01:32:30 -0400 Received: from 122.164.205.92.host.secureserver.net ([92.205.164.122]) by : HOSTING RELAY : with ESMTP id i7r3oEPNp890Oi7r5ovTNZ; Mon, 10 Oct 2022 22:31:13 -0700 X-SECURESERVER-ACCT: 92.205.164.122 x-originating-ip: 92.205.164.122 X-CMAE-Analysis: v=2.4 cv=QeqjAuXv c=1 sm=1 tr=0 ts=6344ffa1 a=B/z3iHJ5y0TSvJOmeNZOnw==:117 a=Qawa6l4ZSaYA:10 a=NEAV23lmAAAA:8 a=0sbCmLdmsVmElHsaNWMA:9 Received: from [192.168.1.3] (helo=micha.rohleder.de) by 122.164.205.92.host.secureserver.net with esmtp (Exim 4.94.2) (envelope-from ) id 1oi7q8-001P9H-69; Tue, 11 Oct 2022 05:31:01 +0000 From: Michael Rohleder Date: Tue, 11 Oct 2022 07:30:02 +0200 Message-Id: <20221011053002.20108-1-mike@rohleder.de> X-Mailer: git-send-email 2.38.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-CMAE-Envelope: MS4xfAFXpKbXoT7R5KdZ6qG0OcbjMVyGLEQMz7YoGeq1wrFcNXtGZPURbGWoaLW96sX0gsWplUXCXhAddimBn3UvQ9eUA2zKatA07xn+6xD01KkvwKONAh5+ vHpVZCeK+UbBSbzJip+W5Roc6SPik73KWvhLFmNuchLuNlc8cCFsa5M/UIjLBoehvN9ZNazrsHyzmQt31+hoD4e9eiRqWr45UhUQUC0A8cgie0AxmeJDXf9F LKfmb6L3bot/uI60qVN+Sw== Received-SPF: permerror client-ip=92.204.71.167; envelope-from=mike@rohleder.de; helo=sxb1nlsmtp02.prod.sxb1.secureserver.net X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_NONE=0.001, T_SPF_PERMERROR=0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) * gnu/packages/messaging.scm (nheko)[arguments]<#:configure-flags>: Remove -DBUILD_DOCS=ON. [native-inputs]: Remove doxygen, graphviz. --- It doesn't make sense to build the api docs and not install them. gnu/packages/messaging.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index 2ce0ce2689..136b195769 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -2403,7 +2403,6 @@ (define-public nheko #:tests? #f ;no test target #:configure-flags #~(list "-DCMAKE_BUILD_TYPE=Release" - "-DBUILD_DOCS=ON" ;; Fix required because we are using a static SingleApplication "-DCMAKE_CXX_FLAGS= \"-DQAPPLICATION_CLASS=QApplication\" " ;; Compile Qml will make Nheko faster, but you will need to recompile @@ -2469,7 +2468,7 @@ (define-public nheko xcb-util-wm zlib)) (native-inputs - (list asciidoc doxygen graphviz pkg-config qttools-5)) + (list asciidoc pkg-config qttools-5)) (home-page "https://github.com/Nheko-Reborn/nheko") (synopsis "Desktop client for Matrix using Qt and C++14") (description "@code{Nheko} want to provide a native desktop app for the -- 2.38.0 From unknown Sun Jun 22 07:51:22 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Michael Rohleder Subject: bug#58426: closed (Re: bug#58426: [PATCH] gnu: nheko: Do not build api docs.) Message-ID: References: <87fsfmhmmw.fsf@gnu.org> <20221011053002.20108-1-mike@rohleder.de> X-Gnu-PR-Message: they-closed 58426 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 58426@debbugs.gnu.org Date: Mon, 17 Oct 2022 08:38:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1665995882-17075-1" This is a multi-part message in MIME format... ------------=_1665995882-17075-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #58426: [PATCH] gnu: nheko: Do not build api docs. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 58426@debbugs.gnu.org. --=20 58426: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D58426 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1665995882-17075-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 58426-done) by debbugs.gnu.org; 17 Oct 2022 08:37:20 +0000 Received: from localhost ([127.0.0.1]:47219 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1okLce-0004QK-1F for submit@debbugs.gnu.org; Mon, 17 Oct 2022 04:37:20 -0400 Received: from eggs.gnu.org ([209.51.188.92]:50122) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1okLcO-0004PO-3O for 58426-done@debbugs.gnu.org; Mon, 17 Oct 2022 04:37:18 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:46294) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1okLcH-0003RU-DP; Mon, 17 Oct 2022 04:36:58 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=1p8mIOmnUZ2KX0pS6Xcmkan5zONeQNhWV9EElHNLtzM=; b=mRNkItQj6OM4jG6F8E7J 4sDdJ1cQuIUStRQ05ZlFERzyVQanub80h5+nzOXXOqycJiGePDfMW90KoK2gy2eAIy0K2+PkXEYF6 k5tUV7k3Qtp4W9u2eyi/4je6pI1z415yFmOLDpUEPy9lPVcWiINZCbzG02OknEphGKp1QJlbjYEd+ SdDE499Tm4Jsjnj5bP3H7BONZlpszOolnWP/ApAuSDz0XaYDz8/hqheOkCYM3saQnafn08oPo8K1I +p7DesKgG0wbGzTgebg5EDgV5TkoBiJSZA+ECsvZ6ApUeyEbGh4fpihF4C3KU9VcQXGjgIVdQUDdq 6W4NhXRh93Sfcg==; Received: from [2001:660:6102:320:e120:2c8f:8909:cdfe] (port=45384 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1okLcG-0000pj-Vu; Mon, 17 Oct 2022 04:36:57 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Michael Rohleder Subject: Re: bug#58426: [PATCH] gnu: nheko: Do not build api docs. References: <20221011053002.20108-1-mike@rohleder.de> Date: Mon, 17 Oct 2022 10:36:55 +0200 In-Reply-To: <20221011053002.20108-1-mike@rohleder.de> (Michael Rohleder's message of "Tue, 11 Oct 2022 07:30:02 +0200") Message-ID: <87fsfmhmmw.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 58426-done Cc: 58426-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Michael Rohleder skribis: > * gnu/packages/messaging.scm (nheko)[arguments]<#:configure-flags>: Remov= e -DBUILD_DOCS=3DON. > [native-inputs]: Remove doxygen, graphviz. > --- > It doesn't make sense to build the api docs and not install them. Indeed. :-) Applied, thanks! Ludo=E2=80=99. ------------=_1665995882-17075-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 11 Oct 2022 05:32:33 +0000 Received: from localhost ([127.0.0.1]:50598 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oi7sW-0004zk-K6 for submit@debbugs.gnu.org; Tue, 11 Oct 2022 01:32:32 -0400 Received: from lists.gnu.org ([209.51.188.17]:39752) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oi7sV-0004zd-AO for submit@debbugs.gnu.org; Tue, 11 Oct 2022 01:32:31 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:60882) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oi7sU-0005mY-Sx for guix-patches@gnu.org; Tue, 11 Oct 2022 01:32:31 -0400 Received: from sxb1nlsmtp02.prod.sxb1.secureserver.net ([92.204.71.167]:34996) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oi7sG-0008DA-JE for guix-patches@gnu.org; Tue, 11 Oct 2022 01:32:30 -0400 Received: from 122.164.205.92.host.secureserver.net ([92.205.164.122]) by : HOSTING RELAY : with ESMTP id i7r3oEPNp890Oi7r5ovTNZ; Mon, 10 Oct 2022 22:31:13 -0700 X-SECURESERVER-ACCT: 92.205.164.122 x-originating-ip: 92.205.164.122 X-CMAE-Analysis: v=2.4 cv=QeqjAuXv c=1 sm=1 tr=0 ts=6344ffa1 a=B/z3iHJ5y0TSvJOmeNZOnw==:117 a=Qawa6l4ZSaYA:10 a=NEAV23lmAAAA:8 a=0sbCmLdmsVmElHsaNWMA:9 Received: from [192.168.1.3] (helo=micha.rohleder.de) by 122.164.205.92.host.secureserver.net with esmtp (Exim 4.94.2) (envelope-from ) id 1oi7q8-001P9H-69; Tue, 11 Oct 2022 05:31:01 +0000 From: Michael Rohleder To: guix-patches@gnu.org Subject: [PATCH] gnu: nheko: Do not build api docs. Date: Tue, 11 Oct 2022 07:30:02 +0200 Message-Id: <20221011053002.20108-1-mike@rohleder.de> X-Mailer: git-send-email 2.38.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-CMAE-Envelope: MS4xfAFXpKbXoT7R5KdZ6qG0OcbjMVyGLEQMz7YoGeq1wrFcNXtGZPURbGWoaLW96sX0gsWplUXCXhAddimBn3UvQ9eUA2zKatA07xn+6xD01KkvwKONAh5+ vHpVZCeK+UbBSbzJip+W5Roc6SPik73KWvhLFmNuchLuNlc8cCFsa5M/UIjLBoehvN9ZNazrsHyzmQt31+hoD4e9eiRqWr45UhUQUC0A8cgie0AxmeJDXf9F LKfmb6L3bot/uI60qVN+Sw== Received-SPF: permerror client-ip=92.204.71.167; envelope-from=mike@rohleder.de; helo=sxb1nlsmtp02.prod.sxb1.secureserver.net X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_NONE=0.001, T_SPF_PERMERROR=0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit Cc: Michael Rohleder X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) * gnu/packages/messaging.scm (nheko)[arguments]<#:configure-flags>: Remove -DBUILD_DOCS=ON. [native-inputs]: Remove doxygen, graphviz. --- It doesn't make sense to build the api docs and not install them. gnu/packages/messaging.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index 2ce0ce2689..136b195769 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -2403,7 +2403,6 @@ (define-public nheko #:tests? #f ;no test target #:configure-flags #~(list "-DCMAKE_BUILD_TYPE=Release" - "-DBUILD_DOCS=ON" ;; Fix required because we are using a static SingleApplication "-DCMAKE_CXX_FLAGS= \"-DQAPPLICATION_CLASS=QApplication\" " ;; Compile Qml will make Nheko faster, but you will need to recompile @@ -2469,7 +2468,7 @@ (define-public nheko xcb-util-wm zlib)) (native-inputs - (list asciidoc doxygen graphviz pkg-config qttools-5)) + (list asciidoc pkg-config qttools-5)) (home-page "https://github.com/Nheko-Reborn/nheko") (synopsis "Desktop client for Matrix using Qt and C++14") (description "@code{Nheko} want to provide a native desktop app for the -- 2.38.0 ------------=_1665995882-17075-1--