From unknown Wed Sep 10 10:35:39 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#76224] [PATCH] gnu: tractor: Invoke glib-compile-schemas. Resent-From: Danial Behzadi Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 12 Feb 2025 13:24:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 76224 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 76224@debbugs.gnu.org Cc: Danial Behzadi X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.173936661223734 (code B ref -1); Wed, 12 Feb 2025 13:24:01 +0000 Received: (at submit) by debbugs.gnu.org; 12 Feb 2025 13:23:32 +0000 Received: from localhost ([127.0.0.1]:33254 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tiCiC-0006Aj-Ca for submit@debbugs.gnu.org; Wed, 12 Feb 2025 08:23:32 -0500 Received: from lists.gnu.org ([2001:470:142::17]:45088) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tiCiA-0006AV-Eb for submit@debbugs.gnu.org; Wed, 12 Feb 2025 08:23:30 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tiCi4-0006o0-M1 for guix-patches@gnu.org; Wed, 12 Feb 2025 08:23:24 -0500 Received: from mx1.riseup.net ([198.252.153.129]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tiCi2-0004Xu-Th for guix-patches@gnu.org; Wed, 12 Feb 2025 08:23:24 -0500 Received: from fews01-sea.riseup.net (fews01-sea-pn.riseup.net [10.0.1.109]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mx1.riseup.net (Postfix) with ESMTPS id 4YtJsh0xqQzDqlB; Wed, 12 Feb 2025 13:23:20 +0000 (UTC) X-Riseup-User-ID: 45B34801F26DCBC30F096EB87608DE1389F856F7DC17F58399F880CFA2C00675 Received: from [127.0.0.1] (localhost [127.0.0.1]) by fews01-sea.riseup.net (Postfix) with ESMTPSA id 4YtJsS6X2nzJrkq; Wed, 12 Feb 2025 13:23:08 +0000 (UTC) Received: from danialbehzadi by mahtab with local (Exim 4.98) (envelope-from ) id 1tiChm-00000002Jd5-0Uu0; Wed, 12 Feb 2025 16:53:06 +0330 From: Danial Behzadi Date: Wed, 12 Feb 2025 16:53:00 +0330 Message-ID: <93f4c0568898a704fdeef460a90821121e0351a9.1739366531.git.dani.behzi@ubuntu.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=198.252.153.129; envelope-from=dani.behzi@ubuntu.com; helo=mx1.riseup.net X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, RCVD_IN_VALIDITY_CERTIFIED_BLOCKED=0.001, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -0.0 (/) 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: -1.0 (-) This is needed for packages which have tractor in their input to access the compile schemas of tractor in their environment. --- gnu/packages/tor.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gnu/packages/tor.scm b/gnu/packages/tor.scm index b6b73f92..d9aa1ca2 100644 --- a/gnu/packages/tor.scm +++ b/gnu/packages/tor.scm @@ -484,7 +484,10 @@ (define-public tractor (add-after 'install 'install-gschema (lambda _ (let ((schemas (string-append #$output "/share/glib-2.0/schemas"))) - (install-file "src/tractor/tractor.gschema.xml" schemas))))))) + (install-file "src/tractor/tractor.gschema.xml" schemas) + ;; The following line is needed for packages having tractor as input + (invoke "glib-compile-schemas" schemas))))))) + (home-page "https://framagit.org/tractor") (synopsis "Setup an onion routing proxy") (description -- 2.47.2 From unknown Wed Sep 10 10:35:39 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: Danial Behzadi Subject: bug#76224: closed (Re: [bug#76224] [PATCH] gnu: tractor: Invoke glib-compile-schemas.) Message-ID: References: <8734gbji3p.fsf@gnu.org> <93f4c0568898a704fdeef460a90821121e0351a9.1739366531.git.dani.behzi@ubuntu.com> X-Gnu-PR-Message: they-closed 76224 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 76224@debbugs.gnu.org Date: Tue, 18 Feb 2025 17:09:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1739898542-30615-1" This is a multi-part message in MIME format... ------------=_1739898542-30615-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #76224: [PATCH] gnu: tractor: Invoke glib-compile-schemas. 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 76224@debbugs.gnu.org. --=20 76224: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D76224 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1739898542-30615-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 76224-done) by debbugs.gnu.org; 18 Feb 2025 17:08:53 +0000 Received: from localhost ([127.0.0.1]:60195 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tkR5Z-0007wj-0l for submit@debbugs.gnu.org; Tue, 18 Feb 2025 12:08:53 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:44752) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tkR5V-0007vw-Ux for 76224-done@debbugs.gnu.org; Tue, 18 Feb 2025 12:08:50 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tkR5Q-00068B-8M; Tue, 18 Feb 2025 12:08:44 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=mQJR+wKmaEck8eMolFjPLVeRy2YX6/vDVCiBT3h4W4g=; b=ktVh5wWhGZh/dm0jb7aP WO4kOVszK3FwDpN/t1cAjJXmQeQaVzVKGBNpMpewCCX0tJCAFLkUXzee4cuWbdv3t7J8ezrwmbydd 1RBMWWwHpKmfZwdd/kmPVAuN6qL7mdkz+lNKziszApqnFQW50PMt4sLgYf5wlZ7+MRztzvMao5DX+ v7DuPy0x6VySC9Ln8KG7EGX/ziukkZ/Uv0CK+KbZFtbuiGM31tLjihyp8+fabp7cOsYHCNxt31kS3 /ShkP9vUuvm960M47PfgZI/kIDpvbn21m62zkaFD5voeTqqT2AfW+dB8VyizGtFR9KvkgL9vKh2XU QfoCotGewci90g==; From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Danial Behzadi Subject: Re: [bug#76224] [PATCH] gnu: tractor: Invoke glib-compile-schemas. In-Reply-To: <93f4c0568898a704fdeef460a90821121e0351a9.1739366531.git.dani.behzi@ubuntu.com> (Danial Behzadi's message of "Wed, 12 Feb 2025 16:53:00 +0330") References: <93f4c0568898a704fdeef460a90821121e0351a9.1739366531.git.dani.behzi@ubuntu.com> Date: Tue, 18 Feb 2025 18:08:42 +0100 Message-ID: <8734gbji3p.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 76224-done Cc: 76224-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 (---) Danial Behzadi skribis: > This is needed for packages which have tractor in their input to access the compile schemas of tractor in their environment. > --- > gnu/packages/tor.scm | 5 ++++- I tweaked the commit log and applied it, thanks! Ludo'. ------------=_1739898542-30615-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 12 Feb 2025 13:23:32 +0000 Received: from localhost ([127.0.0.1]:33254 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tiCiC-0006Aj-Ca for submit@debbugs.gnu.org; Wed, 12 Feb 2025 08:23:32 -0500 Received: from lists.gnu.org ([2001:470:142::17]:45088) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tiCiA-0006AV-Eb for submit@debbugs.gnu.org; Wed, 12 Feb 2025 08:23:30 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tiCi4-0006o0-M1 for guix-patches@gnu.org; Wed, 12 Feb 2025 08:23:24 -0500 Received: from mx1.riseup.net ([198.252.153.129]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tiCi2-0004Xu-Th for guix-patches@gnu.org; Wed, 12 Feb 2025 08:23:24 -0500 Received: from fews01-sea.riseup.net (fews01-sea-pn.riseup.net [10.0.1.109]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mx1.riseup.net (Postfix) with ESMTPS id 4YtJsh0xqQzDqlB; Wed, 12 Feb 2025 13:23:20 +0000 (UTC) X-Riseup-User-ID: 45B34801F26DCBC30F096EB87608DE1389F856F7DC17F58399F880CFA2C00675 Received: from [127.0.0.1] (localhost [127.0.0.1]) by fews01-sea.riseup.net (Postfix) with ESMTPSA id 4YtJsS6X2nzJrkq; Wed, 12 Feb 2025 13:23:08 +0000 (UTC) Received: from danialbehzadi by mahtab with local (Exim 4.98) (envelope-from ) id 1tiChm-00000002Jd5-0Uu0; Wed, 12 Feb 2025 16:53:06 +0330 From: Danial Behzadi To: guix-patches@gnu.org Subject: [PATCH] gnu: tractor: Invoke glib-compile-schemas. Date: Wed, 12 Feb 2025 16:53:00 +0330 Message-ID: <93f4c0568898a704fdeef460a90821121e0351a9.1739366531.git.dani.behzi@ubuntu.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=198.252.153.129; envelope-from=dani.behzi@ubuntu.com; helo=mx1.riseup.net X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, RCVD_IN_VALIDITY_CERTIFIED_BLOCKED=0.001, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: submit Cc: Danial Behzadi 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: -1.0 (-) This is needed for packages which have tractor in their input to access the compile schemas of tractor in their environment. --- gnu/packages/tor.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gnu/packages/tor.scm b/gnu/packages/tor.scm index b6b73f92..d9aa1ca2 100644 --- a/gnu/packages/tor.scm +++ b/gnu/packages/tor.scm @@ -484,7 +484,10 @@ (define-public tractor (add-after 'install 'install-gschema (lambda _ (let ((schemas (string-append #$output "/share/glib-2.0/schemas"))) - (install-file "src/tractor/tractor.gschema.xml" schemas))))))) + (install-file "src/tractor/tractor.gschema.xml" schemas) + ;; The following line is needed for packages having tractor as input + (invoke "glib-compile-schemas" schemas))))))) + (home-page "https://framagit.org/tractor") (synopsis "Setup an onion routing proxy") (description -- 2.47.2 ------------=_1739898542-30615-1--