From: "\( via Guix-patches" via <guix-patches@gnu.org>
To: 58121@debbugs.gnu.org
Cc: "\(" <paren@disroot.org>
Subject: [bug#58121] [PATCH 1/2] etc: teams: Add more scopes to teams.
Date: Tue, 27 Sep 2022 19:00:27 +0100 [thread overview]
Message-ID: <20220927180028.6314-2-paren@disroot.org> (raw)
In-Reply-To: <20220927180028.6314-1-paren@disroot.org>
* etc/teams.scm.in (r, julia, ruby, go, rust, kernel, translations,
home, mozilla, racket): Add scopes.
(emacs)[scope]: Add ``guix import elpa''-related files.
(installer)[scope]: Correct ``guix/installer'' to ``gnu/installer''.
---
etc/teams.scm.in | 69 +++++++++++++++++++++++++++++++++++++++---------
1 file changed, 56 insertions(+), 13 deletions(-)
diff --git a/etc/teams.scm.in b/etc/teams.scm.in
index ba22b80771..4f65f5bcf0 100644
--- a/etc/teams.scm.in
+++ b/etc/teams.scm.in
@@ -129,13 +129,23 @@ (define-team r
#:name "R team"
#:description
"The R language, CRAN and Bioconductor repositories, the \"cran\" importer,
-and the r-build-system."))
+and the r-build-system."
+ #:scope (list "gnu/packages/bioconductor.scm"
+ "gnu/packages/cran.scm"
+ "guix/build/r-build-system.scm"
+ "guix/build-system/r.scm"
+ "guix/import/cran.scm"
+ "guix/scripts/import/cran.scm"
+ "tests/cran.scm")))
(define-team julia
(team 'julia
#:name "Julia team"
#:description
- "The Julia language, Julia packages, and the julia-build-system."))
+ "The Julia language, Julia packages, and the julia-build-system."
+ #:scope (list (make-regexp "^gnu/packages/julia(-.+|)\\.scm$")
+ "guix/build/julia-build-system.scm"
+ "guix/build-system/julia.scm")))
(define-team ocaml
(team 'ocaml
@@ -185,7 +195,10 @@ (define-team emacs
#:scope (list (make-regexp "^gnu/packages/emacs(-.+|)\\.scm$")
"guix/build/emacs-build-system.scm"
"guix/build/emacs-utils.scm"
- "guix/build-system/emacs.scm")))
+ "guix/build-system/emacs.scm"
+ "guix/import/elpa.scm"
+ "guix/scripts/import/elpa.scm"
+ "tests/elpa.scm")))
(define-team lisp
(team 'lisp
@@ -200,11 +213,23 @@ (define-team lisp
(define-team ruby
(team 'ruby
- #:name "Ruby team"))
+ #:name "Ruby team"
+ #:scope (list "gnu/packages/ruby.scm"
+ "guix/build/ruby-build-system.scm"
+ "guix/build-system/ruby.scm"
+ "guix/import/gem.scm"
+ "guix/scripts/import/gem.scm"
+ "tests/gem.scm")))
(define-team go
(team 'go
- #:name "Go team"))
+ #:name "Go team"
+ #:scope (list "gnu/packages/golang.scm"
+ "guix/build/go-build-system.scm"
+ "guix/build-system/go.scm"
+ "guix/import/go.scm"
+ "guix/scripts/import/go.scm"
+ "tests/go.scm")))
(define-team embedded-bootstrap
(team 'embedded-bootstrap
@@ -212,11 +237,23 @@ (define-team embedded-bootstrap
(define-team rust
(team 'rust
- #:name "Rust"))
+ #:name "Rust"
+ #:scope (list (make-regexp "^gnu/packages/(crates|rust)(-.+|)\\.scm$")
+ "guix/build/cargo-build-system.scm"
+ "guix/build/cargo-utils.scm"
+ "guix/build-system/cargo.scm"
+ "guix/import/crate.scm"
+ "guix/scripts/import/crate.scm"
+ "tests/crate.scm")))
(define-team kernel
(team 'kernel
- #:name "Linux-libre kernel team"))
+ #:name "Linux-libre kernel team"
+ #:scope (list "gnu/build/linux-modules.scm"
+ "gnu/packages/linux.scm"
+ "gnu/tests/linux-modules.scm"
+ "guix/build/linux-module-build-system.scm"
+ "guix/build-system/linux-module.scm")))
(define-team core
(team 'core
@@ -316,17 +353,21 @@ (define-team games
(define-team translations
(team 'translations
- #:name "Translations"))
+ #:name "Translations"
+ #:scope (list (make-regexp "^po/"))))
(define-team installer
(team 'installer
#:name "Installer script and system installer"
- #:scope
- (list (make-regexp "^guix/installer(\\.scm$|/)"))))
+ #:scope (list (make-regexp "^gnu/installer(\\.scm$|/)"))))
(define-team home
(team 'home
- #:name "Team for \"Guix Home\""))
+ #:name "Team for \"Guix Home\""
+ #:scope (list (make-regexp "^(gnu|guix/scripts)/home(\\.scm$|/)")
+ "tests/guix-home.sh"
+ "tests/home-import.scm"
+ "tests/home-services.scm")))
(define-team mentors
(team 'mentors
@@ -339,7 +380,8 @@ (define-team mozilla
#:name "Mozilla"
#:description
"Taking care about Icecat and Icedove, built from Mozilla Firefox
-and Thunderbird."))
+and Thunderbird."
+ #:scope (list "gnu/packages/gnuzilla.scm")))
(define-team racket
(team 'racket
@@ -347,7 +389,8 @@ (define-team racket
#:description
"The Racket language and Racket-based languages, Racket packages,
Racket's variant of Chez Scheme, and development of a Racket build system and
-importer."))
+importer."
+ #:scope (list "gnu/packages/racket.scm")))
\f
(define-member (person "Thiago Jung Bauermann"
--
2.37.3
next prev parent reply other threads:[~2022-09-27 18:01 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-27 17:59 [bug#58121] [PATCH 0/2] etc: teams: Add ( ( via Guix-patches via
2022-09-27 18:00 ` ( via Guix-patches via
2022-09-27 18:00 ` ( via Guix-patches via [this message]
2022-09-27 18:00 ` [bug#58121] [PATCH 2/2] " ( via Guix-patches via
2022-09-28 6:53 ` bug#58121: [PATCH 0/2] " Mathieu Othacehe
2022-09-28 6:54 ` [bug#58121] " ( via Guix-patches via
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220927180028.6314-2-paren@disroot.org \
--to=guix-patches@gnu.org \
--cc=58121@debbugs.gnu.org \
--cc=paren@disroot.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.