Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (4)
New upstream version 2.14.1
· af70ee06
Bas Couwenberg
authored
Apr 25, 2018
af70ee06
Merge tag 'upstream/2.14.1'
· dbce8a3e
Bas Couwenberg
authored
Apr 25, 2018
Upstream version 2.14.1
dbce8a3e
New upstream release.
· 4ac711df
Bas Couwenberg
authored
Apr 25, 2018
4ac711df
Set distribution to unstable.
· 3048efe3
Bas Couwenberg
authored
Apr 25, 2018
3048efe3
Show whitespace changes
Inline
Side-by-side
CHANGELOG.md
View file @
3048efe3
...
...
@@ -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
...
...
debian/changelog
View file @
3048efe3
pyosmium (2.14.
0-2) UNRELEASED
; urgency=medium
pyosmium (2.14.
1-1) unstable
; urgency=medium
* New upstream release.
* Add module import tests to autopkgtest configuration.
* Bump Standards-Version to 4.1.4, no changes.
-- Bas Couwenberg <sebastic@debian.org>
Mon, 16
Apr 2018
21:27:5
5 +0200
-- Bas Couwenberg <sebastic@debian.org>
Wed, 25
Apr 2018
07:20:4
5 +0200
pyosmium (2.14.0-1) unstable; urgency=medium
...
...
setup.py
View file @
3048efe3
...
...
@@ -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
View file @
3048efe3
...
...
@@ -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
'
...
...