From unknown Sat Jun 21 10:43:14 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54563] [PATCH] gnu: Add wsdd. Resent-From: Simon Streit Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 25 Mar 2022 11:48:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 54563 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 54563@debbugs.gnu.org Cc: Simon Streit X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.164820885928711 (code B ref -1); Fri, 25 Mar 2022 11:48:01 +0000 Received: (at submit) by debbugs.gnu.org; 25 Mar 2022 11:47:39 +0000 Received: from localhost ([127.0.0.1]:50363 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nXiPq-0007St-KD for submit@debbugs.gnu.org; Fri, 25 Mar 2022 07:47:38 -0400 Received: from lists.gnu.org ([209.51.188.17]:39036) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nXiPo-0007SV-Pr for submit@debbugs.gnu.org; Fri, 25 Mar 2022 07:47:37 -0400 Received: from eggs.gnu.org ([209.51.188.92]:44648) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nXiPo-0004AZ-6y for guix-patches@gnu.org; Fri, 25 Mar 2022 07:47:36 -0400 Received: from smtprelay02.ispgateway.de ([80.67.18.44]:33430) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nXiPm-0001mq-5h for guix-patches@gnu.org; Fri, 25 Mar 2022 07:47:35 -0400 Received: from [93.195.170.97] (helo=motorball.wh6.home.arpa) by smtprelay02.ispgateway.de with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.94.2) (envelope-from ) id 1nXiPV-0007wR-SB; Fri, 25 Mar 2022 12:47:17 +0100 From: Simon Streit Date: Fri, 25 Mar 2022 12:46:45 +0100 Message-Id: <61b9d1603851cc9d4304d59b8a43899dc804ba67.1648208525.git.simon@netpanic.org> X-Mailer: git-send-email 2.34.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Df-Sender: c2ltb25AbmV0cGFuaWMub3Jn Received-SPF: none client-ip=80.67.18.44; envelope-from=simon@netpanic.org; helo=smtprelay02.ispgateway.de X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_PASS=-0.001, SPF_NONE=0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) 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 (---) * gnu/packages/samba.scm (wsdd): New variable. --- gnu/packages/samba.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/samba.scm b/gnu/packages/samba.scm index b775ad905c..21a5fe8617 100644 --- a/gnu/packages/samba.scm +++ b/gnu/packages/samba.scm @@ -500,3 +500,29 @@ (define-public ppp ;; chat is public domain. (license (list bsd-3 bsd-4 gpl2+ public-domain)))) +(define-public wsdd + (package + (name "wsdd") + (version "0.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference (url "https://github.com/christgau/wsdd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04an2w6hamnai668ag4vq8x0i09fsg2jrayb4a7ar0x6bn837k7m")))) + (build-system copy-build-system) + (inputs + `(("python" ,python))) + (arguments + '(#:install-plan + '(("src/wsdd.py" "bin/wsdd") + ("man/wsdd.1" "share/man/man1/")))) + (home-page "https://github.com/christgau/wsdd") + (synopsis "A Web Service Discovery host daemon") + (description "This daemon allows (Samba) hosts to be found by Web +Service Dicovery Clients. It also implements the client side of the +discovery protocol which allows to search for devices implementing +WSD.") + (license expat))) -- 2.34.0 From unknown Sat Jun 21 10:43:14 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54563] [PATCH] gnu: Add wsdd. Resent-From: Maxime Devos Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sat, 26 Mar 2022 10:18:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 54563 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Simon Streit , 54563@debbugs.gnu.org Received: via spool by 54563-submit@debbugs.gnu.org id=B54563.164828987726033 (code B ref 54563); Sat, 26 Mar 2022 10:18:02 +0000 Received: (at 54563) by debbugs.gnu.org; 26 Mar 2022 10:17:57 +0000 Received: from localhost ([127.0.0.1]:53110 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nY3Ua-0006lp-Mg for submit@debbugs.gnu.org; Sat, 26 Mar 2022 06:17:56 -0400 Received: from albert.telenet-ops.be ([195.130.137.90]:38042) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nY3UZ-0006lg-7V for 54563@debbugs.gnu.org; Sat, 26 Mar 2022 06:17:55 -0400 Received: from [172.20.10.9] ([213.119.160.242]) by albert.telenet-ops.be with bizsmtp id AyHt270035E5NyV06yHtvb; Sat, 26 Mar 2022 11:17:54 +0100 Message-ID: <73ef084b46e0e8e7394b75f81bfee7706f3f6200.camel@telenet.be> From: Maxime Devos Date: Sat, 26 Mar 2022 11:17:52 +0100 In-Reply-To: <61b9d1603851cc9d4304d59b8a43899dc804ba67.1648208525.git.simon@netpanic.org> References: <61b9d1603851cc9d4304d59b8a43899dc804ba67.1648208525.git.simon@netpanic.org> Content-Type: multipart/signed; micalg="pgp-sha512"; protocol="application/pgp-signature"; boundary="=-FY8MwG/sgl5hTyV7Xw93" User-Agent: Evolution 3.38.3-1 MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=telenet.be; s=r22; t=1648289874; bh=ruGOow5t+VSELGgUPgClMYi08c/bCoeLrMwKehkKGF0=; h=Subject:From:To:Date:In-Reply-To:References; b=b/NxL2pwYdon/JZZDGa3yyDR20bSg6iIkiATfGtjBeqCw+53udQi3xTBiaKXpvN2s UBNg5SX0Bod9s/xKbll/P310HOJ3vfYjYOx7IIkRYQljOknkBCnOdJPhP9kNUPpTPG mGPdiqhojy8c02RnKt1C4LnCLhgm8Ig6nLaAJvZlq/jd9US8FdMPby0cLvHzxkJhj0 tuObe2aTlYGR9UxxiN1OeF6N2jd9cBVsqwdgd4NmqGdZ3472T6QjiXJxiZfqxZM0l6 7tsaNl82zlPS5DWdiWQmCjO+qmFeqO6c0N6CY4wV6VgudHfPl+rJTYbJJt9XnH1M5v i1FPgfvbrssMA== X-Spam-Score: -0.7 (/) 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 (-) --=-FY8MwG/sgl5hTyV7Xw93 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Simon Streit schreef op vr 25-03-2022 om 12:46 [+0100]: > +=C2=A0=C2=A0=C2=A0 (arguments > +=C2=A0=C2=A0=C2=A0=C2=A0 '(#:install-plan > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 '(("src/wsdd.py" "bin/wsdd") > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 ("man/wsdd.1" "share/ma= n/man1/")))) There are a few tests in 'tests'. Can they be run? --=-FY8MwG/sgl5hTyV7Xw93 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+4iGRcl7gUCYj7oUBccbWF4aW1lZGV2 b3NAdGVsZW5ldC5iZQAKCRBJ4+4iGRcl7uOaAPwNCGqeycA7b4gFLpQup9fHwoRg POV1Yr+bUAKED43pFQEAwSbcQ8Oo1AREXnQ6q4xOrfzZZfzp3cUkU+/x2ul5XQ4= =KVIp -----END PGP SIGNATURE----- --=-FY8MwG/sgl5hTyV7Xw93-- From unknown Sat Jun 21 10:43:14 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54563] [PATCH] gnu: Add wsdd. Resent-From: Maxime Devos Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sat, 26 Mar 2022 10:20:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 54563 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Simon Streit , 54563@debbugs.gnu.org Received: via spool by 54563-submit@debbugs.gnu.org id=B54563.164828999526213 (code B ref 54563); Sat, 26 Mar 2022 10:20:01 +0000 Received: (at 54563) by debbugs.gnu.org; 26 Mar 2022 10:19:55 +0000 Received: from localhost ([127.0.0.1]:53116 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nY3WV-0006oj-2K for submit@debbugs.gnu.org; Sat, 26 Mar 2022 06:19:55 -0400 Received: from michel.telenet-ops.be ([195.130.137.88]:45548) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nY3WT-0006ob-OZ for 54563@debbugs.gnu.org; Sat, 26 Mar 2022 06:19:54 -0400 Received: from [172.20.10.9] ([213.119.160.242]) by michel.telenet-ops.be with bizsmtp id AyKr2700T5E5NyV06yKsbA; Sat, 26 Mar 2022 11:19:52 +0100 Message-ID: <42a8c8cc6e8ce7872b0ff2814727a37de770d6d6.camel@telenet.be> From: Maxime Devos Date: Sat, 26 Mar 2022 11:19:51 +0100 In-Reply-To: <61b9d1603851cc9d4304d59b8a43899dc804ba67.1648208525.git.simon@netpanic.org> References: <61b9d1603851cc9d4304d59b8a43899dc804ba67.1648208525.git.simon@netpanic.org> Content-Type: multipart/signed; micalg="pgp-sha512"; protocol="application/pgp-signature"; boundary="=-L0vJ/0pBopM0L6qK9HuJ" User-Agent: Evolution 3.38.3-1 MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=telenet.be; s=r22; t=1648289992; bh=35IL2ixmAq93dqkpCPL0aBy+s8mMz6HH0xRUIYdcN9c=; h=Subject:From:To:Date:In-Reply-To:References; b=TyasKak3ZX5kHI02Yi2vG/FLxWBKDb5UqdG3jnzw7p1OxvKkzvA/RTJ3XHiqGuasm KqnWXOp2kmirBqcve75YHveRSeY+X9zbwX31yR40E1O9wzhIcE+NF5tPZwLFY6jbJq MFk4NpRKF/pzH3ooL8PSuGocfRoi1h0nLyjX6Vs1QW0npsZvz6+xlvvU/TE8LbOKuL Kh20E5qtBV0O6Vd73O/Ew/i9NZhoYBFHaEntuwAfrK4mTHL3NhptNDo0GkGDrecZkH oMyyaIC1lyneeR5mqZGrZhd9pYbBA49oABrd1HxUrl3mGAxaaBsSC11yrWhlsXGjbc y2z+hkawOTBXQ== X-Spam-Score: -0.7 (/) 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 (-) --=-L0vJ/0pBopM0L6qK9HuJ Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: base64 U2ltb24gU3RyZWl0IHNjaHJlZWYgb3AgdnIgMjUtMDMtMjAyMiBvbSAxMjo0NiBbKzAxMDBdOgo+ ICvCoMKgwqDCoMKgwqAgKHVyaSAoZ2l0LXJlZmVyZW5jZSAodXJsICJodHRwczovL2dpdGh1Yi5j b20vY2hyaXN0Z2F1L3dzZGQiKQo+ICvCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKg wqDCoMKgwqDCoMKgwqDCoMKgIChjb21taXQgKHN0cmluZy1hcHBlbmQgInYiIHZlcnNpb24pKSkp CgpUaGlzIHVzZXMgTmV0bGlua0FkZHJlc3NNb25pdG9yLCB3aGljaCBpcyBMaW51eC1zcGVjaWZp Yy4gIENvdWxkCidzdXBwb3J0ZWQtc3lzdGVtcycgYmUgc2V0IHRvIG9ubHkgTGludXggdGFyZ2V0 cyAoYW5kIG5vdCwgc2F5LApHTlUvSHVyZCk/Cg== --=-L0vJ/0pBopM0L6qK9HuJ 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+4iGRcl7gUCYj7oxxccbWF4aW1lZGV2 b3NAdGVsZW5ldC5iZQAKCRBJ4+4iGRcl7pPLAQCDslUOPwwUcOK4emNjn4ODTAnM XcktNYt4NwY350W2bAD9EnnpTNWtIIg/JTDp40igjT77C93vMDWGVicaLtAPdA4= =A8cz -----END PGP SIGNATURE----- --=-L0vJ/0pBopM0L6qK9HuJ-- From debbugs-submit-bounces@debbugs.gnu.org Tue Mar 29 05:41:07 2022 Received: (at control) by debbugs.gnu.org; 29 Mar 2022 09:41:07 +0000 Received: from localhost ([127.0.0.1]:59862 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nZ8Lb-0001OJ-Mg for submit@debbugs.gnu.org; Tue, 29 Mar 2022 05:41:07 -0400 Received: from eggs.gnu.org ([209.51.188.92]:45742) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nZ8LX-0001NW-Ll for control@debbugs.gnu.org; Tue, 29 Mar 2022 05:41:06 -0400 Received: from [2001:470:142:3::e] (port=60798 helo=fencepost.gnu.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nZ8LS-0000dc-Dc for control@debbugs.gnu.org; Tue, 29 Mar 2022 05:40:58 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-version:Subject:From:To:Date:in-reply-to: references; bh=TkajwveyaQmzfq+Nhhohqkncdhu5F0wfBTLj3a+Bve8=; b=iMywef1XXUDBP3 Q9LoW0uFBW7NY628jlyIfx/EFYcffI1TM+3NszGamhZwE4zvNogHZtYTERzN+4uNkOtMECb2oMxYX R3LR2FFw10SODofgJLzrYswD11+eDP6IURVgHFQb3GHeS/5l9dwjvPgXBCoCql55QfGaOxFxwr+oT ImbrRyd1AguC87qWKhyAYvV0Z+BmCrfLT7cy6KyQ30bvakgHuxH4Pe6dnMZyS00Mf4Sk6lA6aT9jJ jvp3h9Um/SUk/Y8p3oSOCe+nzMuwSfSM+CpIYKdNyxv6qMhOEMZ6bYmjMX1tnwP1kdbG/s9mZtuWa 0DAvmrUs/rI9jBaPajSQ==; Received: from [193.50.110.177] (port=51520 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nZ8LR-0003Qa-TV for control@debbugs.gnu.org; Tue, 29 Mar 2022 05:40:58 -0400 Date: Tue, 29 Mar 2022 11:40:54 +0200 Message-Id: <87wngd2j15.fsf@gnu.org> To: control@debbugs.gnu.org From: =?utf-8?Q?Ludovic_Court=C3=A8s?= Subject: control message for bug #54563 MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: control 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 (---) tags 54563 + moreinfo quit From unknown Sat Jun 21 10:43:14 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54563] [PATCH] gnu: Add wsdd. Resent-From: Simon Streit Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 04 Apr 2022 18:49:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 54563 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch moreinfo To: Maxime Devos Cc: 54563@debbugs.gnu.org Received: via spool by 54563-submit@debbugs.gnu.org id=B54563.16490981087189 (code B ref 54563); Mon, 04 Apr 2022 18:49:02 +0000 Received: (at 54563) by debbugs.gnu.org; 4 Apr 2022 18:48:28 +0000 Received: from localhost ([127.0.0.1]:52931 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nbRka-0001rs-L1 for submit@debbugs.gnu.org; Mon, 04 Apr 2022 14:48:28 -0400 Received: from smtprelay02.ispgateway.de ([80.67.18.14]:61402) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nbRkZ-0001ri-M1 for 54563@debbugs.gnu.org; Mon, 04 Apr 2022 14:48:28 -0400 Received: from [79.252.159.36] (helo=motorball) by smtprelay02.ispgateway.de with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1nbRkQ-00077c-1Y; Mon, 04 Apr 2022 20:48:18 +0200 From: Simon Streit References: <61b9d1603851cc9d4304d59b8a43899dc804ba67.1648208525.git.simon@netpanic.org> <42a8c8cc6e8ce7872b0ff2814727a37de770d6d6.camel@telenet.be> Gcc: nnfolder+archive:sent.2022-04 Date: Mon, 04 Apr 2022 20:48:24 +0200 In-Reply-To: <42a8c8cc6e8ce7872b0ff2814727a37de770d6d6.camel@telenet.be> (Maxime Devos's message of "Sat, 26 Mar 2022 11:19:51 +0100") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Df-Sender: bGlzdHNAbmV0cGFuaWMub3Jn X-Spam-Score: -0.0 (/) 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 (-) Hello Maxime, Maxime Devos writes: > Simon Streit schreef op vr 25-03-2022 om 12:46 [+0100]: >> +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 (uri (git-reference (url "https://= github.com/christgau/wsdd") >> +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= =A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= =C2=A0=C2=A0 (commit (string-append "v" version)))) > > This uses NetlinkAddressMonitor, which is Linux-specific. Could > 'supported-systems' be set to only Linux targets (and not, say, > GNU/Hurd)? I just figured you are meaning that WSDD only supports Linux specific systems? It appears so after reading the source code. I can't tell if it will work in GNU/Hurd though. Should the package declaration be modified to reflect this limitation?=20 From unknown Sat Jun 21 10:43:14 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54563] [PATCH] gnu: Add wsdd. Resent-From: Simon Streit Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 04 Apr 2022 18:53:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 54563 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch moreinfo To: Maxime Devos Cc: 54563@debbugs.gnu.org Received: via spool by 54563-submit@debbugs.gnu.org id=B54563.16490983567920 (code B ref 54563); Mon, 04 Apr 2022 18:53:02 +0000 Received: (at 54563) by debbugs.gnu.org; 4 Apr 2022 18:52:36 +0000 Received: from localhost ([127.0.0.1]:52943 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nbRoa-00023f-CK for submit@debbugs.gnu.org; Mon, 04 Apr 2022 14:52:36 -0400 Received: from smtprelay07.ispgateway.de ([134.119.228.97]:36883) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nbRoY-00023Q-If for 54563@debbugs.gnu.org; Mon, 04 Apr 2022 14:52:35 -0400 Received: from [79.252.159.36] (helo=motorball) by smtprelay07.ispgateway.de with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1nbRob-0003wZ-0Z; Mon, 04 Apr 2022 20:52:37 +0200 From: Simon Streit References: <61b9d1603851cc9d4304d59b8a43899dc804ba67.1648208525.git.simon@netpanic.org> <73ef084b46e0e8e7394b75f81bfee7706f3f6200.camel@telenet.be> Gcc: nnfolder+archive:sent.2022-04 Date: Mon, 04 Apr 2022 20:52:32 +0200 In-Reply-To: <73ef084b46e0e8e7394b75f81bfee7706f3f6200.camel@telenet.be> (Maxime Devos's message of "Sat, 26 Mar 2022 11:17:52 +0100") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Df-Sender: bGlzdHNAbmV0cGFuaWMub3Jn X-Spam-Score: -0.0 (/) 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 (-) Maxime Devos writes: > Simon Streit schreef op vr 25-03-2022 om 12:46 [+0100]: >> +=C2=A0=C2=A0=C2=A0 (arguments >> +=C2=A0=C2=A0=C2=A0=C2=A0 '(#:install-plan >> +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 '(("src/wsdd.py" "bin/wsdd") >> +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 ("man/wsdd.1" "share/m= an/man1/")))) > > There are a few tests in 'tests'. Can they be run? They don't appear to be proper test files running unit tests or anything close. One monitors the address on all network interfaces. The other crashes. The top comment in these files state though that they are =E2=80= =9Cnot really a test case, but a PoC for getting notified about changes in network addresses.=E2=80=9D I don't think it will be necessary to have then run while packaging. From unknown Sat Jun 21 10:43:14 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54563] [PATCH] gnu: Add wsdd. Resent-From: Maxime Devos Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 04 Apr 2022 21:59:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 54563 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch moreinfo To: Simon Streit Cc: 54563@debbugs.gnu.org Received: via spool by 54563-submit@debbugs.gnu.org id=B54563.164910952720644 (code B ref 54563); Mon, 04 Apr 2022 21:59:01 +0000 Received: (at 54563) by debbugs.gnu.org; 4 Apr 2022 21:58:47 +0000 Received: from localhost ([127.0.0.1]:53229 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nbUil-0005Mu-F0 for submit@debbugs.gnu.org; Mon, 04 Apr 2022 17:58:47 -0400 Received: from andre.telenet-ops.be ([195.130.132.53]:55012) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nbUij-0005Mk-88 for 54563@debbugs.gnu.org; Mon, 04 Apr 2022 17:58:46 -0400 Received: from [172.20.10.5] ([188.188.171.227]) by andre.telenet-ops.be with bizsmtp id Elyi270054ujj3Q01lyiCd; Mon, 04 Apr 2022 23:58:43 +0200 Message-ID: <70303b8350929cb5a4ef5b70981b755318942a71.camel@telenet.be> From: Maxime Devos Date: Mon, 04 Apr 2022 23:58:34 +0200 In-Reply-To: References: <61b9d1603851cc9d4304d59b8a43899dc804ba67.1648208525.git.simon@netpanic.org> <42a8c8cc6e8ce7872b0ff2814727a37de770d6d6.camel@telenet.be> Content-Type: multipart/signed; micalg="pgp-sha512"; protocol="application/pgp-signature"; boundary="=-U3iNNd4HmDjB8Wqrf25G" User-Agent: Evolution 3.38.3-1 MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=telenet.be; s=r22; t=1649109523; bh=7iBJ0uJLBh9mQ+TKLE2orRWUIj4SCLkhJu1of3x0ZVQ=; h=Subject:From:To:Cc:Date:In-Reply-To:References; b=GXcsgI4lkc9ySFDR+/Vx0XWyb8ffxtg4z2pK/EsbSzAcw3bCpJjoAuRIdxLiLUV2R 8yywNmf8TWOk9Zecz5GlwkuTcr56RWrzrKExknEE29u7N5LuPtrD7ussLsrJ+zwkH3 D+a9v9np/MfgydS8+e+RqQjY7xyQbE4O1h/1d/jmNOipNgc+wZelol4pU4cWSSXMPL 2zYIesEaI/iPomwZsaUjiW9Ckn9CLT2CJMC+CBwDJBnzJpBNmI3gPAo/xN1lq0duLP fJMqhuo6ABF19568Ds23k1zzKU47FLTXpsUJa694fdO1UBtp5ZhmaTvMZP2xhqgigi DxipU1lcfvuTg== X-Spam-Score: -0.7 (/) 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 (-) --=-U3iNNd4HmDjB8Wqrf25G Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Simon Streit schreef op ma 04-04-2022 om 20:48 [+0200]: > Hello Maxime, >=20 > Maxime Devos writes: >=20 > > Simon Streit schreef op vr 25-03-2022 om 12:46 [+0100]: > > > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 (uri (git-reference (url "https= ://github.com/christgau/wsdd") > > > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= =A0=C2=A0=C2=A0 (commit (string-append "v" version)))) > >=20 > > This uses NetlinkAddressMonitor, which is Linux-specific.=C2=A0 Could > > 'supported-systems' be set to only Linux targets (and not, say, > > GNU/Hurd)? >=20 > I just figured you are meaning that WSDD only supports Linux specific > systems?=C2=A0 It appears so after reading the source code.=C2=A0 I can't= tell if > it will work in GNU/Hurd though.=C2=A0 Should the package declaration be > modified to reflect this limitation?=20 netlink is IIUC (currently) a Linux-specific interface. Though mentions FreeBSD so maybe it's ok after all. As such, I would optimistically assume it works on the Hurd as well. Greetings, Maxime. --=-U3iNNd4HmDjB8Wqrf25G 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+4iGRcl7gUCYktqChccbWF4aW1lZGV2 b3NAdGVsZW5ldC5iZQAKCRBJ4+4iGRcl7mJCAQCPJQeBYVTEw5WpRDD+RWXGFj1H c90OjtR6o7+hubzbOgD/TPuLzKKi+mJKWGW1iCO1VvizQ/YVcPg76q4CbJpnQw8= =ceJj -----END PGP SIGNATURE----- --=-U3iNNd4HmDjB8Wqrf25G-- From unknown Sat Jun 21 10:43:14 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Simon Streit Subject: bug#54563: closed (Re: [bug#54563] [PATCH] gnu: Add wsdd.) Message-ID: References: <87il8tqxc3.fsf@wireframe> <61b9d1603851cc9d4304d59b8a43899dc804ba67.1648208525.git.simon@netpanic.org> X-Gnu-PR-Message: they-closed 54563 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch moreinfo Reply-To: 54563@debbugs.gnu.org Date: Fri, 01 Sep 2023 23:38:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1693611482-26349-1" This is a multi-part message in MIME format... ------------=_1693611482-26349-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #54563: [PATCH] gnu: Add wsdd. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 54563@debbugs.gnu.org. --=20 54563: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D54563 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1693611482-26349-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 54563-done) by debbugs.gnu.org; 1 Sep 2023 23:37:56 +0000 Received: from localhost ([127.0.0.1]:34475 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qcDi8-0006qg-Da for submit@debbugs.gnu.org; Fri, 01 Sep 2023 19:37:56 -0400 Received: from cascadia.aikidev.net ([2600:3c01:e000:267:0:a171:de7:c]:50466) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qcDi6-0006qS-BD for 54563-done@debbugs.gnu.org; Fri, 01 Sep 2023 19:37:55 -0400 Received: from localhost (unknown [IPv6:2600:3c01:e000:21:7:77:0:50]) (Authenticated sender: vagrant@cascadia.debian.net) by cascadia.aikidev.net (Postfix) with ESMTPSA id F34E11AA7B; Fri, 1 Sep 2023 16:37:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=debian.org; s=1.vagrant.user; t=1693611456; bh=s9pBxoUQy4Inlg0z42AeffB5chdpg0XmHMJl1IuNNPg=; h=From:To:Subject:In-Reply-To:References:Date:From; b=Hva1EipFFrxJSBWLZEbXkBQLB9vba0yDrSn9RAN8UimWK3h2hyPPNSjKgWOx6ytuV V0E6r+a+4cYRbz51vlHy1nB8mT+Bz9V9wTeCsMEakn7HOJxV5Qlvcwr4mZOc1fEzmb 4fyvnIfL+e5wzWBUhua4tuNa4ApL71HVC5ru7+Zz1TlTi98KRwJviu07EzHVe+eMMx l3hOcd7d5+pOjK1uytunCHPH+MQfHu3kqpzwMBq7dOgPW5fK+mgyLmNsYd032rglNy Tr/E290MLNiW7EJM6BUkzrFc4Iqwz+07DoXK+Iaf/nLJUW0BH0gxT82JPR6tjtL2t8 2VnvhbI+7UVKw== From: Vagrant Cascadian To: Simon Streit , 54563-done@debbugs.gnu.org Subject: Re: [bug#54563] [PATCH] gnu: Add wsdd. In-Reply-To: <61b9d1603851cc9d4304d59b8a43899dc804ba67.1648208525.git.simon@netpanic.org> References: <61b9d1603851cc9d4304d59b8a43899dc804ba67.1648208525.git.simon@netpanic.org> Date: Fri, 01 Sep 2023 16:37:32 -0700 Message-ID: <87il8tqxc3.fsf@wireframe> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 54563-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 On 2022-03-25, Simon Streit wrote: > * gnu/packages/samba.scm (wsdd): New variable. This was merged as: 14359befa92d2d54af0e584724610d8a31f5ac63 gnu: Add wsdd. And updated to a newer version in: 79c2af7394a8a541fa2ed0126272025b09aa05cd gnu: wsdd: Update to 0.7.1. Marking as done. live well, vagrant --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iHUEARYKAB0WIQRlgHNhO/zFx+LkXUXcUY/If5cWqgUCZPJ1vAAKCRDcUY/If5cW qnZLAP45jD3j4J6xi1oQ6937N/eXdidfP0tdRKtrhMbebjFxXwD8CbJqVCN714RU BiTZfwLhqe16qqvKat1maLY7xVnOCA0= =ltjg -----END PGP SIGNATURE----- --=-=-=-- ------------=_1693611482-26349-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 25 Mar 2022 11:47:39 +0000 Received: from localhost ([127.0.0.1]:50363 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nXiPq-0007St-KD for submit@debbugs.gnu.org; Fri, 25 Mar 2022 07:47:38 -0400 Received: from lists.gnu.org ([209.51.188.17]:39036) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nXiPo-0007SV-Pr for submit@debbugs.gnu.org; Fri, 25 Mar 2022 07:47:37 -0400 Received: from eggs.gnu.org ([209.51.188.92]:44648) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nXiPo-0004AZ-6y for guix-patches@gnu.org; Fri, 25 Mar 2022 07:47:36 -0400 Received: from smtprelay02.ispgateway.de ([80.67.18.44]:33430) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nXiPm-0001mq-5h for guix-patches@gnu.org; Fri, 25 Mar 2022 07:47:35 -0400 Received: from [93.195.170.97] (helo=motorball.wh6.home.arpa) by smtprelay02.ispgateway.de with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.94.2) (envelope-from ) id 1nXiPV-0007wR-SB; Fri, 25 Mar 2022 12:47:17 +0100 From: Simon Streit To: guix-patches@gnu.org Subject: [PATCH] gnu: Add wsdd. Date: Fri, 25 Mar 2022 12:46:45 +0100 Message-Id: <61b9d1603851cc9d4304d59b8a43899dc804ba67.1648208525.git.simon@netpanic.org> X-Mailer: git-send-email 2.34.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Df-Sender: c2ltb25AbmV0cGFuaWMub3Jn Received-SPF: none client-ip=80.67.18.44; envelope-from=simon@netpanic.org; helo=smtprelay02.ispgateway.de X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_PASS=-0.001, SPF_NONE=0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit Cc: Simon Streit 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 (---) * gnu/packages/samba.scm (wsdd): New variable. --- gnu/packages/samba.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/samba.scm b/gnu/packages/samba.scm index b775ad905c..21a5fe8617 100644 --- a/gnu/packages/samba.scm +++ b/gnu/packages/samba.scm @@ -500,3 +500,29 @@ (define-public ppp ;; chat is public domain. (license (list bsd-3 bsd-4 gpl2+ public-domain)))) +(define-public wsdd + (package + (name "wsdd") + (version "0.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference (url "https://github.com/christgau/wsdd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04an2w6hamnai668ag4vq8x0i09fsg2jrayb4a7ar0x6bn837k7m")))) + (build-system copy-build-system) + (inputs + `(("python" ,python))) + (arguments + '(#:install-plan + '(("src/wsdd.py" "bin/wsdd") + ("man/wsdd.1" "share/man/man1/")))) + (home-page "https://github.com/christgau/wsdd") + (synopsis "A Web Service Discovery host daemon") + (description "This daemon allows (Samba) hosts to be found by Web +Service Dicovery Clients. It also implements the client side of the +discovery protocol which allows to search for devices implementing +WSD.") + (license expat))) -- 2.34.0 ------------=_1693611482-26349-1--