[Git][debian-gis-team/libspatialindex][upstream] New upstream version 1.9.3
Bas Couwenberg
gitlab at salsa.debian.org
Thu Oct 24 05:27:01 BST 2019
Bas Couwenberg pushed to branch upstream at Debian GIS Project / libspatialindex
Commits:
c0418671 by Bas Couwenberg at 2019-10-24T04:13:35Z
New upstream version 1.9.3
- - - - -
6 changed files:
- CMakeLists.txt
- docs/source/conf.py
- docs/source/download.rst
- docs/source/introduction.rst
- include/spatialindex/Version.h
- src/rtree/RTree.cc
Changes:
=====================================
CMakeLists.txt
=====================================
@@ -25,7 +25,7 @@ set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake/modules" ${CMAKE_MODULE_PATH}
cmake_policy(SET CMP0054 NEW) # Make string comparison behave like you'd expect
if (WIN32)
- if(${CMAKE_VERSION} VERSION_GREATER "3.14.5")
+ if(${CMAKE_VERSION} VERSION_GREATER "3.14.5")
cmake_policy(SET CMP0092 NEW) # don't put /w3 in flags
endif()
endif()
@@ -40,8 +40,8 @@ endif (APPLE)
SET(SIDX_VERSION_MAJOR "1")
SET(SIDX_VERSION_MINOR "9")
-SET(SIDX_VERSION_PATCH "2")
-SET(SIDX_LIB_VERSION "6.1.0")
+SET(SIDX_VERSION_PATCH "3")
+SET(SIDX_LIB_VERSION "6.1.1")
SET(SIDX_LIB_SOVERSION "6")
SET(BUILD_SHARED_LIBS ON)
=====================================
docs/source/conf.py
=====================================
@@ -48,9 +48,9 @@ copyright = u'2019, Marios Hadjieleftheriou'
# built documents.
#
# The short X.Y version.
-version = '1.9.2'
+version = '1.9.3'
# The full version, including alpha/beta/rc tags.
-release = '1.9.2'
+release = '1.9.3'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
=====================================
docs/source/download.rst
=====================================
@@ -5,31 +5,40 @@ Download
Current Release (MIT)
------------------------------------------------------------------------------
-* **2018-10-22**
+* **2018-10-23**
- - `spatialindex-src-1.9.2.tar.gz <https://github.com/libspatialindex/libspatialindex/releases/download/1.9.2/spatialindex-src-1.9.2.tar.gz>`__
- `(md5) <https://github.com/libspatialindex/libspatialindex/releases/download/1.9.2/spatialindex-src-1.9.2.tar.gz.md5>`__
+ - `spatialindex-src-1.9.3.tar.gz <https://github.com/libspatialindex/libspatialindex/releases/download/1.9.3/spatialindex-src-1.9.3.tar.gz>`__
+ `(md5) <https://github.com/libspatialindex/libspatialindex/releases/download/1.9.3/spatialindex-src-1.9.3.tar.gz.md5>`__
- - `spatialindex-src-1.9.2.tar.bz2 <https://github.com/libspatialindex/libspatialindex/releases/download/1.9.2/spatialindex-src-1.9.2.tar.bz2>`__
- `(md5) <https://github.com/libspatialindex/libspatialindex/releases/download/1.9.2/spatialindex-src-1.9.2.tar.bz2.md5>`__
+ - `spatialindex-src-1.9.3.tar.bz2 <https://github.com/libspatialindex/libspatialindex/releases/download/1.9.3/spatialindex-src-1.9.3.tar.bz2>`__
+ `(md5) <https://github.com/libspatialindex/libspatialindex/releases/download/1.9.3/spatialindex-src-1.9.3.tar.bz2.md5>`__
Binaries
..............................................................................
-Binary builds are available on via `Conda Forge <https://anaconda.org/conda-forge/libspatialindex>`__
+Binary builds are available on via `Conda Forge <https://anaconda.org/conda-forge/libspatialindex>`__
for OSX, Linux, and Windows. After installing Conda or Miniconda, install the library by issuing the following command:
::
- conda install -c conda-forge libspatialindex=1.9.1
+ conda install -c conda-forge libspatialindex=1.9.3
-Additionally, packaging systems such as Debian, RedHat, Homebrew, MacPorts, and many others
+Additionally, packaging systems such as Debian, RedHat, Homebrew, MacPorts, and many others
contain binaries for libspatialindex.
Past Release (MIT)
------------------------------------------------------------------------------
+* **2018-10-22**
+
+ - `spatialindex-src-1.9.2.tar.gz <https://github.com/libspatialindex/libspatialindex/releases/download/1.9.2/spatialindex-src-1.9.2.tar.gz>`__
+ `(md5) <https://github.com/libspatialindex/libspatialindex/releases/download/1.9.2/spatialindex-src-1.9.2.tar.gz.md5>`__
+
+ - `spatialindex-src-1.9.2.tar.bz2 <https://github.com/libspatialindex/libspatialindex/releases/download/1.9.2/spatialindex-src-1.9.2.tar.bz2>`__
+ `(md5) <https://github.com/libspatialindex/libspatialindex/releases/download/1.9.2/spatialindex-src-1.9.2.tar.bz2.md5>`__
+
+
* **2018-10-19**
- spatialindex-src-1.9.1.tar.gz -- broken. See GitHub tag if needed.
=====================================
docs/source/introduction.rst
=====================================
@@ -2,8 +2,8 @@
:Author: Marios Hadjieleftheriou
:Contact: mhadji at gmail.com
-:Revision: 1.9.2
-:Date: 10/22/2019
+:Revision: 1.9.3
+:Date: 10/23/2019
The entire website is available as a single PDF at https://libspatialindex.org/libspatialindex.pdf
=====================================
include/spatialindex/Version.h
=====================================
@@ -30,7 +30,7 @@
#ifndef SIDX_VERSION_MAJOR
#define SIDX_VERSION_MAJOR 1
#define SIDX_VERSION_MINOR 9
-#define SIDX_VERSION_REV 2
+#define SIDX_VERSION_REV 3
#define SIDX_VERSION_BUILD 0
#endif
@@ -39,10 +39,10 @@
#endif
#ifndef SIDX_RELEASE_DATE
-#define SIDX_RELEASE_DATE 20191022
+#define SIDX_RELEASE_DATE 20191023
#endif
#ifndef SIDX_RELEASE_NAME
-#define SIDX_RELEASE_NAME "1.9.2"
+#define SIDX_RELEASE_NAME "1.9.3"
#endif
=====================================
src/rtree/RTree.cc
=====================================
@@ -566,7 +566,7 @@ void SpatialIndex::RTree::RTree::nearestNeighborQuery(uint32_t k, const IShape&
{
if (query.getDimension() != m_dimension) throw Tools::IllegalArgumentException("nearestNeighborQuery: Shape has the wrong number of dimensions.");
- auto ascending = [](const NNEntry* lhs, const NNEntry* rhs) { return rhs->m_minDist > lhs->m_minDist; };
+ auto ascending = [](const NNEntry* lhs, const NNEntry* rhs) { return lhs->m_minDist > rhs->m_minDist; };
std::priority_queue<NNEntry*, std::vector<NNEntry*>, decltype(ascending)> queue(ascending);
queue.push(new NNEntry(m_rootID, nullptr, 0.0));
View it on GitLab: https://salsa.debian.org/debian-gis-team/libspatialindex/commit/c04186719330028c0ba8c6479d10877c575c02c9
--
View it on GitLab: https://salsa.debian.org/debian-gis-team/libspatialindex/commit/c04186719330028c0ba8c6479d10877c575c02c9
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-grass-devel/attachments/20191024/761dacc3/attachment-0001.html>
More information about the Pkg-grass-devel
mailing list