aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/sssd.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2024-07-15 15:53:27 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2024-07-25 21:00:58 +0100
commit123dcb2f319126dc5314a440e07226bf9feb54c3 (patch)
tree081b84671ee818b452cc2902f6c3af320901fa9f /gnu/packages/sssd.scm
parent04af4f6646ec4949b716240e3a8b8153b2e1cb42 (diff)
downloadguix-123dcb2f319126dc5314a440e07226bf9feb54c3.tar.gz
guix-123dcb2f319126dc5314a440e07226bf9feb54c3.zip
gnu: go-github-com-coreos-go-oidc-v3: Update to 3.11.0.
* gnu/packages/golang-web.scm (go-github-com-coreos-go-oidc-v3): Update to 3.11.0. [arguments]: <#:unpack-path>: Remove it. <#:import-path>: Adjust to reflect go.mod module path. <#:phases>: Remove 'build phase. Use custom 'check. [propagated-inputs]: Remove go-github-com-go-jose-go-jose-v3; add go-github-com-go-jose-go-jose-v4 and go-golang-org-x-net. Change-Id: Ibda17bed6eff43b1006199f4f5b3433ee922184f
Diffstat (limited to 'gnu/packages/sssd.scm')
0 files changed, 0 insertions, 0 deletions
href='/guix/commit/etc/completion?id=0987a0eba4e8220e98e93686a4ad3ef87433fb2f'>bash completion: Don't hard-code "guix" binary name.Tobias Geerinckx-Rice * etc/completion/bash/guix (_guix_complete_command): Use ${COMP_WORDS[0]} instead of hard-coding "guix". 2021-10-25Add 'guix shell'.Ludovic Courtès * guix/scripts/shell.scm, tests/guix-shell.sh: New files. * Makefile.am (MODULES): Add 'shell.scm'. (SH_TESTS): Add 'tests/guix-shell.sh'. * guix/scripts/environment.scm (show-environment-options-help): New procedure. (show-help): Use it. (guix-environment*): New procedure. (guix-environment): Use it. * po/guix/POTFILES.in: Add it. * doc/guix.texi (Features): Refer to "guix shell" (Invoking guix package): Likewise. (Development): Likewise. (Invoking guix shell): New node. (Invoking guix environment): Add deprecation warning. (Debugging Build Failures): Use 'guix shell' in examples. (Invoking guix container): Refer to 'guix shell'. (Invoking guix processes, Virtualization Services): Adjust examples to use 'guix shell'. * doc/contributing.texi (Building from Git): Refer to 'guix shell'. * etc/completion/bash/guix: Handle "shell". 2021-10-24etc: completion: Filter gratuitous spaces from available packages.Liliana Marie Prikler Tested with: guix environment --{ad-hoc,pure} zsh guix bash-completion coreutils -- zsh % fpath=(~/guix/etc/completion/zsh $fpath) % autoload -U compinit; compinit * etc/completion/zsh/_guix (_guix_list_available_packages): Remove spaces. Co-authored-by: Tobias Geerinckx-Rice <me@tobias.gr> 2021-10-03bash completion: Fix ‘system’ & ‘container’ subcommands.Tobias Geerinckx-Rice * etc/completion/bash/guix (_guix_complete): Count words from the innermost command. 2021-10-03bash completion: Complete ‘guix size’ file names.Tobias Geerinckx-Rice * etc/completion/bash/guix (_guix_complete): Complete store file names after the ‘size’ command. 2021-10-03bash completion: Complete ‘guix build’ file names.Tobias Geerinckx-Rice * etc/completion/bash/guix (_guix_complete_available_package_or_store_file): New function. (_guix_complete): Call it in place of _guix_complete_available_package after the ‘build’ command. 2021-10-03bash completion: Complete ‘guix weather’ packages.Tobias Geerinckx-Rice * etc/completion/bash/guix (_guix_complete): Complete available package names for ‘guix weather’ when not following ‘-m’. 2021-10-03bash completion: Append to $COMPREPLY where possible.Tobias Geerinckx-Rice _guix_complete is always called with a fresh empty array. * etc/completion/bash/guix (_guix_complete_command) (_guix_complete_subcommand, _guix_complete_installed_package) (_guix_complete_option, _guix_complete_pid): Append to $COMPREPLY rather than re-assigning. 2021-10-03bash completion: Consolidate similar $command ‘if’ branches.Tobias Geerinckx-Rice * etc/completion/bash/guix (_guix_complete): Combine the ‘upgrade’ and ‘remove’ commands, as well as ‘download’, ‘gc’, and ‘hash’. 2021-08-28zsh completion: Add missing commands and arguments.Noah Evans * etc/completion/zsh/_guix (_guix_install, _guix_remove, _guix_upgrade): New functions. (_guix_build, _guix_challenge, _guix_download, _guix_environment, _guix_packages, _guix_gc, _guix_hash, _guix_lint, _guix_package, _guix_publish, _guix_pull, _guix_refresh, _guix_size, _guix_system): Add some of the missing arguments. (_guix_cmds): Add missing commands. Co-authored-by: Brice Waegeneire <brice@waegenei.re> 2021-06-16bash_completion: Complete options for ‘guix environment’.Tobias Geerinckx-Rice Note that there are still plenty of bugs that this series didn't fix, e.g.: $ guix time-machine -- system reconf<Tab> * etc/completion/bash/guix (_guix_complete): Call _guix_complete_option if the word at point looks like an option. 2021-06-16bash completion: Complete options for the right command.Tobias Geerinckx-Rice * etc/completion/bash/guix (_guix_complete_option): Receive two arguments and complete the second based on the first, instead of blindly completing the very last word based on the very first (sub)command. (_guix_complete): Adjust both calls. 2021-06-16bash completion: Really support subcommands.Tobias Geerinckx-Rice * etc/completion/bash/guix (_guix_is_option): New function. (_guix_is_command): Remove function to replace it with simple string comparison… (_guix_complete): …here. Complete the ‘innermost’ command at point. 2021-04-20import: Remove Nix importer.Ludovic Courtès This importer has suffered from bitrot and no longer works with current Nix and Nixpkgs. See <https://bugs.gnu.org/32339> and <https://bugs.gnu.org/36255>. * guix/import/snix.scm, guix/scripts/import/nix.scm, tests/snix.scm: Remove. * Makefile.am (MODULES, SCM_TESTS): Remove them. * guix/scripts/import.scm (importers): Remove "nix". * build-aux/test-env.in: Remove NIXPKGS variable. * configure.ac: Remove '--with-nixpkgs' option. * doc/guix.texi (Invoking guix import): Remove bit about "guix import nix". * etc/completion/fish/guix.fish: Likewise. 2021-02-17scripts: system: Remove 'vm-image' command.Mathieu Othacehe Remove the 'vm-image' command that has been superseded by the 'image' command. * gnu/system/vm.scm (system-qemu-image): Remove it. * guix/scripts/system.scm (system-derivation-for-action): Mark 'vm-image' command as deprecated and use the image API to produce the VM image. (perform-action, show-help): Adapt accordingly. * tests/guix-system.sh: Ditto. * doc/guix.texi (Invoking guix system, Running Guix in a VM): Ditto. * etc/completion/fish/guix.fish: Ditto. * etc/completion/zsh/_guix: Ditto.