From debbugs-submit-bounces@debbugs.gnu.org Mon Nov 27 05:02:38 2023 Received: (at submit) by debbugs.gnu.org; 27 Nov 2023 10:02:38 +0000 Received: from localhost ([127.0.0.1]:43335 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1r7YRp-00081O-LF for submit@debbugs.gnu.org; Mon, 27 Nov 2023 05:02:37 -0500 Received: from lists.gnu.org ([2001:470:142::17]:53822) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1r7YRl-00080z-1A for submit@debbugs.gnu.org; Mon, 27 Nov 2023 05:02:36 -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 1r7YRX-0007rW-JA for guix-patches@gnu.org; Mon, 27 Nov 2023 05:02:21 -0500 Received: from mx0.riseup.net ([198.252.153.6]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1r7YRR-0005Hh-Qo for guix-patches@gnu.org; Mon, 27 Nov 2023 05:02:15 -0500 Received: from fews02-sea.riseup.net (fews02-sea-pn.riseup.net [10.0.1.112]) (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 mx0.riseup.net (Postfix) with ESMTPS id 4Sf1N16ZVdz9tsQ; Mon, 27 Nov 2023 10:02:09 +0000 (UTC) X-Riseup-User-ID: 5BBEFD1BAC2484030C9DF142B5E44964001EB4BD94DFD25FBB9BE75E085781A8 Received: from [127.0.0.1] (localhost [127.0.0.1]) by fews02-sea.riseup.net (Postfix) with ESMTPSA id 4Sf1N15RRYzFtVG; Mon, 27 Nov 2023 10:02:09 +0000 (UTC) Received: from danialbehzadi by banshee with local (Exim 4.96) (envelope-from ) id 1r7YQY-000OHf-0E; Mon, 27 Nov 2023 13:31:18 +0330 From: Danial Behzadi To: guix-patches@gnu.org Subject: [PATCH] gnu: tractor: Change URI of source. Date: Mon, 27 Nov 2023 13:31:09 +0330 Message-Id: <20231127100109.93330-1-dani.behzi@ubuntu.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=198.252.153.6; envelope-from=dani.behzi@ubuntu.com; helo=mx0.riseup.net X-Spam_score_int: -35 X-Spam_score: -3.6 X-Spam_bar: --- X-Spam_report: (-3.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H5=-1, RCVD_IN_MSPIKE_WL=-0.01, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 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 (-) --- gnu/packages/tor.scm | 61 ++++++++++++++++++++++---------------------- 1 file changed, 30 insertions(+), 31 deletions(-) diff --git a/gnu/packages/tor.scm b/gnu/packages/tor.scm index d4bf27a790..cb7fd571c5 100644 --- a/gnu/packages/tor.scm +++ b/gnu/packages/tor.scm @@ -441,41 +441,40 @@ (define-public tractor (source (origin (method url-fetch) - (uri (pypi-uri "traxtor" version)) + (uri (string-append "https://framagit.org/tractor/tractor/-/archive/" + version "/tractor-" version ".tar.bz2")) (sha256 - (base32 - "1542g6alycwlmvndxcijzn4d5lgycmxxb78gqd8qwgm9kw0fnr3q")))) + (base32 "0gnsgwgbipd1z3ra32mpglwy19jfay36y78nqg32zqka3lsha7rc")))) (build-system pyproject-build-system) - (native-inputs - (list (list glib "bin"))) ; for glib-compile-schemas. - (inputs - (list python-fire - python-psutil - python-pygobject - python-requests - python-stem - python-termcolor)) + (native-inputs (list (list glib "bin"))) ;for glib-compile-schemas. + (inputs (list python-fire + python-psutil + python-pygobject + python-requests + python-stem + python-termcolor)) (arguments (list - #:tests? #f ; no test suite. - #:phases - #~(modify-phases %standard-phases - (add-after 'install 'install-man-page - (lambda _ - (let ((man1 (string-append #$output "/share/man/man1"))) - (install-file "tractor/man/tractor.1" man1)))) - (add-after 'install 'install-bash-completion - (lambda _ - (mkdir "bash-completion") - (rename-file "tractor/tractor-completion" - "bash-completion/tractor") - (let ((bash-completion - (string-append #$output "/share/bash-completion/completions"))) - (install-file "bash-completion/tractor" bash-completion)))) - (add-after 'install 'install-gschema - (lambda _ - (let ((schemas (string-append #$output "/share/glib-2.0/schemas"))) - (install-file "tractor/tractor.gschema.xml" schemas))))))) + #:tests? #f ;no test suite. + #:phases #~(modify-phases %standard-phases + (add-after 'install 'install-man-page + (lambda _ + (let ((man1 (string-append #$output "/share/man/man1"))) + (install-file "tractor/man/tractor.1" man1)))) + (add-after 'install 'install-bash-completion + (lambda _ + (mkdir "bash-completion") + (rename-file "tractor/tractor-completion" + "bash-completion/tractor") + (let ((bash-completion (string-append #$output + "/share/bash-completion/completions"))) + (install-file "bash-completion/tractor" + bash-completion)))) + (add-after 'install 'install-gschema + (lambda _ + (let ((schemas (string-append #$output + "/share/glib-2.0/schemas"))) + (install-file "tractor/tractor.gschema.xml" schemas))))))) (home-page "https://framagit.org/tractor") (synopsis "Setup an onion routing proxy") (description -- 2.34.1 From debbugs-submit-bounces@debbugs.gnu.org Mon Dec 25 12:32:40 2023 Received: (at 67481) by debbugs.gnu.org; 25 Dec 2023 17:32:40 +0000 Received: from localhost ([127.0.0.1]:55266 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rHooi-0005GW-3p for submit@debbugs.gnu.org; Mon, 25 Dec 2023 12:32:40 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:59950) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rHoog-0005GK-KU for 67481@debbugs.gnu.org; Mon, 25 Dec 2023 12:32:39 -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 1rHooU-0001IG-AV; Mon, 25 Dec 2023 12:32:26 -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=uG66JSSQTxWM1IZTvFIeffnmmMf/zS6qCj2c0U7LjyI=; b=dFsQaIktbwxkS343+sOv YsNc/DRv3uYo4N/zcDXG+S/Ods0wO7KoQsfKGPqvCYXHZ1qWJacBsOXl+MpihnH9uR3iNHMzOPMfK 9o67pRB6N2VnpYci9i0E/5b2D+6ba+NhF29L4IP1oUAQr/9iOATU9JjWj9+cGsVOGlnHsBJTUU7mL sFgTQgcEPVJPhFum6CDqh7C5ElTPh8LgFSElDAGRNebWHqQ3yHvwhA+RgbnZtW0WJAO9lNQyp54Q8 CFJORXv8qJ2Efw2AzpWtycC4p1Ez6wyP6NP+046CvLITNsT8dpujtyYzDs5lrwAqxowTP5J3xwgaM d0usYey97Zd8cA==; From: Mathieu Othacehe To: Danial Behzadi Subject: Re: [bug#67481] [PATCH] gnu: tractor: Change URI of source. In-Reply-To: <20231127100109.93330-1-dani.behzi@ubuntu.com> (Danial Behzadi's message of "Mon, 27 Nov 2023 13:31:09 +0330") References: <20231127100109.93330-1-dani.behzi@ubuntu.com> Date: Mon, 25 Dec 2023 18:32:23 +0100 Message-ID: <87h6k6i3x4.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: 67481 Cc: 67481@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 (---) Hello Danial, > - (uri (pypi-uri "traxtor" version)) > + (uri (string-append "https://framagit.org/tractor/tractor/-/archive/" > + version "/tractor-" version ".tar.bz2")) What's the rationale behind the URI change? It seems that pypi is still providing traxtor. > - (native-inputs > - (list (list glib "bin"))) ; for glib-compile-schemas. > - (inputs > - (list python-fire > - python-psutil > - python-pygobject > - python-requests > - python-stem > - python-termcolor)) > + (native-inputs (list (list glib "bin"))) ;for glib-compile-schemas. > + (inputs (list python-fire > + python-psutil > + python-pygobject > + python-requests > + python-stem > + python-termcolor)) All the subsequent modifications should be made in another separate commit. Could you please send an updated version? Thanks, Mathieu From debbugs-submit-bounces@debbugs.gnu.org Sun Jan 07 08:24:48 2024 Received: (at 67481) by debbugs.gnu.org; 7 Jan 2024 13:24:49 +0000 Received: from localhost ([127.0.0.1]:60807 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rMT8y-0000w7-Mo for submit@debbugs.gnu.org; Sun, 07 Jan 2024 08:24:48 -0500 Received: from mx0.riseup.net ([198.252.153.6]:50176) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rMT8w-0000vs-PS for 67481@debbugs.gnu.org; Sun, 07 Jan 2024 08:24:47 -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 mx0.riseup.net (Postfix) with ESMTPS id 4T7Hwg3gDmz9whX for <67481@debbugs.gnu.org>; Sun, 7 Jan 2024 13:24:35 +0000 (UTC) X-Riseup-User-ID: E3E85575E2684CDA6AA8F5002AD4F5F4BD17253492959F0DCDC153BEDD31E04E Received: from [127.0.0.1] (localhost [127.0.0.1]) by fews01-sea.riseup.net (Postfix) with ESMTPSA id 4T7Hwd4t8DzJn82 for <67481@debbugs.gnu.org>; Sun, 7 Jan 2024 13:24:32 +0000 (UTC) Date: Sun, 07 Jan 2024 16:54:14 +0330 From: Danial Behzadi Subject: [PATCH] gnu: tractor: Change URI of source. To: 67481@debbugs.gnu.org Message-Id: MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="=-cvES95PBM5gyi79o8ai8" X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 67481 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.7 (-) --=-cvES95PBM5gyi79o8ai8 Content-Type: text/plain; charset=us-ascii; format=flowed Close in favor of #68303 --=-cvES95PBM5gyi79o8ai8 Content-Type: text/html; charset=us-ascii
Close in favor of #68303
--=-cvES95PBM5gyi79o8ai8-- From debbugs-submit-bounces@debbugs.gnu.org Tue Feb 04 11:15:48 2025 Received: (at 67481-done) by debbugs.gnu.org; 4 Feb 2025 16:15:48 +0000 Received: from localhost ([127.0.0.1]:46362 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tfLaW-0000Sp-CN for submit@debbugs.gnu.org; Tue, 04 Feb 2025 11:15:48 -0500 Received: from mx1.riseup.net ([198.252.153.129]:59138) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tfLaU-0000SN-VQ for 67481-done@debbugs.gnu.org; Tue, 04 Feb 2025 11:15:47 -0500 Received: from fews02-sea.riseup.net (fews02-sea-pn.riseup.net [10.0.1.112]) (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 4YnT4D4LnBzDrqW for <67481-done@debbugs.gnu.org>; Tue, 4 Feb 2025 16:15:19 +0000 (UTC) X-Riseup-User-ID: E4C20DE0FCD89B7D6F49B08C9DE1FFC42467B69E9CD21AD01BA7DC0438C43839 Received: from [127.0.0.1] (localhost [127.0.0.1]) by fews02-sea.riseup.net (Postfix) with ESMTPSA id 4YnT3p58zZzFtFQ for <67481-done@debbugs.gnu.org>; Tue, 4 Feb 2025 16:15:18 +0000 (UTC) Received: from danialbehzadi by hasan with local (Exim 4.98) (envelope-from ) id 1tfLZy-00000000jk3-1tij for 67481-done@debbugs.gnu.org; Tue, 04 Feb 2025 19:45:14 +0330 To: 67481-done@debbugs.gnu.org Subject: MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit Message-Id: From: =?UTF-8?Q?=D8=AF=D8=A7=D9=86=DB=8C=D8=A7=D9=84_=D8=A8=D9=87=D8=B2=D8=A7=D8=AF=DB=8C?= Date: Tue, 04 Feb 2025 19:45:14 +0330 X-Spam-Score: 1.3 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: 5.0.0 Content analysis details: (1.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 RCVD_IN_VALIDITY_CERTIFIED_BLOCKED RBL: ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. [198.252.153.129 listed in sa-accredit.habeas.com] 0.0 RCVD_IN_VALIDITY_RPBL_BLOCKED RBL: ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. [198.252.153.129 listed in bl.score.senderscore.com] -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [198.252.153.129 listed in list.dnswl.org] -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -0.0 SPF_PASS SPF: sender matches SPF record 0.0 RCVD_IN_MSPIKE_H3 RBL: Good reputation (+3) [198.252.153.129 listed in wl.mailspike.net] 2.0 BLANK_SUBJECT Subject is present but empty 0.0 RCVD_IN_MSPIKE_WL Mailspike good senders X-Debbugs-Envelope-To: 67481-done 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: 0.3 (/) 5.0.0 From unknown Sun Jun 15 09:00:05 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 05 Mar 2025 12:24:17 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator