pkgsrc-WIP-changes archive

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

+new pkg



Module Name:	pkgsrc-wip
Committed By:	K.I.A.Derouiche <kamel.derouiche%gmail.com@localhost>
Pushed By:	jihbed
Date:		Wed Sep 16 16:36:31 2020 +0100
Changeset:	0ca8859c1347bb77be9992d6beb15c40bf719d34

Modified Files:
	py-dill/DESCR
	py-dill/Makefile
	py-dill/PLIST
	py-dill/distinfo
Added Files:
	py-bson/DESCR
	py-bson/Makefile
	py-bson/PLIST
	py-bson/distinfo
	py-dill/patches/patch-setup.py
	py-pytest-cov/.Makefile.kate-swp
	py-pytest-cov/DESCR
	py-pytest-cov/Makefile
	py-pytest-cov/PLIST
	py-pytest-cov/distinfo
	py-pytest-timeout/DESCR
	py-pytest-timeout/Makefile
	py-pytest-timeout/PLIST
	py-pytest-timeout/distinfo
	py-sentinels/DESCR
	py-sentinels/Makefile
	py-sentinels/PLIST
	py-sentinels/distinfo
	py-spirack/DESCR
	py-spirack/Makefile
	py-spirack/PLIST
	py-spirack/distinfo

Log Message:
+new pkg

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

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

diffstat:
 py-bson/DESCR                    |   2 +
 py-bson/Makefile                 |  16 ++++++++
 py-bson/PLIST                    |  24 ++++++++++++
 py-bson/distinfo                 |   6 +++
 py-dill/DESCR                    |  12 ++++++
 py-dill/Makefile                 |  22 ++++++-----
 py-dill/PLIST                    |  77 ++++++++++++++++++++++++++++++++++++---
 py-dill/distinfo                 |  10 ++---
 py-dill/patches/patch-setup.py   |  14 +++++++
 py-pytest-cov/.Makefile.kate-swp | Bin 0 -> 110 bytes
 py-pytest-cov/DESCR              |   1 +
 py-pytest-cov/Makefile           |  13 +++++++
 py-pytest-cov/PLIST              |  24 ++++++++++++
 py-pytest-cov/distinfo           |   6 +++
 py-pytest-timeout/DESCR          |   1 +
 py-pytest-timeout/Makefile       |  18 +++++++++
 py-pytest-timeout/PLIST          |  10 +++++
 py-pytest-timeout/distinfo       |   6 +++
 py-sentinels/DESCR               |   3 ++
 py-sentinels/Makefile            |  16 ++++++++
 py-sentinels/PLIST               |  12 ++++++
 py-sentinels/distinfo            |   6 +++
 py-spirack/DESCR                 |   5 +++
 py-spirack/Makefile              |  20 ++++++++++
 py-spirack/PLIST                 |  54 +++++++++++++++++++++++++++
 py-spirack/distinfo              |   6 +++
 26 files changed, 365 insertions(+), 19 deletions(-)

