GNU bug report logs - #58121
[PATCH 0/2] etc: teams: Add (.

Previous Next

Package: guix-patches;

Reported by: "(" <paren <at> disroot.org>

Date: Tue, 27 Sep 2022 18:00:02 UTC

Severity: normal

Tags: patch

Done: Mathieu Othacehe <othacehe <at> gnu.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 58121 in the body.
You can then email your comments to 58121 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#58121; Package guix-patches. (Tue, 27 Sep 2022 18:00:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to "(" <paren <at> disroot.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Tue, 27 Sep 2022 18:00:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: "(" <paren <at> disroot.org>
To: guix-patches <at> gnu.org
Cc: "\(" <paren <at> disroot.org>
Subject: [PATCH 0/2] etc: teams: Add (.
Date: Tue, 27 Sep 2022 18:59:13 +0100
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





Information forwarded to guix-patches <at> gnu.org:
bug#58121; Package guix-patches. (Tue, 27 Sep 2022 18:01:02 GMT) Full text and rfc822 format available.

Message #8 received at 58121 <at> debbugs.gnu.org (full text, mbox):

From: "(" <paren <at> disroot.org>
To: 58121 <at> debbugs.gnu.org
Cc: "\(" <paren <at> disroot.org>
Subject: [PATCH 0/2] etc: teams: Add (.
Date: Tue, 27 Sep 2022 19:00:26 +0100
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





Information forwarded to guix-patches <at> gnu.org:
bug#58121; Package guix-patches. (Tue, 27 Sep 2022 18:01:02 GMT) Full text and rfc822 format available.

Message #11 received at 58121 <at> debbugs.gnu.org (full text, mbox):

From: "(" <paren <at> disroot.org>
To: 58121 <at> debbugs.gnu.org
Cc: "\(" <paren <at> disroot.org>
Subject: [PATCH 1/2] etc: teams: Add more scopes to teams.
Date: Tue, 27 Sep 2022 19:00:27 +0100
* 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")))
 
 
 (define-member (person "Thiago Jung Bauermann"
-- 
2.37.3





Information forwarded to guix-patches <at> gnu.org:
bug#58121; Package guix-patches. (Tue, 27 Sep 2022 18:01:02 GMT) Full text and rfc822 format available.

Message #14 received at 58121 <at> debbugs.gnu.org (full text, mbox):

From: "(" <paren <at> disroot.org>
To: 58121 <at> debbugs.gnu.org
Cc: "\(" <paren <at> disroot.org>
Subject: [PATCH 2/2] etc: teams: Add (.
Date: Tue, 27 Sep 2022 19:00:28 +0100
* 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 <at> jpoiret.xyz")
   core installer)
 
+(define-member (person "("
+                       "paren <at> disroot.org")
+  home mentors)
+
 
 (define (find-team name)
   (or (hash-ref %teams (string->symbol name))
-- 
2.37.3





Reply sent to Mathieu Othacehe <othacehe <at> gnu.org>:
You have taken responsibility. (Wed, 28 Sep 2022 06:54:01 GMT) Full text and rfc822 format available.

Notification sent to "(" <paren <at> disroot.org>:
bug acknowledged by developer. (Wed, 28 Sep 2022 06:54:01 GMT) Full text and rfc822 format available.

Message #19 received at 58121-done <at> debbugs.gnu.org (full text, mbox):

From: Mathieu Othacehe <othacehe <at> gnu.org>
To: "(" <paren <at> disroot.org>
Cc: 58121-done <at> debbugs.gnu.org
Subject: Re: bug#58121: [PATCH 0/2] etc: teams: Add (.
Date: Wed, 28 Sep 2022 08:53:38 +0200
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




Information forwarded to guix-patches <at> gnu.org:
bug#58121; Package guix-patches. (Wed, 28 Sep 2022 06:55:02 GMT) Full text and rfc822 format available.

Message #22 received at 58121-done <at> debbugs.gnu.org (full text, mbox):

From: "(" <paren <at> disroot.org>
To: "Mathieu Othacehe" <othacehe <at> gnu.org>
Cc: 58121-done <at> debbugs.gnu.org
Subject: Re: bug#58121: [PATCH 0/2] etc: teams: Add (.
Date: Wed, 28 Sep 2022 07:54:32 +0100
On Wed Sep 28, 2022 at 7:53 AM BST, Mathieu Othacehe wrote:
> Nice one! Applied.

Thanks Mathieu! :D

    -- (




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Wed, 26 Oct 2022 11:24:08 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 173 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.