[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: teams: Split Embedded and Bootstrap into separate
From: |
guix-commits |
Subject: |
branch master updated: teams: Split Embedded and Bootstrap into separate teams. |
Date: |
Wed, 24 May 2023 18:53:01 -0400 |
This is an automated email from the git hooks/post-receive script.
vagrantc pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 7cf606a5a0 teams: Split Embedded and Bootstrap into separate teams.
7cf606a5a0 is described below
commit 7cf606a5a0515b9a124fb58a06e3daa24a4a4e69
Author: Vagrant Cascadian <vagrant@debian.org>
AuthorDate: Wed Jan 18 11:17:36 2023 -0800
teams: Split Embedded and Bootstrap into separate teams.
* etc/teams.scm.in (embedded-bootstrap): Replace by two separate teams.
(embedded): New variable.
(bootstrap): New variable.
Adjust membership to use new teams.
---
etc/teams.scm.in | 17 ++++++++++++-----
1 file changed, 12 insertions(+), 5 deletions(-)
diff --git a/etc/teams.scm.in b/etc/teams.scm.in
index 38d82eac1a..5cfcb3a9d4 100644
--- a/etc/teams.scm.in
+++ b/etc/teams.scm.in
@@ -255,9 +255,16 @@ asdf-build-system."
"guix/scripts/import/go.scm"
"tests/go.scm")))
-(define-team embedded-bootstrap
- (team 'embedded-bootstrap
- #:name "Embedded / Bootstrap"))
+(define-team bootstrap
+ (team 'bootstrap
+ #:name "Bootstrap"
+ #:scope (list "gnu/packages/mes.scm")))
+
+(define-team embedded
+ (team 'embedded
+ #:name "Embedded"
+ #:scope (list "gnu/packages/bootloaders.scm"
+ "gnu/packages/firmware.scm")))
(define-team rust
(team 'rust
@@ -480,7 +487,7 @@ GLib/GIO, GTK, GStreamer and Webkit."
(define-member (person "Ludovic Courtès"
"ludo@gnu.org")
- core home embedded-bootstrap mentors)
+ core home embedded bootstrap mentors)
(define-member (person "Andreas Enge"
"andreas@enge.fr")
@@ -500,7 +507,7 @@ GLib/GIO, GTK, GStreamer and Webkit."
(define-member (person "Efraim Flashner"
"efraim@flashner.co.il")
- embedded-bootstrap julia rust science)
+ embedded bootstrap julia rust science)
(define-member (person "jgart"
"jgart@dismail.de")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: teams: Split Embedded and Bootstrap into separate teams.,
guix-commits <=