blob: bea6a6c91aebcbd5ffcacdb753ffcfb21b7fc64a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# $NetBSD: Makefile,v 1.5 2019/09/27 09:00:38 wiz Exp $
DISTNAME= statsmodels-0.9.0
PKGREVISION= 2
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= math python
MASTER_SITES= ${MASTER_SITE_PYPI:=s/statsmodels/}
MAINTAINER= jihbed.research@gmail.com
HOMEPAGE= http://www.statsmodels.org/stable/index.html
COMMENT= Statistical computations and models for use with SciPy
LICENSE= modified-bsd
DEPENDS+= ${PYPKGPREFIX}-cython>=0.14.1:../../devel/py-cython
DEPENDS+= ${PYPKGPREFIX}-pandas>=0.14.1:../../math/py-pandas
DEPENDS+= ${PYPKGPREFIX}-patsy>=0.3.0:../../math/py-patsy
DEPENDS+= ${PYPKGPREFIX}-scipy>=0.12.0:../../math/py-scipy
PYTHON_VERSIONS_INCOMPATIBLE= 27 # py-matplotlib, py-scipy
USE_LANGUAGES= c
SUBST_CLASSES+= scipy
SUBST_STAGE.scipy= pre-configure
SUBST_MESSAGE.scipy= Fix for newer SciPy
SUBST_FILES.scipy= statsmodels/distributions/edgeworth.py
SUBST_FILES.scipy+= statsmodels/distributions/tests/test_edgeworth.py
SUBST_FILES.scipy+= statsmodels/graphics/functional.py
SUBST_FILES.scipy+= statsmodels/miscmodels/count.py
SUBST_FILES.scipy+= statsmodels/sandbox/distributions/genpareto.py
SUBST_FILES.scipy+= statsmodels/sandbox/infotheo.py
SUBST_FILES.scipy+= statsmodels/sandbox/nonparametric/densityorthopoly.py
SUBST_FILES.scipy+= statsmodels/sandbox/nonparametric/kernels.py
SUBST_FILES.scipy+= statsmodels/sandbox/stats/runs.py
SUBST_FILES.scipy+= statsmodels/stats/moment_helpers.py
SUBST_FILES.scipy+= statsmodels/tsa/regime_switching/markov_switching.py
SUBST_SED.scipy= -e 's,\(from scipy\).misc,\1.special,'
.include "../../lang/python/egg.mk"
BUILDLINK_API_DEPENDS.py-numpy+= ${PYPKGPREFIX}-numpy>=0.12.0
.include "../../math/py-numpy/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|