1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-15 19:40:46 +02:00

Merge branch 'master' into core-updates

Conflicts:
	Makefile.am
	gnu/packages/autotools.scm
	gnu/packages/guile.scm
	gnu/packages/python.scm
	gnu/packages/shishi.scm
	guix/gnu-maintenance.scm
	guix/scripts/build.scm
	guix/scripts/gc.scm
	guix/scripts/package.scm
	guix/scripts/substitute-binary.scm
	guix/ui.scm
	nix/nix-daemon/guix-daemon.cc
	test-env.in
	tests/nar.scm
	tests/store.scm
This commit is contained in:
Ludovic Courtès 2013-04-26 16:43:08 +02:00
commit a9db7d10b6
95 changed files with 1796 additions and 511 deletions

View file

@ -31,7 +31,7 @@
(define-public python
(package
(name "python")
(version "2.7.3")
(version "2.7.4")
(source
(origin
(method url-fetch)
@ -39,12 +39,10 @@
version "/Python-" version ".tar.xz"))
(sha256
(base32
"11f9aw855lrmknr6c82gm1ijr3n0smc6idyp94y7774yivjnplv1"))))
"0bdn4dylm92n2dsvqvjfyask9jbz88aan5hi4lgkawkxs2v6wqmn"))))
(build-system gnu-build-system)
(arguments
`(#:tests? #f ; XXX: some tests fail
#:patches (list (assoc-ref %build-inputs "patch-dbm"))
#:patch-flags '("-p0")
#:configure-flags
(let ((bz2 (assoc-ref %build-inputs "bzip2"))
(gdbm (assoc-ref %build-inputs "gdbm"))
@ -68,8 +66,7 @@
("gdbm" ,gdbm)
("openssl" ,openssl)
("readline" ,readline)
("zlib" ,zlib)
("patch-dbm" ,(search-patch "python-fix-dbm.patch"))))
("zlib" ,zlib)))
(native-search-paths
(list (search-path-specification
(variable "PYTHONPATH")