[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#50967] [PATCH 08/14] gnu: home-services: Move shepherd to (gnu home
From: |
Oleg Pykhalov |
Subject: |
[bug#50967] [PATCH 08/14] gnu: home-services: Move shepherd to (gnu home services). |
Date: |
Sat, 2 Oct 2021 19:38:28 +0300 |
* gnu/home-services/shepherd.scm: Move to gnu/home/services/shepherd.scm.
* gnu/local.mk: Same.
* gnu/home-services/mcron.scm: Replace (gnu home-services shepherd) with
(gnu home services shepherd).
* tests/guix-home.sh: Same.
---
gnu/home-services/mcron.scm | 2 +-
gnu/{home-services => home/services}/shepherd.scm | 2 +-
gnu/local.mk | 2 +-
tests/guix-home.sh | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
rename gnu/{home-services => home/services}/shepherd.scm (99%)
diff --git a/gnu/home-services/mcron.scm b/gnu/home-services/mcron.scm
index fdfde179a5..fb044351a9 100644
--- a/gnu/home-services/mcron.scm
+++ b/gnu/home-services/mcron.scm
@@ -20,8 +20,8 @@
(define-module (gnu home-services mcron)
#:use-module (gnu packages guile-xyz)
#:use-module (gnu home-services)
- #:use-module (gnu home-services shepherd)
#:use-module (gnu services shepherd)
+ #:use-module (gnu home services shepherd)
#:use-module (guix records)
#:use-module (guix gexp)
#:use-module (srfi srfi-1)
diff --git a/gnu/home-services/shepherd.scm b/gnu/home/services/shepherd.scm
similarity index 99%
rename from gnu/home-services/shepherd.scm
rename to gnu/home/services/shepherd.scm
index 120cfde1a1..1a3e849bb2 100644
--- a/gnu/home-services/shepherd.scm
+++ b/gnu/home/services/shepherd.scm
@@ -17,7 +17,7 @@
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
-(define-module (gnu home-services shepherd)
+(define-module (gnu home services shepherd)
#:use-module (gnu home-services)
#:use-module (gnu packages admin)
#:use-module (gnu services shepherd)
diff --git a/gnu/local.mk b/gnu/local.mk
index 78ca4688e3..5e3722a2d8 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -79,7 +79,7 @@ GNU_SYSTEM_MODULES = \
%D%/home/services/fontutils.scm \
%D%/home/services/configuration.scm \
%D%/home/services/shells.scm \
- %D%/home-services/shepherd.scm \
+ %D%/home/services/shepherd.scm \
%D%/home-services/mcron.scm \
%D%/home/services/utils.scm \
%D%/home/services/xdg.scm \
diff --git a/tests/guix-home.sh b/tests/guix-home.sh
index cb015c907f..86ba42bb8b 100644
--- a/tests/guix-home.sh
+++ b/tests/guix-home.sh
@@ -75,7 +75,7 @@ fi
cat > "$tmpfile" <<EOF
(use-modules (gnu))
-(use-modules (gnu home-services shepherd))
+(use-modules (gnu home services shepherd))
(home-environment
(services (list (service home-shepherd-service-type)
--
2.33.0
- [bug#50967] [PATCH 01/14] tests: Add tests for guix home cli., (continued)
- [bug#50967] [PATCH 01/14] tests: Add tests for guix home cli., Oleg Pykhalov, 2021/10/02
- [bug#50967] [PATCH 02/14] gnu: home-services: Move configuration to (gnu home services)., Oleg Pykhalov, 2021/10/02
- [bug#50967] [PATCH 03/14] gnu: home-services: Move symlink-manager to (gnu home services)., Oleg Pykhalov, 2021/10/02
- [bug#50967] [PATCH 05/14] gnu: home-services: Move fontutils to (gnu services)., Oleg Pykhalov, 2021/10/02
- [bug#50967] [PATCH 07/14] gnu: home-services: Move xdg to (gnu home services)., Oleg Pykhalov, 2021/10/02
- [bug#50967] [PATCH 04/14] gnu: home-services: Move utils to (gnu home services)., Oleg Pykhalov, 2021/10/02
- [bug#50967] [PATCH 06/14] gnu: home-services: Move shells to (gnu home services)., Oleg Pykhalov, 2021/10/02
- [bug#50967] [PATCH 09/14] gnu: home-services: Move mcron to (gnu home services)., Oleg Pykhalov, 2021/10/02
- [bug#50967] [PATCH 10/14] scripts: home: (gnu home-services bash) -> (gnu home services bash)., Oleg Pykhalov, 2021/10/02
- [bug#50967] [PATCH 08/14] gnu: home-services: Move shepherd to (gnu home services).,
Oleg Pykhalov <=
- [bug#50967] [PATCH 12/14] gnu: home-services: Update %service-type-path., Oleg Pykhalov, 2021/10/02
- [bug#50967] [PATCH 11/14] doc: (gnu home-services) -> (gnu home services)., Oleg Pykhalov, 2021/10/02
- [bug#50967] [PATCH 13/14] home: services: configuration: Support file-like objects., Oleg Pykhalov, 2021/10/02
- [bug#50967] [PATCH 13/14] home: services: configuration: Support file-like objects., Xinglu Chen, 2021/10/02
- [bug#50967] [PATCH 00/12] Move (gnu home-services XYZ) to (gnu services XYZ), Ludovic Courtès, 2021/10/04
- [bug#50967] file-like objects instead of gexps, Andrew Tropin, 2021/10/06
- [bug#50967] file-like objects instead of gexps, Ludovic Courtès, 2021/10/08
- [bug#50967] file-like objects instead of gexps, Andrew Tropin, 2021/10/08
- [bug#50967] file-like objects instead of gexps, Ludovic Courtès, 2021/10/09