aboutsummaryrefslogtreecommitdiff
path: root/.guix-channel
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2023-10-16 09:10:26 +0200
committerLudovic Courtès <ludo@gnu.org>2023-11-15 11:36:20 +0100
commit3f7eeaa57c22c75d7a2f2751c63dad7fb73f062b (patch)
tree799004873f770140ade8c9d8015926eea3c914df /.guix-channel
parent975350fab742f0c723e8b4b41321a919fafc0fbf (diff)
downloadguix-3f7eeaa57c22c75d7a2f2751c63dad7fb73f062b.tar.gz
guix-3f7eeaa57c22c75d7a2f2751c63dad7fb73f062b.zip
gnu: rdma-core: Update to 48.0.
* gnu/packages/linux.scm (rdma-core): Update to 48.0.
Diffstat (limited to '.guix-channel')
0 files changed, 0 insertions, 0 deletions
Test the `guix package' aliases. # guix install --version readlink_base () { basename `readlink "$1"` } profile="t-profile-$$" rm -f "$profile" trap 'rm -f "$profile" "$profile-"[0-9]*' EXIT guix install --bootstrap guile-bootstrap -p "$profile" test -x "$profile/bin/guile" # Make sure '-r' isn't passed as-is to 'guix package'. ! guix install -r guile-bootstrap -p "$profile" --bootstrap test -x "$profile/bin/guile" # Use a package transformation option and make sure it's recorded. guix install --bootstrap guile-bootstrap -p "$profile" \ --with-input=libreoffice=inkscape test -x "$profile/bin/guile" grep "libreoffice=inkscape" "$profile/manifest" guix upgrade --version guix upgrade -n guix upgrade gui.e -n ! guix upgrade foo bar -n; guix remove --version guix remove --bootstrap guile-bootstrap -p "$profile" ! test -x "$profile/bin/guile" test `guix package -p "$profile" -I | wc -l` -eq 0 ! guix remove -p "$profile" this-is-not-installed --bootstrap ! guix remove -i guile-bootstrap -p "$profile" --bootstrap guix search '\<board\>' game | grep '^name: gnubg' guix show --version guix show guile guix show python@3 | grep "^name: python" # "python@2" exists but is deprecated; make sure it doesn't show up. ! guix show python@2 # Specifying multiple packages. output="`guix show sed grep | grep ^name:`" test "$output" = "name: sed name: grep"