emacs-bug-tracker
[Top][All Lists]
Advanced

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

[debbugs-tracker] bug#26375: closed ([PATCH] gnu: Add tclx.)


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#26375: closed ([PATCH] gnu: Add tclx.)
Date: Mon, 10 Apr 2017 21:31:01 +0000

Your message dated Mon, 10 Apr 2017 17:30:29 -0400
with message-id <address@hidden>
and subject line Re: bug#26375: [PATCH] gnu: Add tclx.
has caused the debbugs.gnu.org bug report #26375,
regarding [PATCH] gnu: Add tclx.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
26375: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=26375
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: Add tclx. Date: Wed, 5 Apr 2017 15:14:33 -0400
* gnu/packages/tcl.scm (tclx): New variable.
---
 gnu/packages/tcl.scm | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/gnu/packages/tcl.scm b/gnu/packages/tcl.scm
index 4cd94299d..e6b01fcd4 100644
--- a/gnu/packages/tcl.scm
+++ b/gnu/packages/tcl.scm
@@ -4,6 +4,7 @@
 ;;; Copyright © 2014 Eric Bavier <address@hidden>
 ;;; Copyright © 2016 Efraim Flashner <address@hidden>
 ;;; Copyright © 2016 Jan Nieuwenhuizen <address@hidden>
+;;; Copyright © 2017 Kei Kebreau <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -290,3 +291,35 @@ callback is evaluated.")
     (license (non-copyleft
               "file://LICENCE"
               "See LICENCE in the distribution."))))
+
+(define-public tclx
+  (package
+    (name "tclx")
+    (version "8.4.1")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://sourceforge/tclx/TclX/"
+                                  version "/tclx" version ".tar.bz2"))
+              (sha256
+               (base32
+                "1v2qwzzidz0is58fd1p7wfdbscxm3ip2wlbqkj5jdhf6drh1zd59"))))
+    (build-system gnu-build-system)
+    (arguments
+     '(#:tests? #f ; a test named profile.test segfaults
+       #:configure-flags (list (string-append "--with-tcl="
+                                              (assoc-ref %build-inputs "tcl")
+                                              "/lib")
+                               (string-append "--libdir="
+                                              (assoc-ref %outputs "out")
+                                              "/lib"))))
+    (inputs
+     `(("tcl" ,tcl)
+       ("tk" ,tk)))
+    (home-page "http://tclx.sourceforge.net/";)
+    (synopsis "System programming extensions for Tcl")
+    (description
+     "Extended Tcl is oriented towards system programming tasks and large
+application development.  TclX provides additional interfaces to the operating
+system, and adds many new programming constructs, text manipulation tools, and
+debugging tools.")
+    (license tcl/tk)))
-- 
2.11.1




--- End Message ---
--- Begin Message --- Subject: Re: bug#26375: [PATCH] gnu: Add tclx. Date: Mon, 10 Apr 2017 17:30:29 -0400 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1 (gnu/linux)
address@hidden (Ludovic Courtès) writes:

> Kei Kebreau <address@hidden> skribis:
>
>> * gnu/packages/tcl.scm (tclx): New variable.
>
> LGTM, thanks!
>
> Ludo'.

Pushed to master. Thanks for the review.

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

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