From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39077) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f1Dm4-0000O1-6V for guix-patches@gnu.org; Wed, 28 Mar 2018 12:18:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f1Dly-0006MS-Ei for guix-patches@gnu.org; Wed, 28 Mar 2018 12:18:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:49637) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1f1Dly-0006M3-AO for guix-patches@gnu.org; Wed, 28 Mar 2018 12:18:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1f1Dly-0007qI-4U for guix-patches@gnu.org; Wed, 28 Mar 2018 12:18:02 -0400 Subject: [bug#30972] [PATCH] gnu: virtuoso-ose: Unbundle zlib and build with readline Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38998) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f1Dla-0000LL-Mj for guix-patches@gnu.org; Wed, 28 Mar 2018 12:17:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f1DlW-0006Bx-TW for guix-patches@gnu.org; Wed, 28 Mar 2018 12:17:38 -0400 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:47908) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f1DlW-0006Bq-PU for guix-patches@gnu.org; Wed, 28 Mar 2018 12:17:34 -0400 Received: from ip-80-113-14-101.ip.prioritytelecom.net ([80.113.14.101]:61955 helo=yellowstone) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1f1DlW-0001b3-AI for guix-patches@gnu.org; Wed, 28 Mar 2018 12:17:34 -0400 From: Roel Janssen Message-ID: <87k1twkwex.fsf@gnu.org> Date: Wed, 28 Mar 2018 18:17:27 +0200 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 30972@debbugs.gnu.org --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: attachment; filename=0001-gnu-virtuoso-ose-Unbundle-zlib-and-build-with-readli.patch Content-Transfer-Encoding: 8bit >From 80b26cfcc3d64588738e5fecc92f3eabc214ed4c Mon Sep 17 00:00:00 2001 From: Roel Janssen Date: Wed, 28 Mar 2018 18:13:23 +0200 Subject: [PATCH] gnu: virtuoso-ose: Unbundle zlib and build with readline support. * gnu/packages/databases.scm (virtuoso-ose): Unbundle zlib and build with readline support. --- gnu/packages/databases.scm | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 0622b5f37..d66fdb957 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -12,7 +12,7 @@ ;;; Copyright © 2016 Christopher Allan Webber ;;; Copyright © 2015, 2016, 2017, 2018 Efraim Flashner ;;; Copyright © 2016, 2017 Nils Gillmann -;;; Copyright © 2016, 2017 Roel Janssen +;;; Copyright © 2016, 2017, 2018 Roel Janssen ;;; Copyright © 2016 David Craven ;;; Copyright © 2016 Jan Nieuwenhuizen ;;; Copyright © 2016 Andy Patterson @@ -2040,10 +2040,14 @@ implementation for Python.") (base32 "12dqam1gc1v93l0bj0vlpvjqppki6y1hqrlznywxnw0rrz9pb002")))) (build-system gnu-build-system) (arguments - `(#:tests? #f)) ; Tests require a network connection. + `(#:tests? #f ; Tests require a network connection. + #:configure-flags '("--without-internal-zlib" + "--with-readline"))) (inputs `(("openssl" ,openssl) - ("net-tools" ,net-tools))) + ("net-tools" ,net-tools) + ("readline" ,readline) + ("zlib" ,zlib))) (home-page "http://vos.openlinksw.com/owiki/wiki/VOS/") (synopsis "Multi-model database system") (description "Virtuoso is a scalable cross-platform server that combines -- 2.16.2 --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Dear Guix, I'd like to change the Virtuoso recipe to use readline so that we can go to previous commands in the “isql” command-line program. And I'd like to unbundle zlib. Kind regards, Roel Janssen --=-=-=--