unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#47913] [PATCH] add netdiscover
@ 2021-04-20 17:47 terramorpha
  2021-04-20 18:29 ` Maxime Devos
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: terramorpha @ 2021-04-20 17:47 UTC (permalink / raw)
  To: 47913

---
  gnu/packages/networking.scm | 26 ++++++++++++++++++++++++++
  1 file changed, 26 insertions(+)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index f7557fc331..342621299b 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -4075,3 +4075,29 @@ IPv6 Internet connectivity - it also works over 
IPv4.")
       ;; version. This exception does not (and cannot) modify any 
license terms
       ;; which apply to the Application, with which you must still 
comply
       license:lgpl3)))
+
+(define-public netdiscover
+  (package
+   (name "netdiscover")
+   (version "0.7")
+   (source (origin
+            (method git-fetch)
+            (uri (git-reference
+                  (url 
"https://github.com/netdiscover-scanner/netdiscover")
+                  (commit version)))
+            (sha256 (base32 
"0g8w8rlg16dsibxi4dnyn7v7r8wwi5ypd51c4w59j0ps2id0w8yj"))
+            (file-name (string-append "netdiscover-" version))))
+   (arguments `(#:tests? #f)) ;; no tests
+   (build-system gnu-build-system)
+   (inputs `(("libpcap" ,libpcap)
+             ("libnet" ,libnet)))
+   (native-inputs `(("automake" ,automake)
+                    ("autoconf" ,autoconf)))
+   (synopsis "Network address discovery tool")
+   (description
+    "Netdiscover is a network address discovering tool, developed 
mainly for
+those wireless networks without dhcp server, it also works on 
hub/switched
+networks.  Its based on arp packets, it will send arp requests and 
sniff for
+replies.")
+   (home-page "https://github.com/netdiscover-scanner/netdiscover")
+   (license license:gpl3)))
-- 
2.31.1




