From debbugs-submit-bounces@debbugs.gnu.org Sun Jan 07 08:21:07 2024 Received: (at submit) by debbugs.gnu.org; 7 Jan 2024 13:21:07 +0000 Received: from localhost ([127.0.0.1]:60802 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rMT5O-0000pm-PU for submit@debbugs.gnu.org; Sun, 07 Jan 2024 08:21:07 -0500 Received: from lists.gnu.org ([2001:470:142::17]:42162) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rMT5M-0000pA-9r for submit@debbugs.gnu.org; Sun, 07 Jan 2024 08:21:05 -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 1rMT5B-000620-2Z for guix-patches@gnu.org; Sun, 07 Jan 2024 08:20:53 -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 1rMT59-0002qV-79 for guix-patches@gnu.org; Sun, 07 Jan 2024 08:20:52 -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 4T7Hr33vsjzDqQ7; Sun, 7 Jan 2024 13:20:35 +0000 (UTC) X-Riseup-User-ID: 1DF3CD0283CD93BFB4495D99AAD1294A586B68CD0FDD9024BB122AAE8FD46859 Received: from [127.0.0.1] (localhost [127.0.0.1]) by fews01-sea.riseup.net (Postfix) with ESMTPSA id 4T7Hr26X8KzJn3k; Sun, 7 Jan 2024 13:20:34 +0000 (UTC) Received: from danialbehzadi by banshee with local (Exim 4.96) (envelope-from ) id 1rMT4o-000LPw-2X; Sun, 07 Jan 2024 16:50:30 +0330 From: Danial Behzadi To: guix-patches@gnu.org Subject: [PATCH] gnu: tractor: Update to 4.3.0. Date: Sun, 7 Jan 2024 16:50:14 +0330 Message-Id: <20240107132014.82266-1-dani.behzi@ubuntu.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 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.01, 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 | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/gnu/packages/tor.scm b/gnu/packages/tor.scm index b81944ee6b..06b0746670 100644 --- a/gnu/packages/tor.scm +++ b/gnu/packages/tor.scm @@ -10,7 +10,7 @@ ;;; Copyright © 2020 Vincent Legoll ;;; Copyright © 2020 Brice Waegeneire ;;; Copyright © 2020 André Batista -;;; Copyright © 2021-2023 Danial Behzadi +;;; Copyright © 2021-2024 Danial Behzadi ;;; Copyright © 2022 Maxim Cournoyer ;;; Copyright © 2022 Jim Newsome ;;; Copyright © 2023 Clément Lassieur @@ -443,20 +443,20 @@ (define-public nyx (define-public tractor (package (name "tractor") - (version "4.1.1") + (version "4.3.0") (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")))) + "1kal71hh8wbar19785b86q62rcilxrma8ldjjk258vf7lr1w12dv")))) (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 @@ -464,25 +464,21 @@ (define-public tractor (arguments (list #:tests? #f ; no test suite. - #:phases - #~(modify-phases %standard-phases + #: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)))) + (install-file "data/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)))) + (install-file "data/completion/bash/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") + (install-file "src/tractor/tractor.gschema.xml" schemas))))))) + (home-page "https://tractor.frama.io/tractor/") (synopsis "Setup an onion routing proxy") (description "This package uses Python stem library to provide a connection through -- 2.39.2 From debbugs-submit-bounces@debbugs.gnu.org Sun Jan 07 15:00:29 2024 Received: (at 68303) by debbugs.gnu.org; 7 Jan 2024 20:00:30 +0000 Received: from localhost ([127.0.0.1]:33943 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rMZJt-00055J-Lg for submit@debbugs.gnu.org; Sun, 07 Jan 2024 15:00:29 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:53656) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rMZJs-0004vD-SZ for 68303@debbugs.gnu.org; Sun, 07 Jan 2024 15:00:29 -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 1rMZJh-0003Aa-IW; Sun, 07 Jan 2024 15:00:17 -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=rmr2lH6QhNsqWB8ADaGuSZdWUNNacFVcQ4ZESgKxBD4=; b=X1a6fSCPJFVOmoxeGks6 xRZ+AC21seYa/yLE2hozhnu4Iki+N9yWPDzsSAFDI5/6A4GoXsRvd7g92Mj3nWmAcbSkePV9G1Xj5 CCO+yijfuicUPr3AmFbLRKPrwQfpeQoOR9/KBbDksb0C5teAbPXEi+ySJWliu0dlD8oF37Dkga8XX j+VooA+bUVFq9pLS8zH4kJO+A7pEVjjUio0NJpztwmzdNHvntq74kFIMhEeKbPYcHwDHpiwNvfaJm u0bRw8xYK03fMG+8ZxQV8s4EGlhf+A76pBL05evJJHyDxa9Vrqd0/K437EFZYMx3PhfaExgj9wJ4k 9j3mxMfJao19Qg==; From: Mathieu Othacehe To: Danial Behzadi Subject: Re: [bug#68303] [PATCH] gnu: tractor: Update to 4.3.0. In-Reply-To: <20240107132014.82266-1-dani.behzi@ubuntu.com> (Danial Behzadi's message of "Sun, 7 Jan 2024 16:50:14 +0330") References: <20240107132014.82266-1-dani.behzi@ubuntu.com> Date: Sun, 07 Jan 2024 21:00:15 +0100 Message-ID: <87sf38rk1c.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: 68303 Cc: 68303@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, Could you please a second version with a commit message following the conventions detailed here: https://www.gnu.org/prep/standards/html_node/Change-Logs.html You can have a look to the history for examples. Thanks, Mathieu From debbugs-submit-bounces@debbugs.gnu.org Mon Jan 08 06:10:14 2024 Received: (at 68303) by debbugs.gnu.org; 8 Jan 2024 11:10:14 +0000 Received: from localhost ([127.0.0.1]:35330 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rMnWH-00021A-UI for submit@debbugs.gnu.org; Mon, 08 Jan 2024 06:10:14 -0500 Received: from mx1.riseup.net ([198.252.153.129]:41652) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rMnWE-00020x-Rf for 68303@debbugs.gnu.org; Mon, 08 Jan 2024 06:10:12 -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 4T7rtv0DqBzDqPf; Mon, 8 Jan 2024 11:09:59 +0000 (UTC) X-Riseup-User-ID: D046D459A279FF53375526045646EDE63C16E9CA0F53ECA185389B1B2901025B Received: from [127.0.0.1] (localhost [127.0.0.1]) by fews01-sea.riseup.net (Postfix) with ESMTPSA id 4T7rtt3mY6zJmtT; Mon, 8 Jan 2024 11:09:58 +0000 (UTC) Received: from danialbehzadi by banshee with local (Exim 4.96) (envelope-from ) id 1rMnVy-000UMA-1e; Mon, 08 Jan 2024 14:39:54 +0330 From: Danial Behzadi To: 68303@debbugs.gnu.org Subject: [PATCH] gnu: tractor: Update to 4.3.0. Date: Mon, 8 Jan 2024 14:39:49 +0330 Message-Id: <20240108110949.116518-1-dani.behzi@ubuntu.com> In-Reply-To: <8> References: <8> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 68303 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.7 (-) * gnu/packages/tor.scm (tractor): Update to 4.3.0. [source]: The new primary download link is from Framagit. [inputs]: Remove python-psutil as no longer needed. [phases]: Upstream is now in src-layout. data is excluded. [home-page]: The new home is hosted on tractor.frama.io. --- gnu/packages/tor.scm | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/gnu/packages/tor.scm b/gnu/packages/tor.scm index b81944ee6b..06b0746670 100644 --- a/gnu/packages/tor.scm +++ b/gnu/packages/tor.scm @@ -10,7 +10,7 @@ ;;; Copyright © 2020 Vincent Legoll ;;; Copyright © 2020 Brice Waegeneire ;;; Copyright © 2020 André Batista -;;; Copyright © 2021-2023 Danial Behzadi +;;; Copyright © 2021-2024 Danial Behzadi ;;; Copyright © 2022 Maxim Cournoyer ;;; Copyright © 2022 Jim Newsome ;;; Copyright © 2023 Clément Lassieur @@ -443,20 +443,20 @@ (define-public nyx (define-public tractor (package (name "tractor") - (version "4.1.1") + (version "4.3.0") (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")))) + "1kal71hh8wbar19785b86q62rcilxrma8ldjjk258vf7lr1w12dv")))) (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 @@ -464,25 +464,21 @@ (define-public tractor (arguments (list #:tests? #f ; no test suite. - #:phases - #~(modify-phases %standard-phases + #: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)))) + (install-file "data/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)))) + (install-file "data/completion/bash/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") + (install-file "src/tractor/tractor.gschema.xml" schemas))))))) + (home-page "https://tractor.frama.io/tractor/") (synopsis "Setup an onion routing proxy") (description "This package uses Python stem library to provide a connection through -- 2.39.2 From debbugs-submit-bounces@debbugs.gnu.org Tue Jan 09 11:06:16 2024 Received: (at 68303) by debbugs.gnu.org; 9 Jan 2024 16:06:17 +0000 Received: from localhost ([127.0.0.1]:40714 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rNEcK-0005zG-LC for submit@debbugs.gnu.org; Tue, 09 Jan 2024 11:06:16 -0500 Received: from mx0.riseup.net ([198.252.153.6]:58426) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rNEcH-0005yz-Ln for 68303@debbugs.gnu.org; Tue, 09 Jan 2024 11:06: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 4T8bQ12Smlz9wN0; Tue, 9 Jan 2024 16:06:01 +0000 (UTC) X-Riseup-User-ID: 5C2F21E23B99ED780765D199823B0D963DCC99F01A585F46B563727B6F2F9BCB Received: from [127.0.0.1] (localhost [127.0.0.1]) by fews02-sea.riseup.net (Postfix) with ESMTPSA id 4T8bPp1Y2WzFqhK; Tue, 9 Jan 2024 16:05:50 +0000 (UTC) Received: from danialbehzadi by banshee with local (Exim 4.96) (envelope-from ) id 1rNEbr-0013Px-0n; Tue, 09 Jan 2024 19:35:47 +0330 From: Danial Behzadi To: 68303@debbugs.gnu.org Subject: [PATCH v2 2/2] gnu: tractor: Update to 4.3.1. Date: Tue, 9 Jan 2024 19:35:38 +0330 Message-Id: <20240109160538.251432-2-dani.behzi@ubuntu.com> In-Reply-To: <20240109160538.251432-1-dani.behzi@ubuntu.com> References: <20240109160538.251432-1-dani.behzi@ubuntu.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 68303 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.7 (-) * gnu/packages/tor.scm (tractor): Update to 4.3.1. [inputs]: Remove python-requests as no longer needed. [inputs]: Add python-pysock connection check needs it. --- gnu/packages/tor.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/tor.scm b/gnu/packages/tor.scm index 6045b29bf4..f697cd8c06 100644 --- a/gnu/packages/tor.scm +++ b/gnu/packages/tor.scm @@ -443,7 +443,7 @@ (define-public nyx (define-public tractor (package (name "tractor") - (version "4.3.0") + (version "4.3.1") (source (origin (method url-fetch) @@ -451,14 +451,14 @@ (define-public tractor version "/tractor-" version ".tar.bz2")) (sha256 (base32 - "1kal71hh8wbar19785b86q62rcilxrma8ldjjk258vf7lr1w12dv")))) + "1qqivzv65ckhk7nz6vcgchqwkxdmh2sdmkgvv8phqb1c4mzp48ip")))) (build-system pyproject-build-system) (native-inputs (list (list glib "bin"))) ; for glib-compile-schemas. (inputs (list python-fire python-pygobject - python-requests + python-pysocks python-stem python-termcolor)) (arguments -- 2.39.2 From debbugs-submit-bounces@debbugs.gnu.org Tue Jan 09 11:06:19 2024 Received: (at 68303) by debbugs.gnu.org; 9 Jan 2024 16:06:19 +0000 Received: from localhost ([127.0.0.1]:40716 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rNEcM-0005zV-Uq for submit@debbugs.gnu.org; Tue, 09 Jan 2024 11:06:19 -0500 Received: from mx0.riseup.net ([198.252.153.6]:58422) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rNEcH-0005yv-HW for 68303@debbugs.gnu.org; Tue, 09 Jan 2024 11:06:17 -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 4T8bPz5KScz9vRB; Tue, 9 Jan 2024 16:05:59 +0000 (UTC) X-Riseup-User-ID: C84C150D458AF49919FA18EF870485518317CFA65BF78E788BABD785898D002E Received: from [127.0.0.1] (localhost [127.0.0.1]) by fews02-sea.riseup.net (Postfix) with ESMTPSA id 4T8bPm3w28zFq4x; Tue, 9 Jan 2024 16:05:48 +0000 (UTC) Received: from danialbehzadi by banshee with local (Exim 4.96) (envelope-from ) id 1rNEbo-0013Pq-2z; Tue, 09 Jan 2024 19:35:44 +0330 From: Danial Behzadi To: 68303@debbugs.gnu.org Subject: [PATCH v2 1/2] gnu: tractor: Update to 4.3.0. Date: Tue, 9 Jan 2024 19:35:37 +0330 Message-Id: <20240109160538.251432-1-dani.behzi@ubuntu.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 68303 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.7 (-) * gnu/packages/tor.scm (tractor): Update to 4.3.0. [source]: The new primary download link is from Framagit. [inputs]: Remove python-psutil as no longer needed. [phases]: Upstream is now in src-layout. data is excluded. [home-page]: The new home is hosted on tractor.frama.io. --- gnu/packages/tor.scm | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/gnu/packages/tor.scm b/gnu/packages/tor.scm index b81944ee6b..6045b29bf4 100644 --- a/gnu/packages/tor.scm +++ b/gnu/packages/tor.scm @@ -10,7 +10,7 @@ ;;; Copyright © 2020 Vincent Legoll ;;; Copyright © 2020 Brice Waegeneire ;;; Copyright © 2020 André Batista -;;; Copyright © 2021-2023 Danial Behzadi +;;; Copyright © 2021-2024 Danial Behzadi ;;; Copyright © 2022 Maxim Cournoyer ;;; Copyright © 2022 Jim Newsome ;;; Copyright © 2023 Clément Lassieur @@ -443,20 +443,20 @@ (define-public nyx (define-public tractor (package (name "tractor") - (version "4.1.1") + (version "4.3.0") (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")))) + "1kal71hh8wbar19785b86q62rcilxrma8ldjjk258vf7lr1w12dv")))) (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 @@ -464,25 +464,21 @@ (define-public tractor (arguments (list #:tests? #f ; no test suite. - #:phases - #~(modify-phases %standard-phases + #: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)))) + (install-file "data/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)))) + (install-file "data/completion/bash/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") + (install-file "src/tractor/tractor.gschema.xml" schemas))))))) + (home-page "https://tractor.frama.io/tractor") (synopsis "Setup an onion routing proxy") (description "This package uses Python stem library to provide a connection through -- 2.39.2 From debbugs-submit-bounces@debbugs.gnu.org Mon Jan 06 04:43:15 2025 Received: (at 68303) by debbugs.gnu.org; 6 Jan 2025 09:43:15 +0000 Received: from localhost ([127.0.0.1]:36715 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tUjdj-0000yL-Fw for submit@debbugs.gnu.org; Mon, 06 Jan 2025 04:43:15 -0500 Received: from mx1.riseup.net ([198.252.153.129]:49476) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tUjdh-0000y5-BM for 68303@debbugs.gnu.org; Mon, 06 Jan 2025 04:43:14 -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 4YRTkd40DJzDqX0 for <68303@debbugs.gnu.org>; Mon, 6 Jan 2025 09:43:05 +0000 (UTC) X-Riseup-User-ID: BB2D1EAA5DDFC6EE2F928D251D187E3B0614E217E5A1DC7C28C1FAF363004905 Received: from [127.0.0.1] (localhost [127.0.0.1]) by fews01-sea.riseup.net (Postfix) with ESMTPSA id 4YRTkc0G7RzJrbK for <68303@debbugs.gnu.org>; Mon, 6 Jan 2025 09:43:03 +0000 (UTC) Date: Mon, 06 Jan 2025 13:12:52 +0330 From: Danial Behzadi Subject: [PATCH] gnu: tractor: Update to 4.3.0. To: 68303@debbugs.gnu.org Message-Id: MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="=-WvVs+VA6nphORlGVSt0i" X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 68303 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 (-) --=-WvVs+VA6nphORlGVSt0i Content-Type: text/plain; charset=us-ascii; format=flowed Close in favor of #75351 --=-WvVs+VA6nphORlGVSt0i Content-Type: text/html; charset=us-ascii
Close in favor of #75351
--=-WvVs+VA6nphORlGVSt0i-- From debbugs-submit-bounces@debbugs.gnu.org Tue Feb 04 10:36:18 2025 Received: (at 68303) by debbugs.gnu.org; 4 Feb 2025 15:36:19 +0000 Received: from localhost ([127.0.0.1]:46277 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tfKyI-0006zr-Nm for submit@debbugs.gnu.org; Tue, 04 Feb 2025 10:36:18 -0500 Received: from mx0.riseup.net ([198.252.153.6]:36120) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tfKyF-0006zZ-ME for 68303@debbugs.gnu.org; Tue, 04 Feb 2025 10:36:16 -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 4YnSBc3YKrz9wMm for <68303@debbugs.gnu.org>; Tue, 4 Feb 2025 15:36:08 +0000 (UTC) X-Riseup-User-ID: EC819F40BEA8E760C39E4B30AE60764FAEB6BD8D5C6A0860CCD08E9315541894 Received: from [127.0.0.1] (localhost [127.0.0.1]) by fews02-sea.riseup.net (Postfix) with ESMTPSA id 4YnSBc2bS3zFrvw for <68303@debbugs.gnu.org>; Tue, 4 Feb 2025 15:36:08 +0000 (UTC) Received: from danialbehzadi by hasan with local (Exim 4.98) (envelope-from ) id 1tfKy4-00000000iWL-2Ncd for 68303@debbugs.gnu.org; Tue, 04 Feb 2025 19:06:04 +0330 To: 68303@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:06:04 +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_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.6 listed in bl.score.senderscore.com] 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.6 listed in sa-trusted.bondedsender.org] -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [198.252.153.6 listed in list.dnswl.org] -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -0.0 SPF_PASS SPF: sender matches SPF record 2.0 BLANK_SUBJECT Subject is present but empty X-Debbugs-Envelope-To: 68303 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 debbugs-submit-bounces@debbugs.gnu.org Tue Feb 04 11:05:34 2025 Received: (at 68303-done) by debbugs.gnu.org; 4 Feb 2025 16:05:34 +0000 Received: from localhost ([127.0.0.1]:46330 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tfLQc-0008OU-22 for submit@debbugs.gnu.org; Tue, 04 Feb 2025 11:05:34 -0500 Received: from mx1.riseup.net ([198.252.153.129]:55226) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tfLQZ-0008OD-Mw for 68303-done@debbugs.gnu.org; Tue, 04 Feb 2025 11:05:32 -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 4YnSrP20nNzDrr5 for <68303-done@debbugs.gnu.org>; Tue, 4 Feb 2025 16:05:25 +0000 (UTC) X-Riseup-User-ID: DD2EB8300A1B1B8D6D3B07C9FD69FDB86167A513ABB28E2C27812A0F35F99611 Received: from [127.0.0.1] (localhost [127.0.0.1]) by fews02-sea.riseup.net (Postfix) with ESMTPSA id 4YnSrP0zpbzFtDd for <68303-done@debbugs.gnu.org>; Tue, 4 Feb 2025 16:05:25 +0000 (UTC) Received: from danialbehzadi by hasan with local (Exim 4.98) (envelope-from ) id 1tfLQO-00000000jJk-2hyV for 68303-done@debbugs.gnu.org; Tue, 04 Feb 2025 19:35:20 +0330 To: 68303-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:35:20 +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 RCVD_IN_MSPIKE_H3 RBL: Good reputation (+3) [198.252.153.129 listed in wl.mailspike.net] -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -0.0 SPF_PASS SPF: sender matches SPF record 2.0 BLANK_SUBJECT Subject is present but empty 0.0 RCVD_IN_MSPIKE_WL Mailspike good senders X-Debbugs-Envelope-To: 68303-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 Tue Aug 19 23:15:27 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:06 +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