GNU bug report logs -
#63566
[PATCH] gnu: add tcptrack
Previous Next
Reported by: Jakob Kirsch <jakob.kirsch <at> web.de>
Date: Thu, 18 May 2023 03:51:02 UTC
Severity: normal
Tags: patch
Done: Maxim Cournoyer <maxim.cournoyer <at> gmail.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 63566 in the body.
You can then email your comments to 63566 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#63566
; Package
guix-patches
.
(Thu, 18 May 2023 03:51:03 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Jakob Kirsch <jakob.kirsch <at> web.de>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Thu, 18 May 2023 03:51:03 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
---
gnu/packages/admin.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 047b0ebcc6..0ae883e0b4 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -4255,6 +4255,30 @@ (define-public thermald
(supported-systems '("i686-linux" "x86_64-linux"))
(license license:gpl2)))
+(define-public tcptrack
+ (package
+ (name "tcptrack")
+ (version "1.4.3")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/bchretien/tcptrack")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "08lh3l67wn4kq9q0nfspc7rj0jvp9dzwjgxpvqliwcif8cy5mi45"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:tests? #f))
+ (inputs (list libpcap ncurses))
+ (synopsis "Display information about TCP connections")
+ (description
+ "A sniffer which displays information about TCP connections it
+sees on a network interface. (backup from Steve Bensons's tcptrack)")
+ (home-page "https://github.com/bchretien/tcptrack")
+ (license license:lgpl2.1)))
+
(define-public masscan
(package
(name "masscan")
base-commit: c8e599b9391f789a8a3e2183fc8f0c2a5061ceb0
--
2.39.2
Information forwarded
to
guix-patches <at> gnu.org
:
bug#63566
; Package
guix-patches
.
(Tue, 20 Jun 2023 20:30:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 63566 <at> debbugs.gnu.org (full text, mbox):
Hi Jakob,
Thank you for the patch! Delayed as it may be, I have some small points
of order to share.
We try to follow the Changelog format in commit logs, see
https://guix.gnu.org/manual/devel/en/html_node/Submitting-Patches.html
for the thorough explanation (or just have a look at commit logs for
some of the other packages that were added by people).
Jakob Kirsch <jakob.kirsch <at> web.de> writes:
> ---
> gnu/packages/admin.scm | 24 ++++++++++++++++++++++++
> 1 file changed, 24 insertions(+)
>
> diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
> index 047b0ebcc6..0ae883e0b4 100644
> --- a/gnu/packages/admin.scm
> +++ b/gnu/packages/admin.scm
> @@ -4255,6 +4255,30 @@ (define-public thermald
> (supported-systems '("i686-linux" "x86_64-linux"))
> (license license:gpl2)))
>
> +(define-public tcptrack
> + (package
> + (name "tcptrack")
> + (version "1.4.3")
> + (source (origin
> + (method git-fetch)
> + (uri (git-reference
> + (url "https://github.com/bchretien/tcptrack")
> + (commit (string-append "v" version))))
> + (file-name (git-file-name name version))
> + (sha256
> + (base32
> + "08lh3l67wn4kq9q0nfspc7rj0jvp9dzwjgxpvqliwcif8cy5mi45"))))
> + (build-system gnu-build-system)
> + (arguments
> + `(#:tests? #f))
Please add a comment explaining why tests are disabled (e.g. `; no
tests')
> + (inputs (list libpcap ncurses))
> + (synopsis "Display information about TCP connections")
> + (description
> + "A sniffer which displays information about TCP connections it
> +sees on a network interface. (backup from Steve Bensons's tcptrack)")
The description should contain complete sentences, if possible.
How about something like this:
Tcptrack is a sniffer which displays information about TCP connections
it sees on a network interface. This is a fork of Steve Benson’s
tcptrack.
(Note the double spacing after the .)
> + (home-page "https://github.com/bchretien/tcptrack")
> + (license license:lgpl2.1)))
Having looked at the source archives, I think there are a bunch of
GPLv2+ licensed source files in the tarball (note the missing L). Could
you perhaps open an issue so the author(s) could (re)confirm the status
of these source files? The folks over at [1] also indicate the package
is licensed as GPLv2+, so there may be some confusion about the
licensing status of the package.
Cheers,
Jelle
[1]: https://directory.fsf.org/wiki/Tcptrack#tab=Overview
Information forwarded
to
guix-patches <at> gnu.org
:
bug#63566
; Package
guix-patches
.
(Wed, 21 Jun 2023 20:16:01 GMT)
Full text and
rfc822 format available.
Message #11 received at 63566 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/admin.scm (tcptrack): New variable
---
gnu/packages/admin.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 529a477ed0..3dd8b25836 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -4256,6 +4256,29 @@ (define-public thermald
(supported-systems '("i686-linux" "x86_64-linux"))
(license license:gpl2)))
+(define-public tcptrack
+ (package
+ (name "tcptrack")
+ (version "1.4.3")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/bchretien/tcptrack")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "08lh3l67wn4kq9q0nfspc7rj0jvp9dzwjgxpvqliwcif8cy5mi45"))))
+ (build-system gnu-build-system)
+ (inputs (list libpcap ncurses))
+ (synopsis "Display information about TCP connections")
+ (description
+ "Tcptrack is a sniffer which displays information about TCP connections
+it sees on a network interface. This is a fork of Steve Benson’s tcptrack.")
+ (home-page "https://github.com/bchretien/tcptrack")
+ ; the COPYING file states the following license but the tcptrack.spec states just 'GPL'
+ (license license:lgpl2.1)))
+
(define-public masscan
(package
(name "masscan")
base-commit: dcca13ed7340f17a33a4c0907c13b64d5da66a8e
--
2.39.3
Reply sent
to
Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
:
You have taken responsibility.
(Fri, 01 Sep 2023 14:40:01 GMT)
Full text and
rfc822 format available.
Notification sent
to
Jakob Kirsch <jakob.kirsch <at> web.de>
:
bug acknowledged by developer.
(Fri, 01 Sep 2023 14:40:01 GMT)
Full text and
rfc822 format available.
Message #16 received at 63566-done <at> debbugs.gnu.org (full text, mbox):
Hi,
Jakob Kirsch <jakob.kirsch <at> web.de> writes:
> * gnu/packages/admin.scm (tcptrack): New variable
> ---
> gnu/packages/admin.scm | 23 +++++++++++++++++++++++
> 1 file changed, 23 insertions(+)
>
> diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
> index 529a477ed0..3dd8b25836 100644
> --- a/gnu/packages/admin.scm
> +++ b/gnu/packages/admin.scm
> @@ -4256,6 +4256,29 @@ (define-public thermald
> (supported-systems '("i686-linux" "x86_64-linux"))
> (license license:gpl2)))
>
> +(define-public tcptrack
> + (package
> + (name "tcptrack")
> + (version "1.4.3")
> + (source (origin
> + (method git-fetch)
> + (uri (git-reference
> + (url "https://github.com/bchretien/tcptrack")
> + (commit (string-append "v" version))))
> + (file-name (git-file-name name version))
> + (sha256
> + (base32
> + "08lh3l67wn4kq9q0nfspc7rj0jvp9dzwjgxpvqliwcif8cy5mi45"))))
> + (build-system gnu-build-system)
> + (inputs (list libpcap ncurses))
> + (synopsis "Display information about TCP connections")
> + (description
> + "Tcptrack is a sniffer which displays information about TCP connections
> +it sees on a network interface. This is a fork of Steve Benson’s tcptrack.")
> + (home-page "https://github.com/bchretien/tcptrack")
> + ; the COPYING file states the following license but the tcptrack.spec states just 'GPL'
> + (license license:lgpl2.1)))
I've made the following small changes:
--8<---------------cut here---------------start------------->8---
modified gnu/packages/admin.scm
@@ -4291,13 +4291,12 @@ (define-public tcptrack
"08lh3l67wn4kq9q0nfspc7rj0jvp9dzwjgxpvqliwcif8cy5mi45"))))
(build-system gnu-build-system)
(inputs (list libpcap ncurses))
- (synopsis "Display information about TCP connections")
+ (synopsis "TCP connections sniffer")
(description
"Tcptrack is a sniffer which displays information about TCP connections
it sees on a network interface. This is a fork of Steve Benson’s tcptrack.")
(home-page "https://github.com/bchretien/tcptrack")
- ; the COPYING file states the following license but the tcptrack.spec states just 'GPL'
- (license license:lgpl2.1)))
+ (license license:lgpl2.1+)))
(define-public masscan
(package
--8<---------------cut here---------------end--------------->8---
Fixing the license (note the + which means 'or later'). Conventionally
the synopsis is worded to describe what it *is* rather than what it
does (the later is kept for the description).
I've now installed the change, thank you!
--
Thanks,
Maxim
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Sat, 30 Sep 2023 11:24:25 GMT)
Full text and
rfc822 format available.
This bug report was last modified 1 year and 223 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.