diff options
author | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2020-02-21 20:22:56 +0000 |
---|---|---|
committer | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2020-02-21 20:22:56 +0000 |
commit | 363e56f2b83d3446c51643fc3994996620326b1c (patch) | |
tree | 1d1389f4afba11099d3005eeebf1b3852a9f39cb /databases | |
parent | 62c776befb842cb75be63f1e7ed15e6057812f1d (diff) | |
download | ports-363e56f2b83d3446c51643fc3994996620326b1c.tar.gz ports-363e56f2b83d3446c51643fc3994996620326b1c.zip |
Notes
Diffstat (limited to 'databases')
-rw-r--r-- | databases/Makefile | 1 | ||||
-rw-r--r-- | databases/py-partd/Makefile | 21 | ||||
-rw-r--r-- | databases/py-partd/distinfo | 3 | ||||
-rw-r--r-- | databases/py-partd/pkg-descr | 5 |
4 files changed, 30 insertions, 0 deletions
diff --git a/databases/Makefile b/databases/Makefile index bd91cd989530..c98439f447de 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -789,6 +789,7 @@ SUBDIR += py-mysql2pgsql SUBDIR += py-mysqlclient SUBDIR += py-oursql + SUBDIR += py-partd SUBDIR += py-peewee SUBDIR += py-peewee_migrate SUBDIR += py-pg8000 diff --git a/databases/py-partd/Makefile b/databases/py-partd/Makefile new file mode 100644 index 000000000000..5c510756c6c2 --- /dev/null +++ b/databases/py-partd/Makefile @@ -0,0 +1,21 @@ +# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= partd +PORTVERSION= 1.1.0 +CATEGORIES= databases python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Appendable key-value storage + +LICENSE= BSD4CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +USES= python:3.5+ +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include <bsd.port.mk> diff --git a/databases/py-partd/distinfo b/databases/py-partd/distinfo new file mode 100644 index 000000000000..22b32587ec36 --- /dev/null +++ b/databases/py-partd/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1582312138 +SHA256 (partd-1.1.0.tar.gz) = 6e258bf0810701407ad1410d63d1a15cfd7b773fd9efe555dac6bb82cc8832b0 +SIZE (partd-1.1.0.tar.gz) = 35497 diff --git a/databases/py-partd/pkg-descr b/databases/py-partd/pkg-descr new file mode 100644 index 000000000000..184a39e11dc2 --- /dev/null +++ b/databases/py-partd/pkg-descr @@ -0,0 +1,5 @@ +PartD provides key-value byte store with appendable values. It stores key-value +pairs. Values are raw bytes. We append on old values. PartD excels at shuffling +operations. + +WWW: https://github.com/dask/partd |