patrick     14/12/19 03:33:53

  Modified:             ChangeLog
  Added:                numba-0.16.0.ebuild
  Log:
  Bump
  
  (Portage version: 2.2.15/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.11                 dev-python/numba/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/numba/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog   19 Oct 2014 10:39:59 -0000      1.10
+++ ChangeLog   19 Dec 2014 03:33:53 -0000      1.11
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/numba
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/numba/ChangeLog,v 1.10 
2014/10/19 10:39:59 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/numba/ChangeLog,v 1.11 
2014/12/19 03:33:53 patrick Exp $
+
+*numba-0.16.0 (19 Dec 2014)
+
+  19 Dec 2014; Patrick Lauer <[email protected]> +numba-0.16.0.ebuild:
+  Bump
 
 *numba-0.15.1 (19 Oct 2014)
 



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

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

Index: numba-0.16.0.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/numba/numba-0.16.0.ebuild,v 1.1 
2014/12/19 03:33:53 patrick Exp $

EAPI=5

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"

RDEPEND="
        dev-python/llvmlite[${PYTHON_USEDEP}]
        >=dev-python/numpy-1.6[${PYTHON_USEDEP}]
        dev-python/enum34[${PYTHON_USEDEP}]
        "
DEPEND="${RDEPEND}"

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