patrick     15/07/20 06:45:55

  Modified:             ChangeLog
  Added:                patsy-0.3.0-r1.ebuild
  Log:
  Add more dependencies
  
  (Portage version: 2.2.20/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.8                  dev-python/patsy/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/patsy/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   8 Apr 2015 08:05:06 -0000       1.7
+++ ChangeLog   20 Jul 2015 06:45:55 -0000      1.8
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/patsy
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/patsy/ChangeLog,v 1.7 2015/04/08 
08:05:06 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/patsy/ChangeLog,v 1.8 2015/07/20 
06:45:55 patrick Exp $
+
+*patsy-0.3.0-r1 (20 Jul 2015)
+
+  20 Jul 2015; Patrick Lauer <[email protected]> +patsy-0.3.0-r1.ebuild:
+  Add more dependencies
 
   08 Apr 2015; Michał Górny <[email protected]> patsy-0.2.0.ebuild,
   patsy-0.2.1.ebuild, patsy-0.3.0.ebuild:



1.1                  dev-python/patsy/patsy-0.3.0-r1.ebuild

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

Index: patsy-0.3.0-r1.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/patsy/patsy-0.3.0-r1.ebuild,v 1.1 
2015/07/20 06:45:55 patrick Exp $

EAPI=5

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

inherit distutils-r1

DESCRIPTION="Python module to describe statistical models and design matrices"
HOMEPAGE="http://patsy.readthedocs.org/en/latest/index.html";
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"

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

RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
        dev-python/setuptools[${PYTHON_USEDEP}]
        sci-libs/scipy[${PYTHON_USEDEP}]
        doc? (
                dev-python/ipython[${PYTHON_USEDEP}]
                dev-python/matplotlib[${PYTHON_USEDEP}]
                dev-python/sphinx[${PYTHON_USEDEP}]
                dev-python/pandas[${PYTHON_USEDEP}]
                )
        test? ( dev-python/nose[${PYTHON_USEDEP}] )"

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

python_test() {
        cd "${BUILD_DIR}" || die
        nosetests -v || die "Testing failed with ${EPYTHON}"
}

python_install_all() {
        distutils-r1_python_install_all
        use doc && dohtml -r doc/_build/html/*
}




Reply via email to