diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-07-27 11:26:02 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-07-27 11:28:15 +0200 |
commit | 8bece84022752b635b28dba0b051d215bcc19fab (patch) | |
tree | 7bcd4916da86f8069503b0cae80b71f3b6a4d6c4 /gnu | |
parent | 2abd76e8afe64ef4f4041ff02e9b22debb9f0483 (diff) | |
download | patches-8bece84022752b635b28dba0b051d215bcc19fab.tar patches-8bece84022752b635b28dba0b051d215bcc19fab.tar.gz |
gnu: guile: Remove version 2.2.2.
* gnu/packages/guile.scm (guile-2.2.2): Remove.
* guix/self.scm (guile-for-build): Remove special case for "2.2.2".
(guix-derivation): Likewise.
* build-aux/build-self.scm (build): Likewise.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/guile.scm | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index 59f09375ad..a6de4467d3 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -287,21 +287,6 @@ without requiring the source code to be rewritten.") (max-silent-time . 36000))))) ;10 hours (needed on ARM ; when heavily loaded) -(define-public guile-2.2.2 - ;; Keep it so that, when 'guix' runs on 2.2.2, 'guix pull' compiles objects - ;; with 2.2.2, thereby avoiding the ABI incompatibility issues described in - ;; <https://bugs.gnu.org/29570>. - (package - (inherit guile-2.2) - (version "2.2.2") - (source (origin - (inherit (package-source guile-2.2)) - (uri (string-append "mirror://gnu/guile/guile-" version - ".tar.xz")) - (sha256 - (base32 - "1azm25zcmxif0skxfrp11d2wc89nrzpjaann9yxdw6pvjxhs948w")))))) - (define-public guile-next (deprecated-package "guile-next" guile-2.2)) |