pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel py-cachy: added version 0.3.0
details: https://anonhg.NetBSD.org/pkgsrc/rev/e030820711d4
branches: trunk
changeset: 371665:e030820711d4
user: adam <adam%pkgsrc.org@localhost>
date: Tue Jan 11 19:03:59 2022 +0000
description:
py-cachy: added version 0.3.0
Cachy provides a simple yet effective caching library.
* A simple but powerful API
* Thread-safety
* Decorator syntax
* Support for memcached, redis, database, file, dict stores
diffstat:
devel/Makefile | 3 +-
devel/py-cachy/DESCR | 5 ++
devel/py-cachy/Makefile | 16 +++++++
devel/py-cachy/PLIST | 108 ++++++++++++++++++++++++++++++++++++++++++++++++
devel/py-cachy/distinfo | 5 ++
5 files changed, 136 insertions(+), 1 deletions(-)
diffs (167 lines):
diff -r a3304bccd125 -r e030820711d4 devel/Makefile
--- a/devel/Makefile Tue Jan 11 17:27:39 2022 +0000
+++ b/devel/Makefile Tue Jan 11 19:03:59 2022 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3546 2022/01/11 15:21:58 fcambus Exp $
+# $NetBSD: Makefile,v 1.3547 2022/01/11 19:03:59 adam Exp $
#
COMMENT= Development utilities
@@ -2221,6 +2221,7 @@
SUBDIR+= py-cached-property
SUBDIR+= py-cachelib
SUBDIR+= py-cachetools
+SUBDIR+= py-cachy
SUBDIR+= py-canonicaljson
SUBDIR+= py-capstone
SUBDIR+= py-case
diff -r a3304bccd125 -r e030820711d4 devel/py-cachy/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-cachy/DESCR Tue Jan 11 19:03:59 2022 +0000
@@ -0,0 +1,5 @@
+Cachy provides a simple yet effective caching library.
+* A simple but powerful API
+* Thread-safety
+* Decorator syntax
+* Support for memcached, redis, database, file, dict stores
diff -r a3304bccd125 -r e030820711d4 devel/py-cachy/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-cachy/Makefile Tue Jan 11 19:03:59 2022 +0000
@@ -0,0 +1,16 @@
+# $NetBSD: Makefile,v 1.1 2022/01/11 19:03:59 adam Exp $
+
+DISTNAME= cachy-0.3.0
+PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
+CATEGORIES= devel python
+MASTER_SITES= ${MASTER_SITE_PYPI:=c/cachy/}
+
+MAINTAINER= pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE= https://github.com/sdispater/cachy
+COMMENT= Cachy provides a simple yet effective caching library
+LICENSE= mit
+
+USE_LANGUAGES= # none
+
+.include "../../lang/python/egg.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r a3304bccd125 -r e030820711d4 devel/py-cachy/PLIST
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-cachy/PLIST Tue Jan 11 19:03:59 2022 +0000
@@ -0,0 +1,108 @@
+@comment $NetBSD: PLIST,v 1.1 2022/01/11 19:03:59 adam Exp $
+${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}/cachy/__init__.py
+${PYSITELIB}/cachy/__init__.pyc
+${PYSITELIB}/cachy/__init__.pyo
+${PYSITELIB}/cachy/cache_manager.py
+${PYSITELIB}/cachy/cache_manager.pyc
+${PYSITELIB}/cachy/cache_manager.pyo
+${PYSITELIB}/cachy/contracts/__init__.py
+${PYSITELIB}/cachy/contracts/__init__.pyc
+${PYSITELIB}/cachy/contracts/__init__.pyo
+${PYSITELIB}/cachy/contracts/factory.py
+${PYSITELIB}/cachy/contracts/factory.pyc
+${PYSITELIB}/cachy/contracts/factory.pyo
+${PYSITELIB}/cachy/contracts/repository.py
+${PYSITELIB}/cachy/contracts/repository.pyc
+${PYSITELIB}/cachy/contracts/repository.pyo
+${PYSITELIB}/cachy/contracts/store.py
+${PYSITELIB}/cachy/contracts/store.pyc
+${PYSITELIB}/cachy/contracts/store.pyo
+${PYSITELIB}/cachy/contracts/taggable_store.py
+${PYSITELIB}/cachy/contracts/taggable_store.pyc
+${PYSITELIB}/cachy/contracts/taggable_store.pyo
+${PYSITELIB}/cachy/helpers.py
+${PYSITELIB}/cachy/helpers.pyc
+${PYSITELIB}/cachy/helpers.pyo
+${PYSITELIB}/cachy/redis_tagged_cache.py
+${PYSITELIB}/cachy/redis_tagged_cache.pyc
+${PYSITELIB}/cachy/redis_tagged_cache.pyo
+${PYSITELIB}/cachy/repository.py
+${PYSITELIB}/cachy/repository.pyc
+${PYSITELIB}/cachy/repository.pyo
+${PYSITELIB}/cachy/serializers/__init__.py
+${PYSITELIB}/cachy/serializers/__init__.pyc
+${PYSITELIB}/cachy/serializers/__init__.pyo
+${PYSITELIB}/cachy/serializers/json_serializer.py
+${PYSITELIB}/cachy/serializers/json_serializer.pyc
+${PYSITELIB}/cachy/serializers/json_serializer.pyo
+${PYSITELIB}/cachy/serializers/msgpack_serializer.py
+${PYSITELIB}/cachy/serializers/msgpack_serializer.pyc
+${PYSITELIB}/cachy/serializers/msgpack_serializer.pyo
+${PYSITELIB}/cachy/serializers/pickle_serializer.py
+${PYSITELIB}/cachy/serializers/pickle_serializer.pyc
+${PYSITELIB}/cachy/serializers/pickle_serializer.pyo
+${PYSITELIB}/cachy/serializers/serializer.py
+${PYSITELIB}/cachy/serializers/serializer.pyc
+${PYSITELIB}/cachy/serializers/serializer.pyo
+${PYSITELIB}/cachy/stores/__init__.py
+${PYSITELIB}/cachy/stores/__init__.pyc
+${PYSITELIB}/cachy/stores/__init__.pyo
+${PYSITELIB}/cachy/stores/dict_store.py
+${PYSITELIB}/cachy/stores/dict_store.pyc
+${PYSITELIB}/cachy/stores/dict_store.pyo
+${PYSITELIB}/cachy/stores/file_store.py
+${PYSITELIB}/cachy/stores/file_store.pyc
+${PYSITELIB}/cachy/stores/file_store.pyo
+${PYSITELIB}/cachy/stores/memcached_store.py
+${PYSITELIB}/cachy/stores/memcached_store.pyc
+${PYSITELIB}/cachy/stores/memcached_store.pyo
+${PYSITELIB}/cachy/stores/null_store.py
+${PYSITELIB}/cachy/stores/null_store.pyc
+${PYSITELIB}/cachy/stores/null_store.pyo
+${PYSITELIB}/cachy/stores/redis_store.py
+${PYSITELIB}/cachy/stores/redis_store.pyc
+${PYSITELIB}/cachy/stores/redis_store.pyo
+${PYSITELIB}/cachy/tag_set.py
+${PYSITELIB}/cachy/tag_set.pyc
+${PYSITELIB}/cachy/tag_set.pyo
+${PYSITELIB}/cachy/tagged_cache.py
+${PYSITELIB}/cachy/tagged_cache.pyc
+${PYSITELIB}/cachy/tagged_cache.pyo
+${PYSITELIB}/cachy/utils.py
+${PYSITELIB}/cachy/utils.pyc
+${PYSITELIB}/cachy/utils.pyo
+${PYSITELIB}/tests/__init__.py
+${PYSITELIB}/tests/__init__.pyc
+${PYSITELIB}/tests/__init__.pyo
+${PYSITELIB}/tests/stores/__init__.py
+${PYSITELIB}/tests/stores/__init__.pyc
+${PYSITELIB}/tests/stores/__init__.pyo
+${PYSITELIB}/tests/stores/test_dict_store.py
+${PYSITELIB}/tests/stores/test_dict_store.pyc
+${PYSITELIB}/tests/stores/test_dict_store.pyo
+${PYSITELIB}/tests/stores/test_file_store.py
+${PYSITELIB}/tests/stores/test_file_store.pyc
+${PYSITELIB}/tests/stores/test_file_store.pyo
+${PYSITELIB}/tests/stores/test_memcached_store.py
+${PYSITELIB}/tests/stores/test_memcached_store.pyc
+${PYSITELIB}/tests/stores/test_memcached_store.pyo
+${PYSITELIB}/tests/stores/test_null_store.py
+${PYSITELIB}/tests/stores/test_null_store.pyc
+${PYSITELIB}/tests/stores/test_null_store.pyo
+${PYSITELIB}/tests/stores/test_redis_store.py
+${PYSITELIB}/tests/stores/test_redis_store.pyc
+${PYSITELIB}/tests/stores/test_redis_store.pyo
+${PYSITELIB}/tests/test_cache_manager.py
+${PYSITELIB}/tests/test_cache_manager.pyc
+${PYSITELIB}/tests/test_cache_manager.pyo
+${PYSITELIB}/tests/test_repository.py
+${PYSITELIB}/tests/test_repository.pyc
+${PYSITELIB}/tests/test_repository.pyo
+${PYSITELIB}/tests/test_tagged_cache.py
+${PYSITELIB}/tests/test_tagged_cache.pyc
+${PYSITELIB}/tests/test_tagged_cache.pyo
diff -r a3304bccd125 -r e030820711d4 devel/py-cachy/distinfo
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-cachy/distinfo Tue Jan 11 19:03:59 2022 +0000
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1 2022/01/11 19:03:59 adam Exp $
+
+BLAKE2s (cachy-0.3.0.tar.gz) = 23806dc3487fe7e802995604c93d193e49fd55d546ab75e6a91472e8290df418
+SHA512 (cachy-0.3.0.tar.gz) = 0b69bd45ce81fc57710b44011965b8c4a313808f7c464a409b839d9206158f91b1e39a760d08d62bb5eb15e455ba9b89683f0eb42d2bfcc2e99b0b8f267e3ead
+Size (cachy-0.3.0.tar.gz) = 15654 bytes
Home |
Main Index |
Thread Index |
Old Index