pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/www py-sanic-routing: added version 0.7.1



details:   https://anonhg.NetBSD.org/pkgsrc/rev/683eced4286f
branches:  trunk
changeset: 456409:683eced4286f
user:      adam <adam%pkgsrc.org@localhost>
date:      Wed Jul 28 12:11:13 2021 +0000

description:
py-sanic-routing: added version 0.7.1

Beginning in v21.3, Sanic makes use of this new AST-style router in two use
cases: routing paths and routing signals. Therefore, this package comes with a
BaseRouter that needs to be subclassed in order to be used for its specific
needs.

diffstat:

 www/Makefile                  |   3 ++-
 www/py-sanic-routing/DESCR    |   4 ++++
 www/py-sanic-routing/Makefile |  24 ++++++++++++++++++++++++
 www/py-sanic-routing/PLIST    |  32 ++++++++++++++++++++++++++++++++
 www/py-sanic-routing/distinfo |   6 ++++++
 5 files changed, 68 insertions(+), 1 deletions(-)

diffs (99 lines):

diff -r 9f1fc9e732c2 -r 683eced4286f www/Makefile
--- a/www/Makefile      Wed Jul 28 07:53:53 2021 +0000
+++ b/www/Makefile      Wed Jul 28 12:11:13 2021 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1568 2021/07/22 15:59:06 jperkin Exp $
+# $NetBSD: Makefile,v 1.1569 2021/07/28 12:11:13 adam Exp $
 #
 
 COMMENT=       Packages related to the World Wide Web
@@ -804,6 +804,7 @@
 SUBDIR+=       py-robobrowser
 SUBDIR+=       py-rss2gen
 SUBDIR+=       py-sanic
+SUBDIR+=       py-sanic-routing
 SUBDIR+=       py-scgi
 SUBDIR+=       py-scrapy
 SUBDIR+=       py-selenium
diff -r 9f1fc9e732c2 -r 683eced4286f www/py-sanic-routing/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/py-sanic-routing/DESCR        Wed Jul 28 12:11:13 2021 +0000
@@ -0,0 +1,4 @@
+Beginning in v21.3, Sanic makes use of this new AST-style router in two use
+cases: routing paths and routing signals. Therefore, this package comes with a
+BaseRouter that needs to be subclassed in order to be used for its specific
+needs.
diff -r 9f1fc9e732c2 -r 683eced4286f www/py-sanic-routing/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/py-sanic-routing/Makefile     Wed Jul 28 12:11:13 2021 +0000
@@ -0,0 +1,24 @@
+# $NetBSD: Makefile,v 1.1 2021/07/28 12:11:13 adam Exp $
+
+DISTNAME=      sanic-routing-0.7.1
+PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:S/_/-/}
+CATEGORIES=    www python
+MASTER_SITES=  ${MASTER_SITE_PYPI:=s/sanic-routing/}
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      https://github.com/sanic-org/sanic-routing/
+COMMENT=       Core routing component for Sanic
+LICENSE=       mit
+
+#DEPENDS+=     ${PYPKGPREFIX}-aiohttp-[0-9]*:../../www/py-aiohttp
+
+USE_LANGUAGES= # none
+
+PYTHON_VERSIONS_INCOMPATIBLE=  27
+
+# tests are not included
+do-test:
+       ${DO_NADA}
+
+.include "../../lang/python/egg.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 9f1fc9e732c2 -r 683eced4286f www/py-sanic-routing/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/py-sanic-routing/PLIST        Wed Jul 28 12:11:13 2021 +0000
@@ -0,0 +1,32 @@
+@comment $NetBSD: PLIST,v 1.1 2021/07/28 12:11:13 adam Exp $
+${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
+${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
+${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
+${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+${PYSITELIB}/sanic_routing/__init__.py
+${PYSITELIB}/sanic_routing/__init__.pyc
+${PYSITELIB}/sanic_routing/__init__.pyo
+${PYSITELIB}/sanic_routing/exceptions.py
+${PYSITELIB}/sanic_routing/exceptions.pyc
+${PYSITELIB}/sanic_routing/exceptions.pyo
+${PYSITELIB}/sanic_routing/group.py
+${PYSITELIB}/sanic_routing/group.pyc
+${PYSITELIB}/sanic_routing/group.pyo
+${PYSITELIB}/sanic_routing/line.py
+${PYSITELIB}/sanic_routing/line.pyc
+${PYSITELIB}/sanic_routing/line.pyo
+${PYSITELIB}/sanic_routing/patterns.py
+${PYSITELIB}/sanic_routing/patterns.pyc
+${PYSITELIB}/sanic_routing/patterns.pyo
+${PYSITELIB}/sanic_routing/route.py
+${PYSITELIB}/sanic_routing/route.pyc
+${PYSITELIB}/sanic_routing/route.pyo
+${PYSITELIB}/sanic_routing/router.py
+${PYSITELIB}/sanic_routing/router.pyc
+${PYSITELIB}/sanic_routing/router.pyo
+${PYSITELIB}/sanic_routing/tree.py
+${PYSITELIB}/sanic_routing/tree.pyc
+${PYSITELIB}/sanic_routing/tree.pyo
+${PYSITELIB}/sanic_routing/utils.py
+${PYSITELIB}/sanic_routing/utils.pyc
+${PYSITELIB}/sanic_routing/utils.pyo
diff -r 9f1fc9e732c2 -r 683eced4286f www/py-sanic-routing/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/py-sanic-routing/distinfo     Wed Jul 28 12:11:13 2021 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2021/07/28 12:11:13 adam Exp $
+
+SHA1 (sanic-routing-0.7.1.tar.gz) = e8de0ede4274b0316de3b49c4fa0f3d2dd531b2f
+RMD160 (sanic-routing-0.7.1.tar.gz) = 7e82710c67773cbeea3d517e1f09166dafe62fbc
+SHA512 (sanic-routing-0.7.1.tar.gz) = 353e24884b99d51622564642a9242e4931f5af8f1bb5d7352cef58584fe7b24d0ccaab0619f2063305573ae3d0388194ccdf91807c6e9f23ac307466bbf64b18
+Size (sanic-routing-0.7.1.tar.gz) = 22597 bytes



Home | Main Index | Thread Index | Old Index