dev-python/pyicu: version bump to 1.9.4.

Includes backported icu-58.1 support from master.

Gentoo-Bug: 599102

Package-Manager: portage-2.3.2
This commit is contained in:
Marek Szuba
2016-11-10 10:09:10 +01:00
parent 9072808ac1
commit b8f5f42580
3 changed files with 110 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST PyICU-1.9.3.tar.gz 179514 SHA256 1a7a96212cb3e42e8df85b9062f1f1d6e207474d44f087218fad1d4ec210fa42 SHA512 93720f6fd4131b6cff7fe89996a3851b5993c74859e85de7813883a30152b63a0065b8c51c536cd40417b6e3ccf0ec4e26ed471cec84cd48761a306a35bfd15c WHIRLPOOL 97d5ff9d5a96aa98700c3048104bb79309f3b7a2e6610a03be1a1b06b23be44ffaa6ef9afb548144757421616bf2401fa4bffac6d8759a7718021abfa9fb03d0
DIST PyICU-1.9.4.tar.gz 181149 SHA256 bb3df41141b1cde07432906a3e9ee096407d59243ceed496957fd4bc54cd765e SHA512 d635660e569a5c8c02d739c79806a6640ade2fcda07b826ebef5a992a64e38ee6d203e24f5f3f559c37355a78aecba1055404e3922996801b5d843328d69c8d4 WHIRLPOOL b3ecb81a29bf90793e2ab3540d14b0e30663e239da77c66bf3c17959f61cee11d8bdb957cf4a7c643baa006e0850362e62a4e2be06385982b1f37ca5276cba61

View File

@@ -0,0 +1,46 @@
diff --git a/setup.py b/setup.py
index 2cbec9f..ea42e96 100644
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,5 @@
-import os, sys
+import os, sys, subprocess
try:
from setuptools import setup, Extension
@@ -8,6 +8,7 @@ except ImportError:
VERSION = '1.9.4'
+ICU_VERSION = subprocess.check_output(('icu-config', '--version')).strip()
INCLUDES = {
'darwin': ['/usr/local/include'],
@@ -43,11 +44,11 @@ LFLAGS = {
}
LIBRARIES = {
- 'darwin': ['icui18n', 'icuuc', 'icudata', 'icule'],
- 'linux': ['icui18n', 'icuuc', 'icudata', 'icule'],
- 'freebsd': ['icui18n', 'icuuc', 'icudata', 'icule'],
- 'win32': ['icuin', 'icuuc', 'icudt', 'icule'],
- 'sunos5': ['icui18n', 'icuuc', 'icudata', 'icule'],
+ 'darwin': ['icui18n', 'icuuc', 'icudata'],
+ 'linux': ['icui18n', 'icuuc', 'icudata'],
+ 'freebsd': ['icui18n', 'icuuc', 'icudata'],
+ 'win32': ['icuin', 'icuuc', 'icudt'],
+ 'sunos5': ['icui18n', 'icuuc', 'icudata'],
}
platform = sys.platform
@@ -79,6 +80,9 @@ else:
if 'PYICU_LIBRARIES' in os.environ:
_libraries = os.environ['PYICU_LIBRARIES'].split(os.pathsep)
+elif ((sys.version_info >= (3,) and str(ICU_VERSION, 'ascii') < '58') or
+ (sys.version_info < (3,) and ICU_VERSION < '58')):
+ _libraries = LIBRARIES[platform][:] + ['icule']
else:
_libraries = LIBRARIES[platform]

View File

@@ -0,0 +1,63 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
PYTHON_COMPAT=( python{2_7,3_4,3_5} )
DISTUTILS_IN_SOURCE_BUILD=1 # setup.py applies 2to3 to tests
inherit distutils-r1
MY_PN="PyICU"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Python bindings for dev-libs/icu"
HOMEPAGE="https://github.com/ovalhub/pyicu"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
RDEPEND="${PYTHON_DEPS}
dev-libs/icu
"
# epydoc supports only python2*
DEPEND="${RDEPEND}
doc? ( dev-python/epydoc[$(python_gen_usedep 'python2*')] )"
REQUIRED_USE="doc? ( || ( $(python_gen_useflags 'python2*') ) )"
S="${WORKDIR}/${MY_P}"
DOCS=(CHANGES CREDITS README.md)
PATCHES=(
"${FILESDIR}/${P}-exclude_libicule.patch"
)
# we need an exact version match for epydoc to work on a binary module
pkg_setup() {
use doc && DISTUTILS_ALL_SUBPHASE_IMPLS=( 'python2*' )
}
python_compile_all() {
if use doc; then
mkdir -p doc/html || die
epydoc --html --verbose -o doc/html \
--url="${HOMEPAGE}" --name="${MY_P}" \
icu.py || die "Making the docs failed!"
fi
}
python_test() {
esetup.py test
}
python_install_all() {
if use doc; then
local HTML_DOCS=( doc/html/. )
fi
distutils-r1_python_install_all
}