From debbugs-submit-bounces@debbugs.gnu.org Tue Apr 20 13:54:05 2021 Received: (at submit) by debbugs.gnu.org; 20 Apr 2021 17:54:05 +0000 Received: from localhost ([127.0.0.1]:55913 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lYuZZ-00045M-5B for submit@debbugs.gnu.org; Tue, 20 Apr 2021 13:54:05 -0400 Received: from lists.gnu.org ([209.51.188.17]:53772) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lYuTg-0003wB-3y for submit@debbugs.gnu.org; Tue, 20 Apr 2021 13:48:01 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:55046) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lYuTf-0002TR-QL for guix-patches@gnu.org; Tue, 20 Apr 2021 13:47:59 -0400 Received: from [37.120.193.123] (port=48650 helo=mail.cock.li) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lYuTd-0000hq-9P for guix-patches@gnu.org; Tue, 20 Apr 2021 13:47:59 -0400 MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=cock.li; s=mail; t=1618940872; bh=Wk6txl2GoTb2scirSbXQkiRcQikqBOV6gKzLG2sS8J8=; h=Date:From:To:Subject:From; b=QsaHxyW1qyATvF9YFx10O0YJEg3VLp5I8osQUN9ysCVfBlOdozD4sDvJGCq3i+1+e VH4mWNWmgeIOPWSwTtLtDdFYn6i0BPFVZsCsBgxqU3DVPL8E35YNQjaB4RdW5ok/X1 GWXamKEHowHt98hczP1kvPHr+A/QxKbiSp1s1MhNg4PwUAVEOoA1SUhcZZpGEPWLJR E7DbwsNfqKXRJwqESV3frS37MkPluhdfHKSBPpD7/EX9oTrQX5uH6pvHZi9X3qLWaC dxR9Wey9jReaokMjnRn/kuV3OjZkWO1rFyAL5+TNlmavu1dz2ewrvtkS9goPwh1Xbd GVNM304+nwvyQ== Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Tue, 20 Apr 2021 13:47:52 -0400 From: terramorpha@cock.li To: guix-patches@gnu.org Subject: [PATCH] add netdiscover Message-ID: <4ecb12dc6ad26ca9874b46784fad0119@cock.li> X-Sender: terramorpha@cock.li User-Agent: Roundcube Webmail/1.3.15 X-Host-Lookup-Failed: Reverse DNS lookup failed for 37.120.193.123 (failed) Received-SPF: pass client-ip=37.120.193.123; envelope-from=terramorpha@cock.li; helo=mail.cock.li X-Spam_score_int: -12 X-Spam_score: -1.3 X-Spam_bar: - X-Spam_report: (-1.3 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RDNS_NONE=0.793, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Tue, 20 Apr 2021 13:54:04 -0400 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: -2.4 (--) --- 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 From debbugs-submit-bounces@debbugs.gnu.org Tue Apr 20 14:29:39 2021 Received: (at 47913) by debbugs.gnu.org; 20 Apr 2021 18:29:39 +0000 Received: from localhost ([127.0.0.1]:55965 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lYv7y-00050D-Pt for submit@debbugs.gnu.org; Tue, 20 Apr 2021 14:29:39 -0400 Received: from xavier.telenet-ops.be ([195.130.132.52]:42560) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lYv7w-000504-Bb for 47913@debbugs.gnu.org; Tue, 20 Apr 2021 14:29:37 -0400 Received: from ptr-bvsjgyjmffd7q9timvx.18120a2.ip6.access.telenet.be ([IPv6:2a02:1811:8c09:9d00:aaf1:9810:a0b8:a55d]) by xavier.telenet-ops.be with bizsmtp id v6VX240090mfAB4016VXlo; Tue, 20 Apr 2021 20:29:34 +0200 Message-ID: <7fea94996f15157e9e37fcae6c4f525c919a3019.camel@telenet.be> Subject: Re: [bug#47913] [PATCH] add netdiscover From: Maxime Devos To: terramorpha@cock.li, 47913@debbugs.gnu.org Date: Tue, 20 Apr 2021 20:29:24 +0200 In-Reply-To: <4ecb12dc6ad26ca9874b46784fad0119@cock.li> References: <4ecb12dc6ad26ca9874b46784fad0119@cock.li> Content-Type: multipart/signed; micalg="pgp-sha512"; protocol="application/pgp-signature"; boundary="=-e28tsdPrpm6wjIAUt2+o" User-Agent: Evolution 3.34.2 MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=telenet.be; s=r21; t=1618943374; bh=xr8YeIg7S3xzF0wjBUJbvNeD3ZCuQvxTd73WDhmCpDo=; h=Subject:From:To:Date:In-Reply-To:References; b=vTA/Z6VCBnxfpHoLyxWKFm5P4+pGeoj+lc/tdsw+AfrOEINcQ1XqfoJX+HgaNIG9g aUq12gR8GiyYjulhJnK/SMmLBhlXa+v8UNmxmAwHm8QJHynLfXwwDzD1nX3iYBfFae Bi7SvAn687DjIvwb1P4mgacWxdTi+kmPZmVMlBbNN3FRFqihdTEutkCssayUSFzB+t DiBEzN2NMX4w0KnlSr5oq1kIZTKEavfcMnBokZawHps89kZgfKryg9y2UCVywDF7hr APXaJ6bwpRw5rHvVfSFFPXJdXsWb3E0ZbY4Pz8dOniLZO4ArS5zv+HNh9OGf924gZA rK8JgXIFtmWIg== X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 47913 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 (-) --=-e28tsdPrpm6wjIAUt2+o Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable 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+? =20 Greetings, Maxime. --=-e28tsdPrpm6wjIAUt2+o Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- iI0EABYKADUWIQTB8z7iDFKP233XAR9J4+4iGRcl7gUCYH8dhRccbWF4aW1lZGV2 b3NAdGVsZW5ldC5iZQAKCRBJ4+4iGRcl7se2AP97taiWWY+St1CrYF1AGvZuFcQN ZfavybrOlTPf5hYQggEAj3XtETG7o/TrZUhfs5WAgieDgEhAb2dqm1U27VPA+QQ= =sm5s -----END PGP SIGNATURE----- --=-e28tsdPrpm6wjIAUt2+o-- From debbugs-submit-bounces@debbugs.gnu.org Tue Apr 20 16:56:31 2021 Received: (at 47913) by debbugs.gnu.org; 20 Apr 2021 20:56:31 +0000 Received: from localhost ([127.0.0.1]:56176 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lYxQ6-0002Jw-Td for submit@debbugs.gnu.org; Tue, 20 Apr 2021 16:56:31 -0400 Received: from [37.120.193.123] (port=39990 helo=mail.cock.li) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lYwwx-0007tq-4n for 47913@debbugs.gnu.org; Tue, 20 Apr 2021 16:26:24 -0400 Date: Tue, 20 Apr 2021 16:26:13 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=cock.li; s=mail; t=1618950376; bh=yw8ADEptT0Dh6iujZuE7+1yFg9b2IcyRMHfVXeAQJaY=; h=Date:From:To:Subject:In-Reply-To:References:From; b=E1Rcr0zDmMuDBFW7buJ0TZ5Pj7cE5VSZYBADlPQ/7t6WhplwMOqyhe5TyIpPVLiJk pCMGjX0eXX9zQ12n1/I3kzFXj4ZYHtw/hLs/T8fF8/bPVEF57p0684VvV35U+Hq1yA n0tlopv+/wcFprB1FWWVQmNFl9hDfKKSEOSUt6a95kaJhVpLUcksKwCyvOuLcPRnml Wh6SkZY73vfkhFeQGliNKQyFeWeG/55R+ifGnsOPQ2eZkaE11d5T1J6uTS5QPTsOCe q8iDJYM/gd530ZQdOxNvGGbQtA8hOFfnTxA2tgaemafwHj1XHvb6mVU9DEZZxl4nvj qXmvE+6avjdGA== From: Justin Veilleux To: Maxime Devos , 47913@debbugs.gnu.org Subject: Re: [bug#47913] [PATCH] add netdiscover User-Agent: K-9 Mail for Android In-Reply-To: <7fea94996f15157e9e37fcae6c4f525c919a3019.camel@telenet.be> References: <4ecb12dc6ad26ca9874b46784fad0119@cock.li> <7fea94996f15157e9e37fcae6c4f525c919a3019.camel@telenet.be> Message-ID: MIME-Version: 1.0 Content-Type: multipart/alternative; boundary=----DSYMVVFV39OQQ7EOJJHWNM0TVS7MFD Content-Transfer-Encoding: 7bit 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: That makes sense. Should I send another patch with this field fixed ? On April 20, 2021 2:29:24 p.m. EDT, Maxime Devos wrote: >terramorpha@cock.li schreef op di 20-04-2021 om 13:47 [-0400]: >> [...] >> + (home-page "https://github.com/netdiscove [...] Content analysis details: (1.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record -0.0 SPF_HELO_PASS SPF: HELO matches SPF record 0.0 HTML_MESSAGE BODY: HTML included in message 1.3 RDNS_NONE Delivered to internal network by a host with no rDNS X-Debbugs-Envelope-To: 47913 X-Mailman-Approved-At: Tue, 20 Apr 2021 16:56:30 -0400 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 (/) ------DSYMVVFV39OQQ7EOJJHWNM0TVS7MFD Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable That makes sense=2E Should I send another patch with this field fixed ? On April 20, 2021 2:29:24 p=2Em=2E EDT, Maxime Devos wrote: >terramorpha@cock=2Eli schreef op di 20-04-2021 om 13:47 [-0400]: >> [=2E=2E=2E] >> + (home-page "https://github=2Ecom/netdiscover-scanner/netdiscover") >> + (license license:gpl3))) >Fr- >om netdiscover/src/data_ai=2Eh: > > * 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=2E > >So this should perhaps be license:gpl3+? >=20 >Greetings, >Maxime=2E --=20 Sent from my Android device with K-9 Mail=2E Please excuse my brevity=2E ------DSYMVVFV39OQQ7EOJJHWNM0TVS7MFD Content-Type: text/html; charset=utf-8 Content-Transfer-Encoding: quoted-printable That makes sense=2E Should I send another patch wi= th this field fixed ?

On April 20, 2021 2= :29:24 p=2Em=2E EDT, Maxime Devos <maximedevos@telenet=2Ebe> wrote:
terramorpha@cock=2Eli schreef op di 20-04-2021 om 13=
:47 [-0400]:
[=2E=2E=2E= ]
+ (home-page "https://github=2Ecom/netdiscover-scanner/netdiscover")=
+ (license license:gpl3)))
Fr-
om netdiscover/src/= data_ai=2Eh:

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

So thi= s should perhaps be license:gpl3+?

Greetings,
Maxime=2E

--
Sent from my Android device with K-9 Mail=2E= Please excuse my brevity=2E ------DSYMVVFV39OQQ7EOJJHWNM0TVS7MFD-- From debbugs-submit-bounces@debbugs.gnu.org Tue Apr 20 16:56:31 2021 Received: (at 47913) by debbugs.gnu.org; 20 Apr 2021 20:56:31 +0000 Received: from localhost ([127.0.0.1]:56178 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lYxQ7-0002Jz-GU for submit@debbugs.gnu.org; Tue, 20 Apr 2021 16:56:31 -0400 Received: from [37.120.193.123] (port=49318 helo=mail.cock.li) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lYxDr-000209-OO for 47913@debbugs.gnu.org; Tue, 20 Apr 2021 16:43:52 -0400 MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=cock.li; s=mail; t=1618951425; bh=JP2MQGIY9TsjGNS5WMVwDk20kuY4VajlIL+ild33V6U=; h=Date:From:To:Subject:From; b=WRBKxUjB3cIm6r2mk0MH/J1wATA7kQQ9Z2slHHJ9PEK9MCpYuLAc9k3ivZnHJpUf0 STYsLaqRhZnW2Lp1GtZoQ0L8HwuhtU0M5B55aogTktSczBEdhnsVOBRz8XA6A2+D9e yJ+ry+EyDclM4J/Vl4/etDlXwqMYbllsbJzAjfDScPhvatLAbWCsl3V87FQq3SQN4K /acHnzJqtG6tHR5m8pVtZAq8/rSHxyp1hgA62+gIfavLY39stPPoZOGbnUGtjUWI22 FXOeqlarT4JO6DG8SdJIGLQ/qY6zRQ8Sb0TFWDqBV73HjrH74v3smykbq9kUkfOWAL P7sj40Fa+FnEg== Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Tue, 20 Apr 2021 16:43:45 -0400 From: terramorpha@cock.li To: 47913@debbugs.gnu.org Subject: [PATCH v2] add netdiscover Message-ID: X-Sender: terramorpha@cock.li User-Agent: Roundcube Webmail/1.3.15 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: 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 @@ IP [...] Content analysis details: (1.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record -0.0 SPF_HELO_PASS SPF: HELO matches SPF record 1.3 RDNS_NONE Delivered to internal network by a host with no rDNS X-Debbugs-Envelope-To: 47913 X-Mailman-Approved-At: Tue, 20 Apr 2021 16:56:30 -0400 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 (/) 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 From debbugs-submit-bounces@debbugs.gnu.org Tue Apr 27 11:52:22 2021 Received: (at 47913) by debbugs.gnu.org; 27 Apr 2021 15:52:22 +0000 Received: from localhost ([127.0.0.1]:50643 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lbQ0b-0006Pv-Os for submit@debbugs.gnu.org; Tue, 27 Apr 2021 11:52:21 -0400 Received: from [37.120.193.123] (port=55696 helo=mail.cock.li) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lbQ0Z-0006Pa-KY for 47913@debbugs.gnu.org; Tue, 27 Apr 2021 11:52:20 -0400 MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=cock.li; s=mail; t=1619538732; bh=UQTPh7SsFZUOZ9NHq6uH1TOLsDAIKl3skRUJHgRQ5yI=; h=Date:From:To:Cc:Subject:From; b=CG9Nu9ypHeZIVt9dN+YAvSfqZeCkHkJKLXfF0sIc/cQyVORZcxRyn1IRgHB6/ESth 6plqhtV4E1yI8pv913QeyyJXG2hEdE3DMrNlZq/k2q7IClDbyeF+UnNw7T38ry68SX 9cCL+/q+9ZpRG6FRgAViDxyV+U8BeAVEzytL9uXuwMCAHs7A3kJ7FB17772sOrqo48 cwnrMaRP/n8OqQGQ+6PXk+llHrB9AV8mmscBHuAUgka7OhRehxCUvwXCizyg82UNXs 38yVNg/+0wxmv3mK6oVVlTYdFpI6NpHg22W2d0e8wtmhLoaco217W1D0RXfDSHA3yy HC16SezEtiXRA== Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Tue, 27 Apr 2021 11:52:12 -0400 From: terramorpha@cock.li To: 47913@debbugs.gnu.org Subject: [PATCH v2] add netdiscover Message-ID: <97dec77cdb4a73a06c5176e4a7c108f0@cock.li> X-Sender: terramorpha@cock.li User-Agent: Roundcube Webmail/1.3.15 X-Spam-Score: 3.8 (+++) 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: Are there still issues preventing the patch from being merged? Content analysis details: (3.8 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 1.2 RCVD_IN_BL_SPAMCOP_NET RBL: Received via a relay in bl.spamcop.net [Blocked - see ] 1.3 RCVD_IN_VALIDITY_RPBL RBL: Relay in Validity RPBL, https://senderscore.org/blocklistlookup/ [37.120.193.123 listed in bl.score.senderscore.com] -0.0 RCVD_IN_MSPIKE_H2 RBL: Average reputation (+2) [37.120.193.123 listed in wl.mailspike.net] -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -0.0 SPF_PASS SPF: sender matches SPF record 1.3 RDNS_NONE Delivered to internal network by a host with no rDNS X-Debbugs-Envelope-To: 47913 Cc: maximedevos@telenet.be 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: 2.8 (++) 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: Are there still issues preventing the patch from being merged? Content analysis details: (2.8 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 RCVD_IN_MSPIKE_H2 RBL: Average reputation (+2) [37.120.193.123 listed in wl.mailspike.net] 1.3 RCVD_IN_VALIDITY_RPBL RBL: Relay in Validity RPBL, https://senderscore.org/blocklistlookup/ [37.120.193.123 listed in bl.score.senderscore.com] 1.2 RCVD_IN_BL_SPAMCOP_NET RBL: Received via a relay in bl.spamcop.net [Blocked - see ] -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -0.0 SPF_PASS SPF: sender matches SPF record -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager 1.3 RDNS_NONE Delivered to internal network by a host with no rDNS Are there still issues preventing the patch from being merged? From debbugs-submit-bounces@debbugs.gnu.org Tue Apr 27 14:19:45 2021 Received: (at 47913) by debbugs.gnu.org; 27 Apr 2021 18:19:45 +0000 Received: from localhost ([127.0.0.1]:50876 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lbSJE-00040A-Qu for submit@debbugs.gnu.org; Tue, 27 Apr 2021 14:19:44 -0400 Received: from michel.telenet-ops.be ([195.130.137.88]:47522) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lbSJC-000400-5I for 47913@debbugs.gnu.org; Tue, 27 Apr 2021 14:19:43 -0400 Received: from ptr-bvsjgyjmffd7q9timvx.18120a2.ip6.access.telenet.be ([IPv6:2a02:1811:8c09:9d00:aaf1:9810:a0b8:a55d]) by michel.telenet-ops.be with bizsmtp id xuKe2400H0mfAB406uKeQV; Tue, 27 Apr 2021 20:19:40 +0200 Message-ID: <0de231e2cb9f9a90a94a80da569397e09d50c00d.camel@telenet.be> Subject: Re: [PATCH v2] add netdiscover From: Maxime Devos To: terramorpha@cock.li, 47913@debbugs.gnu.org Date: Tue, 27 Apr 2021 20:19:34 +0200 In-Reply-To: <97dec77cdb4a73a06c5176e4a7c108f0@cock.li> References: <97dec77cdb4a73a06c5176e4a7c108f0@cock.li> Content-Type: multipart/signed; micalg="pgp-sha512"; protocol="application/pgp-signature"; boundary="=-7Z1lg98AeMh1aExSqQoW" User-Agent: Evolution 3.34.2 MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=telenet.be; s=r21; t=1619547580; bh=Wv0BkFBC2M0fcAfhbDkFbxfFHkAwiZGyu3o57vBOpLQ=; h=Subject:From:To:Date:In-Reply-To:References; b=TqLrqpJCfqvuU7GfroOrpJp6mKWb4pRBON0egDqHw35VgSxt340QfyoQXfWtiGv92 iydpTHY1goRbxJltUGFBs5ByyusAMENk2DvsQ0OibbopToZgSx3Tlg2NBJsnaGKYJj eg0LPxLXy9KtyNz2yWWavdOiRjrrbIWOKKJRW/H8TYaP8zh5EtLLGnqlKsMSh5c1tL eFPR7ESLp48y+wrtUwnDRiCtSRwpqoW03Wl2/PoWkd0d2/7xoMacXvnKxEzd3DFVvU +Mgo7OsBjGsMvY8n2za3AYkgjrKXl9s8zsr0JoSfnGaZlPecOR48+y3SB/7RKSW/sZ g77/a66SNTXGg== X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 47913 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 (-) --=-7Z1lg98AeMh1aExSqQoW Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable 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. --=-7Z1lg98AeMh1aExSqQoW Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- iI0EABYKADUWIQTB8z7iDFKP233XAR9J4+4iGRcl7gUCYIhVthccbWF4aW1lZGV2 b3NAdGVsZW5ldC5iZQAKCRBJ4+4iGRcl7mPwAQCeN/JrIy56moFYzQhE9AgEKh2p UGDjrWUKsaqhcPBf8wEA9/7s1XhvGaAELPorXcCeE/H7s9AMKm0FWx8XjGIvbAw= =x2tY -----END PGP SIGNATURE----- --=-7Z1lg98AeMh1aExSqQoW-- From debbugs-submit-bounces@debbugs.gnu.org Fri Jul 09 17:07:50 2021 Received: (at 47913) by debbugs.gnu.org; 9 Jul 2021 21:07:50 +0000 Received: from localhost ([127.0.0.1]:59871 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m1xiw-00039H-5G for submit@debbugs.gnu.org; Fri, 09 Jul 2021 17:07:50 -0400 Received: from mail.cock.li ([37.120.193.124]:39750) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m1xir-00038y-8d for 47913@debbugs.gnu.org; Fri, 09 Jul 2021 17:07:48 -0400 MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=cock.li; s=mail; t=1625864858; bh=5+E09hEEe979Fe4QRNLSRexJDoCn5Ev4s8uhqT7RCGI=; h=Date:From:To:Subject:From; b=OoKFgfURwXD0vkTP5eJZAJinTo+Fjy/PbIvypntiquL7JPjXroCwZYgnivnpajGJG HqnwNBgJ3Me4iRSzngLAj4avbFzasbnDy7Knun1xvXAxrCUw+eF87gV67zYGh1xyjn zjl9HO30ngPbtPc0iaAq0OMnpSrRlFXj10JKo4pCqRcs1aZpaR34txZ1vj+lcuNgcQ NxK2/0XvM+GGF++q+OaR8SF6on62Z2kzsDf5HH9IrsphwXwwyr0iGChurZEbcuI5Rf tXyFTDKLRp4T/1Uwq6EPZg+UT+/LnxRoy39kivi4keGY0IlZFHyCV+ZcUJ1vmchxxm FIA0jTswXbBew== Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Fri, 09 Jul 2021 17:07:38 -0400 From: terramorpha@cock.li To: 47913@debbugs.gnu.org Subject: is there anybody out there? Message-ID: X-Sender: terramorpha@cock.li User-Agent: Roundcube Webmail/1.3.15 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: Could someone with commit access take a look at my patch ? Content analysis details: (1.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 1.3 RCVD_IN_VALIDITY_RPBL RBL: Relay in Validity RPBL, https://senderscore.org/blocklistlookup/ [37.120.193.124 listed in bl.score.senderscore.com] -0.0 SPF_PASS SPF: sender matches SPF record -0.0 SPF_HELO_PASS SPF: HELO matches SPF record X-Debbugs-Envelope-To: 47913 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 (/) Could someone with commit access take a look at my patch ? From debbugs-submit-bounces@debbugs.gnu.org Sat Jul 10 05:52:23 2021 Received: (at 47913-done) by debbugs.gnu.org; 10 Jul 2021 09:52:23 +0000 Received: from localhost ([127.0.0.1]:60174 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m29eo-000424-Rm for submit@debbugs.gnu.org; Sat, 10 Jul 2021 05:52:23 -0400 Received: from mugam.systemreboot.net ([139.59.75.54]:42066) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m29el-00041t-4m for 47913-done@debbugs.gnu.org; Sat, 10 Jul 2021 05:52:21 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=systemreboot.net; s=default; h=Content-Type:MIME-Version:Message-ID:Date: References:In-Reply-To:Subject:To:From:Sender:Reply-To:Cc: Content-Transfer-Encoding:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=8CrXiSbu6hxcMAo+/ReeDzzn0XQCO2hxAVq9mNrmAK0=; b=WarBs2bUs9dXbjs8L808bkFF0g YVeCJs3PMb9e9brxPTgkwScz4NCC5sTashbv8NCwEscoQPitWzjoMUY//g2ME0h4RUqiIrxXyekvf fxfLLFSlnix7LdAU5t7DyndV/PtXlxiFBZJaVSqfYp5IE1+GpoV6qgJuW86/BTjd/Ney0DhQYrDxC j4KlYveyVB5CwlpXWyJ9YqOhFgxegDRmIbQ0QOmmMRlGAO17yGEq9VIjatF8AmO14f45wpOK99gc7 CkkCl5ojyA4eHVtNG43QRkzhNgco591GkDKtMJY0z7cUqmNcAGWc4YbJq/BOC3dYuoJYBVvp4N/3p ZevxOPqQ==; Received: from [192.168.2.1] (helo=steel) by systemreboot.net with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1m29ee-000DRA-Ry; Sat, 10 Jul 2021 15:22:12 +0530 From: Arun Isaac To: terramorpha@cock.li, 47913-done@debbugs.gnu.org Subject: Re: [bug#47913] is there anybody out there? In-Reply-To: References: <4ecb12dc6ad26ca9874b46784fad0119@cock.li> Date: Sat, 10 Jul 2021 15:21:48 +0530 Message-ID: <871r86339n.fsf@systemreboot.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 47913-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: -1.0 (-) --=-=-= Content-Type: text/plain 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 --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQFPBAEBCAA5FiEEf3MDQ/Lwnzx3v3nTLiXui2GAK7MFAmDpbbQbHGFydW5pc2Fh Y0BzeXN0ZW1yZWJvb3QubmV0AAoJEC4l7othgCuzTbMIAIZq+WxCprG4Zm5DqsIL 9Gprwcb15bxxl8fysdeIWJ3WhhwpdjSqQph/Y3tYLYDTSFqexQaiXVwD4Hcz5vRu sWlqet5TeSHlJKZ91b7PcGkacUc+kNF8wVezs9VyPP9p683ymZqfvaUse0In63Di e3ewwSFUT9amjZAqXMXeV5kaCZiP+tMMtbSLevPk38PQPE3N7RBuz3ci1YIv7pvh DGhOcR6/9Zl+VEsXs5f8PlsISLhJ8Y4rWAgEXaX/iei+8ZgOlOf5RrOpIJ8lMaQ9 vq8/AQse19CgEbA9kvo89eSqw4zclICxzRy1oelf7IJdlNe1UV6I008HH9F4AlF4 7xU= =5KCq -----END PGP SIGNATURE----- --=-=-=-- From unknown Sat Aug 09 13:19:18 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 07 Aug 2021 11:24:04 +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