GNU bug report logs -
#68303
[PATCH] gnu: tractor: Update to 4.3.0.
Previous Next
Reported by: Danial Behzadi <dani.behzi <at> ubuntu.com>
Date: Sun, 7 Jan 2024 13:22:01 UTC
Severity: normal
Tags: patch
Done: دانیال بهزادی <dani.behzi <at> ubuntu.com>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 68303 in the body.
You can then email your comments to 68303 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#68303
; Package
guix-patches
.
(Sun, 07 Jan 2024 13:22:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Danial Behzadi <dani.behzi <at> ubuntu.com>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Sun, 07 Jan 2024 13:22:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
---
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 <vincent.legoll <at> gmail.com>
;;; Copyright © 2020 Brice Waegeneire <brice <at> waegenei.re>
;;; Copyright © 2020 André Batista <nandre <at> riseup.net>
-;;; Copyright © 2021-2023 Danial Behzadi <dani.behzi <at> ubuntu.com>
+;;; Copyright © 2021-2024 Danial Behzadi <dani.behzi <at> ubuntu.com>
;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
;;; Copyright © 2022 Jim Newsome <jnewsome <at> torproject.org>
;;; Copyright © 2023 Clément Lassieur <clement <at> lassieur.org>
@@ -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
Information forwarded
to
guix-patches <at> gnu.org
:
bug#68303
; Package
guix-patches
.
(Sun, 07 Jan 2024 20:01:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 68303 <at> debbugs.gnu.org (full text, mbox):
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
Information forwarded
to
guix-patches <at> gnu.org
:
bug#68303
; Package
guix-patches
.
(Mon, 08 Jan 2024 11:11:01 GMT)
Full text and
rfc822 format available.
Message #11 received at 68303 <at> debbugs.gnu.org (full text, mbox):
* 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 <vincent.legoll <at> gmail.com>
;;; Copyright © 2020 Brice Waegeneire <brice <at> waegenei.re>
;;; Copyright © 2020 André Batista <nandre <at> riseup.net>
-;;; Copyright © 2021-2023 Danial Behzadi <dani.behzi <at> ubuntu.com>
+;;; Copyright © 2021-2024 Danial Behzadi <dani.behzi <at> ubuntu.com>
;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
;;; Copyright © 2022 Jim Newsome <jnewsome <at> torproject.org>
;;; Copyright © 2023 Clément Lassieur <clement <at> lassieur.org>
@@ -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
Information forwarded
to
guix-patches <at> gnu.org
:
bug#68303
; Package
guix-patches
.
(Tue, 09 Jan 2024 16:07:02 GMT)
Full text and
rfc822 format available.
Message #14 received at 68303 <at> debbugs.gnu.org (full text, mbox):
* 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
Information forwarded
to
guix-patches <at> gnu.org
:
bug#68303
; Package
guix-patches
.
(Tue, 09 Jan 2024 16:07:02 GMT)
Full text and
rfc822 format available.
Message #17 received at 68303 <at> debbugs.gnu.org (full text, mbox):
* 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 <vincent.legoll <at> gmail.com>
;;; Copyright © 2020 Brice Waegeneire <brice <at> waegenei.re>
;;; Copyright © 2020 André Batista <nandre <at> riseup.net>
-;;; Copyright © 2021-2023 Danial Behzadi <dani.behzi <at> ubuntu.com>
+;;; Copyright © 2021-2024 Danial Behzadi <dani.behzi <at> ubuntu.com>
;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
;;; Copyright © 2022 Jim Newsome <jnewsome <at> torproject.org>
;;; Copyright © 2023 Clément Lassieur <clement <at> lassieur.org>
@@ -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
Information forwarded
to
guix-patches <at> gnu.org
:
bug#68303
; Package
guix-patches
.
(Mon, 06 Jan 2025 09:44:01 GMT)
Full text and
rfc822 format available.
Message #20 received at 68303 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Close in favor of #75351
[Message part 2 (text/html, inline)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#68303
; Package
guix-patches
.
(Tue, 04 Feb 2025 15:37:02 GMT)
Full text and
rfc822 format available.
Message #23 received at 68303 <at> debbugs.gnu.org (full text, mbox):
5.0.0
Reply sent
to
دانیال بهزادی <dani.behzi <at> ubuntu.com>
:
You have taken responsibility.
(Tue, 04 Feb 2025 16:06:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Danial Behzadi <dani.behzi <at> ubuntu.com>
:
bug acknowledged by developer.
(Tue, 04 Feb 2025 16:06:02 GMT)
Full text and
rfc822 format available.
Message #28 received at 68303-done <at> debbugs.gnu.org (full text, mbox):
5.0.0
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Wed, 05 Mar 2025 12:24:06 GMT)
Full text and
rfc822 format available.
This bug report was last modified 8 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.