^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [bug#47913] [PATCH] add netdiscover
  2021-04-20 17:47 [bug#47913] [PATCH] add netdiscover terramorpha
@ 2021-04-20 18:29 ` Maxime Devos
  2021-04-20 20:26   ` Justin Veilleux
  2021-04-20 20:43 ` [bug#47913] [PATCH v2] " terramorpha
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 8+ messages in thread
From: Maxime Devos @ 2021-04-20 18:29 UTC (permalink / raw)
  To: terramorpha, 47913

[-- Attachment #1: Type: text/plain, Size: 543 bytes --]

terramorpha@cock.li schreef op di 20-04-2021 om 13:47 [-0400]:
> [...]
> +   (home-page "https://github.com/netdiscover-scanner/netdiscover")
> +   (license license:gpl3)))
Fr-
om netdiscover/src/data_ai.h:

 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 3 of the License, or
 *  (at your option) any later version.

So this should perhaps be license:gpl3+?
 
Greetings,
Maxime.

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 260 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [bug#47913] [PATCH] add netdiscover
  2021-04-20 18:29 ` Maxime Devos
@ 2021-04-20 20:26   ` Justin Veilleux
  0 siblings, 0 replies; 8+ messages in thread
From: Justin Veilleux @ 2021-04-20 20:26 UTC (permalink / raw)
  To: Maxime Devos, 47913

[-- Attachment #1: Type: text/plain, Size: 789 bytes --]

That makes sense. Should I send another patch with this field fixed ?

On April 20, 2021 2:29:24 p.m. EDT, Maxime Devos <maximedevos@telenet.be> wrote:
>terramorpha@cock.li schreef op di 20-04-2021 om 13:47 [-0400]:
>> [...]
>> +   (home-page "https://github.com/netdiscover-scanner/netdiscover")
>> +   (license license:gpl3)))
>Fr-
>om netdiscover/src/data_ai.h:
>
> *  This program is free software; you can redistribute it and/or modify
> *  it under the terms of the GNU General Public License as published by
> *  the Free Software Foundation; either version 3 of the License, or
> *  (at your option) any later version.
>
>So this should perhaps be license:gpl3+?
> 
>Greetings,
>Maxime.

-- 
Sent from my Android device with K-9 Mail. Please excuse my brevity.

[-- Attachment #2: Type: text/html, Size: 1182 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [bug#47913] [PATCH v2] add netdiscover
  2021-04-20 17:47 [bug#47913] [PATCH] add netdiscover terramorpha
  2021-04-20 18:29 ` Maxime Devos
@ 2021-04-20 20:43 ` terramorpha
  2021-04-27 15:52 ` terramorpha
  2021-07-09 21:07 ` [bug#47913] is there anybody out there? terramorpha
  3 siblings, 0 replies; 8+ messages in thread
From: terramorpha @ 2021-04-20 20:43 UTC (permalink / raw)
  To: 47913

Here you go.


---
  gnu/packages/networking.scm | 26 ++++++++++++++++++++++++++
  1 file changed, 26 insertions(+)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index f7557fc331..e973a1b26a 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -4075,3 +4075,29 @@ IPv6 Internet connectivity - it also works over 
IPv4.")
       ;; version. This exception does not (and cannot) modify any 
license terms
       ;; which apply to the Application, with which you must still 
comply
       license:lgpl3)))
+
+(define-public netdiscover
+  (package
+   (name "netdiscover")
+   (version "0.7")
+   (source (origin
+            (method git-fetch)
+            (uri (git-reference
+                  (url 
"https://github.com/netdiscover-scanner/netdiscover")
+                  (commit version)))
+            (sha256 (base32 
"0g8w8rlg16dsibxi4dnyn7v7r8wwi5ypd51c4w59j0ps2id0w8yj"))
+            (file-name (string-append "netdiscover-" version))))
+   (arguments `(#:tests? #f)) ;; no tests
+   (build-system gnu-build-system)
+   (inputs `(("libpcap" ,libpcap)
+             ("libnet" ,libnet)))
+   (native-inputs `(("automake" ,automake)
+                    ("autoconf" ,autoconf)))
+   (synopsis "Network address discovery tool")
+   (description
+    "Netdiscover is a network address discovering tool, developed 
mainly for
+those wireless networks without dhcp server, it also works on 
hub/switched
+networks.  Its based on arp packets, it will send arp requests and 
sniff for
+replies.")
+   (home-page "https://github.com/netdiscover-scanner/netdiscover")
+   (license license:gpl3+)))
-- 
2.31.1




^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [bug#47913] [PATCH v2] add netdiscover
  2021-04-20 17:47 [bug#47913] [PATCH] add netdiscover terramorpha
  2021-04-20 18:29 ` Maxime Devos
  2021-04-20 20:43 ` [bug#47913] [PATCH v2] " terramorpha
@ 2021-04-27 15:52 ` terramorpha
  2021-04-27 18:19   ` Maxime Devos
  2021-07-09 21:07 ` [bug#47913] is there anybody out there? terramorpha
  3 siblings, 1 reply; 8+ messages in thread
From: terramorpha @ 2021-04-27 15:52 UTC (permalink / raw)
  To: 47913; +Cc: maximedevos

Are there still issues preventing the patch from being merged?




^ permalink raw reply	[flat|nested] 8+ messages in thread

* [bug#47913] [PATCH v2] add netdiscover
  2021-04-27 15:52 ` terramorpha
@ 2021-04-27 18:19   ` Maxime Devos
  0 siblings, 0 replies; 8+ messages in thread
From: Maxime Devos @ 2021-04-27 18:19 UTC (permalink / raw)
  To: terramorpha, 47913

[-- Attachment #1: Type: text/plain, Size: 324 bytes --]

terramorpha@cock.li schreef op di 27-04-2021 om 11:52 [-0400]:
> Are there still issues preventing the patch from being merged?

None that I know of.  You'll have to wait for a committer (which I am not)
to confirm and merge the patch.

Note: I reviewed the patch, but didn't test the package.

Greetings,
Maxime.

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 260 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [bug#47913] is there anybody out there?
  2021-04-20 17:47 [bug#47913] [PATCH] add netdiscover terramorpha
                   ` (2 preceding siblings ...)
  2021-04-27 15:52 ` terramorpha
@ 2021-07-09 21:07 ` terramorpha
  2021-07-10  9:51   ` bug#47913: " Arun Isaac
  3 siblings, 1 reply; 8+ messages in thread
From: terramorpha @ 2021-07-09 21:07 UTC (permalink / raw)
  To: 47913

Could someone with commit access take a look at my patch ?




^ permalink raw reply	[flat|nested] 8+ messages in thread

* bug#47913: is there anybody out there?
  2021-07-09 21:07 ` [bug#47913] is there anybody out there? terramorpha
@ 2021-07-10  9:51   ` Arun Isaac
  0 siblings, 0 replies; 8+ messages in thread
From: Arun Isaac @ 2021-07-10  9:51 UTC (permalink / raw)
  To: terramorpha, 47913-done

[-- Attachment #1: Type: text/plain, Size: 293 bytes --]


Hi Justin,

Thank you for contributing to Guix! I applied your patch with a few
corrections:

- changed commit message to conform to Guix conventions
- added a copyright header for you
- made some stylistic changes to the package description
- modified the description slightly

Thanks,
Arun

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 524 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2021-07-10  9:53 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-20 17:47 [bug#47913] [PATCH] add netdiscover terramorpha
2021-04-20 18:29 ` Maxime Devos
2021-04-20 20:26   ` Justin Veilleux
2021-04-20 20:43 ` [bug#47913] [PATCH v2] " terramorpha
2021-04-27 15:52 ` terramorpha
2021-04-27 18:19   ` Maxime Devos
2021-07-09 21:07 ` [bug#47913] is there anybody out there? terramorpha
2021-07-10  9:51   ` bug#47913: " Arun Isaac

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).