All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/libgeos: new package
@ 2021-01-12  8:18 Maxim Kochetkov
  2021-01-23 21:37 ` Yann E. MORIN
  0 siblings, 1 reply; 2+ messages in thread
From: Maxim Kochetkov @ 2021-01-12  8:18 UTC (permalink / raw)
  To: buildroot

GEOS (Geometry Engine - Open Source) is a C++ port of the ?JTS Topology Suite (JTS).
It aims to contain the complete functionality of JTS in C++. This includes all the
?OpenGIS Simple Features for SQL spatial predicate functions and spatial operators,
as well as specific JTS enhanced functions.

https://trac.osgeo.org/geos

Signed-off-by: Maxim Kochetkov <fido_max@inbox.ru>
---
 package/Config.in            |  1 +
 package/libgeos/Config.in    | 13 +++++++++++++
 package/libgeos/libgeos.hash |  3 +++
 package/libgeos/libgeos.mk   | 15 +++++++++++++++
 4 files changed, 32 insertions(+)
 create mode 100644 package/libgeos/Config.in
 create mode 100644 package/libgeos/libgeos.hash
 create mode 100644 package/libgeos/libgeos.mk

diff --git a/package/Config.in b/package/Config.in
index 5a16814ca8..670a5eb9a4 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -1901,6 +1901,7 @@ menu "Other"
 	source "package/libevent/Config.in"
 	source "package/libffi/Config.in"
 	source "package/libgee/Config.in"
+	source "package/libgeos/Config.in"
 	source "package/libglib2/Config.in"
 	source "package/libglob/Config.in"
 	source "package/libical/Config.in"
diff --git a/package/libgeos/Config.in b/package/libgeos/Config.in
new file mode 100644
index 0000000000..404832f4db
--- /dev/null
+++ b/package/libgeos/Config.in
@@ -0,0 +1,13 @@
+config BR2_PACKAGE_LIBGEOS
+	bool "libgeos"
+	depends on BR2_INSTALL_LIBSTDCPP
+	help
+	  GEOS (Geometry Engine - Open Source) is a C++ port of the ?JTS Topology Suite (JTS).
+	  It aims to contain the complete functionality of JTS in C++. This includes all the
+	  ?OpenGIS Simple Features for SQL spatial predicate functions and spatial operators,
+	  as well as specific JTS enhanced functions.
+
+	  https://trac.osgeo.org/geos
+
+comment "libgeos needs a toolchain w/ C++"
+	depends on !BR2_INSTALL_LIBSTDCPP
\ No newline at end of file
diff --git a/package/libgeos/libgeos.hash b/package/libgeos/libgeos.hash
new file mode 100644
index 0000000000..5b5e44c7c5
--- /dev/null
+++ b/package/libgeos/libgeos.hash
@@ -0,0 +1,3 @@
+# Locally calculated
+sha256  bd8082cf12f45f27630193c78bdb5a3cba847b81e72b20268356c2a4fc065269  geos-3.9.0.tar.bz2
+sha256  dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551  COPYING
diff --git a/package/libgeos/libgeos.mk b/package/libgeos/libgeos.mk
new file mode 100644
index 0000000000..7b4ace122d
--- /dev/null
+++ b/package/libgeos/libgeos.mk
@@ -0,0 +1,15 @@
+################################################################################
+#
+# libgeos
+#
+################################################################################
+
+LIBGEOS_VERSION = 3.9.0
+LIBGEOS_SITE = http://download.osgeo.org/geos
+LIBGEOS_SOURCE = geos-$(LIBGEOS_VERSION).tar.bz2
+LIBGEOS_LICENSE = LGPL-2.1
+LIBGEOS_LICENSE_FILES = COPYING
+LIBGEOS_INSTALL_STAGING = YES
+LIBGEOS_CONFIG_SCRIPTS = geos-config
+
+$(eval $(cmake-package))
-- 
2.29.2

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [Buildroot] [PATCH 1/1] package/libgeos: new package
  2021-01-12  8:18 [Buildroot] [PATCH 1/1] package/libgeos: new package Maxim Kochetkov
@ 2021-01-23 21:37 ` Yann E. MORIN
  0 siblings, 0 replies; 2+ messages in thread
From: Yann E. MORIN @ 2021-01-23 21:37 UTC (permalink / raw)
  To: buildroot

