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/patches/tcl-mkindex-deterministic.patch | |
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/patches/tcl-mkindex-deterministic.patch')
-rw-r--r-- | gnu/packages/patches/tcl-mkindex-deterministic.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/gnu/packages/patches/tcl-mkindex-deterministic.patch b/gnu/packages/patches/tcl-mkindex-deterministic.patch deleted file mode 100644 index 2fcef6a4f7..0000000000 --- a/gnu/packages/patches/tcl-mkindex-deterministic.patch +++ /dev/null @@ -1,29 +0,0 @@ -This patch ensures that the 'tclIndex' files generated by 'auto_mkindex' -are sorted in a deterministic fashion. - -Fixes a non-determinism issue reported -at <https://lists.gnu.org/archive/html/guix-devel/2015-10/msg00696.html>. - ---- tcl8.6.4/library/auto.tcl 2015-02-26 17:57:28.000000000 +0100 -+++ tcl8.6.4/library/auto.tcl 2015-11-13 23:18:34.964831717 +0100 -@@ -207,6 +207,9 @@ proc auto_mkindex {dir args} { - set args *.tcl - } - -+ # Keep file names sorted in a determistic order. -+ set args [lsort -ascii $args] -+ - auto_mkindex_parser::init - foreach file [glob -- {*}$args] { - try { -@@ -241,6 +244,10 @@ proc auto_mkindex_old {dir args} { - if {![llength $args]} { - set args *.tcl - } -+ -+ # Keep file names sorted in a determistic order. -+ set args [lsort -ascii $args] -+ - foreach file [glob -- {*}$args] { - set f "" - set error [catch { |