#!/bin/sh # -*- mode: scheme; -*- # 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" "$@" !# ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2022, 2023 Ricardo Wurmus ;;; Copyright © 2022 Mathieu Othacehe ;;; Copyright © 2022, 2023 Maxim Cournoyer ;;; Copyright © 2022 Simon Tournier ;;; ;;; 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 FITN
aboutsummaryrefslogtreecommitdiff
blob: e63c1c12993c3f7a008fdf500fa8b4b46354fa67 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2018 Arun Isaac <arunisaac@systemreboot.net>
;;; Copyright © 2022 Ludovic Courtès <ludo@gnu.org>
;;;
;;; 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/>.

(define-module (gnu services games)
  #:use-module (gnu services)
  #:use-module (gnu services configuration)
  #:use-module (gnu services shepherd)
  #:use-module (gnu packages admin)
  #:use-module (gnu packages games)
  #:use-module (gnu system shadow)
  #:use-module ((gnu system file-systems) #:select (file-system-mapping))
  #:use-module (gnu build linux-container)
  #:autoload   (guix least-authority) (least-authority-wrapper)
  #:use-module (guix gexp)
  #:use-module (guix modules)
  #:use-module (guix packages)
  #:use-module (guix records)
  #:use-module (ice-9 match)
  #:export (joycond-configuration
            joycond-configuration?
            joycond-service-type

            wesnothd-configuration
            wesnothd-configuration?
            wesnothd-service-type))

;;;
;;; Joycond
;;;

(define-configuration/no-serialization joycond-configuration
  (package (package joycond) "The joycond package to use"))

