guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: texmacs: Update to 2.1.


From: guix-commits
Subject: branch master updated: gnu: texmacs: Update to 2.1.
Date: Wed, 23 Jun 2021 03:37:53 -0400

This is an automated email from the git hooks/post-receive script.

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new cde7068  gnu: texmacs: Update to 2.1.
cde7068 is described below

commit cde7068e8cb28b7245cfa07b8aa788039012f972
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Wed Jun 23 09:36:35 2021 +0200

    gnu: texmacs: Update to 2.1.
    
    * gnu/packages/text-editors.scm (texmacs): Update to 2.1.
    [arguments]: Remove #t at the end of phases.
---
 gnu/packages/text-editors.scm | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm
index 06ae653..23d0484 100644
--- a/gnu/packages/text-editors.scm
+++ b/gnu/packages/text-editors.scm
@@ -839,14 +839,14 @@ editors.")
 (define-public texmacs
   (package
     (name "texmacs")
-    (version "1.99.21")
+    (version "2.1")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://www.texmacs.org/Download/ftp/tmftp/";
                            "source/TeXmacs-" version "-src.tar.gz"))
        (sha256
-        (base32 "0zmm8212cha22dp1xablj1h4anlnyhjh09n13ckqf6ppb1bkf4gm"))))
+        (base32 "1gl6k1bwrk1y7hjyl4xvlqvmk5crl4jvsk8wrfp7ynbdin6n2i48"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)
@@ -867,16 +867,14 @@ editors.")
              (let ((out (assoc-ref outputs "out")))
                (substitute* "packages/linux/icons.sh"
                  (("/usr/share")
-                  (string-append out "/share")))
-               #t)))
+                  (string-append out "/share"))))))
          (add-after 'install 'install-desktop-file
            (lambda* (#:key outputs #:allow-other-keys)
              ;; Install desktop file.
              (let* ((out (assoc-ref outputs "out"))
                     (apps (string-append out "/share/applications"))
                     (source "TeXmacs/misc/mime/texmacs.desktop"))
-               (install-file source apps)
-               #t)))
+               (install-file source apps))))
          (add-before 'configure 'gzip-flags
            (lambda _
              (substitute* "Makefile.in"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]