svn commit: r466737 - in head/science: . rubygem-rgeo

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Sat Apr 7 16:32:21 UTC 2018


Author: sunpoet
Date: Sat Apr  7 16:32:18 2018
New Revision: 466737
URL: https://svnweb.freebsd.org/changeset/ports/466737

Log:
  Add rubygem-rgeo 1.0.0
  
  RGeo is a geospatial data library for Ruby.
  
  RGeo is a key component for writing location-aware applications in the Ruby
  programming language. At its core is an implementation of the industry standard
  OGC Simple Features Specification, which provides data representations of
  geometric objects such as points, lines, and polygons, along with a set of
  geometric analysis operations. This makes it ideal for modeling geolocation
  data. It also supports a suite of optional add-on modules that provide various
  geolocation-related services.
  
  Use the core rgeo gem to:
  - Represent spatial and geolocation data objects such as points, lines, and
    polygons in your Ruby application.
  - Perform standard spatial analysis operations such as finding intersections,
    creating buffers, and computing lengths and areas.
  - Correctly handle spherical geometry, and compute geographic projections for
    map display and data analysis.
  - Read and write location data in the WKT and WKB representations used by
    spatial databases.
  
  WWW: https://github.com/rgeo/rgeo

Added:
  head/science/rubygem-rgeo/
  head/science/rubygem-rgeo/Makefile   (contents, props changed)
  head/science/rubygem-rgeo/distinfo   (contents, props changed)
  head/science/rubygem-rgeo/pkg-descr   (contents, props changed)
Modified:
  head/science/Makefile

Modified: head/science/Makefile
==============================================================================
--- head/science/Makefile	Sat Apr  7 16:32:13 2018	(r466736)
+++ head/science/Makefile	Sat Apr  7 16:32:18 2018	(r466737)
@@ -197,6 +197,7 @@
     SUBDIR += rdkit
     SUBDIR += rubygem-ai4r
     SUBDIR += rubygem-cdo
+    SUBDIR += rubygem-rgeo
     SUBDIR += rubygem-ruby-dcl
     SUBDIR += rubygem-ruby-netcdf
     SUBDIR += sigrok-cli

Added: head/science/rubygem-rgeo/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/science/rubygem-rgeo/Makefile	Sat Apr  7 16:32:18 2018	(r466737)
@@ -0,0 +1,20 @@
+# Created by: Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	rgeo
+PORTVERSION=	1.0.0
+CATEGORIES=	science rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	sunpoet at FreeBSD.org
+COMMENT=	Geospatial data library for Ruby (RGeo)
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+LIB_DEPENDS=	libgeos.so:graphics/geos
+
+USE_RUBY=	yes
+USES=		gem
+
+.include <bsd.port.mk>

Added: head/science/rubygem-rgeo/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/science/rubygem-rgeo/distinfo	Sat Apr  7 16:32:18 2018	(r466737)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1522602101
+SHA256 (rubygem/rgeo-1.0.0.gem) = 8aa0317cc38e1c14ed8e82c3e499f8cb0323f411a08321ad4cb2417235f56694
+SIZE (rubygem/rgeo-1.0.0.gem) = 107008

Added: head/science/rubygem-rgeo/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/science/rubygem-rgeo/pkg-descr	Sat Apr  7 16:32:18 2018	(r466737)
@@ -0,0 +1,21 @@
+RGeo is a geospatial data library for Ruby.
+
+RGeo is a key component for writing location-aware applications in the Ruby
+programming language. At its core is an implementation of the industry standard
+OGC Simple Features Specification, which provides data representations of
+geometric objects such as points, lines, and polygons, along with a set of
+geometric analysis operations. This makes it ideal for modeling geolocation
+data. It also supports a suite of optional add-on modules that provide various
+geolocation-related services.
+
+Use the core rgeo gem to:
+- Represent spatial and geolocation data objects such as points, lines, and
+  polygons in your Ruby application.
+- Perform standard spatial analysis operations such as finding intersections,
+  creating buffers, and computing lengths and areas.
+- Correctly handle spherical geometry, and compute geographic projections for
+  map display and data analysis.
+- Read and write location data in the WKT and WKB representations used by
+  spatial databases.
+
+WWW: https://github.com/rgeo/rgeo


More information about the svn-ports-head mailing list