(define (joycond-shepherd-service config)
  (let ((joycond (joycond-configuration-package config)))
    (list (shepherd-service
           (documentation "Run joycond.")
           (provision '(joycond))
           (requirement '(bluetooth))
           (start #~(make-forkexec-constructor
                     (list #$(file-append joycond "/bin/joycond"))))
           (stop #~(make-kill-destructor))))))

(define joycond-service-type
  (service-type
   (name 'joycond)
   (description
    "Run @command{joycond} for pairing Nintendo joycons via Bluetooth.")
   (extensions
    (list (service-extension shepherd-root-service-type
                             joycond-shepherd-service)))
   (default-value (joycond-configuration))))


;;;
;;; The Battle for Wesnoth server
;;;

(define-record-type* <wesnothd-configuration>
  wesnothd-configuration make-wesnothd-configuration wesnothd-configuration?
  (package wesnothd-configuration-package
           (default wesnoth-server))
  (port wesnothd-configuration-port
        (default 15000)))

(define %wesnothd-accounts
  (list (user-account
         (name "wesnothd")
         (group "wesnothd")
         (system? #t)
         (comment "Wesnoth daemon user")
         (home-directory "/var/empty")
         (shell (file-append shadow "/sbin/nologin")))
        (user-group
         (name "wesnothd")
         (system? #t))))

(define wesnothd-shepherd-service
  (match-lambda
    (($ <wesnothd-configuration> package port)
     (let ((wesnothd (least-authority-wrapper
                      (file-append package "/bin/wesnothd")
                      #:name "wesnothd"
                      #:mappings (list (file-system-mapping
                                        (source "/var/run/wesnothd")
                                        (target source)
                                        (writable? #t)))
                      #:namespaces (delq 'net %namespaces))))
       (shepherd-service
        (documentation "The Battle for Wesnoth server")
        (provision '(wesnoth-daemon))
        (requirement '(networking))
        (start #~(make-forkexec-constructor
                  (list #$wesnothd "-p" #$(number->string port))
                  #:user "wesnothd" #:group "wesnothd"))
        (stop #~(make-kill-destructor)))))))

(define wesnothd-activation
  (with-imported-modules '((guix build utils))
    #~(begin
        (use-modules (guix build utils))

        (let* ((user (getpw "wesnothd"))
               (directory "/var/run/wesnothd"))
          ;; wesnothd creates a Unix-domain socket in DIRECTORY.
          (mkdir-p directory)
          (chown directory (passwd:uid user) (passwd:gid user))))))

(define wesnothd-service-type
  (service-type
   (name 'wesnothd)
   (description
    "Run The Battle for Wesnoth server @command{wesnothd}.")
   (extensions
    (list (service-extension account-service-type
                             (const %wesnothd-accounts))
          (service-extension activation-service-type
                             (const wesnothd-activation))
          (service-extension shepherd-root-service-type
                             (compose list wesnothd-shepherd-service))))
   (default-value (wesnothd-configuration))))
lors.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" (make-regexp* "^guix/platforms/") (make-regexp* "^guix/scripts/") (make-regexp* "^guix/store/")))) (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"))) (define-team games (team 'games #: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"))) (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"))) (define-team translations (team 'translations #:name "Translations" #:scope (list "etc/news.scm" (make-regexp* "^po/")))) (define-team installer (team 'installer #:name "Installer script and system installer" #:scope (list (make-regexp* "^gnu/installer(\\.scm$|/)")))) (define-team home (team '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 #:name "Mentors" #:description "A group of mentors who chaperone contributions by newcomers.")) (define-team mozilla (team 'mozilla #:name "Mozilla" #:description "Taking care about Icecat and Icedove, built from Mozilla Firefox and Thunderbird." #:scope (list "gnu/build/icecat-extension.scm" "gnu/packages/browser-extensions.scm" "gnu/packages/gnuzilla.scm"))) (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 importer." #:scope (list "gnu/packages/chez.scm" "gnu/packages/racket.scm"))) (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"))) (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"))) (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." #:scope (list "gnu/packages/lxqt.scm" "gnu/packages/qt.scm"))) (define-team audio (team 'audio #:name "Audio team" #:description "Audio related packages." #:scope (list "gnu/packages/audio.scm"))) (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"))) (define-member (person "Eric Bavier" "bavier@posteo.net") science) (define-member (person "Lars-Dominik Braun" "lars@6xq.net") python haskell) (define-member (person "Jonathan Brielmaier" "jonathan.brielmaier@web.de") mozilla) (define-member (person "Ludovic Courtès" "ludo@gnu.org") core home bootstrap core-packages installer mentors) (define-member (person "Andreas Enge" "andreas@enge.fr") lxqt science tex) (define-member (person "Tobias Geerinckx-Rice" "me@tobias.gr") core kernel mentors) (define-member (person "Björn Höfling" "bjoern.hoefling@bjoernhoefling.de") java) (define-member (person "Leo Famulari" "leo@famulari.name") kernel) (define-member (person "Efraim Flashner" "efraim@flashner.co.il") embedded bootstrap julia rust science) (define-member (person "jgart" "jgart@dismail.de") python lisp mentors) (define-member (person "Guillaume Le Vaillant" "glv@posteo.net") lisp) (define-member (person "Julien Lepiller" "julien@lepiller.eu") java ocaml translations) (define-member (person "Philip McGrath" "philip@philipmcgrath.com") racket) (define-member (person "Mathieu Othacehe" "othacehe@gnu.org") core installer mentors) (define-member (person "Florian Pelz" "pelzflorian@pelzflorian.de") translations) (define-member (person "Liliana Marie Prikler" "liliana.prikler@gmail.com") emacs games gnome) (define-member (person "Ricardo Wurmus" "rekado@elephly.net") r core mentors tex) (define-member (person "Christopher Baines" "guix@cbaines.net") core mentors ruby) (define-member (person "Andrew Tropin" "andrew@trop.in") home emacs) (define-member (person "pukkamustard" "pukkamustard@posteo.net") ocaml) (define-member (person "Josselin Poiret" "dev@jpoiret.xyz") core installer) (define-member (person "(" "paren@disroot.org") home mentors) (define-member (person "Simon Tournier" "zimon.toutoune@gmail.com") julia core mentors) (define-member (person "Raghav Gururajan" "rg@raghavgururajan.name") gnome mentors) (define-member (person "宋文武" "iyzsong@envs.net") games localization lxqt xfce) (define-member (person "Vagrant Cascadian" "vagrant@debian.org") embedded) (define-member (person "Vagrant Cascadian" "vagrant@reproducible-builds.org") reproduciblebuilds) (define-member (person "Zhu Zihao" "all_but_last@163.com") localization xfce) (define-member (person "Maxim Cournoyer" "maxim.cournoyer@gmail.com") gnome qt telephony) (define-member (person "Katherine Cox-Buday" "cox.katherine.e+guix@gmail.com") emacs go lisp) (define-member (person "Marius Bakke" "marius@gnu.org") python) (define-member (person "Munyoki Kilyungi" "me@bonfacemunyoki.com") python lisp) (define-member (person "Gabriel Wicki" "gabriel@erlikon.ch") audio) (define-member (person "Ekaitz Zarraga" "ekaitz@elenq.tech") bootstrap zig) (define-member (person "Clément Lassieur" "clement@lassieur.org") mozilla) (define (find-team name) (or (hash-ref %teams (string->symbol name)) (error (format #false "no such team: ~a~%" name)))) (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) (any (match-lambda ((? string? scope) (string=? scope file)) ((? regexp*? scope) (regexp*-exec scope file))) (team-scope team))) files) (cons team acc) acc)) '() %teams)) (define (cc . teams) "Return arguments for `git send-email' to notify the members of the given TEAMS when a patch is received by Debbugs." (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) (stringstring member) "Return the 'email ' 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)))) (define* (list-members team #:key (prefix "")) "Print the members of the given TEAM." (for-each (lambda (member) (format #t "~a~a~%" prefix (member->string member))) (sort-members (team-members team)))) (define (print-team team) "Print TEAM, a record object." (format #t "\ id: ~a name: ~a description: ~a ~amembers: " (team-id team) (team-name team) (or (and=> (team-description team) (lambda (text) (string->recutils (fill-paragraph text (%text-width) (string-length "description: "))))) "") (match (team-scope team) (() "") (scope (format #f "scope:~%~{+ ~a~^~%~}~%" (sort (map (match-lambda ((? regexp*? rx) (regexp*-pattern rx)) (item item)) scope) string record objects." (sort teams (lambda (team1 team2) (stringstring (team-id team1)) (symbol->string (team-id team2)))))) (define* (list-teams #:optional team-names) "Print all teams, their scope and their members." (for-each print-team (sort-teams (if team-names (map find-team team-names) (hash-map->list (lambda (_ value) value) %teams))))) (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)) (define (git-patch->commit-id file) "Parse the commit ID from FILE, a patch produced with git." (call-with-input-file file (lambda (port) (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)))))))) (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))) (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))))) (define (main . args) (match args (("cc" . team-names) (apply cc (map find-team team-names))) (("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))) (("cc-members" rev-start rev-end) (apply cc (find-team-by-scope (diff-revisions rev-start rev-end)))) (("cc-members-header-cmd" patch-file) (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))))) (("cc-mentors-header-cmd" patch-file) (format #true "X-Debbugs-Cc: ~{~a~^, ~}" (map member->string (sort-members (team-members (find-team "mentors")))))) (("get-maintainer" patch-file) (apply main "list-members" (patch->teams patch-file))) (("list-teams" . args) (list-teams)) (("list-members" . team-names) (for-each (lambda (team-name) (list-members (find-team team-name))) team-names)) (("show" . team-names) (list-teams team-names)) (anything (format (current-error-port) "Usage: etc/teams.scm [] Commands: cc get git send-email flags for cc-ing cc-members | cc teams related to files changed between revisions or in a patch file cc-members-header-cmd cc-members variant for use with 'git send-email --header-cmd' cc-mentors-header-cmd command to use with 'git send-email --header-cmd' to notify mentors list-teams list teams and their members list-members list members belonging to get-maintainer compatibility mode with Linux get_maintainer.pl show display properties~%")))) (apply main (cdr (command-line)))