Maxim, All,

On 2021-01-12 11:18 +0300, Maxim Kochetkov via buildroot spake thusly:
> GEOS (Geometry Engine - Open Source) is a C++ port of the ?JTS Topology Suite (JTS).
> It aims to contain the complete functionality of JTS in C++. This includes all the
> ?OpenGIS Simple Features for SQL spatial predicate functions and spatial operators,
> as well as specific JTS enhanced functions.

This commit log should be wrapped at ~72 chars, so I've rewrapped it.

Also, it contains "invisible characters" <200b>, presumably the
"arrow-out-of-box" charaters in the Trac website. I've dropped those
chars.

Ditto for both in the Config.in help text.

> https://trac.osgeo.org/geos
> 
> Signed-off-by: Maxim Kochetkov <fido_max@inbox.ru>

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  package/Config.in            |  1 +
>  package/libgeos/Config.in    | 13 +++++++++++++
>  package/libgeos/libgeos.hash |  3 +++
>  package/libgeos/libgeos.mk   | 15 +++++++++++++++
>  4 files changed, 32 insertions(+)
>  create mode 100644 package/libgeos/Config.in
>  create mode 100644 package/libgeos/libgeos.hash
>  create mode 100644 package/libgeos/libgeos.mk
> 
> diff --git a/package/Config.in b/package/Config.in
> index 5a16814ca8..670a5eb9a4 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -1901,6 +1901,7 @@ menu "Other"
>  	source "package/libevent/Config.in"
>  	source "package/libffi/Config.in"
>  	source "package/libgee/Config.in"
> +	source "package/libgeos/Config.in"
>  	source "package/libglib2/Config.in"
>  	source "package/libglob/Config.in"
>  	source "package/libical/Config.in"
> diff --git a/package/libgeos/Config.in b/package/libgeos/Config.in
> new file mode 100644
> index 0000000000..404832f4db
> --- /dev/null
> +++ b/package/libgeos/Config.in
> @@ -0,0 +1,13 @@
> +config BR2_PACKAGE_LIBGEOS
> +	bool "libgeos"
> +	depends on BR2_INSTALL_LIBSTDCPP
> +	help
> +	  GEOS (Geometry Engine - Open Source) is a C++ port of the ?JTS Topology Suite (JTS).
> +	  It aims to contain the complete functionality of JTS in C++. This includes all the
> +	  ?OpenGIS Simple Features for SQL spatial predicate functions and spatial operators,
> +	  as well as specific JTS enhanced functions.
> +
> +	  https://trac.osgeo.org/geos
> +
> +comment "libgeos needs a toolchain w/ C++"
> +	depends on !BR2_INSTALL_LIBSTDCPP
> \ No newline at end of file
> diff --git a/package/libgeos/libgeos.hash b/package/libgeos/libgeos.hash
> new file mode 100644
> index 0000000000..5b5e44c7c5
> --- /dev/null
> +++ b/package/libgeos/libgeos.hash
> @@ -0,0 +1,3 @@
> +# Locally calculated
> +sha256  bd8082cf12f45f27630193c78bdb5a3cba847b81e72b20268356c2a4fc065269  geos-3.9.0.tar.bz2
> +sha256  dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551  COPYING
> diff --git a/package/libgeos/libgeos.mk b/package/libgeos/libgeos.mk
> new file mode 100644
> index 0000000000..7b4ace122d
> --- /dev/null
> +++ b/package/libgeos/libgeos.mk
> @@ -0,0 +1,15 @@
> +################################################################################
> +#
> +# libgeos
> +#
> +################################################################################
> +
> +LIBGEOS_VERSION = 3.9.0
> +LIBGEOS_SITE = http://download.osgeo.org/geos
> +LIBGEOS_SOURCE = geos-$(LIBGEOS_VERSION).tar.bz2
> +LIBGEOS_LICENSE = LGPL-2.1
> +LIBGEOS_LICENSE_FILES = COPYING
> +LIBGEOS_INSTALL_STAGING = YES
> +LIBGEOS_CONFIG_SCRIPTS = geos-config
> +
> +$(eval $(cmake-package))
> -- 
> 2.29.2
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-01-23 21:37 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-12  8:18 [Buildroot] [PATCH 1/1] package/libgeos: new package Maxim Kochetkov
2021-01-23 21:37 ` Yann E. MORIN

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.