Bas Couwenberg pushed to branch upstream at Debian GIS Project / pyosmium
Commits: af70ee06 by Bas Couwenberg at 2018-04-25T07:20:06+02:00 New upstream version 2.14.1 - - - - - 3 changed files: - CHANGELOG.md - setup.py - src/osmium/version.py Changes: ===================================== CHANGELOG.md ===================================== --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,16 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Fixed +## [2.14.1] - 2018-04-24 + +### Added + +### Changed + +### Fixed + +- fix build script to find libboost-python on Darwin + ## [2.14.0] - 2018-03-31 ### Added ===================================== setup.py ===================================== --- a/setup.py +++ b/setup.py @@ -60,6 +60,8 @@ suffixes = [ # Debian naming convention for version installed in parallel "-py%d%d" % (pyversion.major, pyversion.minor), # Gentoo naming convention for version installed in parallel "-%d.%d" % (pyversion.major, pyversion.minor), + # Darwin + "%d%d" % (pyversion.major, pyversion.minor), # standard suffix for Python3 "%d" % (pyversion.major), # standard naming @@ -68,9 +70,10 @@ suffixes = [ # Debian naming convention for version installed in parallel "-mt" ] for suf in suffixes: - lib = find_library("boost_python%s" % suf) - if lib is not None: - libs.append("boost_python%s" % suf) + libboost = "boost_python%s" % suf + found = find_library(libboost) + if found: + libs.append(libboost) break else: # Visual C++ supports auto-linking, no library needed ===================================== src/osmium/version.py ===================================== --- a/src/osmium/version.py +++ b/src/osmium/version.py @@ -5,7 +5,7 @@ Version information. # the major version pyosmium_major = '2.14' # current release (Pip version) -pyosmium_release = '2.14.0' +pyosmium_release = '2.14.1' # libosmium version shipped with the Pip release libosmium_version = '2.14.0' View it on GitLab: https://salsa.debian.org/debian-gis-team/pyosmium/commit/af70ee06edb63b652b410e04a5a3973c6ecbcdc2 --- View it on GitLab: https://salsa.debian.org/debian-gis-team/pyosmium/commit/af70ee06edb63b652b410e04a5a3973c6ecbcdc2 You're receiving this email because of your account on salsa.debian.org.
_______________________________________________ Pkg-grass-devel mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-grass-devel
