diff options
author | Marius Bakke <mbakke@fastmail.com> | 2017-12-13 07:26:42 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2017-12-13 07:26:42 +0100 |
commit | f7c03e452b25b86123e0a9478fdb5541f259ddee (patch) | |
tree | 13d25cb456ba9cc56116098792763471f9ca2a6d /gnu/packages/tcl.scm | |
parent | 971af38c897208a270bc334f137598a55fcc7628 (diff) | |
download | guix-f7c03e452b25b86123e0a9478fdb5541f259ddee.tar guix-f7c03e452b25b86123e0a9478fdb5541f259ddee.tar.gz |
gnu: tcl, tk: Update to 8.6.7.
* gnu/packages/tcl.scm (tcl): Update to 8.6.7.
[source]: Remove obsolete patch.
(tk): Update to 8.6.7.
* gnu/packages/patches/tcl-mkindex-deterministic.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
Diffstat (limited to 'gnu/packages/tcl.scm')
-rw-r--r-- | gnu/packages/tcl.scm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/packages/tcl.scm b/gnu/packages/tcl.scm index 8591ff808c..01649ff410 100644 --- a/gnu/packages/tcl.scm +++ b/gnu/packages/tcl.scm @@ -38,15 +38,14 @@ (define-public tcl (package (name "tcl") - (version "8.6.6") + (version "8.6.7") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/tcl/Tcl/" version "/tcl" version "-src.tar.gz")) (sha256 (base32 - "01zypqhy57wvh1ikk28bg733sk5kf4q568pq9v6fvcz4h6bl0rd2")) - (patches (search-patches "tcl-mkindex-deterministic.patch")))) + "19bb09l55alz4jb38961ikd5116q80s51bjvzqy44ckkwf28ysvw")))) (build-system gnu-build-system) (arguments '(#:phases (alist-cons-before @@ -137,14 +136,14 @@ X11 GUIs.") (define-public tk (package (name "tk") - (version "8.6.6") + (version "8.6.7") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/tcl/Tcl/" version "/tk" version "-src.tar.gz")) (sha256 (base32 - "17diivcfcwdhp4v5zi6j9nkxncccjqkivhp363c4wx5lf4d3fb6n")) + "1aipcf6qmbgi15av8yrpp2hx6vdwr684r6739p8cgdzrajiy4786")) (patches (search-patches "tk-find-library.patch")))) (build-system gnu-build-system) (arguments |