svn commit: r484893 - in head/science: . py-lifelines

Ruslan Makhmatkhanov rm at FreeBSD.org
Tue Nov 13 18:35:04 UTC 2018


Author: rm
Date: Tue Nov 13 18:35:02 2018
New Revision: 484893
URL: https://svnweb.freebsd.org/changeset/ports/484893

Log:
  Survival analysis in Python, including Kaplan Meier, Nelson Aalen and regression
  
  WWW: https://github.com/CamDavidsonPilon/lifelines/

Added:
  head/science/py-lifelines/
  head/science/py-lifelines/Makefile   (contents, props changed)
  head/science/py-lifelines/distinfo   (contents, props changed)
  head/science/py-lifelines/pkg-descr   (contents, props changed)
Modified:
  head/science/Makefile

Modified: head/science/Makefile
==============================================================================
--- head/science/Makefile	Tue Nov 13 18:16:58 2018	(r484892)
+++ head/science/Makefile	Tue Nov 13 18:35:02 2018	(r484893)
@@ -204,6 +204,7 @@
     SUBDIR += pulseview
     SUBDIR += py-DendroPy
     SUBDIR += py-PyFR
+    SUBDIR += py-lifelines
     SUBDIR += py-MDAnalysis
     SUBDIR += py-MDAnalysisTests
     SUBDIR += py-OpenFermion

Added: head/science/py-lifelines/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/science/py-lifelines/Makefile	Tue Nov 13 18:35:02 2018	(r484893)
@@ -0,0 +1,23 @@
+# $FreeBSD$
+
+PORTNAME=	lifelines
+DISTVERSION=	0.14.6
+CATEGORIES=	science python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	rm at FreeBSD.org
+COMMENT=	Survival analysis in Python
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYNUMPY} \
+		${PYTHON_PKGNAMEPREFIX}pandas>=0.18:math/py-pandas@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${PY_FLAVOR}
+
+NO_ARCH=	yes
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>

Added: head/science/py-lifelines/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/science/py-lifelines/distinfo	Tue Nov 13 18:35:02 2018	(r484893)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1542010887
+SHA256 (lifelines-0.14.6.tar.gz) = 4c397debd434d5411497adf413fd68daece02fad0630c95f8d4229fb4cf3aa78
+SIZE (lifelines-0.14.6.tar.gz) = 1216910

Added: head/science/py-lifelines/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/science/py-lifelines/pkg-descr	Tue Nov 13 18:35:02 2018	(r484893)
@@ -0,0 +1,3 @@
+Survival analysis in Python, including Kaplan Meier, Nelson Aalen and regression
+
+WWW: https://github.com/CamDavidsonPilon/lifelines/


More information about the svn-ports-all mailing list