From patchwork Fri Jul 22 23:36:41 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Ricardo Wurmus X-Patchwork-Id: 13938 Received: (qmail 29848 invoked by uid 89); 22 Jul 2016 23:37:14 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Checked: by ClamAV 0.99.1 on sourceware.org X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.2 required=5.0 tests=BAYES_00, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 spammy=Portable, Hx-languages-length:1838 X-Spam-Status: No, score=-3.2 required=5.0 tests=BAYES_00, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on sourceware.org X-Spam-Level: X-HELO: lists.gnu.org Received: from lists.gnu.org (HELO lists.gnu.org) (208.118.235.17) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Fri, 22 Jul 2016 23:37:04 +0000 Received: from localhost ([::1]:49735 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bQk05-0003UX-Pf for patchwork@sourceware.org; Fri, 22 Jul 2016 19:37:01 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48817) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bQk00-0003UR-Qk for guix-devel@gnu.org; Fri, 22 Jul 2016 19:36:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bQjzv-0004gJ-Ss for guix-devel@gnu.org; Fri, 22 Jul 2016 19:36:56 -0400 Received: from sender163-mail.zoho.com ([74.201.84.163]:24689) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bQjzv-0004g8-KU for guix-devel@gnu.org; Fri, 22 Jul 2016 19:36:51 -0400 Received: from localhost (x4d0c84ee.dyn.telefonica.de [77.12.132.238]) by mx.zohomail.com with SMTPS id 1469230605481780.9314642656955; Fri, 22 Jul 2016 16:36:45 -0700 (PDT) User-agent: mu4e 0.9.16; emacs 24.5.1 From: Ricardo Wurmus To: guix-devel Subject: [PATCH] Add trio (dependency of ghostscript) Date: Sat, 23 Jul 2016 01:36:41 +0200 Message-ID: <87zip9ckja.fsf@elephly.net> MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 74.201.84.163 X-BeenThere: guix-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+patchwork=sourceware.org@gnu.org Sender: "Guix-devel" Hi Guix, I noticed that GNU Ghostscript (and the unpackaged AGPL Ghostscript) bundles a few dependencies. One of them is trio. Here’s a working build of this library that has been sitting in my “wip” branch for more than a year. ~~ Ricardo From 15ee46e1db30696c0f1dade014d619a8383dfa96 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Thu, 3 Sep 2015 13:28:25 +0200 Subject: [PATCH] gnu: Add trio. * gnu/packages/code.scm (trio): New variable. --- gnu/packages/code.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/code.scm b/gnu/packages/code.scm index c3efd15..cce6945 100644 --- a/gnu/packages/code.scm +++ b/gnu/packages/code.scm @@ -229,6 +229,29 @@ files, but compared to grep is much faster and respects files like .gitignore, .hgignore, etc.") (license license:asl2.0))) +(define-public trio + (package + (name "trio") + (version "1.16") + (source (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/ctrio/trio/trio-" + version ".tar.gz")) + (sha256 + (base32 + "02pwd5m5vq7hbrffgm2na1dfc249z50yyr5jv73vdw15bd7ygl44")))) + (build-system gnu-build-system) + (home-page "http://daniel.haxx.se/projects/trio/") + (synopsis "Portable and extendable printf and string functions") + (description + "Trio is a set of @code{printf} and string functions designed be used by +applications with a focus on portability or with the need for additional +features that are not supported by the standard @code{stdio} implementation.") + ;; This license is very similar to the ISC license, but the wording is + ;; slightly different. + (license (license:non-copyleft + "http://sourceforge.net/p/ctrio/git/ci/master/tree/README")))) + (define-public withershins (package (name "withershins") -- 2.8.4