pkgsrc-WIP-changes archive

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

cut-and-run: Tool to split a text file into segments and process in parallel



Module Name:	pkgsrc-wip
Committed By:	Jason Bacon <bacon%NetBSD.org@localhost>
Pushed By:	outpaddling
Date:		Mon May 24 17:04:52 2021 -0500
Changeset:	9f37396bd25e01832a712fd9c06efc378196f948

Modified Files:
	Makefile
Added Files:
	cut-and-run/DESCR
	cut-and-run/Makefile
	cut-and-run/PLIST
	cut-and-run/distinfo

Log Message:
cut-and-run: Tool to split a text file into segments and process in parallel

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

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

diffstat:
 Makefile             |  1 +
 cut-and-run/DESCR    |  3 +++
 cut-and-run/Makefile | 20 ++++++++++++++++++++
 cut-and-run/PLIST    |  2 ++
 cut-and-run/distinfo |  6 ++++++
 5 files changed, 32 insertions(+)

diffs:
diff --git a/Makefile b/Makefile
index 4ff3ba6f18..b0a63e1b61 100644
--- a/Makefile
+++ b/Makefile
@@ -551,6 +551,7 @@ SUBDIR+=	cubature
 SUBDIR+=	cufflinks
 SUBDIR+=	cufflinks-2.2.1
 SUBDIR+=	cup
+SUBDIR+=	cut-and-run
 SUBDIR+=	cutecom
 SUBDIR+=	cvc3
 SUBDIR+=	cvs-syncmail
diff --git a/cut-and-run/DESCR b/cut-and-run/DESCR
new file mode 100644
index 0000000000..a2e825eac1
--- /dev/null
+++ b/cut-and-run/DESCR
@@ -0,0 +1,3 @@
+Cut-and-run is a C program that splits a text file into chunks and feeds them
+to parallel processes using OpenMP threads to read each segment of the file in
+parallel.
diff --git a/cut-and-run/Makefile b/cut-and-run/Makefile
new file mode 100644
index 0000000000..8e4d11a21e
--- /dev/null
+++ b/cut-and-run/Makefile
@@ -0,0 +1,20 @@
+# $NetBSD$
+#
+###########################################################
+#                  Generated by fbsd2pkg                  #
+#              Mon May 24 17:02:20 CDT 2021               #
+###########################################################
+
+DISTNAME=	cut-and-run-0.0.1
+CATEGORIES=	sysutils
+MASTER_SITES=	${MASTER_SITE_GITHUB:=outpaddling/}
+
+MAINTAINER=	bacon%NetBSD.org@localhost
+HOMEPAGE=	https://github.com/outpaddling/cut-and-run
+COMMENT=	Split a text file into segments and process in parallel
+LICENSE=	2-clause-bsd
+
+pre-build:
+	cd ${WRKSRC} && make depend
+
+.include "../../mk/bsd.pkg.mk"
diff --git a/cut-and-run/PLIST b/cut-and-run/PLIST
new file mode 100644
index 0000000000..53584f406e
--- /dev/null
+++ b/cut-and-run/PLIST
@@ -0,0 +1,2 @@
+@comment $NetBSD$
+bin/cut-and-run
diff --git a/cut-and-run/distinfo b/cut-and-run/distinfo
new file mode 100644
index 0000000000..81ba5f24e5
--- /dev/null
+++ b/cut-and-run/distinfo
@@ -0,0 +1,6 @@
+$NetBSD$
+
+SHA1 (cut-and-run-0.0.1.tar.gz) = 00781593c333c993e2ab0e41daee21ff749b0745
+RMD160 (cut-and-run-0.0.1.tar.gz) = ca60d86f3cfafcebba11d701f135f02236b6be02
+SHA512 (cut-and-run-0.0.1.tar.gz) = 60e59a39a6bbc0dc4910db192b307959f68d8ee8e90a4b33debd55d34aa7f62d36aa4011d6dad7f3ea3052fdd488ce9c7fe1769575ce290bd8a766f96336d135
+Size (cut-and-run-0.0.1.tar.gz) = 7089 bytes


Home | Main Index | Thread Index | Old Index