diff options
| author | Florian Pelz <pelzflorian@pelzflorian.de> | 2025-11-01 13:51:31 +0100 |
|---|---|---|
| committer | Florian Pelz <pelzflorian@pelzflorian.de> | 2025-11-02 00:32:23 +0100 |
| commit | 2df24bc63292c4ccaf62729fcc5ec4a38353f800 (patch) | |
| tree | e932f768f2ab6d12a19476c909f49276cc069f92 | |
| parent | 2e59bbc4405e8a2636a84542eb6963561b320f52 (diff) | |
ui: Change bug report address to Codeberg.
`guix --help` used to print `Report bugs to: bug-guix@gnu.org.`
This commit changes the message to
`Report bugs to: <https://codeberg.org/guix/guix/issues/>`.
In accordance with the consensus decision
<https://codeberg.org/guix/guix-consensus-documents/src/branch/main/002-codeberg.md>
and just in time before we phase out bug-guix.
* configure.ac (AC_INIT): Set Codeberg as bug-report address, to be used
as %guix-bug-report-address in guix/config.scm.in.
* guix/self.scm (make-config.scm): Likewise, to be applied when
`guix pull` is run a second time.
* guix/ui.scm (show-bug-report-information): Display bug report address
in <> angle brackets.
Change-Id: Ie16dccbf8b9801e278d3aa0dd5eccaab737725bd
| -rw-r--r-- | configure.ac | 2 | ||||
| -rw-r--r-- | guix/self.scm | 3 | ||||
| -rw-r--r-- | guix/ui.scm | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 2c4379abb20..82f12507745 100644 --- a/configure.ac +++ b/configure.ac | |||
| @@ -21,7 +21,7 @@ | |||
| 21 | AC_PREREQ([2.69]) | 21 | AC_PREREQ([2.69]) |
| 22 | AC_INIT([GNU Guix], | 22 | AC_INIT([GNU Guix], |
| 23 | [m4_esyscmd([build-aux/git-version-gen .tarball-version])], | 23 | [m4_esyscmd([build-aux/git-version-gen .tarball-version])], |
| 24 | [bug-guix@gnu.org], [guix], | 24 | [https://codeberg.org/guix/guix/issues/], [guix], |
| 25 | [https://www.gnu.org/software/guix/]) | 25 | [https://www.gnu.org/software/guix/]) |
| 26 | AC_CONFIG_AUX_DIR([build-aux]) | 26 | AC_CONFIG_AUX_DIR([build-aux]) |
| 27 | 27 | ||
diff --git a/guix/self.scm b/guix/self.scm index 2a997653599..eab6c32076b 100644 --- a/guix/self.scm +++ b/guix/self.scm | |||
| @@ -1151,7 +1151,8 @@ itself." | |||
| 1151 | (package-version "0") | 1151 | (package-version "0") |
| 1152 | (channel-metadata #f) | 1152 | (channel-metadata #f) |
| 1153 | (config-variables %config-variables) | 1153 | (config-variables %config-variables) |
| 1154 | (bug-report-address "bug-guix@gnu.org") | 1154 | (bug-report-address |
| 1155 | "https://codeberg.org/guix/guix/issues/") | ||
| 1155 | (home-page-url "https://guix.gnu.org")) | 1156 | (home-page-url "https://guix.gnu.org")) |
| 1156 | 1157 | ||
| 1157 | ;; Hack so that Geiser is not confused. | 1158 | ;; Hack so that Geiser is not confused. |
diff --git a/guix/ui.scm b/guix/ui.scm index 1673285e715..3514059161a 100644 --- a/guix/ui.scm +++ b/guix/ui.scm | |||
| @@ -584,7 +584,7 @@ There is NO WARRANTY, to the extent permitted by law. | |||
| 584 | ;; ...\n" with the address for translation bugs (typically your translation | 584 | ;; ...\n" with the address for translation bugs (typically your translation |
| 585 | ;; team's web or email address). | 585 | ;; team's web or email address). |
| 586 | (format #t (G_ " | 586 | (format #t (G_ " |
| 587 | Report bugs to: ~a.") %guix-bug-report-address) | 587 | Report bugs to: <~a>") %guix-bug-report-address) |
| 588 | (format #t (G_ " | 588 | (format #t (G_ " |
| 589 | ~a home page: <~a>") %guix-package-name %guix-home-page-url) | 589 | ~a home page: <~a>") %guix-package-name %guix-home-page-url) |
| 590 | (format #t (G_ " | 590 | (format #t (G_ " |
