patrick     15/04/14 03:14:25

  Modified:             ChangeLog
  Added:                numba-0.18.2.ebuild
  Log:
  Bump, disable broken test phase
  
  (Portage version: 2.2.18/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.15                 dev-python/numba/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/numba/ChangeLog?rev=1.15&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/numba/ChangeLog?rev=1.15&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/numba/ChangeLog?r1=1.14&r2=1.15

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/numba/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog   8 Apr 2015 08:05:01 -0000       1.14
+++ ChangeLog   14 Apr 2015 03:14:25 -0000      1.15
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/numba
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/numba/ChangeLog,v 1.14 
2015/04/08 08:05:01 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/numba/ChangeLog,v 1.15 
2015/04/14 03:14:25 patrick Exp $
+
+*numba-0.18.2 (14 Apr 2015)
+
+  14 Apr 2015; Patrick Lauer <[email protected]> +numba-0.18.2.ebuild:
+  Bump, disable broken test phase
 
   08 Apr 2015; Michał Górny <[email protected]> numba-0.12.1.ebuild,
   numba-0.12.2.ebuild, numba-0.13.0.ebuild:



1.1                  dev-python/numba/numba-0.18.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/numba/numba-0.18.2.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/numba/numba-0.18.2.ebuild?rev=1.1&content-type=text/plain

Index: numba-0.18.2.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/numba/numba-0.18.2.ebuild,v 1.1 
2015/04/14 03:14:25 patrick Exp $

EAPI=5

# Tests won't fail when they fail, so test phase is pointless
RESTRICT="test"

PYTHON_COMPAT=( python{2_7,3_3,3_4} )

inherit distutils-r1

DESCRIPTION="NumPy aware dynamic Python compiler using LLVM"
HOMEPAGE="http://numba.pydata.org/";
SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"

IUSE="doc examples test"

RDEPEND="
        dev-python/llvmlite[${PYTHON_USEDEP}]
        >=dev-python/numpy-1.6[${PYTHON_USEDEP}]
        $(python_gen_cond_dep 'dev-python/enum34[${PYTHON_USEDEP}]' 
python{2_7,3_3})
"
DEPEND="${RDEPEND}
        test? ( $(python_gen_cond_dep 'dev-python/funcsigs[${PYTHON_USEDEP}]' 
python2_7) )"

python_compile() {
        if ! python_is_python3; then
                local CFLAGS="${CFLAGS} -fno-strict-aliasing"
                export CFLAGS
        fi
        distutils-r1_python_compile
}

python_test() {
        cd "${BUILD_DIR}"/lib* || die
        ${PYTHON} -c "import numba; numba.test()" || die
}

python_install_all() {
        # doc needs obsolete sphnxjp package
        use doc && dodoc docs/Numba.pdf
        use examples && local EXAMPLES=( examples/. )

        distutils-r1_python_install_all
}




Reply via email to