aboutsummaryrefslogtreecommitdiff
path: root/tests/cve-sample.json
diff options
context:
space:
mode:
authorMarius Bakke <mbakke@fastmail.com>2020-01-14 19:52:58 +0100
committerMarius Bakke <mbakke@fastmail.com>2020-01-24 20:44:29 +0100
commitb15d1c467fd5de9724c3a47c4d0d9c26246e8dc9 (patch)
treeed786874b8e768059f492e0a1edf29ad485b79c1 /tests/cve-sample.json
parent49d7167328aa1a1f6408f220b1864094d1630a06 (diff)
downloadguix-b15d1c467fd5de9724c3a47c4d0d9c26246e8dc9.tar.gz
guix-b15d1c467fd5de9724c3a47c4d0d9c26246e8dc9.zip
gnu: Python: Update to 3.8.1.
* gnu/packages/python.scm (python-3.7): Rename to ... (python-3.8): ... this. Update to 3.8.1. [source](patches): Add "python-3.8-fix-tests.patch". [source](snippet): Adjust for renamed file. (python-3): Alias to PYTHON-3.8. * gnu/packages/patches/python-3-search-paths.patch: Adjust for 3.8. * gnu/packages/patches/python-3.8-search-paths.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Adjust accordingly.
Diffstat (limited to 'tests/cve-sample.json')
0 files changed, 0 insertions, 0 deletions
os;packages ('list (transform ('specification->package "guile@2.0.9")) ('list ('specification->package "gcc") "lib") ('specification->package "glibc@2.19"))) ('services ('list))))) (define-home-environment-matcher match-home-environment-no-services-nor-packages ('begin ('use-modules ('gnu 'home) ('gnu 'packages) ('gnu 'services)) ('home-environment ('packages ('specifications->packages ('list))) ('services ('list))))) (define-home-environment-matcher match-home-environment-bash-service ('begin ('use-modules ('gnu 'home) ('gnu 'packages) ('gnu 'services) ('guix 'gexp) ('gnu 'home 'services 'shells)) ('home-environment ('packages ('specifications->packages ('list))) ('services ('list ('service 'home-bash-service-type ('home-bash-configuration ('aliases ('quote ())) ('bashrc ('list ('local-file "/tmp/guix-config/.bashrc" "bashrc")))))))))) (define-home-environment-matcher match-home-environment-bash-service-with-alias ('begin ('use-modules ('gnu 'home) ('gnu 'packages) ('gnu 'services) ('guix 'gexp) ('gnu 'home 'services 'shells)) ('home-environment ('packages ('specifications->packages ('list))) ('services ('list ('service 'home-bash-service-type ('home-bash-configuration ('aliases ('quote (("grep" . "grep --exclude-from=\"$HOME/.grep-exclude\"") ("ls" . "ls -p")))) ('bashrc ('list ('local-file "/tmp/guix-config/.bashrc" "bashrc")))))))))) (test-assert "manifest->code: No services" (eval-test-with-home-environment '() (make-manifest (list guile-2.0.9 gcc glibc)) match-home-environment-no-services)) (test-assert "manifest->code: No services, package transformations" (eval-test-with-home-environment '() (make-manifest (list (manifest-entry (inherit guile-2.0.9) (properties `((transformations . ((foo . "bar")))))) gcc glibc)) match-home-environment-transformations)) (test-assert "manifest->code: No packages nor services" (eval-test-with-home-environment '() (make-manifest '()) match-home-environment-no-services-nor-packages)) (test-assert "manifest->code: Bash service" (eval-test-with-home-environment '((".bashrc" . "echo 'hello guix'")) (make-manifest '()) match-home-environment-bash-service)) (test-assert "manifest->code: Bash service with aliases" (eval-test-with-home-environment '((".bashrc" . "# Aliases alias ls=\"ls -p\"; alias grep='grep --exclude-from=\"$HOME/.grep-exclude\"'\n")) (make-manifest '()) match-home-environment-bash-service-with-alias)) (test-end "home-import")