guix-patches
[Top][All Lists]
Advanced

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

[bug#30492] [PATCH 1/4] gnu: Add libspatialite.


From: Marius Bakke
Subject: [bug#30492] [PATCH 1/4] gnu: Add libspatialite.
Date: Sun, 18 Feb 2018 18:03:02 +0100
User-agent: Notmuch/0.26 (https://notmuchmail.org) Emacs/25.3.1 (x86_64-pc-linux-gnu)

Björn Höfling <address@hidden> writes:

> * gnu/packages/geo.scm (libspatialite): New variable.

Thanks!  Unfortunately this patch no longer applies, can you send an
updated patch?

[...]
 
> +(define-public libspatialite
> +  (package
> +    (name "libspatialite")
> +    (version "4.3.0a")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri (string-append "https://www.gaia-gis.it/gaia-sins/libspatialite-";
> +                           version ".tar.gz"))
> +       (sha256
> +        (base32
> +         "16d4lpl7xrm9zy4gphy6nwanpjp8wn9g4wq2i2kh8abnlhq01448"))))
> +    (build-system gnu-build-system)
> +    (native-inputs
> +     `(("pkg-config" ,pkg-config)))
> +    (inputs
> +     `(("freexl" ,freexl)
> +       ("geos" ,geos)
> +       ("libxml2" ,libxml2)
> +       ("proj.4" ,proj.4)
> +       ("sqlite" ,sqlite)
> +       ("zlib" ,zlib)))
> +    (arguments
> +     `(#:tests? #f)) ; Test failures.

Please also add some details about the test failures, if possible.

> +    (synopsis "Library to extend SQLite to support Spatial SQL capabilities")
> +    (description "SpatiaLite is a library intended to extend the SQLite core
> +to support fully fledged Spatial SQL capabilities.  SpatiaLite is smoothly
> +integrated into SQLite to provide a complete and powerful Spatial DBMS
> +(mostly OGC-SFS compliant).")
> +    (home-page "https://www.gaia-gis.it/fossil/libspatialite/index";)
> +    ;; For the genuine libspatialite-sources holds:
> +    ;; Any of the licenses MPL1.1, GPL2+ or LGPL2.1+  may be picked.
> +    ;; Files under src/control_points are from GRASS
> +    ;; and are licensed under GPL2+ only.
> +    ;; src/md5.[ch]: Placed into the public domain by Alexander Peslyak.
> +    (license (list license:gpl2+
> +                   license:lgpl2.1+
> +                   license:mpl1.1
> +                   license:public-domain))))
> +
>  (define-public proj.4
>    (package
>      (name "proj.4")
> -- 
> 2.16.1

Attachment: signature.asc
Description: PGP signature


reply via email to

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