From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54087) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eJ2et-0003vg-7z for guix-patches@gnu.org; Sun, 26 Nov 2017 14:32:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eJ2ep-0006dh-15 for guix-patches@gnu.org; Sun, 26 Nov 2017 14:32:07 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:50947) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eJ2eo-0006da-UK for guix-patches@gnu.org; Sun, 26 Nov 2017 14:32:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eJ2eo-0003WM-OQ for guix-patches@gnu.org; Sun, 26 Nov 2017 14:32:02 -0500 Subject: [bug#29460] [PATCH] gnu: Add gama. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53838) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eJ2e3-0003EP-2c for guix-patches@gnu.org; Sun, 26 Nov 2017 14:31:16 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eJ2dy-0006Bj-DC for guix-patches@gnu.org; Sun, 26 Nov 2017 14:31:15 -0500 Received: from flashner.co.il ([178.62.234.194]:35904) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eJ2dy-0006BX-5Z for guix-patches@gnu.org; Sun, 26 Nov 2017 14:31:10 -0500 Received: from macbook41.lan (46-117-129-230.bb.netvision.net.il [46.117.129.230]) by flashner.co.il (Postfix) with ESMTPSA id 495B6403D9 for ; Sun, 26 Nov 2017 19:31:09 +0000 (UTC) From: Efraim Flashner Date: Sun, 26 Nov 2017 21:31:05 +0200 Message-Id: <20171126193105.7349-2-efraim@flashner.co.il> In-Reply-To: <20171126193105.7349-1-efraim@flashner.co.il> References: <20171126193105.7349-1-efraim@flashner.co.il> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable 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: 29460@debbugs.gnu.org * gnu/packages/gps.scm (gama): New variable. --- gnu/packages/gps.scm | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/gnu/packages/gps.scm b/gnu/packages/gps.scm index 10592c23e..cf3a8840e 100644 --- a/gnu/packages/gps.scm +++ b/gnu/packages/gps.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright =C2=A9 2014, 2015 Ludovic Court=C3=A8s -;;; Copyright =C2=A9 2016 Efraim Flashner +;;; Copyright =C2=A9 2016, 2017 Efraim Flashner ;;; ;;; This file is part of GNU Guix. ;;; @@ -26,6 +26,7 @@ #:use-module (gnu packages base) #:use-module (gnu packages pkg-config) #:use-module (gnu packages compression) + #:use-module (gnu packages databases) #:use-module (gnu packages docbook) #:use-module (gnu packages image) #:use-module (gnu packages xml) @@ -131,3 +132,31 @@ the photo was taken. It does this by using the time= stamp in the photo and finding a data point in the GPS track that matches, or interpolating a p= oint between two other data points.") (license license:gpl2+)))) + +(define-public gama + (package + (name "gama") + (version "1.21") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://gnu/gama/gama-" + version ".tar.gz")) + (sha256 + (base32 + "0yy8czw5dldbw1qj5v2h2wfh397bfx5wd3lrrgs8m1qdf1njnhcq")))) + (build-system gnu-build-system) + (arguments '(#:parallel-tests? #f)) ; race condition + (native-inputs + `(("libxml2" ,libxml2))) + (inputs + `(("expat" ,expat) + ("sqlite" ,sqlite))) + (home-page "https://www.gnu.org/software/gama/manual/") + (synopsis "Adjustment of geodetic networks") + (description + "GNU Gama is a program for the adjustment of geodetic networks. It= is +useful in measurements where Global Positioning System (GPS) is not avai= lable, +such as underground. It features the ability to adjust in local Cartesi= an +coordinates as well as partial support for adjustments in global coordin= ate systems.") + (license license:gpl3+))) --=20 2.15.0