idella4     14/10/29 08:44:59

  Modified:             blaze-0.6.0.ebuild ChangeLog
  Added:                blaze-0.6.5.ebuild
  Log:
  bump; update deps, currently doc build also fails and my need purging, tidy 
test & install phase, pmasked until dynd-python and the libs are bumped to 
0.6.5 and a plan decided for the doc build
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  Changes    Path
1.2                  dev-python/blaze/blaze-0.6.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/blaze/blaze-0.6.0.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/blaze/blaze-0.6.0.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/blaze/blaze-0.6.0.ebuild?r1=1.1&r2=1.2

Index: blaze-0.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/blaze/blaze-0.6.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- blaze-0.6.0.ebuild  2 Sep 2014 04:13:07 -0000       1.1
+++ blaze-0.6.0.ebuild  29 Oct 2014 08:44:59 -0000      1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/blaze/blaze-0.6.0.ebuild,v 1.1 
2014/09/02 04:13:07 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/blaze/blaze-0.6.0.ebuild,v 1.2 
2014/10/29 08:44:59 idella4 Exp $
 
 EAPI=5
 
@@ -49,7 +49,7 @@
 
 python_test() {
        cd "${BUILD_DIR}"/lib || die
-       ${PYTHON} -c 'import blaze; blaze.test()' || die
+       "${PYTHON}" -c 'import blaze; blaze.test()' || die
 }
 
 python_install_all() {



1.7                  dev-python/blaze/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/blaze/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   2 Sep 2014 04:13:07 -0000       1.6
+++ ChangeLog   29 Oct 2014 08:44:59 -0000      1.7
@@ -1,6 +1,14 @@
 # ChangeLog for dev-python/blaze
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/blaze/ChangeLog,v 1.6 2014/09/02 
04:13:07 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/blaze/ChangeLog,v 1.7 2014/10/29 
08:44:59 idella4 Exp $
+
+*blaze-0.6.5 (29 Oct 2014)
+
+  29 Oct 2014; Ian Delaney <[email protected]> +blaze-0.6.5.ebuild,
+  blaze-0.6.0.ebuild:
+  bump; update deps, currently doc build also fails and my need purging, tidy
+  test & install phase, pmasked until dynd-python and the libs are bumped to
+  0.6.5 and a plan decided for the doc build
 
 *blaze-0.6.0 (02 Sep 2014)
 



1.1                  dev-python/blaze/blaze-0.6.5.ebuild

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

Index: blaze-0.6.5.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/blaze/blaze-0.6.5.ebuild,v 1.1 
2014/10/29 08:44:59 idella4 Exp $

EAPI=5

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

inherit distutils-r1

DESCRIPTION="Next generation Python numpy"
HOMEPAGE="http://blaze.pydata.org/";
SRC_URI="https://github.com/ContinuumIO/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"

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

# Currently doc build fails, reason unclear but appears it's tied to use of
# redhat's anaconda installer, seemingly hostile to gentoo.
# Leaving doc build content in case this is fixed
IUSE="doc examples test"

# pyspark appears an optional dep not in portage. pyskit appears to be dropped
# pyparsing lokks to be required still despite its absence from requirements.txt
PY2_USEDEP=$(python_gen_usedep python2_7)
RDEPEND="
        >=dev-python/blz-0.6.2[${PYTHON_USEDEP}]
        ~dev-python/datashape-0.4.0[${PYTHON_USEDEP}]
        >=dev-python/dynd-python-0.6.5[${PYTHON_USEDEP}]
        >=dev-python/numpy-1.7[${PYTHON_USEDEP}]
        dev-python/pyparsing[${PYTHON_USEDEP}]
        dev-python/toolz[${PYTHON_USEDEP}]
        dev-python/cytoolz[${PYTHON_USEDEP}]
        dev-python/pandas[${PYTHON_USEDEP}]
        dev-python/h5py[${PYTHON_USEDEP}]
        dev-python/unicodecsv[${PY2_USEDEP}]
        >=dev-python/multipledispatch-0.4.7[${PYTHON_USEDEP}]
        dev-python/requests[${PYTHON_USEDEP}]
        dev-python/pytest[${PYTHON_USEDEP}]
        >=dev-python/flask-0.10.1[${PY2_USEDEP}]
        dev-python/sqlalchemy[${PYTHON_USEDEP}]
        dev-python/pytables[${PYTHON_USEDEP}]
        dev-python/pymongo[${PYTHON_USEDEP}]
        dev-python/xlrd[${PYTHON_USEDEP}]
        "
DEPEND="
        >=dev-python/cython-0.18[${PYTHON_USEDEP}]
        doc? ( dev-python/sphinx[${PYTHON_USEDEP}]
                >=dev-python/numpy-1.7[${PYTHON_USEDEP}]
                dev-python/toolz[${PYTHON_USEDEP}]
                dev-python/bokeh[${PYTHON_USEDEP}] )
        test? ( ${RDEPEND}
                dev-python/pyyaml[${PYTHON_USEDEP}] )
        "
# Currently doc build fails, reason unclear but appears it's tied to use of
# redhat's anaconda installer, seemingly hostile to gentoo.

python_prepare_all() {
        # Prevent d'loading. Use this for now. Flagged for improved fix later.
        sed -e "s: 'sphinx.ext.intersphinx',::" -i docs/source/conf.py || die

        distutils-r1_python_prepare_all
}

#python_compile_all() {
#       use doc && emake -C docs html
#}

python_test() {
        # https://github.com/ContinuumIO/blaze/issues/791
        cd "${BUILD_DIR}"/lib || die
        "${PYTHON}" -c 'import blaze; blaze.test()' || die
}

python_install_all() {
#       use doc && local HTML_DOCS=( docs/build/html/. )
        use examples && local EXAMPLES=( examples/. )
        distutils-r1_python_install_all
}




Reply via email to