summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-10-23build-system/dub: Remove dependency on (guix build syscalls).Ludovic Courtès
The (guix build syscalls) module was unused. * guix/build-system/dub.scm (%dub-build-system-modules): Remove (guix build syscalls).
2023-10-23build-system/android-ndk: Remove dependency on (guix build syscalls).Ludovic Courtès
The (guix build syscalls) module was unused. * guix/build-system/android-ndk.scm (%android-ndk-build-system-modules): Remove (guix build syscalls).
2023-10-23build-system/ant: Remove dependency on (guix build syscalls).Ludovic Courtès
The module has been unused since a6343af22161b21ddbc4143a2b6a60d1ee860eb0. * guix/build-system/ant.scm (%ant-build-system-modules): Remove (guix build syscalls).
2023-10-23gnu: public-inbox: Remove dependency on (guix build syscalls).Ludovic Courtès
* gnu/packages/mail.scm (public-inbox)[arguments]: Remove #:imported-modules. Remove (guix build syscalls) from #:modules. Rewrite ‘check’ phase to reap processes from the build process. [native-inputs]: Remove TINI.
2023-10-23gnu: polkit: Remove dependency on (guix build syscalls).Ludovic Courtès
Having a dependency on (guix build syscalls) this deep in the stack would make it much harder to change syscalls.scm. * gnu/packages/polkit.scm (polkit)[arguments]: Remove #:imported-modules. Remove (guix build syscalls) from #:modules. Rewrite ‘check’ phase to reap processes from the build process. [native-inputs]: Remove TINI.
2023-10-23gnu: python-dbusmock: Use ‘search-input-file’.Ludovic Courtès
* gnu/packages/python-xyz.scm (python-dbusmock)[arguments]: In ‘patch-paths’ phase, use ‘search-input-file’ instead of ‘assoc-ref’.
2023-10-23gnu: python-dbusmock: Rewrite phases as a gexp.Ludovic Courtès
* gnu/packages/python-xyz.scm (python-dbusmock)[arguments]: Use gexps.
2023-10-23gnu: python-dbusmock: Remove dependency on (guix build syscalls).Ludovic Courtès
Having a dependency on (guix build syscalls) this deep in the stack would make it much harder to change syscalls.scm. * gnu/packages/python-xyz.scm (python-dbusmock)[native-inputs]: Remove TINY. [arguments]: Remove #:imported-modules, and remove (guix build syscalls) from #:modules. Rewrite ‘check’ phase to reap processes from the build process itself.
2023-10-23gnu: python-ipykernel: Remove dependency on (guix build syscalls).Ludovic Courtès
* gnu/packages/python-xyz.scm (python-ipykernel)[arguments]: Remove #:imported-modules. Remove (guix build syscalls) from #:modules. Rewrite ‘check’ phase to reap child processes from the build process. [native-inputs]: Remove TINI.
2023-10-23gnu: mutter: Remove dependency on (guix build syscalls).Ludovic Courtès
* gnu/packages/gnome.scm (mutter)[arguments]: Remove #:imported-modules. Remove (guix build syscalls) from #:modules. Rewrite ‘check’ phase to reap processes from the build process. [native-inputs]: Remove TINI.
2023-10-23gnu: icecat: Support Guix packaged extensions and native manifests.Clément Lassieur
* gnu/build/icecat-extension.scm: New file with a MAKE-ICECAT-EXTENSION procedure that makes sure the add-on directory is a symlink, so that Icecat can normalize it into a package store path. * gnu/local.mk (dist_patch_DATA): Register it, as well as new patches. * gnu/packages/browser-extensions.scm (ublock-origin)[properties]: Store the add-on ID so that it is accessible in MAKE-ICECAT-EXTENSION. [arguments]: Use the add-on ID as root directory. (ublock-origin/icecat): New procedure. * gnu/packages/gnuzilla.scm (icecat-minimal)[arguments]: Rewrite the unused 'apply-guix-specific-patches' phase so that it applies the following two patches. [native-search-paths]: New field. * gnu/packages/patches/icecat-compare-paths.patch: New patch that compares add-on paths (which are package store paths) to detect package changes. * gnu/packages/patches/icecat-use-system-wide-dir.patch: New patch that replaces "/usr/lib/mozilla" (the system-wide directory for extensions and native manifests) with "$ICECAT_SYSTEM_DIR".
2023-10-23gnu: mpd-mpc: Really fix directory for bash completions.Liliana Marie Prikler
Commit 577fd21122ca50ab7594be9adf0c5c06d5b26678 contains a typo wherein a dash was used instead of an underscore. Compare for example the git package to see where completions should be installed. * gnu/packages/mpd.scm (mpd-mpc)[move-completion]: Use “etc/bash_completion.d” instead of “etc/bash-completion.d”.
2023-10-23gnu: emacs-haskell-snippets: Use correct directory for snippets.Liliana Marie Prikler
This package instructs Yasnippet to look for snippets relative to its own path. However, it installs the snippets directly to site-lisp, which as of 79cfe30f3eb10bd3dbf7aa0f6e873c945d7d0ea5 is one directory above that. Use the elpa-directory procedure introduced in that commit to rectify this mistake. * gnu/packages/emacs-xyz.scm (emacs-haskell-snippets)[#:phases] <install-snippets>: Use elpa-directory. Fixes: Wrong location for haskell snippets <https:issues.guix.gnu.org/66562>
2023-10-23gnu: Add rust-1.73.Herman Rimm
* gnu/packages/rust.scm (rust-1.73): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Change-Id: I97ab62112cd9386427d3cf8f9f6e1700492966b1
2023-10-22gnu: go-github-com-alecthomas-assert: Move to (gnu packages golang-check).Sharlatan Hellseher
* gnu/packages/golang-check.scm (go-github-com-alecthomas-assert): Move from here... * gnu/packages/golang.scm: ... to here. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
2023-10-22gnu: go-golang-org-sql-mock: Move to (gnu packages golang-check).Sharlatan Hellseher
* gnu/packages/golang-check.scm (go-golang-org-sql-mock): Move from here... * gnu/packages/golang.scm: ... to here. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
2023-10-22gnu: go-golang-org-x-lint: Move to (gnu packages golang-check).Sharlatan Hellseher
* gnu/packages/golang-check.scm (go-golang-org-x-lint): Move from here... * gnu/packages/golang.scm: ... to here. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
2023-10-22gnu: go-honnef-co-go-tools: Move to (gnu packages golang-check).Sharlatan Hellseher
* gnu/packages/golang-check.scm (go-honnef-co-go-tools): Move from here... * gnu/packages/golang.scm: ... to here. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
2023-10-22gnu: go-github-com-onsi-ginkgo: Move to (gnu packages golang-check).Sharlatan Hellseher
* gnu/packages/golang-check.scm (go-github-com-onsi-ginkgo): Move from here... * gnu/packages/golang.scm: ... to here. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
2023-10-22gnu: go-github-com-google-go-cmdtest: Move to (gnu packages golang-check).Sharlatan Hellseher
* gnu/packages/golang-check.scm (go-github-com-google-go-cmdtest): Move from here... * gnu/packages/golang.scm: ... to here. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
2023-10-22gnu: go-github-com-frankban-quicktest: Move to (gnu packages golang-check).Sharlatan Hellseher
* gnu/packages/golang-check.scm (go-github-com-frankban-quicktest): Move from here... * gnu/packages/golang.scm: ... to here. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
2023-10-22gnu: go-github-com-cheekybits-is: Move to (gnu packages golang-check).Sharlatan Hellseher
* gnu/packages/golang-check.scm (go-github-com-cheekybits-is): Move from here... * gnu/packages/golang.scm: ... to here. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
2023-10-22gnu: go-github-com-google-gofuzz: Move to (gnu packages golang-check).Sharlatan Hellseher
* gnu/packages/golang-check.scm (go-github-com-google-gofuzz): Move from here... * gnu/packages/golang.scm: ... to here. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
2023-10-22gnu: go-github-com-jacobsa-ogletest: Move to (gnu packages golang-check).Sharlatan Hellseher
* gnu/packages/golang-check.scm (go-github-com-jacobsa-ogletest): Move from here... * gnu/packages/golang.scm: ... to here. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
2023-10-22gnu: go-github-com-tdewolff-test: Move to (gnu packages golang-check).Sharlatan Hellseher
* gnu/packages/golang-check.scm (go-github-com-tdewolff-test): Move from here... * gnu/packages/golang.scm: ... to here. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
2023-10-22gnu: go-gopkg-in-go-playground-assert-v1: Move to (gnu packages golang-check).Sharlatan Hellseher
* gnu/packages/golang-check.scm (go-gopkg-in-go-playground-assert-v1): Move from here... * gnu/packages/golang.scm: ... to here. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
2023-10-22gnu: go-github-com-golangplus-testing: Move to (gnu packages golang-check).Sharlatan Hellseher
* gnu/packages/golang.scm (go-github-com-golangplus-testing): Move from here... * gnu/packages/golang-check.scm: ... to here. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
2023-10-22gnu: go-github-com-jacobsa-oglematchers: Move to (gnu packages golang-check).Sharlatan Hellseher
* gnu/packages/golang.scm (go-github-com-jacobsa-oglematchers): Move from here... * gnu/packages/golang-check.scm: ... to here. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
2023-10-22gnu: go-gopkg-in-check-v1: Move to (gnu packages golang-check).Sharlatan Hellseher
* gnu/packages/golang.scm (go-gopkg-in-check-v1): Move from here... * gnu/packages/golang-check.scm (go-gopkg-in-check-v1): ... to here. * gnu/packages/bioinformatics.scm: Add (gnu-packages golang-check) to use-module. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
2023-10-22gnu: go-github-com-stretchr-testify: Remove labels.Sharlatan Hellseher
* gnu/packages/golang-check.scm (go-github-com-stretchr-testify): Remove input lables. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Change-Id: Ibe9dcd7b55681cf6c5b76c44ef03de2e2f02bcd9
2023-10-22gnu: go-github-com-jacobsa-oglemock: Move to (gnu packages golang-check)Sharlatan Hellseher
* gnu/packages/golang.scm (go-github-com-jacobsa-oglemock): Move from here... * gnu/packages/golang-check.scm: ... to here. * gnu/packages/file-systems.scm: Add use-module (gnu-packages golang-check). Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
2023-10-22gnu: go-github-com-stretchr-testify: Move to (gnu packages golang-check).Sharlatan Hellseher
* gnu/packages/golang.scm (go-github-com-stretchr-testify): Move from here... * gnu/packages/golang-check.scm: ...to here. * gnu/packages/databases.scm: Add (gnu packages golang-check) module. * gnu/packages/education.scm: As above... * gnu/packages/ipfs.scm: As above... * gnu/packages/irc.scm: As above... * gnu/packages/mail.scm: As above... * gnu/packages/textutils.scm: As above... * gnu/packages/version-control.scm: As above... Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
2023-10-22gnu: Add (gnu packages golang-check) module.Sharlatan Hellseher
* gnu/packages/golang-check.scm: New file. * gnu/local.mk: Add to gnu/packages/golang-check.scm scope. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
2023-10-22build: Avoid git config 'include' duplicates.Maxim Cournoyer
* Makefile.am (.git/config): Invoke git config --replace-all with a value-pattern instead of --add. Change-Id: Id6e19b15d3772105128eb9b48d0f4e039ae3d988 Reported-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
2023-10-22teams: Adjust shebang to use 'guix repl'.Maxim Cournoyer
This ensures the correct Guix dependencies are always available for the script. * etc/teams.scm.in: Rename to... * etc/teams.scm: ... this. Adjust shebang. * .gitignore: No longer ignore it. * configure.ac: Do not process it with AC_CONFIG_FILES. Reported-by: Clément Lassieur <clement@lassieur.org> Fixes: https://issues.guix.gnu.org/66605 Change-Id: I7a01750c6c5f0696b6c36b1e6caa9389d9e6822c
2023-10-23gnu: colobot: Improve package style.Nicolas Goaziou
* gnu/packages/games.scm (colobot)[arguments]: Use G-expressions. <#:phases>: Remove trailing #T. [native-inputs, inputs]: Remove labels.
2023-10-23gnu: colobot: Update to 0.2.1-alpha.Nicolas Goaziou
* gnu/packages/games.scm (colobot): Update to 0.2.1-alpha.
2023-10-22etc: teams: Parse 'From' commit more leniently.Maxim Cournoyer
When a Change-Id is used, patman prepends a Message-Id field on the first line of the patch, which broke the assumption that the 'From $commit' line must appear on the first line. * etc/teams.scm.in (git-patch->commit-id): Loop each line of the file until a match is found. Update doc. Series-to: 66027@debbugs.gnu.org Series-version: 3 Series-changes: 3 - New commit Series-cc: Giovanni Biscuolo <g@xelera.eu>, Simon Tournier <zimon.toutoune@gmail.com> Change-Id: I20400f87469ffb761ffc82dd32e34cd06f619043
2023-10-22gnu: patman: Apply patch for new Change-Id setting.Maxim Cournoyer
* gnu/packages/bootloaders.scm (u-boot) [source]: Apply patch. * gnu/packages/patches/u-boot-patman-change-id.patch: New file. * gnu/local.mk (dist_patch_DATA): Register it. * .patman (keep_change_id): Use it. Series-changes: 3 - New commit Change-Id: I33c03013f6a260b5f5d80212b7b6ebe8a3f97efa
2023-10-22build: Add a commit-msg hook that embeds Change-Id in commit messages.Maxim Cournoyer
Partially implements <https://issues.guix.gnu.org/66027>. This will make it possible to track a merged commit back to its original posting on the mailing list, and open the door to new opportunities such as closing fully merged series automatically. * Makefile.am (COMMIT_MSG_MAGIC): New variable. (.git/hooks/commit-msg): New target. * etc/git/commit-msg: New file. * doc/contributing.texi (Configuring Git): Document Change-Id. Series-changes: 3 - Clarify documentation text, as suggested by Simon Change-Id: Ia92fa958eae600fdd4e180bad494c85db8bb4dd6 Reviewed-by: Simon Tournier <zimon.toutoune@gmail.com>
2023-10-22gnu: make-opensbi-package: Set target to #false.Efraim Flashner
* gnu/packages/firmware.scm (make-opensbi-package)[arguments]: Set target to #false.
2023-10-22gnu: transanno: Don't set #:tests to #true.Efraim Flashner
* gnu/packages/bioinformatics.scm (transanno)[arguments]: Don't set tests unconditionally to #true.
2023-10-22gnu: wcslib-7.12: Remove pregenerated files.Efraim Flashner
* gnu/packages/astronomy.scm (wcslib-7.12)[source]: Add snippet to remove pregenerated files.
2023-10-22gnu: wcslib: Remove pregenerated files.Efraim Flashner
* gnu/packages/astronomy.scm (wcslib)[source]: Add snippet to remove pregenerated files. [native-inputs]: Add flex.
2023-10-22gnu: gnuastro: Update to 0.21.Efraim Flashner
* gnu/packages/astronomy.scm (gnuastro): Update to 0.21.
2023-10-22gnu: Add python-flatbuffers.Ricardo Wurmus
* gnu/packages/serialization.scm (python-flatbuffers): New variable.
2023-10-22guix: import: Don't import yanked rust crates.Efraim Flashner
* guix/import/crate.scm (<crate-version>): Add yanked? field. (crate->guix-package)[find-crate-version]: Remove versions which have been yanked. * tests/crate.scm: Adjust tests for new yanked? field.
2023-10-22gnu: Add xremap-gnome.Efraim Flashner
* gnu/packages/rust-apps.scm (xremap-gnome): New variable.
2023-10-22gnu: Add xremap-x11.Aleksandr Vityazev
* gnu/packages/rust-apps.scm (xremap-x11): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
2023-10-22gnu: Add xremap-sway.Aleksandr Vityazev
* gnu/packages/rust-apps.scm (xremap-sway): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>