[Git][debian-gis-team/python-rtree][master] 4 commits: New upstream version 0.9.7

Bas Couwenberg gitlab at salsa.debian.org
Fri Dec 25 06:04:05 GMT 2020



Bas Couwenberg pushed to branch master at Debian GIS Project / python-rtree


Commits:
5e025fb0 by Bas Couwenberg at 2020-12-25T06:45:21+01:00
New upstream version 0.9.7
- - - - -
a763e532 by Bas Couwenberg at 2020-12-25T06:45:22+01:00
Update upstream source from tag 'upstream/0.9.7'

Update to upstream version '0.9.7'
with Debian dir 9d947eb057ac1b7e4fc855ffb91d3b529cb9e207
- - - - -
5be79b43 by Bas Couwenberg at 2020-12-25T06:45:39+01:00
New upstream release.

- - - - -
7a91ab2c by Bas Couwenberg at 2020-12-25T06:49:54+01:00
Set distribution to unstable.

- - - - -


4 changed files:

- .github/workflows/build.yml
- ci/install_libspatialindex.bat
- debian/changelog
- rtree/__init__.py


Changes:

=====================================
.github/workflows/build.yml
=====================================
@@ -1,9 +1,8 @@
 name: Build
 
 on:
+  push:
   pull_request:
-    branches:
-    - '*'
   release:
     types:
       - published
@@ -142,6 +141,8 @@ jobs:
         brew install coreutils
         pip install cmake
         bash ci/install_libspatialindex.bash
+    - uses: ilammy/msvc-dev-cmd at v1
+      if: startsWith(matrix.os, 'windows')
     - name: Run Windows Preinstall Build
       if: startsWith(matrix.os, 'windows')
       run: |


=====================================
ci/install_libspatialindex.bat
=====================================
@@ -1,23 +1,29 @@
 python -c "import sys; print(sys.version)"
 
-// A simple script to install libspatialindex from a Github Release
-curl -L -O https://github.com/libspatialindex/libspatialindex/archive/1.9.3.zip
+set SIDX_VERSION=1.9.3
 
-unzip 1.9.3.zip
-copy %~dp0\CMakeLists.txt libspatialindex-1.9.3\CMakeLists.txt
-cd libspatialindex-1.9.3
+curl -OL "https://github.com/libspatialindex/libspatialindex/archive/%SIDX_VERSION%.zip" 
+
+tar xvf "%SIDX_VERSION%.zip"
+
+REM unzip 1.9.3.zip
+REM copy %~dp0\CMakeLists.txt libspatialindex-1.9.3\CMakeLists.txt
+cd libspatialindex-%SIDX_VERSION%
 
 mkdir build
 cd build
 
-cmake -D CMAKE_BUILD_TYPE=Release ..
+pip install ninja
 
-"C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\amd64\MSBuild.exe" spatialindex.sln
+cmake -D CMAKE_BUILD_TYPE=Release -G Ninja ..
+
+ninja
 
 mkdir %~dp0\..\rtree\lib
-copy bin\Debug\*.dll %~dp0\..\rtree\lib
+copy bin\*.dll %~dp0\..\rtree\lib
 rmdir /Q /S bin
 
 dir %~dp0\..\rtree\
 dir %~dp0\..\rtree\lib
 
+


=====================================
debian/changelog
=====================================
@@ -1,3 +1,9 @@
+python-rtree (0.9.7-1) unstable; urgency=medium
+
+  * New upstream release.
+
+ -- Bas Couwenberg <sebastic at debian.org>  Fri, 25 Dec 2020 06:49:44 +0100
+
 python-rtree (0.9.6-1) unstable; urgency=medium
 
   * New upstream release.


=====================================
rtree/__init__.py
=====================================
@@ -4,6 +4,6 @@
 Rtree provides Python bindings to libspatialindex for quick
 hyperrectangular intersection queries.
 """
-__version__ = '0.9.6'
+__version__ = '0.9.7'
 
 from .index import Rtree, Index  # noqa



View it on GitLab: https://salsa.debian.org/debian-gis-team/python-rtree/-/compare/b14e01962de19589b920b1b3d83f5786d71664a3...7a91ab2c13cc944fe7464f6eb47ea024cab1c2dc

-- 
View it on GitLab: https://salsa.debian.org/debian-gis-team/python-rtree/-/compare/b14e01962de19589b920b1b3d83f5786d71664a3...7a91ab2c13cc944fe7464f6eb47ea024cab1c2dc
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/20201225/500f4a4b/attachment-0001.html>


More information about the Pkg-grass-devel mailing list