2023-10-21 02:19:24 +00:00
|
|
|
|
#!/bin/sh
|
2023-10-31 17:57:15 +00:00
|
|
|
|
# -*- mode: scheme; -*-
|
2023-10-21 02:19:24 +00:00
|
|
|
|
# Extra care is taken here to ensure this script can run in most environments,
|
|
|
|
|
# since it is invoked by 'git send-email'.
|
|
|
|
|
pre_inst_env_maybe=
|
|
|
|
|
command -v guix > /dev/null || pre_inst_env_maybe=./pre-inst-env
|
|
|
|
|
exec $pre_inst_env_maybe guix repl -- "$0" "$@"
|
2022-07-03 12:11:29 +00:00
|
|
|
|
!#
|
|
|
|
|
|
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2024-02-13 19:03:28 +00:00
|
|
|
|
;;; Copyright © 2022-2024 Ricardo Wurmus <rekado@elephly.net>
|
2022-09-07 15:05:00 +00:00
|
|
|
|
;;; Copyright © 2022 Mathieu Othacehe <othacehe@gnu.org>
|
2023-04-23 03:35:59 +00:00
|
|
|
|
;;; Copyright © 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
2022-11-17 20:28:18 +00:00
|
|
|
|
;;; Copyright © 2022 Simon Tournier <zimon.toutoune@gmail.com>
|
2022-07-03 12:11:29 +00:00
|
|
|
|
;;;
|
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
|
;;; your option) any later version.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
|
;;;
|
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
2022-09-07 15:05:00 +00:00
|
|
|
|
;; This code defines development teams and team members, as well as their
|
|
|
|
|
;; scope.
|
2022-07-03 12:11:29 +00:00
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
|
|
(use-modules (srfi srfi-1)
|
|
|
|
|
(srfi srfi-9)
|
2022-09-07 15:05:00 +00:00
|
|
|
|
(srfi srfi-26)
|
2022-07-03 12:11:29 +00:00
|
|
|
|
(ice-9 format)
|
2022-09-09 15:27:23 +00:00
|
|
|
|
(ice-9 regex)
|
2022-07-03 12:11:29 +00:00
|
|
|
|
(ice-9 match)
|
2022-12-19 21:17:10 +00:00
|
|
|
|
(ice-9 rdelim)
|
2022-09-07 15:05:00 +00:00
|
|
|
|
(guix ui)
|
|
|
|
|
(git))
|
2022-07-03 12:11:29 +00:00
|
|
|
|
|
etc: teams: Sort and improve display of regular expression in 'scope' field.
Fixes <https://issues.guix.gnu.org/65208>.
* etc/teams.scm.in (<regexp*>): New record type.
(make-regexp*, regexp-exec*): New procedures.
(python, haskell, julia, java, emacs, rust, core, translations, installer,
home): Use it.
(find-team-by-scope): Use it.
(list-teams): Use it.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Reported-by: Greg Hogan <code@greghogan.com>
2022-11-17 20:28:20 +00:00
|
|
|
|
(define-record-type <regexp*>
|
|
|
|
|
(%make-regexp* pat flag rx)
|
|
|
|
|
regexp*?
|
|
|
|
|
(pat regexp*-pattern)
|
|
|
|
|
(flag regexp*-flag)
|
|
|
|
|
(rx regexp*-rx))
|
|
|
|
|
|
|
|
|
|
;;; Work around regexp implementation.
|
|
|
|
|
;;; This record allows to track the regexp pattern and then display it.
|
|
|
|
|
(define* (make-regexp* pat #:optional (flag regexp/extended))
|
|
|
|
|
"Alternative to `make-regexp' producing annotated <regexp*> objects."
|
|
|
|
|
(%make-regexp* pat flag (make-regexp pat flag)))
|
|
|
|
|
|
2023-08-30 19:37:42 +00:00
|
|
|
|
(define (regexp*-exec rx* str)
|
etc: teams: Sort and improve display of regular expression in 'scope' field.
Fixes <https://issues.guix.gnu.org/65208>.
* etc/teams.scm.in (<regexp*>): New record type.
(make-regexp*, regexp-exec*): New procedures.
(python, haskell, julia, java, emacs, rust, core, translations, installer,
home): Use it.
(find-team-by-scope): Use it.
(list-teams): Use it.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Reported-by: Greg Hogan <code@greghogan.com>
2022-11-17 20:28:20 +00:00
|
|
|
|
"Execute the RX* regexp, a <regexp*> object."
|
|
|
|
|
(regexp-exec (regexp*-rx rx*) str))
|
|
|
|
|
|
2022-07-03 12:11:29 +00:00
|
|
|
|
(define-record-type <team>
|
2022-09-07 15:05:00 +00:00
|
|
|
|
(make-team id name description members scope)
|
2022-07-03 12:11:29 +00:00
|
|
|
|
team?
|
|
|
|
|
(id team-id)
|
|
|
|
|
(name team-name)
|
|
|
|
|
(description team-description)
|
2022-09-07 15:05:00 +00:00
|
|
|
|
(members team-members set-team-members!)
|
|
|
|
|
(scope team-scope))
|
2022-07-03 12:11:29 +00:00
|
|
|
|
|
|
|
|
|
(define-record-type <person>
|
|
|
|
|
(make-person name email)
|
|
|
|
|
person?
|
|
|
|
|
(name person-name)
|
|
|
|
|
(email person-email))
|
|
|
|
|
|
|
|
|
|
(define* (person name #:optional email)
|
|
|
|
|
(make-person name email))
|
|
|
|
|
|
2022-09-07 15:05:00 +00:00
|
|
|
|
(define* (team id #:key name description (members '())
|
|
|
|
|
(scope '()))
|
2022-07-03 12:11:29 +00:00
|
|
|
|
(make-team id
|
|
|
|
|
(or name (symbol->string id))
|
|
|
|
|
description
|
2022-09-07 15:05:00 +00:00
|
|
|
|
members
|
|
|
|
|
scope))
|
2022-07-03 12:11:29 +00:00
|
|
|
|
|
|
|
|
|
(define %teams
|
|
|
|
|
(make-hash-table))
|
|
|
|
|
|
|
|
|
|
(define-syntax define-team
|
|
|
|
|
(lambda (x)
|
|
|
|
|
(syntax-case x ()
|
|
|
|
|
((_ id value)
|
|
|
|
|
#`(begin
|
|
|
|
|
(define-public id value)
|
|
|
|
|
(hash-set! %teams 'id id))))))
|
|
|
|
|
|
|
|
|
|
(define-syntax-rule (define-member person teams ...)
|
|
|
|
|
(let ((p person))
|
|
|
|
|
(for-each (lambda (team-id)
|
|
|
|
|
(let ((team
|
|
|
|
|
(hash-ref %teams team-id
|
|
|
|
|
(lambda ()
|
|
|
|
|
(error (format #false
|
|
|
|
|
"Unknown team ~a for ~a~%"
|
|
|
|
|
team-id p))))))
|
|
|
|
|
(set-team-members!
|
|
|
|
|
team (cons p (team-members team)))))
|
|
|
|
|
(quote (teams ...)))))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define-team python
|
|
|
|
|
(team 'python
|
|
|
|
|
#:name "Python team"
|
|
|
|
|
#:description
|
2022-09-25 10:41:33 +00:00
|
|
|
|
"Python, Python packages, the \"pypi\" importer, and the python-build-system."
|
|
|
|
|
#:scope
|
|
|
|
|
(list "gnu/packages/django.scm"
|
|
|
|
|
"gnu/packages/jupyter.scm"
|
|
|
|
|
;; Match haskell.scm and haskell-*.scm.
|
etc: teams: Sort and improve display of regular expression in 'scope' field.
Fixes <https://issues.guix.gnu.org/65208>.
* etc/teams.scm.in (<regexp*>): New record type.
(make-regexp*, regexp-exec*): New procedures.
(python, haskell, julia, java, emacs, rust, core, translations, installer,
home): Use it.
(find-team-by-scope): Use it.
(list-teams): Use it.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Reported-by: Greg Hogan <code@greghogan.com>
2022-11-17 20:28:20 +00:00
|
|
|
|
(make-regexp* "^gnu/packages/python(-.+|)\\.scm$")
|
2022-09-25 10:41:33 +00:00
|
|
|
|
"gnu/packages/sphinx.scm"
|
|
|
|
|
"gnu/packages/tryton.scm"
|
2022-11-05 01:34:49 +00:00
|
|
|
|
"guix/build/pyproject-build-system.scm"
|
|
|
|
|
"guix/build-system/pyproject.scm"
|
2022-09-25 10:41:33 +00:00
|
|
|
|
"guix/build/python-build-system.scm"
|
|
|
|
|
"guix/build-system/python.scm"
|
|
|
|
|
"guix/import/pypi.scm"
|
|
|
|
|
"guix/scripts/import/pypi.scm"
|
|
|
|
|
"tests/pypi.scm")))
|
2022-07-03 12:11:29 +00:00
|
|
|
|
|
|
|
|
|
(define-team haskell
|
|
|
|
|
(team 'haskell
|
|
|
|
|
#:name "Haskell team"
|
|
|
|
|
#:description
|
|
|
|
|
"GHC, Hugs, Haskell packages, the \"hackage\" and \"stackage\" importers, and
|
2022-09-25 10:32:40 +00:00
|
|
|
|
the haskell-build-system."
|
|
|
|
|
#:scope
|
|
|
|
|
(list "gnu/packages/dhall.scm"
|
|
|
|
|
;; Match haskell.scm and haskell-*.scm.
|
etc: teams: Sort and improve display of regular expression in 'scope' field.
Fixes <https://issues.guix.gnu.org/65208>.
* etc/teams.scm.in (<regexp*>): New record type.
(make-regexp*, regexp-exec*): New procedures.
(python, haskell, julia, java, emacs, rust, core, translations, installer,
home): Use it.
(find-team-by-scope): Use it.
(list-teams): Use it.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Reported-by: Greg Hogan <code@greghogan.com>
2022-11-17 20:28:20 +00:00
|
|
|
|
(make-regexp* "^gnu/packages/haskell(-.+|)\\.scm$")
|
2022-09-25 10:32:40 +00:00
|
|
|
|
"gnu/packages/purescript.scm"
|
|
|
|
|
"guix/build/haskell-build-system.scm"
|
|
|
|
|
"guix/build-system/haskell.scm"
|
|
|
|
|
"guix/import/cabal.scm"
|
|
|
|
|
"guix/import/hackage.scm"
|
|
|
|
|
"guix/import/stackage.scm"
|
|
|
|
|
"guix/scripts/import/hackage.scm")))
|
2022-07-03 12:11:29 +00:00
|
|
|
|
|
2023-07-15 03:11:49 +00:00
|
|
|
|
(define-team qt
|
|
|
|
|
(team 'qt
|
|
|
|
|
#:name "Qt team"
|
|
|
|
|
#:description
|
|
|
|
|
"The Qt toolkit/library and the qt-build-system,
|
|
|
|
|
as well as some packages using Qt."
|
|
|
|
|
#:scope (list "gnu/packages/qt.scm"
|
|
|
|
|
"guix/build-system/qt.scm"
|
|
|
|
|
"guix/build/qt-build-system.scm"
|
|
|
|
|
"guix/build/qt-utils.scm")))
|
|
|
|
|
|
2022-07-03 12:11:29 +00:00
|
|
|
|
(define-team r
|
|
|
|
|
(team 'r
|
|
|
|
|
#:name "R team"
|
|
|
|
|
#:description
|
|
|
|
|
"The R language, CRAN and Bioconductor repositories, the \"cran\" importer,
|
2022-09-27 18:00:27 +00:00
|
|
|
|
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")))
|
2022-07-03 12:11:29 +00:00
|
|
|
|
|
2024-02-13 19:03:28 +00:00
|
|
|
|
(define-team sugar
|
|
|
|
|
(team 'sugar
|
|
|
|
|
#:name "Sugar team"
|
|
|
|
|
#:description
|
|
|
|
|
"Everything related to the Sugar Desktop and learning environment."
|
|
|
|
|
#:scope (list "gnu/packages/sugar.scm")))
|
|
|
|
|
|
2023-07-15 03:04:52 +00:00
|
|
|
|
(define-team telephony
|
|
|
|
|
(team 'telephony
|
|
|
|
|
#:name "Telephony team"
|
|
|
|
|
#:description
|
|
|
|
|
"Telephony packages and services such as Jami, Linphone, etc."
|
|
|
|
|
#:scope (list "gnu/build/jami-service.scm"
|
|
|
|
|
"gnu/packages/jami.scm"
|
|
|
|
|
"gnu/packages/linphone.scm"
|
|
|
|
|
"gnu/packages/telephony.scm"
|
|
|
|
|
"gnu/services/telephony.scm"
|
|
|
|
|
"gnu/tests/data/jami-dummy-account.dat"
|
|
|
|
|
"gnu/tests/telephony.scm"
|
|
|
|
|
"tests/services/telephony.scm")))
|
|
|
|
|
|
2023-02-13 09:17:28 +00:00
|
|
|
|
(define-team tex
|
|
|
|
|
(team 'tex
|
|
|
|
|
#:name "TeX team"
|
|
|
|
|
#:description
|
|
|
|
|
"TeX, LaTeX, XeLaTeX, LuaTeX, TeXLive, the texlive-build-system, and
|
|
|
|
|
the \"texlive\" importer."
|
|
|
|
|
#:scope (list "gnu/packages/tex.scm"
|
2023-08-27 10:26:49 +00:00
|
|
|
|
"gnu/packages/texlive.scm"
|
2023-02-13 09:17:28 +00:00
|
|
|
|
"guix/build/texlive-build-system.scm"
|
|
|
|
|
"guix/build-system/texlive.scm"
|
|
|
|
|
"guix/import/texlive.scm"
|
|
|
|
|
"guix/scripts/import/texlive.scm"
|
|
|
|
|
"tests/texlive.scm")))
|
|
|
|
|
|
2022-07-03 12:11:29 +00:00
|
|
|
|
(define-team julia
|
|
|
|
|
(team 'julia
|
|
|
|
|
#:name "Julia team"
|
|
|
|
|
#:description
|
2022-09-27 18:00:27 +00:00
|
|
|
|
"The Julia language, Julia packages, and the julia-build-system."
|
etc: teams: Sort and improve display of regular expression in 'scope' field.
Fixes <https://issues.guix.gnu.org/65208>.
* etc/teams.scm.in (<regexp*>): New record type.
(make-regexp*, regexp-exec*): New procedures.
(python, haskell, julia, java, emacs, rust, core, translations, installer,
home): Use it.
(find-team-by-scope): Use it.
(list-teams): Use it.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Reported-by: Greg Hogan <code@greghogan.com>
2022-11-17 20:28:20 +00:00
|
|
|
|
#:scope (list (make-regexp* "^gnu/packages/julia(-.+|)\\.scm$")
|
2022-09-27 18:00:27 +00:00
|
|
|
|
"guix/build/julia-build-system.scm"
|
|
|
|
|
"guix/build-system/julia.scm")))
|
2022-07-03 12:11:29 +00:00
|
|
|
|
|
|
|
|
|
(define-team ocaml
|
|
|
|
|
(team 'ocaml
|
|
|
|
|
#:name "OCaml and Dune team"
|
|
|
|
|
#:description
|
|
|
|
|
"The OCaml language, the Dune build system, OCaml packages, the \"opam\"
|
2022-09-25 12:31:30 +00:00
|
|
|
|
importer, and the ocaml-build-system."
|
|
|
|
|
#:scope
|
|
|
|
|
(list "gnu/packages/ocaml.scm"
|
|
|
|
|
"gnu/packages/coq.scm"
|
|
|
|
|
"guix/build/ocaml-build-system.scm"
|
|
|
|
|
"guix/build/dune-build-system.scm"
|
|
|
|
|
"guix/build-system/ocaml.scm"
|
|
|
|
|
"guix/build-system/dune.scm"
|
|
|
|
|
"guix/import/opam.scm"
|
|
|
|
|
"guix/scripts/import/opam.scm"
|
|
|
|
|
"tests/opam.scm")))
|
2022-07-03 12:11:29 +00:00
|
|
|
|
|
|
|
|
|
(define-team java
|
|
|
|
|
(team 'java
|
|
|
|
|
#:name "Java and Maven team"
|
|
|
|
|
#:description
|
|
|
|
|
"The JDK and JRE, the Maven build system, Java packages, the ant-build-system,
|
2022-09-25 12:35:39 +00:00
|
|
|
|
and the maven-build-system."
|
|
|
|
|
#:scope
|
|
|
|
|
(list ;; Match java.scm and java-*.scm.
|
etc: teams: Sort and improve display of regular expression in 'scope' field.
Fixes <https://issues.guix.gnu.org/65208>.
* etc/teams.scm.in (<regexp*>): New record type.
(make-regexp*, regexp-exec*): New procedures.
(python, haskell, julia, java, emacs, rust, core, translations, installer,
home): Use it.
(find-team-by-scope): Use it.
(list-teams): Use it.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Reported-by: Greg Hogan <code@greghogan.com>
2022-11-17 20:28:20 +00:00
|
|
|
|
(make-regexp* "^gnu/packages/java(-.+|)\\.scm$")
|
2022-09-25 12:35:39 +00:00
|
|
|
|
;; Match maven.scm and maven-*.scm
|
etc: teams: Sort and improve display of regular expression in 'scope' field.
Fixes <https://issues.guix.gnu.org/65208>.
* etc/teams.scm.in (<regexp*>): New record type.
(make-regexp*, regexp-exec*): New procedures.
(python, haskell, julia, java, emacs, rust, core, translations, installer,
home): Use it.
(find-team-by-scope): Use it.
(list-teams): Use it.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Reported-by: Greg Hogan <code@greghogan.com>
2022-11-17 20:28:20 +00:00
|
|
|
|
(make-regexp* "^gnu/packages/maven(-.+|)\\.scm$")
|
2022-09-25 12:35:39 +00:00
|
|
|
|
"guix/build/ant-build-system.scm"
|
|
|
|
|
"guix/build/java-utils.scm"
|
|
|
|
|
"guix/build/maven-build-system.scm"
|
|
|
|
|
;; The maven directory
|
etc: teams: Sort and improve display of regular expression in 'scope' field.
Fixes <https://issues.guix.gnu.org/65208>.
* etc/teams.scm.in (<regexp*>): New record type.
(make-regexp*, regexp-exec*): New procedures.
(python, haskell, julia, java, emacs, rust, core, translations, installer,
home): Use it.
(find-team-by-scope): Use it.
(list-teams): Use it.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Reported-by: Greg Hogan <code@greghogan.com>
2022-11-17 20:28:20 +00:00
|
|
|
|
(make-regexp* "^guix/build/maven/")
|
2022-09-25 12:35:39 +00:00
|
|
|
|
"guix/build-system/ant.scm"
|
|
|
|
|
"guix/build-system/maven.scm")))
|
2022-07-03 12:11:29 +00:00
|
|
|
|
|
2022-07-03 13:56:54 +00:00
|
|
|
|
(define-team science
|
|
|
|
|
(team 'science
|
2022-12-07 23:56:39 +00:00
|
|
|
|
#:name "Science team"
|
|
|
|
|
#:description "The main science disciplines and fields related
|
|
|
|
|
packages (e.g. Astronomy, Chemistry, Math, Physics etc.)"
|
|
|
|
|
#:scope (list "gnu/packages/algebra.scm"
|
|
|
|
|
"gnu/packages/astronomy.scm"
|
|
|
|
|
"gnu/packages/geo.scm"
|
2023-04-27 15:07:49 +00:00
|
|
|
|
"gnu/packages/chemistry.scm"
|
2022-12-07 23:56:39 +00:00
|
|
|
|
"gnu/packages/maths.scm")))
|
2022-07-03 12:11:29 +00:00
|
|
|
|
|
|
|
|
|
(define-team emacs
|
|
|
|
|
(team 'emacs
|
2022-09-25 18:21:36 +00:00
|
|
|
|
#:name "Emacs team"
|
|
|
|
|
#:description "The extensible, customizable text editor and its
|
|
|
|
|
ecosystem."
|
2023-08-28 05:09:05 +00:00
|
|
|
|
#:scope (list "gnu/packages/aux-files/emacs/guix-emacs.el"
|
etc: teams: Sort and improve display of regular expression in 'scope' field.
Fixes <https://issues.guix.gnu.org/65208>.
* etc/teams.scm.in (<regexp*>): New record type.
(make-regexp*, regexp-exec*): New procedures.
(python, haskell, julia, java, emacs, rust, core, translations, installer,
home): Use it.
(find-team-by-scope): Use it.
(list-teams): Use it.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Reported-by: Greg Hogan <code@greghogan.com>
2022-11-17 20:28:20 +00:00
|
|
|
|
(make-regexp* "^gnu/packages/emacs(-.+|)\\.scm$")
|
2023-09-01 05:57:05 +00:00
|
|
|
|
"gnu/packages/tree-sitter.scm"
|
2022-09-25 18:21:36 +00:00
|
|
|
|
"guix/build/emacs-build-system.scm"
|
|
|
|
|
"guix/build/emacs-utils.scm"
|
2022-09-27 18:00:27 +00:00
|
|
|
|
"guix/build-system/emacs.scm"
|
|
|
|
|
"guix/import/elpa.scm"
|
|
|
|
|
"guix/scripts/import/elpa.scm"
|
|
|
|
|
"tests/elpa.scm")))
|
2022-07-03 12:11:29 +00:00
|
|
|
|
|
|
|
|
|
(define-team lisp
|
|
|
|
|
(team 'lisp
|
2022-09-26 09:10:24 +00:00
|
|
|
|
#:name "Lisp team"
|
|
|
|
|
#:description
|
|
|
|
|
"Common Lisp and similar languages, Common Lisp packages and the
|
|
|
|
|
asdf-build-system."
|
etc: teams: Sort and improve display of regular expression in 'scope' field.
Fixes <https://issues.guix.gnu.org/65208>.
* etc/teams.scm.in (<regexp*>): New record type.
(make-regexp*, regexp-exec*): New procedures.
(python, haskell, julia, java, emacs, rust, core, translations, installer,
home): Use it.
(find-team-by-scope): Use it.
(list-teams): Use it.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Reported-by: Greg Hogan <code@greghogan.com>
2022-11-17 20:28:20 +00:00
|
|
|
|
#:scope (list (make-regexp* "^gnu/packages/lisp(-.+|)\\.scm$")
|
2022-09-26 09:10:24 +00:00
|
|
|
|
"guix/build/asdf-build-system.scm"
|
|
|
|
|
"guix/build/lisp-utils.scm"
|
|
|
|
|
"guix/build-system/asdf.scm")))
|
2022-07-03 12:11:29 +00:00
|
|
|
|
|
|
|
|
|
(define-team ruby
|
|
|
|
|
(team 'ruby
|
2022-09-27 18:00:27 +00:00
|
|
|
|
#: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")))
|
2022-07-03 12:11:29 +00:00
|
|
|
|
|
|
|
|
|
(define-team go
|
|
|
|
|
(team 'go
|
2022-09-27 18:00:27 +00:00
|
|
|
|
#:name "Go team"
|
2024-01-28 23:40:23 +00:00
|
|
|
|
#:scope (list "gnu/packages/configuration-management.scm"
|
2024-02-13 14:38:31 +00:00
|
|
|
|
"gnu/packages/golang(-.+|)\\.scm$"
|
2024-01-28 23:40:23 +00:00
|
|
|
|
"gnu/packages/syncthing.scm"
|
|
|
|
|
"gnu/packages/terraform.scm"
|
2022-09-27 18:00:27 +00:00
|
|
|
|
"guix/build-system/go.scm"
|
2024-01-28 23:40:23 +00:00
|
|
|
|
"guix/build/go-build-system.scm"
|
2022-09-27 18:00:27 +00:00
|
|
|
|
"guix/import/go.scm"
|
|
|
|
|
"guix/scripts/import/go.scm"
|
|
|
|
|
"tests/go.scm")))
|
2022-07-03 12:11:29 +00:00
|
|
|
|
|
2023-01-18 19:17:36 +00:00
|
|
|
|
(define-team bootstrap
|
|
|
|
|
(team 'bootstrap
|
|
|
|
|
#:name "Bootstrap"
|
2023-12-18 17:53:50 +00:00
|
|
|
|
#:scope (list "gnu/packages/commencement.scm"
|
|
|
|
|
"gnu/packages/mes.scm")))
|
2023-01-18 19:17:36 +00:00
|
|
|
|
|
|
|
|
|
(define-team embedded
|
|
|
|
|
(team 'embedded
|
|
|
|
|
#:name "Embedded"
|
|
|
|
|
#:scope (list "gnu/packages/bootloaders.scm"
|
|
|
|
|
"gnu/packages/firmware.scm")))
|
2022-07-03 12:11:29 +00:00
|
|
|
|
|
|
|
|
|
(define-team rust
|
|
|
|
|
(team 'rust
|
2022-09-27 18:00:27 +00:00
|
|
|
|
#:name "Rust"
|
etc: teams: Sort and improve display of regular expression in 'scope' field.
Fixes <https://issues.guix.gnu.org/65208>.
* etc/teams.scm.in (<regexp*>): New record type.
(make-regexp*, regexp-exec*): New procedures.
(python, haskell, julia, java, emacs, rust, core, translations, installer,
home): Use it.
(find-team-by-scope): Use it.
(list-teams): Use it.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Reported-by: Greg Hogan <code@greghogan.com>
2022-11-17 20:28:20 +00:00
|
|
|
|
#:scope (list (make-regexp* "^gnu/packages/(crates|rust)(-.+|)\\.scm$")
|
2023-02-26 08:31:48 +00:00
|
|
|
|
"gnu/packages/sequoia.scm"
|
2022-09-27 18:00:27 +00:00
|
|
|
|
"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")))
|
2022-07-03 12:11:29 +00:00
|
|
|
|
|
|
|
|
|
(define-team kernel
|
|
|
|
|
(team 'kernel
|
2022-09-27 18:00:27 +00:00
|
|
|
|
#: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")))
|
2022-07-03 12:11:29 +00:00
|
|
|
|
|
|
|
|
|
(define-team core
|
|
|
|
|
(team 'core
|
2022-09-07 15:09:52 +00:00
|
|
|
|
#:name "Core / Tools / Internals"
|
|
|
|
|
#:scope
|
|
|
|
|
(list "guix/avahi.scm"
|
|
|
|
|
"guix/base16.scm"
|
|
|
|
|
"guix/base32.scm"
|
|
|
|
|
"guix/base64.scm"
|
|
|
|
|
"guix/bzr-download.scm"
|
|
|
|
|
"guix/cache.scm"
|
|
|
|
|
"guix/channels.scm"
|
|
|
|
|
"guix/ci.scm"
|
|
|
|
|
"guix/colors.scm"
|
|
|
|
|
"guix/combinators.scm"
|
|
|
|
|
"guix/config.scm"
|
|
|
|
|
"guix/cpio.scm"
|
|
|
|
|
"guix/cpu.scm"
|
|
|
|
|
"guix/cve.scm"
|
|
|
|
|
"guix/cvs-download.scm"
|
|
|
|
|
"guix/deprecation.scm"
|
|
|
|
|
"guix/derivations.scm"
|
|
|
|
|
"guix/describe.scm"
|
|
|
|
|
"guix/diagnostics.scm"
|
|
|
|
|
"guix/discovery.scm"
|
|
|
|
|
"guix/docker.scm"
|
|
|
|
|
"guix/download.scm"
|
|
|
|
|
"guix/elf.scm"
|
|
|
|
|
"guix/ftp-client.scm"
|
|
|
|
|
"guix/gexp.scm"
|
|
|
|
|
"guix/git-authenticate.scm"
|
|
|
|
|
"guix/git-download.scm"
|
|
|
|
|
"guix/git.scm"
|
|
|
|
|
"guix/glob.scm"
|
|
|
|
|
"guix/gnu-maintenance.scm"
|
|
|
|
|
"guix/gnupg.scm"
|
|
|
|
|
"guix/grafts.scm"
|
|
|
|
|
"guix/graph.scm"
|
|
|
|
|
"guix/hash.scm"
|
|
|
|
|
"guix/hg-download.scm"
|
|
|
|
|
"guix/http-client.scm"
|
|
|
|
|
"guix/i18n.scm"
|
|
|
|
|
"guix/inferior.scm"
|
|
|
|
|
"guix/ipfs.scm"
|
|
|
|
|
"guix/least-authority.scm"
|
|
|
|
|
"guix/licenses.scm"
|
|
|
|
|
"guix/lint.scm"
|
|
|
|
|
"guix/man-db.scm"
|
|
|
|
|
"guix/memoization.scm"
|
|
|
|
|
"guix/modules.scm"
|
|
|
|
|
"guix/monad-repl.scm"
|
|
|
|
|
"guix/monads.scm"
|
|
|
|
|
"guix/narinfo.scm"
|
|
|
|
|
"guix/nar.scm"
|
|
|
|
|
"guix/openpgp.scm"
|
|
|
|
|
"guix/packages.scm"
|
|
|
|
|
"guix/pki.scm"
|
|
|
|
|
"guix/platform.scm"
|
|
|
|
|
"guix/profiles.scm"
|
|
|
|
|
"guix/profiling.scm"
|
|
|
|
|
"guix/progress.scm"
|
|
|
|
|
"guix/quirks.scm"
|
|
|
|
|
"guix/read-print.scm"
|
|
|
|
|
"guix/records.scm"
|
|
|
|
|
"guix/remote.scm"
|
|
|
|
|
"guix/repl.scm"
|
|
|
|
|
"guix/search-paths.scm"
|
|
|
|
|
"guix/self.scm"
|
|
|
|
|
"guix/serialization.scm"
|
|
|
|
|
"guix/sets.scm"
|
|
|
|
|
"guix/ssh.scm"
|
|
|
|
|
"guix/status.scm"
|
|
|
|
|
"guix/store.scm"
|
|
|
|
|
"guix/substitutes.scm"
|
|
|
|
|
"guix/svn-download.scm"
|
|
|
|
|
"guix/swh.scm"
|
|
|
|
|
"guix/tests.scm"
|
|
|
|
|
"guix/transformations.scm"
|
|
|
|
|
"guix/ui.scm"
|
|
|
|
|
"guix/upstream.scm"
|
|
|
|
|
"guix/utils.scm"
|
|
|
|
|
"guix/workers.scm"
|
etc: teams: Sort and improve display of regular expression in 'scope' field.
Fixes <https://issues.guix.gnu.org/65208>.
* etc/teams.scm.in (<regexp*>): New record type.
(make-regexp*, regexp-exec*): New procedures.
(python, haskell, julia, java, emacs, rust, core, translations, installer,
home): Use it.
(find-team-by-scope): Use it.
(list-teams): Use it.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Reported-by: Greg Hogan <code@greghogan.com>
2022-11-17 20:28:20 +00:00
|
|
|
|
(make-regexp* "^guix/platforms/")
|
|
|
|
|
(make-regexp* "^guix/scripts/")
|
|
|
|
|
(make-regexp* "^guix/store/"))))
|
2022-07-03 12:11:29 +00:00
|
|
|
|
|
2023-12-18 17:53:50 +00:00
|
|
|
|
(define-team core-packages
|
|
|
|
|
(team 'core-packages
|
|
|
|
|
#:name "Core packages"
|
|
|
|
|
#:description "Core packages: the GNU tool chain, Guile, Coreutils, etc."
|
|
|
|
|
#:scope (list "gnu/packages/base.scm"
|
|
|
|
|
"gnu/packages/bootstrap.scm"
|
|
|
|
|
"gnu/packages/commencement.scm"
|
|
|
|
|
"gnu/packages/cross-base.scm"
|
|
|
|
|
"gnu/packages/gcc.scm"
|
|
|
|
|
"gnu/packages/guile.scm"
|
|
|
|
|
"gnu/packages/make-bootstrap.scm"
|
|
|
|
|
"guix/build/gnu-build-system.scm"
|
|
|
|
|
"guix/build/utils.scm"
|
|
|
|
|
"guix/build-system/gnu.scm")))
|
|
|
|
|
|
2022-07-03 12:11:29 +00:00
|
|
|
|
(define-team games
|
|
|
|
|
(team 'games
|
2022-09-25 18:52:35 +00:00
|
|
|
|
#:name "Games and Toys"
|
|
|
|
|
#:description "Packaging programs for amusement."
|
|
|
|
|
#:scope (list "gnu/packages/games.scm"
|
|
|
|
|
"gnu/packages/game-development.scm"
|
|
|
|
|
"gnu/packages/minetest.scm"
|
|
|
|
|
"gnu/packages/esolangs.scm" ; granted, rather niche
|
|
|
|
|
"gnu/packages/motti.scm"
|
|
|
|
|
"guix/build/minetest-build-system.scm")))
|
2022-07-03 12:11:29 +00:00
|
|
|
|
|
2022-12-09 06:51:44 +00:00
|
|
|
|
(define-team localization
|
|
|
|
|
(team 'localization
|
|
|
|
|
#:name "Localization (l10n) team"
|
|
|
|
|
#:description
|
|
|
|
|
"Localization of your system to specific languages."
|
|
|
|
|
#:scope (list "gnu/packages/anthy.scm"
|
|
|
|
|
"gnu/packages/fcitx5.scm"
|
|
|
|
|
"gnu/packages/fcitx.scm"
|
|
|
|
|
"gnu/packages/fonts.scm"
|
|
|
|
|
"gnu/packages/ibus.scm")))
|
|
|
|
|
|
2022-07-03 12:11:29 +00:00
|
|
|
|
(define-team translations
|
|
|
|
|
(team 'translations
|
2022-09-27 18:00:27 +00:00
|
|
|
|
#:name "Translations"
|
2022-09-29 03:20:58 +00:00
|
|
|
|
#:scope (list "etc/news.scm"
|
etc: teams: Sort and improve display of regular expression in 'scope' field.
Fixes <https://issues.guix.gnu.org/65208>.
* etc/teams.scm.in (<regexp*>): New record type.
(make-regexp*, regexp-exec*): New procedures.
(python, haskell, julia, java, emacs, rust, core, translations, installer,
home): Use it.
(find-team-by-scope): Use it.
(list-teams): Use it.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Reported-by: Greg Hogan <code@greghogan.com>
2022-11-17 20:28:20 +00:00
|
|
|
|
(make-regexp* "^po/"))))
|
2022-07-03 12:11:29 +00:00
|
|
|
|
|
|
|
|
|
(define-team installer
|
|
|
|
|
(team 'installer
|
2022-09-07 15:10:16 +00:00
|
|
|
|
#:name "Installer script and system installer"
|
etc: teams: Sort and improve display of regular expression in 'scope' field.
Fixes <https://issues.guix.gnu.org/65208>.
* etc/teams.scm.in (<regexp*>): New record type.
(make-regexp*, regexp-exec*): New procedures.
(python, haskell, julia, java, emacs, rust, core, translations, installer,
home): Use it.
(find-team-by-scope): Use it.
(list-teams): Use it.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Reported-by: Greg Hogan <code@greghogan.com>
2022-11-17 20:28:20 +00:00
|
|
|
|
#:scope (list (make-regexp* "^gnu/installer(\\.scm$|/)"))))
|
2022-07-03 12:11:29 +00:00
|
|
|
|
|
|
|
|
|
(define-team home
|
|
|
|
|
(team 'home
|
2022-09-27 18:00:27 +00:00
|
|
|
|
#:name "Team for \"Guix Home\""
|
etc: teams: Sort and improve display of regular expression in 'scope' field.
Fixes <https://issues.guix.gnu.org/65208>.
* etc/teams.scm.in (<regexp*>): New record type.
(make-regexp*, regexp-exec*): New procedures.
(python, haskell, julia, java, emacs, rust, core, translations, installer,
home): Use it.
(find-team-by-scope): Use it.
(list-teams): Use it.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Reported-by: Greg Hogan <code@greghogan.com>
2022-11-17 20:28:20 +00:00
|
|
|
|
#:scope (list (make-regexp* "^(gnu|guix/scripts)/home(\\.scm$|/)")
|
2022-09-27 18:00:27 +00:00
|
|
|
|
"tests/guix-home.sh"
|
|
|
|
|
"tests/home-import.scm"
|
|
|
|
|
"tests/home-services.scm")))
|
2022-07-03 12:11:29 +00:00
|
|
|
|
|
|
|
|
|
(define-team mentors
|
|
|
|
|
(team 'mentors
|
|
|
|
|
#:name "Mentors"
|
|
|
|
|
#:description
|
|
|
|
|
"A group of mentors who chaperone contributions by newcomers."))
|
|
|
|
|
|
2022-07-13 18:03:35 +00:00
|
|
|
|
(define-team mozilla
|
|
|
|
|
(team 'mozilla
|
|
|
|
|
#:name "Mozilla"
|
2022-08-05 14:41:03 +00:00
|
|
|
|
#:description
|
2022-07-13 18:03:35 +00:00
|
|
|
|
"Taking care about Icecat and Icedove, built from Mozilla Firefox
|
2022-09-27 18:00:27 +00:00
|
|
|
|
and Thunderbird."
|
2023-12-20 16:34:12 +00:00
|
|
|
|
#:scope (list "gnu/build/icecat-extension.scm"
|
|
|
|
|
"gnu/packages/browser-extensions.scm"
|
2024-02-05 17:44:21 +00:00
|
|
|
|
"gnu/packages/gnuzilla.scm"
|
|
|
|
|
"gnu/packages/tor-browsers.scm")))
|
2022-07-13 18:03:35 +00:00
|
|
|
|
|
2022-08-27 18:55:43 +00:00
|
|
|
|
(define-team racket
|
|
|
|
|
(team 'racket
|
|
|
|
|
#:name "Racket team"
|
|
|
|
|
#:description
|
|
|
|
|
"The Racket language and Racket-based languages, Racket packages,
|
|
|
|
|
Racket's variant of Chez Scheme, and development of a Racket build system and
|
2022-09-27 18:00:27 +00:00
|
|
|
|
importer."
|
2022-11-18 00:45:33 +00:00
|
|
|
|
#:scope (list "gnu/packages/chez.scm"
|
|
|
|
|
"gnu/packages/racket.scm")))
|
2022-08-27 18:55:43 +00:00
|
|
|
|
|
2023-01-04 05:36:58 +00:00
|
|
|
|
(define-team reproduciblebuilds
|
|
|
|
|
(team 'reproduciblebuilds
|
|
|
|
|
#:name "Reproducible Builds team"
|
|
|
|
|
#:description
|
|
|
|
|
"Reproducible Builds tooling and issues that affect any guix packages."
|
|
|
|
|
#:scope (list "gnu/packages/diffoscope.scm")))
|
|
|
|
|
|
2023-03-17 17:37:11 +00:00
|
|
|
|
(define-team gnome
|
|
|
|
|
(team 'gnome
|
|
|
|
|
#:name "Gnome team"
|
|
|
|
|
#:description
|
|
|
|
|
"The Gnome desktop environment, along with core technologies such as
|
|
|
|
|
GLib/GIO, GTK, GStreamer and Webkit."
|
|
|
|
|
#:scope (list "gnu/packages/glib.scm"
|
|
|
|
|
"gnu/packages/gstreamer.scm"
|
|
|
|
|
"gnu/packages/gtk.scm"
|
|
|
|
|
"gnu/packages/gnome.scm"
|
|
|
|
|
"gnu/packages/gnome-xyz.scm"
|
|
|
|
|
"gnu/packages/webkit.scm"
|
|
|
|
|
"guix/build/glib-or-gtk-build-system.scm"
|
|
|
|
|
"guix/build/meson-build-system.scm")))
|
|
|
|
|
|
2023-03-02 06:55:30 +00:00
|
|
|
|
(define-team xfce
|
|
|
|
|
(team 'xfce
|
|
|
|
|
#:name "Xfce team"
|
|
|
|
|
#:description "Xfce desktop environment."
|
|
|
|
|
#:scope (list "gnu/packages/xfce.scm")))
|
|
|
|
|
|
|
|
|
|
(define-team lxqt
|
|
|
|
|
(team 'lxqt
|
|
|
|
|
#:name "LXQt team"
|
|
|
|
|
#:description "LXQt desktop environment."
|
2024-03-08 12:00:25 +00:00
|
|
|
|
#:scope (list "gnu/packages/lxqt.scm")))
|
2023-03-02 06:55:30 +00:00
|
|
|
|
|
2023-10-26 21:37:14 +00:00
|
|
|
|
(define-team audio
|
|
|
|
|
(team 'audio
|
|
|
|
|
#:name "Audio team"
|
|
|
|
|
#:description "Audio related packages."
|
|
|
|
|
#:scope (list "gnu/packages/audio.scm")))
|
|
|
|
|
|
2023-11-11 00:21:15 +00:00
|
|
|
|
(define-team zig
|
|
|
|
|
(team 'zig
|
|
|
|
|
#:name "Zig team"
|
|
|
|
|
#:description "Zig, Zig packages, and the zig-build system"
|
|
|
|
|
#:scope (list "gnu/packages/zig.scm"
|
|
|
|
|
"gnu/packages/zig-xyz.scm"
|
|
|
|
|
"guix/build/zig-build-system.scm"
|
|
|
|
|
"guix/build-system/zig.scm")))
|
|
|
|
|
|
2022-07-03 12:11:29 +00:00
|
|
|
|
|
2022-08-05 14:41:03 +00:00
|
|
|
|
(define-member (person "Eric Bavier"
|
|
|
|
|
"bavier@posteo.net")
|
|
|
|
|
science)
|
|
|
|
|
|
2022-07-07 18:06:49 +00:00
|
|
|
|
(define-member (person "Lars-Dominik Braun"
|
|
|
|
|
"lars@6xq.net")
|
|
|
|
|
python haskell)
|
|
|
|
|
|
2022-07-13 18:06:26 +00:00
|
|
|
|
(define-member (person "Jonathan Brielmaier"
|
|
|
|
|
"jonathan.brielmaier@web.de")
|
|
|
|
|
mozilla)
|
|
|
|
|
|
2022-07-03 12:11:29 +00:00
|
|
|
|
(define-member (person "Ludovic Courtès"
|
|
|
|
|
"ludo@gnu.org")
|
2023-12-18 17:53:50 +00:00
|
|
|
|
core home bootstrap core-packages installer mentors)
|
2022-07-03 12:11:29 +00:00
|
|
|
|
|
2022-07-03 13:56:54 +00:00
|
|
|
|
(define-member (person "Andreas Enge"
|
|
|
|
|
"andreas@enge.fr")
|
2023-08-27 10:26:49 +00:00
|
|
|
|
lxqt science tex)
|
2022-07-03 12:11:29 +00:00
|
|
|
|
|
2024-02-23 18:11:43 +00:00
|
|
|
|
(define-member (person "Tanguy Le Carrour"
|
|
|
|
|
"tanguy@bioneland.org")
|
|
|
|
|
python home)
|
|
|
|
|
|
2022-12-11 00:00:00 +00:00
|
|
|
|
(define-member (person "Tobias Geerinckx-Rice"
|
|
|
|
|
"me@tobias.gr")
|
|
|
|
|
core kernel mentors)
|
|
|
|
|
|
2022-07-08 14:58:04 +00:00
|
|
|
|
(define-member (person "Björn Höfling"
|
|
|
|
|
"bjoern.hoefling@bjoernhoefling.de")
|
|
|
|
|
java)
|
|
|
|
|
|
2022-07-04 02:49:32 +00:00
|
|
|
|
(define-member (person "Leo Famulari"
|
|
|
|
|
"leo@famulari.name")
|
|
|
|
|
kernel)
|
|
|
|
|
|
2022-07-03 19:01:17 +00:00
|
|
|
|
(define-member (person "Efraim Flashner"
|
|
|
|
|
"efraim@flashner.co.il")
|
2024-01-24 08:51:31 +00:00
|
|
|
|
embedded bootstrap julia rust)
|
2022-07-03 19:01:17 +00:00
|
|
|
|
|
2022-07-07 14:34:48 +00:00
|
|
|
|
(define-member (person "jgart"
|
|
|
|
|
"jgart@dismail.de")
|
|
|
|
|
python lisp mentors)
|
|
|
|
|
|
2022-09-09 16:00:12 +00:00
|
|
|
|
(define-member (person "Guillaume Le Vaillant"
|
|
|
|
|
"glv@posteo.net")
|
|
|
|
|
lisp)
|
|
|
|
|
|
2022-07-06 20:12:47 +00:00
|
|
|
|
(define-member (person "Julien Lepiller"
|
|
|
|
|
"julien@lepiller.eu")
|
|
|
|
|
java ocaml translations)
|
|
|
|
|
|
2022-08-27 18:55:44 +00:00
|
|
|
|
(define-member (person "Philip McGrath"
|
|
|
|
|
"philip@philipmcgrath.com")
|
|
|
|
|
racket)
|
|
|
|
|
|
2022-08-05 15:14:59 +00:00
|
|
|
|
(define-member (person "Mathieu Othacehe"
|
|
|
|
|
"othacehe@gnu.org")
|
2022-08-11 12:46:21 +00:00
|
|
|
|
core installer mentors)
|
2022-08-05 15:14:59 +00:00
|
|
|
|
|
2022-07-06 20:51:14 +00:00
|
|
|
|
(define-member (person "Florian Pelz"
|
|
|
|
|
"pelzflorian@pelzflorian.de")
|
|
|
|
|
translations)
|
|
|
|
|
|
2022-07-03 15:10:32 +00:00
|
|
|
|
(define-member (person "Liliana Marie Prikler"
|
|
|
|
|
"liliana.prikler@gmail.com")
|
2023-03-17 17:37:11 +00:00
|
|
|
|
emacs games gnome)
|
2022-07-03 15:10:32 +00:00
|
|
|
|
|
2022-07-03 15:08:36 +00:00
|
|
|
|
(define-member (person "Ricardo Wurmus"
|
|
|
|
|
"rekado@elephly.net")
|
2024-02-13 19:03:28 +00:00
|
|
|
|
core mentors r sugar tex)
|
2022-07-03 15:08:36 +00:00
|
|
|
|
|
2022-07-08 22:36:24 +00:00
|
|
|
|
(define-member (person "Christopher Baines"
|
2023-07-17 07:52:49 +00:00
|
|
|
|
"guix@cbaines.net")
|
2022-07-08 22:36:24 +00:00
|
|
|
|
core mentors ruby)
|
|
|
|
|
|
2022-09-13 09:34:49 +00:00
|
|
|
|
(define-member (person "Andrew Tropin"
|
|
|
|
|
"andrew@trop.in")
|
|
|
|
|
home emacs)
|
|
|
|
|
|
2022-09-26 17:14:51 +00:00
|
|
|
|
(define-member (person "pukkamustard"
|
|
|
|
|
"pukkamustard@posteo.net")
|
|
|
|
|
ocaml)
|
|
|
|
|
|
2022-09-26 14:26:36 +00:00
|
|
|
|
(define-member (person "Josselin Poiret"
|
|
|
|
|
"dev@jpoiret.xyz")
|
|
|
|
|
core installer)
|
|
|
|
|
|
2022-09-27 18:00:28 +00:00
|
|
|
|
(define-member (person "("
|
|
|
|
|
"paren@disroot.org")
|
|
|
|
|
home mentors)
|
|
|
|
|
|
2022-09-27 10:33:36 +00:00
|
|
|
|
(define-member (person "Simon Tournier"
|
|
|
|
|
"zimon.toutoune@gmail.com")
|
|
|
|
|
julia core mentors)
|
|
|
|
|
|
2022-11-12 09:09:40 +00:00
|
|
|
|
(define-member (person "Raghav Gururajan"
|
|
|
|
|
"rg@raghavgururajan.name")
|
2023-03-17 17:37:11 +00:00
|
|
|
|
gnome mentors)
|
2022-11-12 09:09:40 +00:00
|
|
|
|
|
2022-12-09 06:51:45 +00:00
|
|
|
|
(define-member (person "宋文武"
|
|
|
|
|
"iyzsong@envs.net")
|
2024-03-08 12:02:00 +00:00
|
|
|
|
games localization lxqt qt xfce)
|
2022-12-09 06:51:45 +00:00
|
|
|
|
|
2023-05-24 23:03:59 +00:00
|
|
|
|
(define-member (person "Vagrant Cascadian"
|
|
|
|
|
"vagrant@debian.org")
|
|
|
|
|
embedded)
|
|
|
|
|
|
2023-01-04 05:39:15 +00:00
|
|
|
|
(define-member (person "Vagrant Cascadian"
|
|
|
|
|
"vagrant@reproducible-builds.org")
|
|
|
|
|
reproduciblebuilds)
|
|
|
|
|
|
2023-03-28 11:57:43 +00:00
|
|
|
|
(define-member (person "Zhu Zihao"
|
|
|
|
|
"all_but_last@163.com")
|
|
|
|
|
localization xfce)
|
|
|
|
|
|
2023-04-02 15:39:20 +00:00
|
|
|
|
(define-member (person "Maxim Cournoyer"
|
|
|
|
|
"maxim.cournoyer@gmail.com")
|
2023-07-15 03:11:49 +00:00
|
|
|
|
gnome qt telephony)
|
2023-04-02 15:39:20 +00:00
|
|
|
|
|
2023-08-15 18:06:27 +00:00
|
|
|
|
(define-member (person "Katherine Cox-Buday"
|
|
|
|
|
"cox.katherine.e+guix@gmail.com")
|
|
|
|
|
emacs go lisp)
|
|
|
|
|
|
2023-09-21 17:42:34 +00:00
|
|
|
|
(define-member (person "Marius Bakke"
|
|
|
|
|
"marius@gnu.org")
|
|
|
|
|
python)
|
|
|
|
|
|
2023-09-11 08:41:13 +00:00
|
|
|
|
(define-member (person "Munyoki Kilyungi"
|
|
|
|
|
"me@bonfacemunyoki.com")
|
|
|
|
|
python lisp)
|
|
|
|
|
|
2023-10-26 21:38:11 +00:00
|
|
|
|
(define-member (person "Gabriel Wicki"
|
|
|
|
|
"gabriel@erlikon.ch")
|
|
|
|
|
audio)
|
|
|
|
|
|
2023-11-11 00:22:17 +00:00
|
|
|
|
(define-member (person "Ekaitz Zarraga"
|
|
|
|
|
"ekaitz@elenq.tech")
|
|
|
|
|
bootstrap zig)
|
|
|
|
|
|
2023-12-20 16:27:51 +00:00
|
|
|
|
(define-member (person "Clément Lassieur"
|
|
|
|
|
"clement@lassieur.org")
|
|
|
|
|
mozilla)
|
|
|
|
|
|
2024-01-12 00:39:32 +00:00
|
|
|
|
(define-member (person "Sharlatan Hellseher"
|
|
|
|
|
"sharlatanus@gmail.com")
|
|
|
|
|
go lisp python science)
|
|
|
|
|
|
2024-01-13 17:33:50 +00:00
|
|
|
|
(define-member (person "Vivien Kraus"
|
|
|
|
|
"vivien@planete-kraus.eu")
|
|
|
|
|
gnome)
|
|
|
|
|
|
2024-01-17 00:07:24 +00:00
|
|
|
|
(define-member (person "Wilko Meyer"
|
|
|
|
|
"w@wmeyer.eu")
|
|
|
|
|
kernel)
|
|
|
|
|
|
2024-02-03 18:26:03 +00:00
|
|
|
|
(define-member (person "Mark H Weaver"
|
|
|
|
|
"mhw@netris.org")
|
|
|
|
|
mozilla)
|
|
|
|
|
|
2024-03-06 11:25:55 +00:00
|
|
|
|
(define-member (person "Adam Faiz"
|
|
|
|
|
"adam.faiz@disroot.org")
|
|
|
|
|
games)
|
|
|
|
|
|
2022-07-03 12:11:29 +00:00
|
|
|
|
|
|
|
|
|
(define (find-team name)
|
|
|
|
|
(or (hash-ref %teams (string->symbol name))
|
|
|
|
|
(error (format #false
|
2023-08-15 18:06:27 +00:00
|
|
|
|
"no such team: ~a~%" name))))
|
2022-07-03 12:11:29 +00:00
|
|
|
|
|
2022-09-07 15:05:00 +00:00
|
|
|
|
(define (find-team-by-scope files)
|
|
|
|
|
"Return the team(s) which scope matches at least one of the FILES, as list
|
|
|
|
|
of file names as string."
|
|
|
|
|
(hash-fold
|
|
|
|
|
(lambda (key team acc)
|
|
|
|
|
(if (any (lambda (file)
|
2022-09-09 15:27:23 +00:00
|
|
|
|
(any (match-lambda
|
|
|
|
|
((? string? scope)
|
|
|
|
|
(string=? scope file))
|
2023-08-30 19:37:42 +00:00
|
|
|
|
((? regexp*? scope)
|
|
|
|
|
(regexp*-exec scope file)))
|
2022-09-07 15:05:00 +00:00
|
|
|
|
(team-scope team)))
|
|
|
|
|
files)
|
|
|
|
|
(cons team acc)
|
|
|
|
|
acc))
|
|
|
|
|
'()
|
|
|
|
|
%teams))
|
|
|
|
|
|
2022-07-03 12:11:29 +00:00
|
|
|
|
(define (cc . teams)
|
|
|
|
|
"Return arguments for `git send-email' to notify the members of the given
|
|
|
|
|
TEAMS when a patch is received by Debbugs."
|
2023-05-08 18:21:17 +00:00
|
|
|
|
(let ((members (append-map team-members teams)))
|
|
|
|
|
(unless (null? members)
|
|
|
|
|
(format #true "--add-header=\"X-Debbugs-Cc: ~{~a~^, ~}\""
|
|
|
|
|
(map person-email (sort-members members))))))
|
|
|
|
|
|
|
|
|
|
(define (sort-members members)
|
|
|
|
|
"Deduplicate and sort MEMBERS alphabetically by their name."
|
|
|
|
|
(sort (delete-duplicates members equal?)
|
|
|
|
|
(lambda (m1 m2)
|
|
|
|
|
(string<? (person-name m1) (person-name m2)))))
|
|
|
|
|
|
|
|
|
|
(define (member->string member)
|
|
|
|
|
"Return the 'email <name>' string representation of MEMBER."
|
|
|
|
|
(let* ((name (person-name member))
|
|
|
|
|
(quoted-name/maybe (if (string-contains name ",")
|
|
|
|
|
(string-append "\"" name "\"")
|
|
|
|
|
name)))
|
|
|
|
|
(format #false "~a <~a>" quoted-name/maybe (person-email member))))
|
2022-07-03 12:11:29 +00:00
|
|
|
|
|
2023-08-29 17:32:54 +00:00
|
|
|
|
(define* (list-members team #:key (prefix ""))
|
2022-07-03 12:11:29 +00:00
|
|
|
|
"Print the members of the given TEAM."
|
2023-08-29 17:32:54 +00:00
|
|
|
|
(for-each (lambda (member)
|
|
|
|
|
(format #t "~a~a~%" prefix (member->string member)))
|
|
|
|
|
(sort-members (team-members team))))
|
2022-07-03 12:11:29 +00:00
|
|
|
|
|
2023-08-29 17:53:49 +00:00
|
|
|
|
(define (print-team team)
|
|
|
|
|
"Print TEAM, a <team> record object."
|
|
|
|
|
(format #t
|
|
|
|
|
"\
|
2022-07-03 12:11:29 +00:00
|
|
|
|
id: ~a
|
|
|
|
|
name: ~a
|
|
|
|
|
description: ~a
|
2022-09-07 15:05:00 +00:00
|
|
|
|
~amembers:
|
2022-07-03 12:11:29 +00:00
|
|
|
|
"
|
2022-11-17 20:28:19 +00:00
|
|
|
|
(team-id team)
|
|
|
|
|
(team-name team)
|
|
|
|
|
(or (and=> (team-description team)
|
|
|
|
|
(lambda (text)
|
|
|
|
|
(string->recutils
|
|
|
|
|
(fill-paragraph text (%text-width)
|
|
|
|
|
(string-length "description: ")))))
|
|
|
|
|
"<none>")
|
|
|
|
|
(match (team-scope team)
|
|
|
|
|
(() "")
|
etc: teams: Sort and improve display of regular expression in 'scope' field.
Fixes <https://issues.guix.gnu.org/65208>.
* etc/teams.scm.in (<regexp*>): New record type.
(make-regexp*, regexp-exec*): New procedures.
(python, haskell, julia, java, emacs, rust, core, translations, installer,
home): Use it.
(find-team-by-scope): Use it.
(list-teams): Use it.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Reported-by: Greg Hogan <code@greghogan.com>
2022-11-17 20:28:20 +00:00
|
|
|
|
(scope (format #f "scope:~%~{+ ~a~^~%~}~%"
|
|
|
|
|
(sort (map (match-lambda
|
|
|
|
|
((? regexp*? rx)
|
|
|
|
|
(regexp*-pattern rx))
|
|
|
|
|
(item item))
|
|
|
|
|
scope)
|
|
|
|
|
string<?)))))
|
2022-11-17 20:28:19 +00:00
|
|
|
|
(list-members team #:prefix "+ ")
|
|
|
|
|
(newline))
|
2023-08-29 17:53:49 +00:00
|
|
|
|
|
|
|
|
|
(define (sort-teams teams)
|
|
|
|
|
"Sort TEAMS, a list of <team> record objects."
|
|
|
|
|
(sort teams
|
|
|
|
|
(lambda (team1 team2)
|
|
|
|
|
(string<? (symbol->string (team-id team1))
|
|
|
|
|
(symbol->string (team-id team2))))))
|
|
|
|
|
|
2022-11-17 20:28:18 +00:00
|
|
|
|
(define* (list-teams #:optional team-names)
|
2023-08-29 17:53:49 +00:00
|
|
|
|
"Print all teams, their scope and their members."
|
|
|
|
|
(for-each print-team
|
2022-11-17 20:28:18 +00:00
|
|
|
|
(sort-teams
|
|
|
|
|
(if team-names
|
|
|
|
|
(map find-team team-names)
|
|
|
|
|
(hash-map->list (lambda (_ value) value) %teams)))))
|
2022-07-03 12:11:29 +00:00
|
|
|
|
|
2022-09-07 15:05:00 +00:00
|
|
|
|
|
|
|
|
|
(define (diff-revisions rev-start rev-end)
|
|
|
|
|
"Return the list of added, modified or removed files between REV-START
|
|
|
|
|
and REV-END, two git revision strings."
|
|
|
|
|
(let* ((repository (repository-open (getcwd)))
|
|
|
|
|
(commit1 (commit-lookup repository
|
|
|
|
|
(object-id
|
|
|
|
|
(revparse-single repository rev-start))))
|
|
|
|
|
(commit2 (commit-lookup repository
|
|
|
|
|
(object-id
|
|
|
|
|
(revparse-single repository rev-end))))
|
|
|
|
|
(diff (diff-tree-to-tree repository
|
|
|
|
|
(commit-tree commit1)
|
|
|
|
|
(commit-tree commit2)))
|
|
|
|
|
(files '()))
|
|
|
|
|
(diff-foreach
|
|
|
|
|
diff
|
|
|
|
|
(lambda (delta progress)
|
|
|
|
|
(set! files
|
|
|
|
|
(cons (diff-file-path (diff-delta-old-file delta)) files))
|
|
|
|
|
0)
|
|
|
|
|
(const 0)
|
|
|
|
|
(const 0)
|
|
|
|
|
(const 0))
|
|
|
|
|
files))
|
|
|
|
|
|
2022-12-19 21:17:10 +00:00
|
|
|
|
(define (git-patch->commit-id file)
|
2023-10-13 03:14:00 +00:00
|
|
|
|
"Parse the commit ID from FILE, a patch produced with git."
|
2022-12-19 21:17:10 +00:00
|
|
|
|
(call-with-input-file file
|
|
|
|
|
(lambda (port)
|
2023-10-13 03:14:00 +00:00
|
|
|
|
(let loop ((line (read-line port)))
|
|
|
|
|
(when (eof-object? line)
|
|
|
|
|
(error "could not find 'from' commit in patch" file))
|
|
|
|
|
(let ((m (string-match "^From ([0-9a-f]{40})" line)))
|
|
|
|
|
(if m
|
|
|
|
|
(match:substring m 1)
|
|
|
|
|
(loop (read-line port))))))))
|
2022-12-19 21:17:10 +00:00
|
|
|
|
|
2022-12-27 14:57:56 +00:00
|
|
|
|
(define (git-patch->revisions file)
|
|
|
|
|
"Return the start and end revisions of FILE, a patch file produced with git."
|
|
|
|
|
(let* ((rev-end (git-patch->commit-id file))
|
|
|
|
|
(rev-start (string-append rev-end "^")))
|
|
|
|
|
(list rev-start rev-end)))
|
|
|
|
|
|
2023-04-23 03:35:59 +00:00
|
|
|
|
(define (patch->teams patch-file)
|
|
|
|
|
"Return the name of the teams in scope for the changes in PATCH-FILE."
|
|
|
|
|
(map (compose symbol->string team-id)
|
|
|
|
|
(find-team-by-scope (apply diff-revisions
|
|
|
|
|
(git-patch->revisions patch-file)))))
|
|
|
|
|
|
2022-09-07 15:05:00 +00:00
|
|
|
|
|
2022-07-03 12:11:29 +00:00
|
|
|
|
(define (main . args)
|
|
|
|
|
(match args
|
|
|
|
|
(("cc" . team-names)
|
|
|
|
|
(apply cc (map find-team team-names)))
|
2022-12-27 14:57:56 +00:00
|
|
|
|
(("cc-members" patch-file)
|
|
|
|
|
(unless (file-exists? patch-file)
|
|
|
|
|
(error "patch file does not exist:" patch-file))
|
|
|
|
|
(apply main "cc-members" (git-patch->revisions patch-file)))
|
2022-09-07 15:05:00 +00:00
|
|
|
|
(("cc-members" rev-start rev-end)
|
|
|
|
|
(apply cc (find-team-by-scope
|
|
|
|
|
(diff-revisions rev-start rev-end))))
|
2023-04-23 03:35:59 +00:00
|
|
|
|
(("cc-members-header-cmd" patch-file)
|
2023-05-08 18:21:17 +00:00
|
|
|
|
(let* ((teams (map find-team (patch->teams patch-file)))
|
|
|
|
|
(members (sort-members (append-map team-members teams))))
|
|
|
|
|
(unless (null? members)
|
|
|
|
|
(format #true "X-Debbugs-Cc: ~{~a~^, ~}"
|
|
|
|
|
(map member->string members)))))
|
2023-04-23 14:52:07 +00:00
|
|
|
|
(("cc-mentors-header-cmd" patch-file)
|
2023-05-08 18:21:17 +00:00
|
|
|
|
(format #true "X-Debbugs-Cc: ~{~a~^, ~}"
|
|
|
|
|
(map member->string
|
|
|
|
|
(sort-members (team-members (find-team "mentors"))))))
|
2022-12-19 21:17:10 +00:00
|
|
|
|
(("get-maintainer" patch-file)
|
2023-04-23 03:35:59 +00:00
|
|
|
|
(apply main "list-members" (patch->teams patch-file)))
|
2022-07-03 12:11:29 +00:00
|
|
|
|
(("list-teams" . args)
|
|
|
|
|
(list-teams))
|
|
|
|
|
(("list-members" . team-names)
|
|
|
|
|
(for-each
|
|
|
|
|
(lambda (team-name)
|
|
|
|
|
(list-members (find-team team-name)))
|
|
|
|
|
team-names))
|
2022-11-17 20:28:18 +00:00
|
|
|
|
(("show" . team-names)
|
|
|
|
|
(list-teams team-names))
|
2022-07-03 12:11:29 +00:00
|
|
|
|
(anything
|
|
|
|
|
(format (current-error-port)
|
2022-10-27 15:09:09 +00:00
|
|
|
|
"Usage: etc/teams.scm <command> [<args>]
|
|
|
|
|
|
|
|
|
|
Commands:
|
2022-12-27 14:57:56 +00:00
|
|
|
|
cc <team-name>
|
|
|
|
|
get git send-email flags for cc-ing <team-name>
|
2023-04-23 14:52:07 +00:00
|
|
|
|
cc-members <start> <end> | <patch>
|
2022-12-27 14:57:56 +00:00
|
|
|
|
cc teams related to files changed between revisions or in a patch file
|
2023-04-23 03:35:59 +00:00
|
|
|
|
cc-members-header-cmd <patch>
|
|
|
|
|
cc-members variant for use with 'git send-email --header-cmd'
|
2023-04-23 14:52:07 +00:00
|
|
|
|
cc-mentors-header-cmd <patch>
|
|
|
|
|
command to use with 'git send-email --header-cmd' to notify mentors
|
2022-12-27 14:57:56 +00:00
|
|
|
|
list-teams
|
|
|
|
|
list teams and their members
|
|
|
|
|
list-members <team-name>
|
|
|
|
|
list members belonging to <team-name>
|
|
|
|
|
get-maintainer <patch>
|
2022-11-17 20:28:18 +00:00
|
|
|
|
compatibility mode with Linux get_maintainer.pl
|
|
|
|
|
show <team-name>
|
|
|
|
|
display <team-name> properties~%"))))
|
2022-07-03 12:11:29 +00:00
|
|
|
|
|
|
|
|
|
(apply main (cdr (command-line)))
|