jlec        14/12/07 13:31:19

  Modified:             metadata.xml ChangeLog
  Added:                statsmodels-0.6.1.ebuild
  Log:
  dev-python/statsmodels: Version BUmp; add py3.4 compatibility, #530606; 
working testsuite, #530270
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  Changes    Path
1.2                  dev-python/statsmodels/metadata.xml

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

Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/statsmodels/metadata.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- metadata.xml        20 Aug 2013 20:29:22 -0000      1.1
+++ metadata.xml        7 Dec 2014 13:31:19 -0000       1.2
@@ -1,9 +1,9 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
 <pkgmetadata>
-<herd>python</herd>
-<herd>sci-mathematics</herd>
-<longdescription lang="en">
+  <herd>python</herd>
+  <herd>sci-mathematics</herd>
+  <longdescription lang="en">
   statsmodels is a Python module that allows users to explore data,
   estimate statistical models, and perform statistical tests. An
   extensive list of descriptive statistics, statistical tests,
@@ -12,7 +12,7 @@
   fields may find that statsmodels fully meets their needs for
   statistical computing and data analysis in Python.
 </longdescription>
-<upstream>
-  <remote-id type="pypi">statsmodels</remote-id>
-</upstream>
+  <upstream>
+    <remote-id type="pypi">statsmodels</remote-id>
+  </upstream>
 </pkgmetadata>



1.5                  dev-python/statsmodels/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/statsmodels/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   27 Oct 2013 08:26:43 -0000      1.4
+++ ChangeLog   7 Dec 2014 13:31:19 -0000       1.5
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/statsmodels
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/statsmodels/ChangeLog,v 1.4 
2013/10/27 08:26:43 mgorny Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/statsmodels/ChangeLog,v 1.5 
2014/12/07 13:31:19 jlec Exp $
+
+*statsmodels-0.6.1 (07 Dec 2014)
+
+  07 Dec 2014; Justin Lecher <[email protected]> +statsmodels-0.6.1.ebuild,
+  metadata.xml:
+  Version BUmp; add py3.4 compatibility, #530606; working testsuite, #530270
 
   27 Oct 2013; Michał Górny <[email protected]> statsmodels-0.5.0.ebuild:
   Remove redundant python_export_best (done by the eclass).



1.1                  dev-python/statsmodels/statsmodels-0.6.1.ebuild

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

Index: statsmodels-0.6.1.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/statsmodels/statsmodels-0.6.1.ebuild,v 1.1 
2014/12/07 13:31:19 jlec Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 python3_{3,4} )

inherit distutils-r1 virtualx

DESCRIPTION="Statistical computations and models for use with SciPy"
HOMEPAGE="http://statsmodels.sourceforge.net/";
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc examples test"

CDEPEND="
        >=dev-python/numpy-1.5.1[${PYTHON_USEDEP}]
        >=dev-python/pandas-0.7.1[${PYTHON_USEDEP}]
        >=dev-python/patsy-0.3.0[${PYTHON_USEDEP}]
        >=sci-libs/scipy-0.9.0[${PYTHON_USEDEP}]
        "
RDEPEND="${CDEPEND}
        examples? ( dev-python/matplotlib[${PYTHON_USEDEP}] )"
DEPEND="${CDEPEND}
        >=dev-python/cython-0.20.1[${PYTHON_USEDEP}]
        dev-python/setuptools[${PYTHON_USEDEP}]
        doc? (
                >=dev-python/matplotlib-1.1[${PYTHON_USEDEP}]
                dev-python/sphinx[${PYTHON_USEDEP}]
                dev-python/ipython[${PYTHON_USEDEP}]
                )
        test? ( dev-python/nose[${PYTHON_USEDEP}] )"

pkg_setup() {
        export MPLCONFIGDIR="${T}" HOME="${T}"
}

python_compile_all() {
        if use doc; then
                VARTEXFONTS="${T}"/fonts ${EPYTHON} setup.py build_sphinx || die
        fi
}

python_test() {
        cd "${BUILD_DIR}" || die
        VIRTUALX_COMMAND="nosetests"
        virtualmake --verbosity=3
}

python_install() {
        distutils-r1_python_install
}

python_install_all() {
        find "${S}" -name \*LICENSE.txt -delete
        use doc && HTML_DOCS=( build/sphinx/html/* )
        if use examples; then
                docompress -x /usr/share/doc/${PF}/examples
                insinto /usr/share/doc/${PF}
                doins -r examples
        fi
        distutils-r1_python_install_all
}

pkg_postinst() {
        optfeature "plotting functionality" 
>=dev-python/matplotlib-1.1[${PYTHON_USEDEP}]
}




Reply via email to