From 4cbc1622961f62f8fc3613de0c8f215e0cde6494 Mon Sep 17 00:00:00 2001 From: Simon Streit Date: Mon, 8 Aug 2022 16:56:40 +0200 Subject: gnu: samba: Add avahi to inputs. * gnu/packages/samba.scm (samba) : Add avahi. Signed-off-by: Lars-Dominik Braun --- gnu/packages/samba.scm | 3 +++ 1 file changed, 3 insertions(+) (limited to 'gnu/packages/samba.scm') diff --git a/gnu/packages/samba.scm b/gnu/packages/samba.scm index 360c06d216..c393dd6f65 100644 --- a/gnu/packages/samba.scm +++ b/gnu/packages/samba.scm @@ -13,6 +13,7 @@ ;;; Copyright © 2022 Jean-Pierre De Jesus DIAZ ;;; Copyright © 2022 Guillaume Le Vaillant ;;; Copyright © 2022 Maxime Devos +;;; Copyright © 2022 Simon Streit ;;; ;;; This file is part of GNU Guix. ;;; @@ -41,6 +42,7 @@ #:use-module (gnu packages acl) #:use-module (gnu packages admin) #:use-module (gnu packages autotools) + #:use-module (gnu packages avahi) #:use-module (gnu packages backup) #:use-module (gnu packages base) #:use-module (gnu packages check) @@ -242,6 +244,7 @@ external dependencies.") #:tests? #f)) (inputs (list acl + avahi cmocka cups gamin -- cgit v1.2.3 From 14359befa92d2d54af0e584724610d8a31f5ac63 Mon Sep 17 00:00:00 2001 From: Simon Streit Date: Mon, 8 Aug 2022 16:56:42 +0200 Subject: gnu: Add wsdd. * gnu/packages/samba.scm (wsdd): New variable. Signed-off-by: Lars-Dominik Braun --- gnu/packages/samba.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'gnu/packages/samba.scm') diff --git a/gnu/packages/samba.scm b/gnu/packages/samba.scm index c393dd6f65..e4f2c0e20e 100644 --- a/gnu/packages/samba.scm +++ b/gnu/packages/samba.scm @@ -36,6 +36,7 @@ #:use-module (guix download) #:use-module (guix git-download) #:use-module (guix build-system gnu) + #:use-module (guix build-system copy) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix utils) #:use-module (gnu packages) @@ -508,3 +509,30 @@ and IPV6 and the protocols layered above them, such as TCP and UDP.") license:bsd-4 license:gpl2+ license: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 license:expat))) -- cgit v1.2.3 From dc7191302e6d099a26673e08b78eb5f4b2a2b17b Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Sat, 24 Sep 2022 13:15:42 +0200 Subject: Revert "gnu: samba: Add avahi to inputs." This reverts commit 4cbc1622961f62f8fc3613de0c8f215e0cde6494. samba/fixed inherits from samba, which causes ~9000 rebuilds. --- gnu/packages/samba.scm | 3 --- 1 file changed, 3 deletions(-) (limited to 'gnu/packages/samba.scm') diff --git a/gnu/packages/samba.scm b/gnu/packages/samba.scm index e4f2c0e20e..fdcd6ec991 100644 --- a/gnu/packages/samba.scm +++ b/gnu/packages/samba.scm @@ -13,7 +13,6 @@ ;;; Copyright © 2022 Jean-Pierre De Jesus DIAZ ;;; Copyright © 2022 Guillaume Le Vaillant ;;; Copyright © 2022 Maxime Devos -;;; Copyright © 2022 Simon Streit ;;; ;;; This file is part of GNU Guix. ;;; @@ -43,7 +42,6 @@ #:use-module (gnu packages acl) #:use-module (gnu packages admin) #:use-module (gnu packages autotools) - #:use-module (gnu packages avahi) #:use-module (gnu packages backup) #:use-module (gnu packages base) #:use-module (gnu packages check) @@ -245,7 +243,6 @@ external dependencies.") #:tests? #f)) (inputs (list acl - avahi cmocka cups gamin -- cgit v1.2.3 From 62048ff9fcfbe3fc790a7207fc5f6f3e0476a02a Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 27 Sep 2022 14:08:34 -0400 Subject: gnu: samba: Fix corrupted man pages. * gnu/packages/samba.scm (samba) [native-inputs]: Replace docbook-xsl with docbook-xsl-next. --- gnu/packages/samba.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gnu/packages/samba.scm') diff --git a/gnu/packages/samba.scm b/gnu/packages/samba.scm index fdcd6ec991..35d15667b6 100644 --- a/gnu/packages/samba.scm +++ b/gnu/packages/samba.scm @@ -275,7 +275,7 @@ external dependencies.") python-pyasn1 ;for krb5 tests ;; For generating man pages. docbook-xml-4.2 - docbook-xsl + docbook-xsl-next ;otherwise the man pages are corrupted libxslt libxml2)) ;for XML_CATALOG_FILES (home-page "https://www.samba.org/") -- cgit v1.2.3