pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

py-orca: Python library for task orchestration



Module Name:	pkgsrc-wip
Committed By:	Jason W. Bacon <bacon%NetBSD.org@localhost>
Pushed By:	outpaddling
Date:		Thu Nov 21 16:00:36 2024 -0600
Changeset:	3d95c63f4eb30045a5556a3aec6fa17b1c97c391

Modified Files:
	Makefile
Added Files:
	py-orca/DESCR
	py-orca/Makefile
	py-orca/PLIST
	py-orca/distinfo

Log Message:
py-orca:  Python library for task orchestration

Orca is a Python library for task orchestration. It's designed for
workflows like city simulation, where the data representing a model's
state is so large that it needs to be managed outside of the task graph.
The building blocks of a workflow are "steps", Python functions that
can be assembled on the fly into linear or cyclical pipelines. Steps
typically interact with a central data store that persists in memory
while the pipeline runs.  Derived tables and columns can be updated
automatically as base data changes, and pipeline components are
evaluated lazily to reduce unnecessary overhead.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=3d95c63f4eb30045a5556a3aec6fa17b1c97c391

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 Makefile         |  1 +
 py-orca/DESCR    |  9 +++++++++
 py-orca/Makefile | 32 ++++++++++++++++++++++++++++++++
 py-orca/PLIST    | 24 ++++++++++++++++++++++++
 py-orca/distinfo |  5 +++++
 5 files changed, 71 insertions(+)

diffs:
diff --git a/Makefile b/Makefile
index 2d15ea6e98..853fd807b5 100644
--- a/Makefile
+++ b/Makefile
@@ -4224,6 +4224,7 @@ SUBDIR+=	py-opentmm
 SUBDIR+=	py-openxmllib
 SUBDIR+=	py-opt-einsum
 SUBDIR+=	py-optlang
+SUBDIR+=	py-orca
 SUBDIR+=	py-orderedset
 SUBDIR+=	py-ore-algebra
 SUBDIR+=	py-orm
diff --git a/py-orca/DESCR b/py-orca/DESCR
new file mode 100644
index 0000000000..b7c0bddb5f
--- /dev/null
+++ b/py-orca/DESCR
@@ -0,0 +1,9 @@
+Orca is a Python library for task orchestration. It's designed for
+workflows like city simulation, where the data representing a model's
+state is so large that it needs to be managed outside of the task graph.
+The building blocks of a workflow are "steps", Python functions that
+can be assembled on the fly into linear or cyclical pipelines. Steps
+typically interact with a central data store that persists in memory
+while the pipeline runs.  Derived tables and columns can be updated
+automatically as base data changes, and pipeline components are
+evaluated lazily to reduce unnecessary overhead.
diff --git a/py-orca/Makefile b/py-orca/Makefile
new file mode 100644
index 0000000000..9e5928a0db
--- /dev/null
+++ b/py-orca/Makefile
@@ -0,0 +1,32 @@
+# $NetBSD$
+#
+###########################################################
+#                  Generated by fbsd2pkg                  #
+#              Thu Nov 21 15:57:10 CST 2024               #
+###########################################################
+
+###########################################################
+# Unconverted and partially converted FreeBSD port syntax:
+
+# RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pandas>=0.15.0,1:math/py-pandas@${PY_FLAVOR} \
+#		${PYPKGPREFIX}-tables>=3.1:devel/py-tables@${PY_FLAVOR} \
+#		${PYPKGPREFIX}-toolz>=0.8.1:devel/py-toolz@${PY_FLAVOR}
+#NO_ARCH=	yes
+
+DISTNAME=	orca-1.8
+PKGNAME=	${PYPKGPREFIX}-${DISTNAME}
+CATEGORIES=	devel python
+MASTER_SITES=	${MASTER_SITE_PYPI:=o/orca/}
+
+OWNER=		bacon%NetBSD.org@localhost
+HOMEPAGE=	https://github.com/UDST/orca
+COMMENT=	Python library for task orchestration
+LICENSE=	modified-bsd
+
+# Check these
+PYTHON_VERSIONS_INCOMPATIBLE=	27
+TOOL_DEPENDS+=	${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools
+TOOL_DEPENDS+=	${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel
+
+.include "../../lang/python/wheel.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/py-orca/PLIST b/py-orca/PLIST
new file mode 100644
index 0000000000..358720e657
--- /dev/null
+++ b/py-orca/PLIST
@@ -0,0 +1,24 @@
+@comment $NetBSD$
+${PYSITELIB}/${WHEEL_INFODIR}/LICENSE.txt
+${PYSITELIB}/${WHEEL_INFODIR}/METADATA
+${PYSITELIB}/${WHEEL_INFODIR}/RECORD
+${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
+${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt
+${PYSITELIB}/orca/__init__.py
+${PYSITELIB}/orca/__init__.pyc
+${PYSITELIB}/orca/__init__.pyo
+${PYSITELIB}/orca/orca.py
+${PYSITELIB}/orca/orca.pyc
+${PYSITELIB}/orca/orca.pyo
+${PYSITELIB}/orca/utils/__init__.py
+${PYSITELIB}/orca/utils/__init__.pyc
+${PYSITELIB}/orca/utils/__init__.pyo
+${PYSITELIB}/orca/utils/logutil.py
+${PYSITELIB}/orca/utils/logutil.pyc
+${PYSITELIB}/orca/utils/logutil.pyo
+${PYSITELIB}/orca/utils/testing.py
+${PYSITELIB}/orca/utils/testing.pyc
+${PYSITELIB}/orca/utils/testing.pyo
+${PYSITELIB}/orca/utils/utils.py
+${PYSITELIB}/orca/utils/utils.pyc
+${PYSITELIB}/orca/utils/utils.pyo
diff --git a/py-orca/distinfo b/py-orca/distinfo
new file mode 100644
index 0000000000..91c0b8a5ac
--- /dev/null
+++ b/py-orca/distinfo
@@ -0,0 +1,5 @@
+$NetBSD$
+
+BLAKE2s (orca-1.8.tar.gz) = a7137360743fa2fe98e3e6c437d186e3618cecf35ecfedf8cb536c48f61390aa
+SHA512 (orca-1.8.tar.gz) = 1a48aba61d8276ca08b64ca70b2427363fd33f0964094c0e2aab4f32d1d000157ce259106776b9f2c6372a2a19a624bcac0b26c384ccb9ccaa53832fd107b796
+Size (orca-1.8.tar.gz) = 19753 bytes


Home | Main Index | Thread Index | Old Index