Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python2-Shapely-1.7.0-lp152.1.1 RPM for aarch64

From OpenSuSE Ports Leap 15.2 for aarch64

Name: python2-Shapely Distribution: openSUSE Leap 15.2
Version: 1.7.0 Vendor: openSUSE
Release: lp152.1.1 Build date: Fri Mar 13 11:15:35 2020
Group: Unspecified Build host: obs-arm-8
Size: 2627735 Source RPM: python-Shapely-1.7.0-lp152.1.1.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/Toblerity/Shapely
Summary: Geospatial geometries, predicates, and operations
Shapely is a Python package for manipulation and analysis of
planar geometric objects. It is based on the GEOS (the
engine of PostGIS) and JTS (from which GEOS is ported) libraries.
Shapely is not concerned with data formats or coordinate systems,
but can be readily integrated with packages that are like WorldMill
and pyproj.

Provides

Requires

License

BSD-3-Clause

Changelog

* Wed Mar 11 2020 Ondřej Súkup <mimi.vx@gmail.com>
  - drop fix-build-with-geos-3.8.0.patch
  - update to 1.7.0
    * the buffer operation can now be single-sides
    * Nearest neighbor search has been added to STRtree
    * Removed vendorized `functools`
    * Disallow sequences of MultiPolygons as arguments to the MultiPolygon constructor
    * Added a new `EmptyGeometry` class to support GeoPandas
    * Added new `shapely.ops.substring` function
    * Added new `shapely.ops.clip_by_rect` function
    * shapely.wkb.dumps` now accepts an `srid` integer keyword argument
* Tue Mar 10 2020 Guillaume GARDET <guillaume.gardet@opensuse.org>
  - Fix build with upstream patch:
    * fix-build-with-geos-3.8.0.patch
* Thu Jun 13 2019 Todd R <toddrme2178@gmail.com>
  - Run full unit tests
* Sat Dec 22 2018 Todd R <toddrme2178@gmail.com>
  - Update to 1.6.4.post2
    * Fix broken markup in this change log, which restores our nicely formatted
      readme on PyPI.
  - Update to 1.6.4
    * Handle a ``TypeError`` that can occur when geometries are torn down (#473,
      [#528]).
  - Update to 1.6.3
    * AttributeError is no longer raised when accessing __geo_interface__ of an
      empty polygon (#450).
    * ``asShape`` now handles empty coordinates in mappings as ``shape`` does
      (#542). Please note that ``asShape`` is likely to be deprecated in a future
      version of Shapely.
    * Check for length of LineString coordinates in speed mode, preventing crashes
      when using LineStrings with only one coordinate (#546).
  - Update to 1.6.2
    * A 1.6.2.post1 release has been made to fix a problem with macosx wheels
      uploaded to PyPI.
  - Update to 1.6.2
    * Splitting a linestring by one of its end points will now succeed instead of
      failing with a ``ValueError`` (#524, #533).
    * Missing documentation of a geometry's ``overlaps`` predicate has been added
      (#522).
  - Update to 1.6.1
    * Avoid ``STRTree`` crashes due to dangling references (#505) by maintaining
      references to added geometries.
    * Reduce log level to debug when reporting on calls to ctypes ``CDLL()`` that
      don't succeed and are retried (#515).
    * Clarification: applications like GeoPandas that need an empty geometry object
      should use ``BaseGeometry()`` instead of ``Point()`` or ``Polygon()``. An
      ``EmptyGeometry`` class has been added in the master development branch and
      will be available in the next non-bugfix release.
  - Update to 1.6.0
    + Bug fixes:
    * Passing a single coordinate to ``LineString()`` with speedups disabled now
      raises a ValueError as happens with speedups enabled. This resolves #509.
    * Isolate vendorized packaging in a _vendor directory, remove obsolete
      dist-info, and remove packaging from project requirements (resolves #468).
    * Level for log messages originating from the GEOS notice handler reduced from
      WARNING to INFO (#447).
    * Permit speedups to be imported again without Numpy (#444).
    * Implemented __array_interface__ for empty Points and LineStrings (#403).
    * Remove accidental hard requirement of Numpy (#431).
    * Shapely no longer configures logging in ``geos.py`` (#415).
    + New features:
    * Add support for GeometryCollection to shape and asShape functions (#422).
    * A new error derived from NotImplementedError, with a more useful message, is
      raised when the GEOS backend doesn't support a called method (#216).
    * The ``project()`` method of LineString has been extended to LinearRing
      geometries (#286).
    * A new ``minimum_rotated_rectangle`` attribute has been added to the base
      geometry class (#354).
    * A new ``shapely.ops.polylabel()`` function has been added. It
      computes a point suited for labeling concave polygons (#395).
    * A new ``shapely.ops.split()`` function has been added. It splits a
      geometry by another geometry of lesser dimension: polygon by line, line by
      point (#293, #371).
    * ``Polygon.from_bounds()`` constructs a Polygon from bounding coordinates
      (#392).
    * Support for testing with Numpy 1.4.1 has been added (#301).
    * Support creating all kinds of empty geometries from empty lists of Python
      objects (#397, #404).
    + Packaging:
    * Put Numpy in an optional requirement set named "vectorized" (#431).
    * Added new library search paths to assist Anaconda (#413).
    * geos-config will now be bypassed when NO_GEOS_CONFIG env var is set. This
      allows configuration of Shapely builds on Linux systems that for whatever
      reasons do not include the geos-config program (#322).
    * Packaging 16.7, a setup dependency, is vendorized (#314).
    * Infrastructure for building manylinux1 wheels has been added (#391).
    * The system's ``geos-config`` program is now only checked when ``setup.py``
      is executed, never during normal use of the module (#244).
    * Added new library search paths to assist PyInstaller (#382) and Windows
      (#343).
    + Refactoring:
    * Consolidation of exceptions in ``shapely.errors``.
    * ``UnsupportedGEOSVersionError`` is raised when GEOS < 3.3.0 (#407).
    * Switch from ``SingleSidedBuffer()`` to ``OffsetCurve()`` for GEOS >= 3.3
      (#270).
    * Cython speedups are now enabled by default (#252).
* Wed Jul 12 2017 toddrme2178@gmail.com
  - Don't require ctypes, it is built-in.
  - Fix backwards-compatibility provides.
* Wed Jul 12 2017 jengelh@inai.de
  - Remove redundant wording from description.
* Tue Jul 11 2017 toddrme2178@gmail.com
  - Implement single-spec version.
  - Fix source URL.
  - Update to 1.5.17
    * Bug fix: eliminate memory leak in geom_factory() (#408).
    * Bug fix: remove mention of negative distances in parallel_offset and note
      that vertices of right hand offset lines are reversed (#284).
  - Update to 1.5.16
    * Bug fix: eliminate memory leak when unpickling geometry objects (#384, #385).
    * Bug fix: prevent crashes when attempting to pickle a prepared geometry,
      raising ``PicklingError`` instead (#386).
    * Packaging: extension modules in the OS X wheels uploaded to PyPI link only
      libgeos_c.dylib now (you can verify and compare to previous releases with
      ``otool -L shapely/vectorized/_vectorized.so``).
  - Update to 1.5.15
    * Bug fix: use uintptr_t to store pointers instead of long in _geos.pxi,
      preventing an overflow error (#372, #373). Note that this bug fix was
      erroneously reported to have been made in 1.5.14, but was not.
  - Update to 1.5.14
    * Bug fix: use ``type()`` instead of ``isinstance()`` when evaluating geometry
      equality, preventing instances of base and derived classes from
      being mistaken for equals (#317).
    * Bug fix: ensure that empty geometries are created when constructors have no
      args (#332, #333).
    * Bug fix: support app "freezing" better on Windows by not relying on the
    ``__file__`` attribute (#342, #377).
    * Bug fix: ensure that empty polygons evaluate to be ``==`` (#355).
    * Bug fix: filter out empty geometries that can cause segfaults when creating
      and loading STRtrees (#345, #348).
    * Bug fix: no longer attempt to reuse GEOS DLLs already loaded by Rasterio
      or Fiona on OS X (#374, #375).
  - Update to 1.5.13
    * Restore setup and runtime discovery and loading of GEOS shared library to
      state at version 1.5.9 (#326).
    * On OS X we try to reuse any GEOS shared library that may have been loaded
      via import of Fiona or Rasterio in order to avoid a bug involving the
      GEOS AbstractSTRtree (#324, #327).
  - Update to 1.5.12
    * Remove configuration of root logger from libgeos.py (#312).
    * Skip test_fallbacks on Windows (#308).
    * Call setlocale(locale.LC_ALL, "") instead of resetlocale() on Windows when
      tearing down the locale test (#308).
    * Fix for Sphinx warnings (#309).
    * Addition of .cache, .idea, .pyd, .pdb to .gitignore (#310).
  - Update to 1.5.11
    * Remove packaging module requirement added in 1.5.10 (#305). Distutils can't
      parse versions using 'rc', but if we stick to 'a' and 'b' we will be fine.
  - Update to 1.5.10
    * Monkey patch affinity module by absolute reference (#299).
    * Raise TopologicalError in relate() instead of crashing (#294, #295, #303).
* Mon Jun 15 2015 bruno@ioda-net.ch
  - Update to 1.5.9
    * Fix for 64 bit speedups compatibility (#274).
* Sun May 24 2015 bruno@ioda-net.ch
  - Packaging
    * Added Provides lowercase
    * Added BuildRequire geos-devel Require geos
    * Added python-Cytools to build c extension
* Sun May 24 2015 bruno@ioda-net.ch
  - Update to version 1.5.8 (2015-04-29)
    * Setup file encoding bug fix (#254).
    * Support for pyinstaller (#261).
    * Major prepared geometry operation fix for Windows (#268, #269).
    * Major fix for OS X binary wheel (#262).
  - Changes since 1.2.18
    1.5.7 (2015-03-16)
      Test and fix buggy error and notice handlers (#249).
    1.5.6 (2015-02-02)
      Fix setup regression (#232, #234).
      SVG representation improvements (#233, #237).
    1.5.5 (2015-01-20)
      MANIFEST changes to restore _geox.pxi (#231).
    1.5.4 (2015-01-19)
      Fixed OS X binary wheel library load path (#224).
    1.5.3 (2015-01-12)
      Fixed ownership and potential memory leak in polygonize (#223).
      Wider release of binary wheels for OS X.
    1.5.2 (2015-01-04)
      Fail installation if GEOS dependency is not met, preventing update breakage (#218, #219).
    1.5.1 (2014-12-04)
      Restore geometry hashing (#209).
    1.5.0 (2014-12-02)
      Affine transformation speedups (#197).
      New == rich comparison (#195).
      Geometry collection constructor (#200).
      ops.snap() backed by GEOSSnap (#201).
      Clearer exceptions in cases of topological invalidity (#203).
    1.4.4 (2014-11-02)
      Proper conversion of numpy float32 vals to coords (#186).
    1.4.3 (2014-10-01)
      Fix for endianness bug in WKB writer (#174).
    1.4.2 (2014-09-29)
      Fix bungled 1.4.1 release (#176).
    1.4.1 (2014-09-23)
      Return of support for GEOS 3.2 (#176, #178).
    1.4.0 (2014-09-08)
      SVG representations for IPython’s inline image protocol.
      Efficient and fast vectorized contains().
      Change mitre_limit default to 5.0; raise ValueError with 0.0 (#139).
      Allow mix of tuples and Points in sped-up LineString ctor (#152).
      New STRtree class (#73).
      Add ops.nearest_points() (#147).
      Faster creation of geometric objects from others (cloning) (#165).
      Removal of tests from package.
    1.3.3 (2014-07-23)
      Allow single-part geometries as argument to ops.cacaded_union() (#135).
      Support affine transformations of LinearRings (#112).
    1.3.2 (2014-05-13)
      Let LineString() take a sequence of Points (#130).
    1.3.1 (2014-04-22)
      More reliable proxy cleanup on exit (#106).
      More robust DLL loading on all platforms (#114).
    1.3.0 (2013-12-31)
      Include support for Python 3.2 and 3.3 (#56), minimum version is now 2.6.
      Switch to GEOS WKT/WKB Reader/Writer API, with defaults changed to enable 3D output dimensions, and to ‘trim’ WKT output for GEOS >=3.3.0.
      Use GEOS version instead of GEOS C API version to determine library capabilities (#65).
    1.2.19 (2013-12-30)
      Add buffering style options (#55).

Files

/usr/lib64/python2.7/site-packages/Shapely-1.7.0-py2.7.egg-info
/usr/lib64/python2.7/site-packages/Shapely-1.7.0-py2.7.egg-info/PKG-INFO
/usr/lib64/python2.7/site-packages/Shapely-1.7.0-py2.7.egg-info/SOURCES.txt
/usr/lib64/python2.7/site-packages/Shapely-1.7.0-py2.7.egg-info/dependency_links.txt
/usr/lib64/python2.7/site-packages/Shapely-1.7.0-py2.7.egg-info/requires.txt
/usr/lib64/python2.7/site-packages/Shapely-1.7.0-py2.7.egg-info/top_level.txt
/usr/lib64/python2.7/site-packages/shapely
/usr/lib64/python2.7/site-packages/shapely/__init__.py
/usr/lib64/python2.7/site-packages/shapely/__init__.pyc
/usr/lib64/python2.7/site-packages/shapely/__init__.pyo
/usr/lib64/python2.7/site-packages/shapely/_buildcfg.py
/usr/lib64/python2.7/site-packages/shapely/_buildcfg.pyc
/usr/lib64/python2.7/site-packages/shapely/_buildcfg.pyo
/usr/lib64/python2.7/site-packages/shapely/_geos.pxi
/usr/lib64/python2.7/site-packages/shapely/affinity.py
/usr/lib64/python2.7/site-packages/shapely/affinity.pyc
/usr/lib64/python2.7/site-packages/shapely/affinity.pyo
/usr/lib64/python2.7/site-packages/shapely/algorithms
/usr/lib64/python2.7/site-packages/shapely/algorithms/__init__.py
/usr/lib64/python2.7/site-packages/shapely/algorithms/__init__.pyc
/usr/lib64/python2.7/site-packages/shapely/algorithms/__init__.pyo
/usr/lib64/python2.7/site-packages/shapely/algorithms/cga.py
/usr/lib64/python2.7/site-packages/shapely/algorithms/cga.pyc
/usr/lib64/python2.7/site-packages/shapely/algorithms/cga.pyo
/usr/lib64/python2.7/site-packages/shapely/algorithms/polylabel.py
/usr/lib64/python2.7/site-packages/shapely/algorithms/polylabel.pyc
/usr/lib64/python2.7/site-packages/shapely/algorithms/polylabel.pyo
/usr/lib64/python2.7/site-packages/shapely/coords.py
/usr/lib64/python2.7/site-packages/shapely/coords.pyc
/usr/lib64/python2.7/site-packages/shapely/coords.pyo
/usr/lib64/python2.7/site-packages/shapely/ctypes_declarations.py
/usr/lib64/python2.7/site-packages/shapely/ctypes_declarations.pyc
/usr/lib64/python2.7/site-packages/shapely/ctypes_declarations.pyo
/usr/lib64/python2.7/site-packages/shapely/errors.py
/usr/lib64/python2.7/site-packages/shapely/errors.pyc
/usr/lib64/python2.7/site-packages/shapely/errors.pyo
/usr/lib64/python2.7/site-packages/shapely/examples
/usr/lib64/python2.7/site-packages/shapely/examples/__init__.py
/usr/lib64/python2.7/site-packages/shapely/examples/__init__.pyc
/usr/lib64/python2.7/site-packages/shapely/examples/__init__.pyo
/usr/lib64/python2.7/site-packages/shapely/examples/dissolve.py
/usr/lib64/python2.7/site-packages/shapely/examples/dissolve.pyc
/usr/lib64/python2.7/site-packages/shapely/examples/dissolve.pyo
/usr/lib64/python2.7/site-packages/shapely/examples/geoms.py
/usr/lib64/python2.7/site-packages/shapely/examples/geoms.pyc
/usr/lib64/python2.7/site-packages/shapely/examples/geoms.pyo
/usr/lib64/python2.7/site-packages/shapely/examples/intersect.py
/usr/lib64/python2.7/site-packages/shapely/examples/intersect.pyc
/usr/lib64/python2.7/site-packages/shapely/examples/intersect.pyo
/usr/lib64/python2.7/site-packages/shapely/geometry
/usr/lib64/python2.7/site-packages/shapely/geometry/__init__.py
/usr/lib64/python2.7/site-packages/shapely/geometry/__init__.pyc
/usr/lib64/python2.7/site-packages/shapely/geometry/__init__.pyo
/usr/lib64/python2.7/site-packages/shapely/geometry/base.py
/usr/lib64/python2.7/site-packages/shapely/geometry/base.pyc
/usr/lib64/python2.7/site-packages/shapely/geometry/base.pyo
/usr/lib64/python2.7/site-packages/shapely/geometry/collection.py
/usr/lib64/python2.7/site-packages/shapely/geometry/collection.pyc
/usr/lib64/python2.7/site-packages/shapely/geometry/collection.pyo
/usr/lib64/python2.7/site-packages/shapely/geometry/geo.py
/usr/lib64/python2.7/site-packages/shapely/geometry/geo.pyc
/usr/lib64/python2.7/site-packages/shapely/geometry/geo.pyo
/usr/lib64/python2.7/site-packages/shapely/geometry/linestring.py
/usr/lib64/python2.7/site-packages/shapely/geometry/linestring.pyc
/usr/lib64/python2.7/site-packages/shapely/geometry/linestring.pyo
/usr/lib64/python2.7/site-packages/shapely/geometry/multilinestring.py
/usr/lib64/python2.7/site-packages/shapely/geometry/multilinestring.pyc
/usr/lib64/python2.7/site-packages/shapely/geometry/multilinestring.pyo
/usr/lib64/python2.7/site-packages/shapely/geometry/multipoint.py
/usr/lib64/python2.7/site-packages/shapely/geometry/multipoint.pyc
/usr/lib64/python2.7/site-packages/shapely/geometry/multipoint.pyo
/usr/lib64/python2.7/site-packages/shapely/geometry/multipolygon.py
/usr/lib64/python2.7/site-packages/shapely/geometry/multipolygon.pyc
/usr/lib64/python2.7/site-packages/shapely/geometry/multipolygon.pyo
/usr/lib64/python2.7/site-packages/shapely/geometry/point.py
/usr/lib64/python2.7/site-packages/shapely/geometry/point.pyc
/usr/lib64/python2.7/site-packages/shapely/geometry/point.pyo
/usr/lib64/python2.7/site-packages/shapely/geometry/polygon.py
/usr/lib64/python2.7/site-packages/shapely/geometry/polygon.pyc
/usr/lib64/python2.7/site-packages/shapely/geometry/polygon.pyo
/usr/lib64/python2.7/site-packages/shapely/geometry/proxy.py
/usr/lib64/python2.7/site-packages/shapely/geometry/proxy.pyc
/usr/lib64/python2.7/site-packages/shapely/geometry/proxy.pyo
/usr/lib64/python2.7/site-packages/shapely/geos.py
/usr/lib64/python2.7/site-packages/shapely/geos.pyc
/usr/lib64/python2.7/site-packages/shapely/geos.pyo
/usr/lib64/python2.7/site-packages/shapely/impl.py
/usr/lib64/python2.7/site-packages/shapely/impl.pyc
/usr/lib64/python2.7/site-packages/shapely/impl.pyo
/usr/lib64/python2.7/site-packages/shapely/iterops.py
/usr/lib64/python2.7/site-packages/shapely/iterops.pyc
/usr/lib64/python2.7/site-packages/shapely/iterops.pyo
/usr/lib64/python2.7/site-packages/shapely/linref.py
/usr/lib64/python2.7/site-packages/shapely/linref.pyc
/usr/lib64/python2.7/site-packages/shapely/linref.pyo
/usr/lib64/python2.7/site-packages/shapely/ops.py
/usr/lib64/python2.7/site-packages/shapely/ops.pyc
/usr/lib64/python2.7/site-packages/shapely/ops.pyo
/usr/lib64/python2.7/site-packages/shapely/predicates.py
/usr/lib64/python2.7/site-packages/shapely/predicates.pyc
/usr/lib64/python2.7/site-packages/shapely/predicates.pyo
/usr/lib64/python2.7/site-packages/shapely/prepared.py
/usr/lib64/python2.7/site-packages/shapely/prepared.pyc
/usr/lib64/python2.7/site-packages/shapely/prepared.pyo
/usr/lib64/python2.7/site-packages/shapely/speedups
/usr/lib64/python2.7/site-packages/shapely/speedups/__init__.py
/usr/lib64/python2.7/site-packages/shapely/speedups/__init__.pyc
/usr/lib64/python2.7/site-packages/shapely/speedups/__init__.pyo
/usr/lib64/python2.7/site-packages/shapely/speedups/_speedups.c
/usr/lib64/python2.7/site-packages/shapely/speedups/_speedups.pyx
/usr/lib64/python2.7/site-packages/shapely/speedups/_speedups.so
/usr/lib64/python2.7/site-packages/shapely/strtree.py
/usr/lib64/python2.7/site-packages/shapely/strtree.pyc
/usr/lib64/python2.7/site-packages/shapely/strtree.pyo
/usr/lib64/python2.7/site-packages/shapely/topology.py
/usr/lib64/python2.7/site-packages/shapely/topology.pyc
/usr/lib64/python2.7/site-packages/shapely/topology.pyo
/usr/lib64/python2.7/site-packages/shapely/validation.py
/usr/lib64/python2.7/site-packages/shapely/validation.pyc
/usr/lib64/python2.7/site-packages/shapely/validation.pyo
/usr/lib64/python2.7/site-packages/shapely/vectorized
/usr/lib64/python2.7/site-packages/shapely/vectorized/__init__.py
/usr/lib64/python2.7/site-packages/shapely/vectorized/__init__.pyc
/usr/lib64/python2.7/site-packages/shapely/vectorized/__init__.pyo
/usr/lib64/python2.7/site-packages/shapely/vectorized/_vectorized.c
/usr/lib64/python2.7/site-packages/shapely/vectorized/_vectorized.pyx
/usr/lib64/python2.7/site-packages/shapely/vectorized/_vectorized.so
/usr/lib64/python2.7/site-packages/shapely/wkb.py
/usr/lib64/python2.7/site-packages/shapely/wkb.pyc
/usr/lib64/python2.7/site-packages/shapely/wkb.pyo
/usr/lib64/python2.7/site-packages/shapely/wkt.py
/usr/lib64/python2.7/site-packages/shapely/wkt.pyc
/usr/lib64/python2.7/site-packages/shapely/wkt.pyo
/usr/share/doc/packages/python2-Shapely
/usr/share/doc/packages/python2-Shapely/CREDITS.txt
/usr/share/doc/packages/python2-Shapely/README.rst
/usr/share/doc/packages/python2-Shapely/design.rst
/usr/share/doc/packages/python2-Shapely/index.rst
/usr/share/doc/packages/python2-Shapely/manual.rst
/usr/share/doc/packages/python2-Shapely/project.rst
/usr/share/licenses/python2-Shapely
/usr/share/licenses/python2-Shapely/LICENSE.txt


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 12:09:08 2024