From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50513) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dxt3Y-0008Aa-Nf for guix-patches@gnu.org; Fri, 29 Sep 2017 07:02:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dxt3S-0001jM-Ug for guix-patches@gnu.org; Fri, 29 Sep 2017 07:02:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:57219) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dxt3S-0001jF-Qw for guix-patches@gnu.org; Fri, 29 Sep 2017 07:02:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dxt3S-00066Z-HD for guix-patches@gnu.org; Fri, 29 Sep 2017 07:02:02 -0400 Subject: [bug#28643] [PATCH] gnu: Add virtuoso-ose. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50357) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dxt2a-0007Mx-Jl for guix-patches@gnu.org; Fri, 29 Sep 2017 07:01:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dxt2U-0001SP-Pn for guix-patches@gnu.org; Fri, 29 Sep 2017 07:01:08 -0400 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:38283) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dxt2U-0001SK-Lg for guix-patches@gnu.org; Fri, 29 Sep 2017 07:01:02 -0400 Received: from [143.121.198.166] (port=33872 helo=cog147) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1dxt2T-0003cz-V4 for guix-patches@gnu.org; Fri, 29 Sep 2017 07:01:02 -0400 From: Roel Janssen Date: Fri, 29 Sep 2017 13:00:53 +0200 Message-ID: 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: 28643@debbugs.gnu.org --=-=-= Content-Type: text/plain Dear Guix, I'd like to add Virtuoso. The license headers state GPLv2 *only*. Thanks for your time. Kind regards, Roel Janssen --=-=-= Content-Type: text/x-diff; charset=utf-8 Content-Disposition: attachment; filename=0001-gnu-Add-virtuoso-ose.patch Content-Transfer-Encoding: 8bit >From 424ef2345220da129e68c4ff1f37152e0a450ac6 Mon Sep 17 00:00:00 2001 From: Roel Janssen Date: Fri, 29 Sep 2017 12:53:14 +0200 Subject: [PATCH] gnu: Add virtuoso-ose. * gnu/packages/databases.scm (virtuoso-ose): New variable. --- gnu/packages/databases.scm | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 6ce5898..12c2c62 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -9,7 +9,7 @@ ;;; Copyright © 2015 Leo Famulari ;;; Copyright © 2016, 2017 Efraim Flashner ;;; Copyright © 2016, 2017 ng0 -;;; Copyright © 2016 Roel Janssen +;;; Copyright © 2016, 2017 Roel Janssen ;;; Copyright © 2016 David Craven ;;; Copyright © 2016 Jan Nieuwenhuizen ;;; Copyright © 2016 Andy Patterson @@ -1676,3 +1676,28 @@ implementation for Python.") (define-public python2-orator (package-with-python2 (strip-python2-variant python-orator))) + +(define-public virtuoso-ose + (package + (name "virtuoso-ose") + (version "7.2.4.2") + (source + (origin + (method url-fetch) + (uri (string-append + "https://github.com/openlink/virtuoso-opensource/releases/" + "download/v" version "/virtuoso-opensource-" version ".tar.gz")) + (sha256 + (base32 "12dqam1gc1v93l0bj0vlpvjqppki6y1hqrlznywxnw0rrz9pb002")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f)) ; Tests require a network connection. + (inputs + `(("openssl" ,openssl) + ("net-tools" ,net-tools))) + (home-page "http://vos.openlinksw.com/owiki/wiki/VOS/") + (synopsis "Multi-model database system") + (description "Virtuoso is a scalable cross-platform server that combines +relational, graph, and document data management with web application server +and web services platform functionality.") + (license license:gpl2))) -- 2.7.4 --=-=-=--