aboutsummaryrefslogtreecommitdiff
path: root/tests/grafts.scm
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2022-08-30 20:09:40 -0400
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2022-08-31 09:23:38 -0400
commite57e7eaea072bfb45a73dc26e82f9d8f048cf452 (patch)
tree4f8514c176f10a634d9f73dc0200b7311a270346 /tests/grafts.scm
parent1b2ced40aad6301f874c5ad49254e19371b5916a (diff)
downloadguix-e57e7eaea072bfb45a73dc26e82f9d8f048cf452.tar.gz
guix-e57e7eaea072bfb45a73dc26e82f9d8f048cf452.zip
gnu: python-grpcio: Update to 1.47.0.
* gnu/packages/rpc.scm (python-grpcio): Update to 1.47.0. [source]{snippet}: Remove abseil-cpp from preserved bundled libraries. Preserve xxhash. [phases]: Delete trailing #t. {use-system-libraries}: Set the GRPC_PYTHON_BUILD_SYSTEM_RE2 and GRPC_PYTHON_BUILD_SYSTEM_ABSL environment variables to 1. Path setup.py. [inputs]: Add abseil-cpp and re2.
Diffstat (limited to 'tests/grafts.scm')
0 files changed, 0 insertions, 0 deletions
te-fhs'. Co-authored-by: Ludovic Courtès <ludo@gnu.org> John Kehayias 2021-10-25environment: Add tests for '--profile'....This is a followup to a643deac2de81755a1843a3b41dd53857678bebc. * tests/guix-environment-container.sh, tests/guix-environment.sh: Add tests for '--profile'. Ludovic Courtès 2020-10-05environment: Turn "lo" up in network-less containers....This is a followup to 0f53c801b91919380a924b402d1ff822bb1dc6ea. * guix/scripts/environment.scm (launch-environment/container): Add call to 'set-network-interface-up'. * tests/guix-environment-container.sh: Add test. Ludovic Courtès 2020-10-02environment: Provide /etc/hosts in containers without '--network'....Fixes <https://bugs.gnu.org/43762>. * guix/scripts/environment.scm (launch-environment/container): Create /etc/hosts when NETWORK? is false. * tests/guix-environment-container.sh: Add "localhost" resolution test. Ludovic Courtès 2020-09-21environment: '--link-profile' uses ~/.guix-profile for environment variables....Before this patch, we had: $ guix environment -CP --ad-hoc coreutils [env]$ echo $PATH /gnu/store/…-profile/bin [env]$ echo $GUIX_ENVIRONMENT /gnu/store/…-profile After this patch: $ guix environment -CP --ad-hoc coreutils [env]$ echo $PATH /home/ludo/.guix-profile/bin [env]$ echo $GUIX_ENVIRONMENT /home/ludo/.guix-profile * guix/scripts/environment.scm (launch-environment/container): When LINK-PROFILE? is true, pass ~/.guix-profile as the second argument to 'launch-environment'. * tests/guix-environment-container.sh: Adjust test accordingly. * doc/guix.texi (Invoking guix environment): Update accordingly. Ludovic Courtès 2020-06-20tests: Actually run 'tests/guix-environment-container.sh'....This test was skipped since the switch to Guile 3 because 'assert-container-features' would be inlined and thus accessing it with @@ would fail with an unbound-variable error. * guix/scripts/environment.scm (assert-container-features): Export. * tests/guix-environment-container.sh: Use single '@'. Ludovic Courtès