diffs:
diff --git a/py-bson/DESCR b/py-bson/DESCR
new file mode 100644
index 0000000000..eec95f7e50
--- /dev/null
+++ b/py-bson/DESCR
@@ -0,0 +1,2 @@
+Independent BSON codec for Python that doesn't depend on MongoDB.
+The bson ObjectId implementation is forked from the PyMongo project
diff --git a/py-bson/Makefile b/py-bson/Makefile
new file mode 100644
index 0000000000..4e6c0d0e03
--- /dev/null
+++ b/py-bson/Makefile
@@ -0,0 +1,16 @@
+# $NetBSD$
+
+DISTNAME=	bson-0.5.10
+PKGNAME=	${PYPKGPREFIX}-${DISTNAME}
+CATEGORIES=	devel python
+MASTER_SITES=	https://files.pythonhosted.org/packages/4d/53/7c534a38850f2252275d7f949aed2219095e90df1e2d180a9c8ed139e499/
+
+MAINTAINER=	kamelderouiche%yahoo.com@localhost
+HOMEPAGE=	https://github.com/py-bson/bson
+COMMENT=	BSON codec for Python
+LICENSE=	apache-2.0
+
+DEPENDS+=	${PYPKGPREFIX}-six>=1.15.0:../../lang/py-six
+
+.include "../../lang/python/egg.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/py-bson/PLIST b/py-bson/PLIST
new file mode 100644
index 0000000000..6d8cb83377
--- /dev/null
+++ b/py-bson/PLIST
@@ -0,0 +1,24 @@
+@comment $NetBSD$
+${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
+${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
+${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
+${PYSITELIB}/${EGG_INFODIR}/requires.txt
+${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+${PYSITELIB}/bson/__init__.py
+${PYSITELIB}/bson/__init__.pyc
+${PYSITELIB}/bson/__init__.pyo
+${PYSITELIB}/bson/codec.py
+${PYSITELIB}/bson/codec.pyc
+${PYSITELIB}/bson/codec.pyo
+${PYSITELIB}/bson/network.py
+${PYSITELIB}/bson/network.pyc
+${PYSITELIB}/bson/network.pyo
+${PYSITELIB}/bson/objectid.py
+${PYSITELIB}/bson/objectid.pyc
+${PYSITELIB}/bson/objectid.pyo
+${PYSITELIB}/bson/py3compat.py
+${PYSITELIB}/bson/py3compat.pyc
+${PYSITELIB}/bson/py3compat.pyo
+${PYSITELIB}/bson/tz_util.py
+${PYSITELIB}/bson/tz_util.pyc
+${PYSITELIB}/bson/tz_util.pyo
diff --git a/py-bson/distinfo b/py-bson/distinfo
new file mode 100644
index 0000000000..b7c4292f4a
--- /dev/null
+++ b/py-bson/distinfo
@@ -0,0 +1,6 @@
+$NetBSD$
+
+SHA1 (bson-0.5.10.tar.gz) = d44f5748e7ab0be17e00208fd9d958e19fc6c19c
+RMD160 (bson-0.5.10.tar.gz) = cace3b53c60ba232602dd83ad4f794fae1906bdb
+SHA512 (bson-0.5.10.tar.gz) = 649c34aecbcf0e57bd2363bf05d4a7ce58d8dd5b7c25608136fe0155297f800e867df1c4f4785fb4f7db88aa4d79f2d23c401eedbec66056a12dd9d451f2a96b
+Size (bson-0.5.10.tar.gz) = 10363 bytes
diff --git a/py-dill/DESCR b/py-dill/DESCR
index e69de29bb2..8082bb8f8c 100644
--- a/py-dill/DESCR
+++ b/py-dill/DESCR
@@ -0,0 +1,12 @@
+dill extends python's pickle module for serializing and de-serializing python
+objects to the majority of the built-in python types. Serialization is the
+process of converting an object to a byte stream, and the inverse of which
+is converting a byte stream back to on python object hierarchy.
+
+dill provides the user the same interface as the pickle module, and also
+includes some additional features. In addition to pickling python objects,
+dill provides the ability to save the state of an interpreter session in
+a single command. Hence, it would be feasable to save a interpreter session,
+close the interpreter, ship the pickled file to another computer, open a
+new interpreter, unpickle the session and thus continue from the 'saved'
+state of the original interpreter session
diff --git a/py-dill/Makefile b/py-dill/Makefile
index 4d8de9e3cb..4d6ca06b6b 100644
--- a/py-dill/Makefile
+++ b/py-dill/Makefile
@@ -1,21 +1,25 @@
 # $NetBSD$
 
-DISTNAME=	dill-0.2.4
+DISTNAME=	dill-0.3.2
 PKGNAME=	${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=	devel python
-MASTER_SITES=	${MASTER_SITE_PYPI:=d/dill/}
-EXTRACT_SUFX=	.tgz#md5=8e7d1ec5a0f150b536da4d0623c3931b
+MASTER_SITES=	https://files.pythonhosted.org/packages/e2/96/518a8ea959a734b70d2e95fef98bcbfdc7adad1c1e5f5dd9148c835205a5/
+EXTRACT_SUFX=	.zip
 
 MAINTAINER=	kamelderouiche%yahoo.com@localhost
-HOMEPAGE=	http://www.cacr.caltech.edu/~mmckerns/dill.htm
-COMMENT=	Utility for serialization of python objects
-LICENSE=	2-clause-bsd
-
-DEPENDS+=	${PYPKGPREFIX}-readline-[0-9]*:../../devel/readline
+HOMEPAGE=	https://pypi.org/project/dill
+COMMENT=	Serialize all of python
+LICENSE=	modified-bsd
 
 USE_LANGUAGES=	# none
 
-PYTHON_VERSIONS_ACCEPTED=	27
+DEPENDS+=	${PYPKGPREFIX}-readline>=3.7.6:../../devel/py-readline
+DEPENDS+=	${PYPKGPREFIX}-objgraph>=1.7.2:../../graphics/py-objgraph
+
+post-extract:
+	${MV} ${WRKSRC}/scripts/undill ${WRKSRC}/scripts/undill${PYVERSSUFFIX}
+	${MV} ${WRKSRC}/scripts/get_objgraph ${WRKSRC}/scripts/get_objgraph${PYVERSSUFFIX}
+
 
 .include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"
diff --git a/py-dill/PLIST b/py-dill/PLIST
index 9840e8cbb7..2e5d8f5f20 100644
--- a/py-dill/PLIST
+++ b/py-dill/PLIST
@@ -1,10 +1,11 @@
 @comment $NetBSD$
-bin/get_objgraph.py
-bin/unpickle.py
+bin/get_objgraph${PYVERSSUFFIX}
+bin/undill${PYVERSSUFFIX}
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
 ${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
+${PYSITELIB}/${EGG_INFODIR}/requires.txt
 ${PYSITELIB}/${EGG_INFODIR}/top_level.txt
 ${PYSITELIB}/dill/__diff.py
 ${PYSITELIB}/dill/__diff.pyc
@@ -12,15 +13,15 @@ ${PYSITELIB}/dill/__diff.pyo
 ${PYSITELIB}/dill/__init__.py
 ${PYSITELIB}/dill/__init__.pyc
 ${PYSITELIB}/dill/__init__.pyo
+${PYSITELIB}/dill/_dill.py
+${PYSITELIB}/dill/_dill.pyc
+${PYSITELIB}/dill/_dill.pyo
 ${PYSITELIB}/dill/_objects.py
 ${PYSITELIB}/dill/_objects.pyc
 ${PYSITELIB}/dill/_objects.pyo
 ${PYSITELIB}/dill/detect.py
 ${PYSITELIB}/dill/detect.pyc
 ${PYSITELIB}/dill/detect.pyo
-${PYSITELIB}/dill/dill.py
-${PYSITELIB}/dill/dill.pyc
-${PYSITELIB}/dill/dill.pyo
 ${PYSITELIB}/dill/info.py
 ${PYSITELIB}/dill/info.pyc
 ${PYSITELIB}/dill/info.pyo
@@ -39,3 +40,69 @@ ${PYSITELIB}/dill/source.pyo
 ${PYSITELIB}/dill/temp.py
 ${PYSITELIB}/dill/temp.pyc
 ${PYSITELIB}/dill/temp.pyo
+${PYSITELIB}/dill/tests/__init__.py
+${PYSITELIB}/dill/tests/__init__.pyc
+${PYSITELIB}/dill/tests/__init__.pyo
+${PYSITELIB}/dill/tests/__main__.py
+${PYSITELIB}/dill/tests/__main__.pyc
+${PYSITELIB}/dill/tests/__main__.pyo
+${PYSITELIB}/dill/tests/test_check.py
+${PYSITELIB}/dill/tests/test_check.pyc
+${PYSITELIB}/dill/tests/test_check.pyo
+${PYSITELIB}/dill/tests/test_classdef.py
+${PYSITELIB}/dill/tests/test_classdef.pyc
+${PYSITELIB}/dill/tests/test_classdef.pyo
+${PYSITELIB}/dill/tests/test_detect.py
+${PYSITELIB}/dill/tests/test_detect.pyc
+${PYSITELIB}/dill/tests/test_detect.pyo
+${PYSITELIB}/dill/tests/test_diff.py
+${PYSITELIB}/dill/tests/test_diff.pyc
+${PYSITELIB}/dill/tests/test_diff.pyo
+${PYSITELIB}/dill/tests/test_extendpickle.py
+${PYSITELIB}/dill/tests/test_extendpickle.pyc
+${PYSITELIB}/dill/tests/test_extendpickle.pyo
+${PYSITELIB}/dill/tests/test_file.py
+${PYSITELIB}/dill/tests/test_file.pyc
+${PYSITELIB}/dill/tests/test_file.pyo
+${PYSITELIB}/dill/tests/test_functions.py
+${PYSITELIB}/dill/tests/test_functions.pyc
+${PYSITELIB}/dill/tests/test_functions.pyo
+${PYSITELIB}/dill/tests/test_functors.py
+${PYSITELIB}/dill/tests/test_functors.pyc
+${PYSITELIB}/dill/tests/test_functors.pyo
+${PYSITELIB}/dill/tests/test_mixins.py
+${PYSITELIB}/dill/tests/test_mixins.pyc
+${PYSITELIB}/dill/tests/test_mixins.pyo
+${PYSITELIB}/dill/tests/test_module.py
+${PYSITELIB}/dill/tests/test_module.pyc
+${PYSITELIB}/dill/tests/test_module.pyo
+${PYSITELIB}/dill/tests/test_moduledict.py
+${PYSITELIB}/dill/tests/test_moduledict.pyc
+${PYSITELIB}/dill/tests/test_moduledict.pyo
+${PYSITELIB}/dill/tests/test_nested.py
+${PYSITELIB}/dill/tests/test_nested.pyc
+${PYSITELIB}/dill/tests/test_nested.pyo
+${PYSITELIB}/dill/tests/test_objects.py
+${PYSITELIB}/dill/tests/test_objects.pyc
+${PYSITELIB}/dill/tests/test_objects.pyo
+${PYSITELIB}/dill/tests/test_properties.py
+${PYSITELIB}/dill/tests/test_properties.pyc
+${PYSITELIB}/dill/tests/test_properties.pyo
+${PYSITELIB}/dill/tests/test_recursive.py
+${PYSITELIB}/dill/tests/test_recursive.pyc
+${PYSITELIB}/dill/tests/test_recursive.pyo
+${PYSITELIB}/dill/tests/test_restricted.py
+${PYSITELIB}/dill/tests/test_restricted.pyc
+${PYSITELIB}/dill/tests/test_restricted.pyo
+${PYSITELIB}/dill/tests/test_selected.py
+${PYSITELIB}/dill/tests/test_selected.pyc
+${PYSITELIB}/dill/tests/test_selected.pyo
+${PYSITELIB}/dill/tests/test_source.py
+${PYSITELIB}/dill/tests/test_source.pyc
+${PYSITELIB}/dill/tests/test_source.pyo
+${PYSITELIB}/dill/tests/test_temp.py
+${PYSITELIB}/dill/tests/test_temp.pyc
+${PYSITELIB}/dill/tests/test_temp.pyo
+${PYSITELIB}/dill/tests/test_weakref.py
+${PYSITELIB}/dill/tests/test_weakref.pyc
+${PYSITELIB}/dill/tests/test_weakref.pyo
diff --git a/py-dill/distinfo b/py-dill/distinfo
index a148755c4b..d2d54a7ddc 100644
--- a/py-dill/distinfo
+++ b/py-dill/distinfo
@@ -1,7 +1,7 @@
 $NetBSD: distinfo,v 1.1 2014/06/09 21:12:57 jihbed Exp $
 
-SHA1 (dill-0.2.4.tgz) = f36c57e0146b9c570db7040f1a1b0da9b69a4b41
-RMD160 (dill-0.2.4.tgz) = 6a29a4e66ad8b37881ef3c02b6c02829cb05716f
-SHA512 (dill-0.2.4.tgz) = 1deed95bc9d3e5c2c30e1ceebecf5112dabcf36a5a49345e8561a289d185511a151dfadc7400b9fc2773ca4b0f1a357d077c7439309a4eea66eecef3ef8acca9
-Size (dill-0.2.4.tgz) = 58607 bytes
-SHA1 (patch-setup.py) = db2ec39a36236e594f3b64662bd9ed39021d10a8
+SHA1 (dill-0.3.2.zip) = 579007426983214b21dcbc8e9393571939c7cf9a
+RMD160 (dill-0.3.2.zip) = d9673f22c08141b85567b036a1ac1ad9d761eb6a
+SHA512 (dill-0.3.2.zip) = 6b28a787bd8ae0fc37dcded46245dfa0b62b56616daf217285e6dbb2b95e3f8a78478976da682714147410c7a7996c8198c59e3de241a0956b4ef3430110dc08
+Size (dill-0.3.2.zip) = 177570 bytes
+SHA1 (patch-setup.py) = 856c66b0823b5b598c95a54874f8ad2b85504cf8
diff --git a/py-dill/patches/patch-setup.py b/py-dill/patches/patch-setup.py
new file mode 100644
index 0000000000..bc1d34d54b
--- /dev/null
+++ b/py-dill/patches/patch-setup.py
@@ -0,0 +1,14 @@
+$NetBSD: patch-setup.py,v 1.1 2020/09/16 10:40:15 jihbed Exp $
+$
+
+--- setup.py.orig	2020-06-15 12:47:22.000000000 +0000
++++ setup.py
+@@ -299,7 +299,7 @@ if has_setuptools:
+ 
+ # add the scripts, and close 'setup' call
+ setup_code += """    
+-      scripts=['scripts/undill','scripts/get_objgraph'])
++      scripts=['scripts/undill'+sys.version[0:3],'scripts/get_objgraph'+sys.version[0:3]])
+ """
+ 
+ # exec the 'setup' code
diff --git a/py-pytest-cov/.Makefile.kate-swp b/py-pytest-cov/.Makefile.kate-swp
new file mode 100644
index 0000000000..0115c661b6
Binary files /dev/null and b/py-pytest-cov/.Makefile.kate-swp differ
diff --git a/py-pytest-cov/DESCR b/py-pytest-cov/DESCR
new file mode 100644
index 0000000000..06fa4fd369
--- /dev/null
+++ b/py-pytest-cov/DESCR
@@ -0,0 +1 @@
+Pytest plugin for measuring coverage
diff --git a/py-pytest-cov/Makefile b/py-pytest-cov/Makefile
new file mode 100644
index 0000000000..872e6dad4c
--- /dev/null
+++ b/py-pytest-cov/Makefile
@@ -0,0 +1,13 @@
+# $NetBSD$
+
+DISTNAME=	pytest-cov-2.10.1
+CATEGORIES=	devel python
+MASTER_SITES=	https://files.pythonhosted.org/packages/8f/d9/05d0d003613cf4cf86ce4505c93c149abd330d2519d1a031c1515e7924ec/
+
+MAINTAINER=	kamelderouiche%yahoo.com@localhost
+HOMEPAGE=	https://github.com/pytest-dev/pytest-cov
+COMMENT=	TODO: Short description of the package
+LICENSE=	mit
+
+.include "../../lang/python/egg.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/py-pytest-cov/PLIST b/py-pytest-cov/PLIST
new file mode 100644
index 0000000000..ff9b026a3b
--- /dev/null
+++ b/py-pytest-cov/PLIST
@@ -0,0 +1,24 @@
+@comment $NetBSD$
+${PYSITELIB}/pytest-cov.pth
+${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
+${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
+${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
+${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
+${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
+${PYSITELIB}/${EGG_INFODIR}/requires.txt
+${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+${PYSITELIB}/pytest_cov/__init__.py
+${PYSITELIB}/pytest_cov/__init__.pyc
+${PYSITELIB}/pytest_cov/__init__.pyo
+${PYSITELIB}/pytest_cov/compat.py
+${PYSITELIB}/pytest_cov/compat.pyc
+${PYSITELIB}/pytest_cov/compat.pyo
+${PYSITELIB}/pytest_cov/embed.py
+${PYSITELIB}/pytest_cov/embed.pyc
+${PYSITELIB}/pytest_cov/embed.pyo
+${PYSITELIB}/pytest_cov/engine.py
+${PYSITELIB}/pytest_cov/engine.pyc
+${PYSITELIB}/pytest_cov/engine.pyo
+${PYSITELIB}/pytest_cov/plugin.py
+${PYSITELIB}/pytest_cov/plugin.pyc
+${PYSITELIB}/pytest_cov/plugin.pyo
diff --git a/py-pytest-cov/distinfo b/py-pytest-cov/distinfo
new file mode 100644
index 0000000000..e5f186869c
--- /dev/null
+++ b/py-pytest-cov/distinfo
@@ -0,0 +1,6 @@
+$NetBSD$
+
+SHA1 (pytest-cov-2.10.1.tar.gz) = 64f07cbf8df0e37e9c565cf111f303ce5239b539
+RMD160 (pytest-cov-2.10.1.tar.gz) = 6857e803dd94ee2b6e54d6f1b4c247f5ce61d747
+SHA512 (pytest-cov-2.10.1.tar.gz) = 2dd575141754a417f34b414ba7e07291c273abdc63a6b7dc72d317c6ec10076b83c2ad78eeefdda7cee1fd6f56932d838602da4dd760a1c0d12095be94c22568
+Size (pytest-cov-2.10.1.tar.gz) = 56822 bytes
diff --git a/py-pytest-timeout/DESCR b/py-pytest-timeout/DESCR
new file mode 100644
index 0000000000..1eeaccee34
--- /dev/null
+++ b/py-pytest-timeout/DESCR
@@ -0,0 +1 @@
+py.test plugin to abort hanging tests
diff --git a/py-pytest-timeout/Makefile b/py-pytest-timeout/Makefile
new file mode 100644
index 0000000000..f91f9885ff
--- /dev/null
+++ b/py-pytest-timeout/Makefile
@@ -0,0 +1,18 @@
+# $NetBSD$
+
+DISTNAME=	pytest-timeout-1.4.2
+PKGNAME=	${PYPKGPREFIX}-${DISTNAME}
+CATEGORIES=	devel python
+MASTER_SITES=	https://files.pythonhosted.org/packages/fd/f2/4202dea92b48712481e46bc6fb9122fd76baac727333858c69be5d19dfc5/
+
+MAINTAINER=	kamelderouiche%yahoo.com@localhost
+HOMEPAGE=	http://github.com/pytest-dev/pytest-timeout/
+COMMENT=	py.test plugin to abort hanging tests
+LICENSE=	mit
+
+DEPENDS+=	${PYPKGPREFIX}-test>=3.6.0:../../devel/py-test
+
+USE_LANGUAGES=	# none
+
+.include "../../lang/python/egg.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/py-pytest-timeout/PLIST b/py-pytest-timeout/PLIST
new file mode 100644
index 0000000000..4f29ec30e5
--- /dev/null
+++ b/py-pytest-timeout/PLIST
@@ -0,0 +1,10 @@
+@comment $NetBSD$
+${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
+${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
+${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
+${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
+${PYSITELIB}/${EGG_INFODIR}/requires.txt
+${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+${PYSITELIB}/pytest_timeout.py
+${PYSITELIB}/pytest_timeout.pyc
+${PYSITELIB}/pytest_timeout.pyo
diff --git a/py-pytest-timeout/distinfo b/py-pytest-timeout/distinfo
new file mode 100644
index 0000000000..3ef64c5bd9
--- /dev/null
+++ b/py-pytest-timeout/distinfo
@@ -0,0 +1,6 @@
+$NetBSD$
+
+SHA1 (pytest-timeout-1.4.2.tar.gz) = 56df6d5116a97976f2cfb896b13708999c614332
+RMD160 (pytest-timeout-1.4.2.tar.gz) = ba7eb20e43f9344ef2ad658e927b8ddf9e1755f1
+SHA512 (pytest-timeout-1.4.2.tar.gz) = 3446ecdb5aaad5fbca12df4e7f4f40c6c1a12895d3ed9f3a3ee24800ce36deed3cb8c09a4cc72220c962b06f821cfd55bf7eebbca23664c56abf2d0e5bc8fbea
+Size (pytest-timeout-1.4.2.tar.gz) = 15424 bytes
diff --git a/py-sentinels/DESCR b/py-sentinels/DESCR
new file mode 100644
index 0000000000..b338665e9a
--- /dev/null
+++ b/py-sentinels/DESCR
@@ -0,0 +1,3 @@
+Sentinels are objects with special meanings. They can be thought of as
+singletons, but they service the need of having ‘special’ values in
+your code, that have special meanings (see example below).
diff --git a/py-sentinels/Makefile b/py-sentinels/Makefile
new file mode 100644
index 0000000000..16bdfd12c5
--- /dev/null
+++ b/py-sentinels/Makefile
@@ -0,0 +1,16 @@
+# $NetBSD$
+
+DISTNAME=	sentinels-1.0.0
+PKGNAME=	${PYPKGPREFIX}-${DISTNAME}
+CATEGORIES=	devel python
+MASTER_SITES=	https://files.pythonhosted.org/packages/ac/b7/1af07a98390aba07da31807f3723e7bbd003d6441b4b3d67b20d97702b23/
+
+MAINTAINER=	kamelderouiche%yahoo.com@localhost
+HOMEPAGE=	https://pypi.org/project/sentinels/
+COMMENT=	Various objects to denote special meanings in python
+LICENSE=	modified-bsd
+
+USE_LANGUAGES=	# none
+
+.include "../../lang/python/egg.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/py-sentinels/PLIST b/py-sentinels/PLIST
new file mode 100644
index 0000000000..aad94438a7
--- /dev/null
+++ b/py-sentinels/PLIST
@@ -0,0 +1,12 @@
+@comment $NetBSD$
+${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
+${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
+${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
+${PYSITELIB}/${EGG_INFODIR}/namespace_packages.txt
+${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+${PYSITELIB}/sentinels/__init__.py
+${PYSITELIB}/sentinels/__init__.pyc
+${PYSITELIB}/sentinels/__init__.pyo
+${PYSITELIB}/sentinels/__version__.py
+${PYSITELIB}/sentinels/__version__.pyc
+${PYSITELIB}/sentinels/__version__.pyo
diff --git a/py-sentinels/distinfo b/py-sentinels/distinfo
new file mode 100644
index 0000000000..0a138318c7
--- /dev/null
+++ b/py-sentinels/distinfo
@@ -0,0 +1,6 @@
+$NetBSD$
+
+SHA1 (sentinels-1.0.0.tar.gz) = ca8a3f781a6b023f86e14b4446e73c47f0b38e1a
+RMD160 (sentinels-1.0.0.tar.gz) = 67ed7e31d6e083d3edba67336e2d2567c7a616fd
+SHA512 (sentinels-1.0.0.tar.gz) = 06aebf28a3074d377b4257ce3e07ced51425f738b3f2e3e4c1764e946137a363c6e94b247e0eb165c6c87eb749751aac36b580b9c550fe513dc0e126738e8794
+Size (sentinels-1.0.0.tar.gz) = 4074 bytes
diff --git a/py-spirack/DESCR b/py-spirack/DESCR
new file mode 100644
index 0000000000..653682cbf8
--- /dev/null
+++ b/py-spirack/DESCR
@@ -0,0 +1,5 @@
+The SPI Rack is a modular electronic instrumentation platform developed by
+QuTech. It has been developed to perform measurements on nanoelectronic
+devices, but is not limited to this. Design priority was the minimization
+of noise and interference signals on the wires connected to the measured
+device (sample)
diff --git a/py-spirack/Makefile b/py-spirack/Makefile
new file mode 100644
index 0000000000..e5c6232285
--- /dev/null
+++ b/py-spirack/Makefile
@@ -0,0 +1,20 @@
+# $NetBSD$
+
+DISTNAME=	spirack-0.2.2
+PKGNAME=	${PYPKGPREFIX}-${DISTNAME}
+CATEGORIES=	comms python
+MASTER_SITES=	https://files.pythonhosted.org/packages/d6/ae/fca118f737dc653edde86958fa63f68865e8f0320a213d8ab7e12781ecb5/
+
+MAINTAINER=	jihbed.research%gamail.com@localhost
+HOMEPAGE=	https://github.com/mtiggelman/SPI-rack
+COMMENT=	Drivers for the QuTech SPI-rack
+LICENSE=	mit
+
+DEPENDS+=	${PYPKGPREFIX}-serial>=3.4:../../comms/py-serial
+
+USE_LANGUAGES=	# none
+
+BUILDLINK_API_DEPENDS.${PYPKGPREFIX}-numpy+=	${PYPKGPREFIX}-numpy>=1.10
+.include "../../math/py-numpy/buildlink3.mk"
+.include "../../lang/python/egg.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/py-spirack/PLIST b/py-spirack/PLIST
new file mode 100644
index 0000000000..16e2b71fc8
--- /dev/null
+++ b/py-spirack/PLIST
@@ -0,0 +1,54 @@
+@comment $NetBSD$
+${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
+${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
+${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
+${PYSITELIB}/${EGG_INFODIR}/requires.txt
+${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+${PYSITELIB}/spirack/B1b_module.py
+${PYSITELIB}/spirack/B1b_module.pyc
+${PYSITELIB}/spirack/B1b_module.pyo
+${PYSITELIB}/spirack/B2b_module.py
+${PYSITELIB}/spirack/B2b_module.pyc
+${PYSITELIB}/spirack/B2b_module.pyo
+${PYSITELIB}/spirack/D4_module.py
+${PYSITELIB}/spirack/D4_module.pyc
+${PYSITELIB}/spirack/D4_module.pyo
+${PYSITELIB}/spirack/D4b_module.py
+${PYSITELIB}/spirack/D4b_module.pyc
+${PYSITELIB}/spirack/D4b_module.pyo
+${PYSITELIB}/spirack/D5a_module.py
+${PYSITELIB}/spirack/D5a_module.pyc
+${PYSITELIB}/spirack/D5a_module.pyo
+${PYSITELIB}/spirack/D5b_module.py
+${PYSITELIB}/spirack/D5b_module.pyc
+${PYSITELIB}/spirack/D5b_module.pyo
+${PYSITELIB}/spirack/F1d_module.py
+${PYSITELIB}/spirack/F1d_module.pyc
+${PYSITELIB}/spirack/F1d_module.pyo
+${PYSITELIB}/spirack/M2j_module.py
+${PYSITELIB}/spirack/M2j_module.pyc
+${PYSITELIB}/spirack/M2j_module.pyo
+${PYSITELIB}/spirack/S4g_module.py
+${PYSITELIB}/spirack/S4g_module.pyc
+${PYSITELIB}/spirack/S4g_module.pyo
+${PYSITELIB}/spirack/S5i_module.py
+${PYSITELIB}/spirack/S5i_module.pyc
+${PYSITELIB}/spirack/S5i_module.pyo
+${PYSITELIB}/spirack/S5k_module.py
+${PYSITELIB}/spirack/S5k_module.pyc
+${PYSITELIB}/spirack/S5k_module.pyo
+${PYSITELIB}/spirack/U2_module.py
+${PYSITELIB}/spirack/U2_module.pyc
+${PYSITELIB}/spirack/U2_module.pyo
+${PYSITELIB}/spirack/__init__.py
+${PYSITELIB}/spirack/__init__.pyc
+${PYSITELIB}/spirack/__init__.pyo
+${PYSITELIB}/spirack/chip_mode.py
+${PYSITELIB}/spirack/chip_mode.pyc
+${PYSITELIB}/spirack/chip_mode.pyo
+${PYSITELIB}/spirack/spi_rack.py
+${PYSITELIB}/spirack/spi_rack.pyc
+${PYSITELIB}/spirack/spi_rack.pyo
+${PYSITELIB}/spirack/version.py
+${PYSITELIB}/spirack/version.pyc
+${PYSITELIB}/spirack/version.pyo
diff --git a/py-spirack/distinfo b/py-spirack/distinfo
new file mode 100644
index 0000000000..1f6d849ccf
--- /dev/null
+++ b/py-spirack/distinfo
@@ -0,0 +1,6 @@
+$NetBSD$
+
+SHA1 (spirack-0.2.2.tar.gz) = 91916ddd0c01972245f4e356c750bdc6c63c0606
+RMD160 (spirack-0.2.2.tar.gz) = 4678e606f292d4687933e704191f2cfc68f72308
+SHA512 (spirack-0.2.2.tar.gz) = 428fff4b5d6c45878b3009ecbb03a6677faddaacd5e6ffaca3a2a86209c53a901a979e4a521766b857697acf15f9ad030620989575064eec57216905244507d7
+Size (spirack-0.2.2.tar.gz) = 35652 bytes


Home | Main Index | Thread Index | Old Index