mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
etc: Add teams.scm.
* etc/teams.scm.in: New file. * configure.ac: Generate executable. * .gitignore: Ignore generated file.
This commit is contained in:
parent
cba98b58bf
commit
4eaf90470f
3 changed files with 259 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -68,6 +68,7 @@
|
||||||
/doc/version.texi
|
/doc/version.texi
|
||||||
/doc/version-*.texi
|
/doc/version-*.texi
|
||||||
/etc/committer.scm
|
/etc/committer.scm
|
||||||
|
/etc/teams.scm
|
||||||
/etc/gnu-store.mount
|
/etc/gnu-store.mount
|
||||||
/etc/guix-daemon.cil
|
/etc/guix-daemon.cil
|
||||||
/etc/guix-daemon.conf
|
/etc/guix-daemon.conf
|
||||||
|
|
|
@ -274,6 +274,7 @@ AC_CONFIG_FILES([Makefile
|
||||||
guix/config.scm])
|
guix/config.scm])
|
||||||
|
|
||||||
AC_CONFIG_FILES([etc/committer.scm], [chmod +x etc/committer.scm])
|
AC_CONFIG_FILES([etc/committer.scm], [chmod +x etc/committer.scm])
|
||||||
|
AC_CONFIG_FILES([etc/teams.scm], [chmod +x etc/teams.scm])
|
||||||
AC_CONFIG_FILES([test-env:build-aux/test-env.in], [chmod +x test-env])
|
AC_CONFIG_FILES([test-env:build-aux/test-env.in], [chmod +x test-env])
|
||||||
AC_CONFIG_FILES([pre-inst-env:build-aux/pre-inst-env.in],
|
AC_CONFIG_FILES([pre-inst-env:build-aux/pre-inst-env.in],
|
||||||
[chmod +x pre-inst-env])
|
[chmod +x pre-inst-env])
|
||||||
|
|
257
etc/teams.scm.in
Normal file
257
etc/teams.scm.in
Normal file
|
@ -0,0 +1,257 @@
|
||||||
|
#!@GUILE@ \
|
||||||
|
--no-auto-compile -s
|
||||||
|
!#
|
||||||
|
|
||||||
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
|
;;; Copyright © 2022 Ricardo Wurmus <rekado@elephly.net>
|
||||||
|
;;;
|
||||||
|
;;; 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:
|
||||||
|
|
||||||
|
;; This code defines development teams and team members.
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
(use-modules (srfi srfi-1)
|
||||||
|
(srfi srfi-9)
|
||||||
|
(ice-9 format)
|
||||||
|
(ice-9 match)
|
||||||
|
(guix ui))
|
||||||
|
|
||||||
|
(define-record-type <team>
|
||||||
|
(make-team id name description members)
|
||||||
|
team?
|
||||||
|
(id team-id)
|
||||||
|
(name team-name)
|
||||||
|
(description team-description)
|
||||||
|
(members team-members set-team-members!))
|
||||||
|
|
||||||
|
(define-record-type <person>
|
||||||
|
(make-person name email)
|
||||||
|
person?
|
||||||
|
(name person-name)
|
||||||
|
(email person-email))
|
||||||
|
|
||||||
|
(define* (person name #:optional email)
|
||||||
|
(make-person name email))
|
||||||
|
|
||||||
|
(define* (team id #:key name description (members '()))
|
||||||
|
(make-team id
|
||||||
|
(or name (symbol->string id))
|
||||||
|
description
|
||||||
|
members))
|
||||||
|
|
||||||
|
(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
|
||||||
|
"Python, Python packages, the \"pypi\" importer, and the python-build-system."))
|
||||||
|
|
||||||
|
(define-team haskell
|
||||||
|
(team 'haskell
|
||||||
|
#:name "Haskell team"
|
||||||
|
#:description
|
||||||
|
"GHC, Hugs, Haskell packages, the \"hackage\" and \"stackage\" importers, and
|
||||||
|
the haskell-build-system."))
|
||||||
|
|
||||||
|
(define-team r
|
||||||
|
(team 'r
|
||||||
|
#:name "R team"
|
||||||
|
#:description
|
||||||
|
"The R language, CRAN and Bioconductor repositories, the \"cran\" importer,
|
||||||
|
and the r-build-system."))
|
||||||
|
|
||||||
|
(define-team julia
|
||||||
|
(team 'julia
|
||||||
|
#:name "Julia team"
|
||||||
|
#:description
|
||||||
|
"The Julia language, Julia packages, and the julia-build-system."))
|
||||||
|
|
||||||
|
(define-team ocaml
|
||||||
|
(team 'ocaml
|
||||||
|
#:name "OCaml and Dune team"
|
||||||
|
#:description
|
||||||
|
"The OCaml language, the Dune build system, OCaml packages, the \"opam\"
|
||||||
|
importer, and the ocaml-build-system."))
|
||||||
|
|
||||||
|
(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,
|
||||||
|
and the maven-build-system."))
|
||||||
|
|
||||||
|
(define-team maths
|
||||||
|
(team 'maths
|
||||||
|
#:name "Algebra and Maths team"))
|
||||||
|
|
||||||
|
(define-team emacs
|
||||||
|
(team 'emacs
|
||||||
|
#:name "Emacs team"))
|
||||||
|
|
||||||
|
(define-team lisp
|
||||||
|
(team 'lisp
|
||||||
|
#:name "Lisp team"))
|
||||||
|
|
||||||
|
(define-team ruby
|
||||||
|
(team 'ruby
|
||||||
|
#:name "Ruby team"))
|
||||||
|
|
||||||
|
(define-team go
|
||||||
|
(team 'go
|
||||||
|
#:name "Go team"))
|
||||||
|
|
||||||
|
(define-team embedded-bootstrap
|
||||||
|
(team 'embedded-bootstrap
|
||||||
|
#:name "Embedded / Bootstrap"))
|
||||||
|
|
||||||
|
(define-team rust
|
||||||
|
(team 'rust
|
||||||
|
#:name "Rust"))
|
||||||
|
|
||||||
|
(define-team kernel
|
||||||
|
(team 'kernel
|
||||||
|
#:name "Linux-libre kernel team"))
|
||||||
|
|
||||||
|
(define-team core
|
||||||
|
(team 'core
|
||||||
|
#:name "Core / Tools / Internals"))
|
||||||
|
|
||||||
|
(define-team games
|
||||||
|
(team 'games
|
||||||
|
#:name "Games and Videos"))
|
||||||
|
|
||||||
|
(define-team translations
|
||||||
|
(team 'translations
|
||||||
|
#:name "Translations"))
|
||||||
|
|
||||||
|
(define-team installer
|
||||||
|
(team 'installer
|
||||||
|
#:name "Installer script and system installer"))
|
||||||
|
|
||||||
|
(define-team home
|
||||||
|
(team 'home
|
||||||
|
#:name "Team for \"guix home\""))
|
||||||
|
|
||||||
|
(define-team mentors
|
||||||
|
(team 'mentors
|
||||||
|
#:name "Mentors"
|
||||||
|
#:description
|
||||||
|
"A group of mentors who chaperone contributions by newcomers."))
|
||||||
|
|
||||||
|
|
||||||
|
(define-member (person "Ricardo Wurmus"
|
||||||
|
"rekado@elephly.net")
|
||||||
|
r core mentors)
|
||||||
|
|
||||||
|
(define-member (person "Ludovic Courtès"
|
||||||
|
"ludo@gnu.org")
|
||||||
|
core home embedded-bootstrap mentors)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
(define (find-team name)
|
||||||
|
(or (hash-ref %teams (string->symbol name))
|
||||||
|
(error (format #false
|
||||||
|
"no such team: ~a~%" name))))
|
||||||
|
|
||||||
|
(define (cc . teams)
|
||||||
|
"Return arguments for `git send-email' to notify the members of the given
|
||||||
|
TEAMS when a patch is received by Debbugs."
|
||||||
|
(format #true
|
||||||
|
"~{--add-header=\"X-Debbugs-Cc: ~a\"~^ ~}"
|
||||||
|
(map person-email
|
||||||
|
(delete-duplicates (append-map team-members teams) equal?))))
|
||||||
|
|
||||||
|
(define* (list-members team #:optional port (prefix ""))
|
||||||
|
"Print the members of the given TEAM."
|
||||||
|
(define port* (or port (current-output-port)))
|
||||||
|
(for-each
|
||||||
|
(lambda (member)
|
||||||
|
(format port*
|
||||||
|
"~a~a <~a>~%"
|
||||||
|
prefix
|
||||||
|
(person-name member)
|
||||||
|
(person-email member)))
|
||||||
|
(team-members team)))
|
||||||
|
|
||||||
|
(define (list-teams)
|
||||||
|
"Print all teams and their members."
|
||||||
|
(define port* (current-output-port))
|
||||||
|
(define width* (%text-width))
|
||||||
|
(hash-for-each
|
||||||
|
(lambda (key team)
|
||||||
|
(format port*
|
||||||
|
"\
|
||||||
|
id: ~a
|
||||||
|
name: ~a
|
||||||
|
description: ~a
|
||||||
|
members:
|
||||||
|
"
|
||||||
|
(team-id team)
|
||||||
|
(team-name team)
|
||||||
|
(or (and=> (team-description team)
|
||||||
|
(lambda (text)
|
||||||
|
(string->recutils
|
||||||
|
(fill-paragraph text width*
|
||||||
|
(string-length "description: ")))))
|
||||||
|
"<none>"))
|
||||||
|
(list-members team port* "+ ")
|
||||||
|
(newline))
|
||||||
|
%teams))
|
||||||
|
|
||||||
|
(define (main . args)
|
||||||
|
(match args
|
||||||
|
(("cc" . team-names)
|
||||||
|
(apply cc (map find-team team-names)))
|
||||||
|
(("list-teams" . args)
|
||||||
|
(list-teams))
|
||||||
|
(("list-members" . team-names)
|
||||||
|
(for-each
|
||||||
|
(lambda (team-name)
|
||||||
|
(list-members (find-team team-name)))
|
||||||
|
team-names))
|
||||||
|
(anything
|
||||||
|
(format (current-error-port)
|
||||||
|
"Usage: etc/teams.scm <command> [<args>]~%"))))
|
||||||
|
|
||||||
|
(apply main (cdr (command-line)))
|
Loading…
Reference in a new issue