GNU bug report logs -
#54563
[PATCH] gnu: Add wsdd.
Previous Next
Reported by: Simon Streit <simon <at> netpanic.org>
Date: Fri, 25 Mar 2022 11:48:01 UTC
Severity: normal
Tags: moreinfo, patch
Done: Vagrant Cascadian <vagrant <at> debian.org>
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 54563 in the body.
You can then email your comments to 54563 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#54563
; Package
guix-patches
.
(Fri, 25 Mar 2022 11:48:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Simon Streit <simon <at> netpanic.org>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Fri, 25 Mar 2022 11:48:01 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* 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
Information forwarded
to
guix-patches <at> gnu.org
:
bug#54563
; Package
guix-patches
.
(Sat, 26 Mar 2022 10:18:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 54563 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Simon Streit schreef op vr 25-03-2022 om 12:46 [+0100]:
> + (arguments
> + '(#:install-plan
> + '(("src/wsdd.py" "bin/wsdd")
> + ("man/wsdd.1" "share/man/man1/"))))
There are a few tests in 'tests'. Can they be run?
[signature.asc (application/pgp-signature, inline)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#54563
; Package
guix-patches
.
(Sat, 26 Mar 2022 10:20:01 GMT)
Full text and
rfc822 format available.
Message #11 received at 54563 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Simon Streit schreef op vr 25-03-2022 om 12:46 [+0100]:
> + (uri (git-reference (url "https://github.com/christgau/wsdd")
> + (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)?
[signature.asc (application/pgp-signature, inline)]
Added tag(s) moreinfo.
Request was from
Ludovic Courtès <ludo <at> gnu.org>
to
control <at> debbugs.gnu.org
.
(Tue, 29 Mar 2022 09:42:02 GMT)
Full text and
rfc822 format available.
Information forwarded
to
guix-patches <at> gnu.org
:
bug#54563
; Package
guix-patches
.
(Mon, 04 Apr 2022 18:49:02 GMT)
Full text and
rfc822 format available.
Message #16 received at 54563 <at> debbugs.gnu.org (full text, mbox):
Hello Maxime,
Maxime Devos <maximedevos <at> telenet.be> writes:
> Simon Streit schreef op vr 25-03-2022 om 12:46 [+0100]:
>> + (uri (git-reference (url "https://github.com/christgau/wsdd")
>> + (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?
Information forwarded
to
guix-patches <at> gnu.org
:
bug#54563
; Package
guix-patches
.
(Mon, 04 Apr 2022 18:53:02 GMT)
Full text and
rfc822 format available.
Message #19 received at 54563 <at> debbugs.gnu.org (full text, mbox):
Maxime Devos <maximedevos <at> telenet.be> writes:
> Simon Streit schreef op vr 25-03-2022 om 12:46 [+0100]:
>> + (arguments
>> + '(#:install-plan
>> + '(("src/wsdd.py" "bin/wsdd")
>> + ("man/wsdd.1" "share/man/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 “not
really a test case, but a PoC for getting notified about changes in
network addresses.”
I don't think it will be necessary to have then run while packaging.
Information forwarded
to
guix-patches <at> gnu.org
:
bug#54563
; Package
guix-patches
.
(Mon, 04 Apr 2022 21:59:01 GMT)
Full text and
rfc822 format available.
Message #22 received at 54563 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Simon Streit schreef op ma 04-04-2022 om 20:48 [+0200]:
> Hello Maxime,
>
> Maxime Devos <maximedevos <at> telenet.be> writes:
>
> > Simon Streit schreef op vr 25-03-2022 om 12:46 [+0100]:
> > > + (uri (git-reference (url "https://github.com/christgau/wsdd")
> > > + (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?
netlink is IIUC (currently) a Linux-specific interface. Though
<https://github.com/christgau/wsdd/issues/80> mentions FreeBSD so maybe
it's ok after all. As such, I would optimistically assume it works on
the Hurd as well.
Greetings,
Maxime.
[signature.asc (application/pgp-signature, inline)]
Reply sent
to
Vagrant Cascadian <vagrant <at> debian.org>
:
You have taken responsibility.
(Fri, 01 Sep 2023 23:38:01 GMT)
Full text and
rfc822 format available.
Notification sent
to
Simon Streit <simon <at> netpanic.org>
:
bug acknowledged by developer.
(Fri, 01 Sep 2023 23:38:02 GMT)
Full text and
rfc822 format available.
Message #27 received at 54563-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
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
[signature.asc (application/pgp-signature, inline)]
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:23 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.