* [bug#58121] [PATCH 0/2] etc: teams: Add (.
@ 2022-09-27 17:59 ( via Guix-patches via
2022-09-27 18:00 ` ( via Guix-patches via
0 siblings, 1 reply; 6+ messages in thread
From: ( via Guix-patches via @ 2022-09-27 17:59 UTC (permalink / raw)
To: 58121; +Cc: (
This patchset adds an entry for me to teams.scm.in and adds scope
definitions to most teams that didn't have them.
( (2):
etc: teams: Add more scopes to teams.
etc: teams: Add (.
etc/teams.scm.in | 73 +++++++++++++++++++++++++++++++++++++++---------
1 file changed, 60 insertions(+), 13 deletions(-)
--
2.37.3
^ permalink raw reply [flat|nested] 6+ messages in thread
* [bug#58121] [PATCH 0/2] etc: teams: Add (.
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 ` [bug#58121] [PATCH 1/2] etc: teams: Add more scopes to teams ( via Guix-patches via
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: ( via Guix-patches via @ 2022-09-27 18:00 UTC (permalink / raw)
To: 58121; +Cc: (
This patchset adds an entry for me to teams.scm.in and adds scope
definitions to most teams that didn't have them.
( (2):
etc: teams: Add more scopes to teams.
etc: teams: Add (.
etc/teams.scm.in | 73 +++++++++++++++++++++++++++++++++++++++---------
1 file changed, 60 insertions(+), 13 deletions(-)
--
2.37.3
^ permalink raw reply [flat|nested] 6+ messages in thread
* [bug#58121] [PATCH 1/2] etc: teams: Add more scopes to teams.
2022-09-27 18:00 ` ( via Guix-patches via
@ 2022-09-27 18:00 ` ( via Guix-patches via
2022-09-27 18:00 ` [bug#58121] [PATCH 2/2] etc: teams: Add ( ( via Guix-patches via
2022-09-28 6:53 ` bug#58121: [PATCH 0/2] " Mathieu Othacehe
2 siblings, 0 replies; 6+ messages in thread
From: ( via Guix-patches via @ 2022-09-27 18:00 UTC (permalink / raw)
To: 58121; +Cc: (
* 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
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [bug#58121] [PATCH 2/2] etc: teams: Add (.
2022-09-27 18:00 ` ( via Guix-patches via
2022-09-27 18:00 ` [bug#58121] [PATCH 1/2] etc: teams: Add more scopes to teams ( via Guix-patches via
@ 2022-09-27 18:00 ` ( via Guix-patches via
2022-09-28 6:53 ` bug#58121: [PATCH 0/2] " Mathieu Othacehe
2 siblings, 0 replies; 6+ messages in thread
From: ( via Guix-patches via @ 2022-09-27 18:00 UTC (permalink / raw)
To: 58121; +Cc: (
* etc/teams.scm.in: Add (.
---
etc/teams.scm.in | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/etc/teams.scm.in b/etc/teams.scm.in
index 4f65f5bcf0..96a1effd24 100644
--- a/etc/teams.scm.in
+++ b/etc/teams.scm.in
@@ -477,6 +477,10 @@ (define-member (person "Josselin Poiret"
"dev@jpoiret.xyz")
core installer)
+(define-member (person "("
+ "paren@disroot.org")
+ home mentors)
+
\f
(define (find-team name)
(or (hash-ref %teams (string->symbol name))
--
2.37.3
^ permalink raw reply related [flat|nested] 6+ messages in thread
* bug#58121: [PATCH 0/2] etc: teams: Add (.
2022-09-27 18:00 ` ( via Guix-patches via
2022-09-27 18:00 ` [bug#58121] [PATCH 1/2] etc: teams: Add more scopes to teams ( via Guix-patches via
2022-09-27 18:00 ` [bug#58121] [PATCH 2/2] etc: teams: Add ( ( via Guix-patches via
@ 2022-09-28 6:53 ` Mathieu Othacehe
2022-09-28 6:54 ` [bug#58121] " ( via Guix-patches via
2 siblings, 1 reply; 6+ messages in thread
From: Mathieu Othacehe @ 2022-09-28 6:53 UTC (permalink / raw)
To: (; +Cc: 58121-done
Hello,
> This patchset adds an entry for me to teams.scm.in and adds scope
> definitions to most teams that didn't have them.
Nice one! Applied.
Mathieu
^ permalink raw reply [flat|nested] 6+ messages in thread
* [bug#58121] [PATCH 0/2] etc: teams: Add (.
2022-09-28 6:53 ` bug#58121: [PATCH 0/2] " Mathieu Othacehe
@ 2022-09-28 6:54 ` ( via Guix-patches via
0 siblings, 0 replies; 6+ messages in thread
From: ( via Guix-patches via @ 2022-09-28 6:54 UTC (permalink / raw)
To: Mathieu Othacehe; +Cc: 58121-done
On Wed Sep 28, 2022 at 7:53 AM BST, Mathieu Othacehe wrote:
> Nice one! Applied.
Thanks Mathieu! :D
-- (
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2022-09-28 7:55 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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 ` [bug#58121] [PATCH 1/2] etc: teams: Add more scopes to teams ( via Guix-patches via
2022-09-27 18:00 ` [bug#58121] [PATCH 2/2] etc: teams: Add ( ( 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
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).