commit:     b8f5f425809c074f2e6fa259c5b2264e8d44fe62
Author:     Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 10 09:09:10 2016 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Thu Nov 10 09:10:22 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8f5f425

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

 dev-python/pyicu/Manifest                          |  1 +
 .../pyicu/files/pyicu-1.9.4-exclude_libicule.patch | 46 ++++++++++++++++
 dev-python/pyicu/pyicu-1.9.4.ebuild                | 63 ++++++++++++++++++++++
 3 files changed, 110 insertions(+)

diff --git a/dev-python/pyicu/Manifest b/dev-python/pyicu/Manifest
index f430b7c..a633eeb 100644
--- a/dev-python/pyicu/Manifest
+++ b/dev-python/pyicu/Manifest
@@ -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

diff --git a/dev-python/pyicu/files/pyicu-1.9.4-exclude_libicule.patch 
b/dev-python/pyicu/files/pyicu-1.9.4-exclude_libicule.patch
new file mode 100644
index 00000000..3da53af
--- /dev/null
+++ b/dev-python/pyicu/files/pyicu-1.9.4-exclude_libicule.patch
@@ -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]
+ 

diff --git a/dev-python/pyicu/pyicu-1.9.4.ebuild 
b/dev-python/pyicu/pyicu-1.9.4.ebuild
new file mode 100644
index 00000000..183dc19
--- /dev/null
+++ b/dev-python/pyicu/pyicu-1.9.4.ebuild
@@ -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
+}

Reply via email to