summaryrefslogtreecommitdiff
path: root/gnu/packages/patches
diff options
context:
space:
mode:
authorLeo Famulari <leo@famulari.name>2017-03-13 00:11:12 -0400
committerLeo Famulari <leo@famulari.name>2017-03-13 15:33:54 -0400
commit7cb68a3cb3082cb6ae5435c28ae7f9278e4d1a0f (patch)
treeae6240a4f3a278cad7e894b96fa6b84864b2720a /gnu/packages/patches
parentbe81133a13932bc83b0697d73581a47674ef6987 (diff)
downloadguix-patches-7cb68a3cb3082cb6ae5435c28ae7f9278e4d1a0f.tar
guix-patches-7cb68a3cb3082cb6ae5435c28ae7f9278e4d1a0f.tar.gz
gnu: Remove python-3.4.
* gnu/packages/python.scm (python-3.4): Remove variable. * gnu/packages/patches/python-3.4-fix-tests.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Remove it.
Diffstat (limited to 'gnu/packages/patches')
-rw-r--r--gnu/packages/patches/python-3.4-fix-tests.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/gnu/packages/patches/python-3.4-fix-tests.patch b/gnu/packages/patches/python-3.4-fix-tests.patch
deleted file mode 100644
index d1f8138e79..0000000000
--- a/gnu/packages/patches/python-3.4-fix-tests.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- Lib/test/test_posixpath.py 2014-03-01 05:46:56.984311000 +0100
-+++ Lib/test/test_posixpath.py 2014-03-07 00:59:20.888311000 +0100
-@@ -319,7 +319,11 @@
- del env['HOME']
- home = pwd.getpwuid(os.getuid()).pw_dir
- # $HOME can end with a trailing /, so strip it (see #17809)
-- self.assertEqual(posixpath.expanduser("~"), home.rstrip("/"))
-+ # The Guix builders have '/' as a home directory, so
-+ # home.rstrip("/") will be an empty string and the test will
-+ # fail. Let's just disable it since it does not really make
-+ # sense with such a bizarre setup.
-+ # self.assertEqual(posixpath.expanduser("~"), home.rstrip("/"))