pkgsrc/www/py-paste/PLIST

263 lines
9.5 KiB
Text
Raw Normal View History

@comment $NetBSD: PLIST,v 1.8 2018/11/04 09:08:35 adam Exp $
${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}/namespace_packages.txt
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
${PYSITELIB}/${EGG_INFODIR}/requires.txt
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
Update to 2.0.2: 2.0.2 ----- * #22: Fix improper commas in request headers in wsgi_environ (https://bitbucket.org/ianb/paste/pull-request/22/fix-improper-commas-in-request-headers-in) Fixes issue #4 ("WSGI environ totally borked") (https://bitbucket.org/ianb/paste/issue/4/wsgi-environ-totally-borked) * #24: test_wsgirequest_charset: Use UTF-8 instead of iso-8859-1 (https://bitbucket.org/ianb/paste/pull-request/24/test_wsgirequest_charset-use-utf-8-instead) Fixes issue #7 ("Python 3 test failure") (https://bitbucket.org/ianb/paste/issue/7/python-3-test-failure) * #23: Replace cgi.parse_qsl w/ six.moves.urllib.parse.parse_qsl (https://bitbucket.org/ianb/paste/pull-request/23/replace-cgiparse_qsl-w) Fixes issue #8 ("cgi.parse_qsl is pending deprecation") (https://bitbucket.org/ianb/paste/issue/8/cgiparse_qsl-is-pending-deprecation) * #20: Escape CGI environment variables in HTTP 404 responses (https://bitbucket.org/ianb/paste/pull-request/20/escape-cgi-environment-variables-in-http) * #6: Add HTTP exception for new code 429 "Too Many Requests" (https://bitbucket.org/ianb/paste/pull-request/6/add-http-exception-for-new-code-429-too) * #25: replace ``has_key`` method to ``in`` operator #9 (https://bitbucket.org/ianb/paste/pull-request/25/replace-has_key-method-to-in-operator-9) Fixes #9 ("used methods removed from py3") (https://bitbucket.org/ianb/paste/issue/9/used-methods-removed-from-py3) * #5: Invalid error message when the socket is already in use (https://bitbucket.org/ianb/paste/issue/5/invalid-error-message-when-the-socket-is) 2.0.1 ----- * Fix setup.py for six dependency: move the six dependency from extras_require to install_requires. * Port paste.proxy to Python 3. * Fix paste.exceptions.serial_number_generator.hash_identifier() on Python 3. * Fix paste.util.threadedprint.uninstall(). Rename duplicated uninstall() function to uninstall_stdin() and fix typo in variable name (_oldstin => _oldstdin). * Add README.rst file. 2.0 --- * Experimental Python 3 support. * paste now requires the six module. * Drop support of Python 2.5 and older. * Fixed ``egg:Paste#cgi`` * In ``paste.httpserver``: give a 100 Continue response even when the server has been configured as an HTTP/1.0 server (clients may send ``Expect: 100-Continue`` before they know the version), and wrap 100 Continue ``environ['wsgi.input']`` files with LimitedLengthFile just like normal request bodies are wrapped, keeping WSGI applications from over-reading from the socket. * Fixed parsing of paths beginning with multiple forward slashes. * Add tox.ini to run tests with tox on Python 2.6, 2.7 and 3.4.
2015-07-16 13:36:20 +02:00
${PYSITELIB}/${EGG_NAME}-nspkg.pth
${PYSITELIB}/paste/auth/__init__.py
${PYSITELIB}/paste/auth/__init__.pyc
${PYSITELIB}/paste/auth/__init__.pyo
${PYSITELIB}/paste/auth/auth_tkt.py
${PYSITELIB}/paste/auth/auth_tkt.pyc
${PYSITELIB}/paste/auth/auth_tkt.pyo
${PYSITELIB}/paste/auth/basic.py
${PYSITELIB}/paste/auth/basic.pyc
${PYSITELIB}/paste/auth/basic.pyo
${PYSITELIB}/paste/auth/cas.py
${PYSITELIB}/paste/auth/cas.pyc
${PYSITELIB}/paste/auth/cas.pyo
${PYSITELIB}/paste/auth/cookie.py
${PYSITELIB}/paste/auth/cookie.pyc
${PYSITELIB}/paste/auth/cookie.pyo
${PYSITELIB}/paste/auth/digest.py
${PYSITELIB}/paste/auth/digest.pyc
${PYSITELIB}/paste/auth/digest.pyo
${PYSITELIB}/paste/auth/form.py
${PYSITELIB}/paste/auth/form.pyc
${PYSITELIB}/paste/auth/form.pyo
${PYSITELIB}/paste/auth/grantip.py
${PYSITELIB}/paste/auth/grantip.pyc
${PYSITELIB}/paste/auth/grantip.pyo
${PYSITELIB}/paste/auth/multi.py
${PYSITELIB}/paste/auth/multi.pyc
${PYSITELIB}/paste/auth/multi.pyo
${PYSITELIB}/paste/auth/open_id.py
${PYSITELIB}/paste/auth/open_id.pyc
${PYSITELIB}/paste/auth/open_id.pyo
${PYSITELIB}/paste/cascade.py
${PYSITELIB}/paste/cascade.pyc
${PYSITELIB}/paste/cascade.pyo
${PYSITELIB}/paste/cgiapp.py
${PYSITELIB}/paste/cgiapp.pyc
${PYSITELIB}/paste/cgiapp.pyo
${PYSITELIB}/paste/cgitb_catcher.py
${PYSITELIB}/paste/cgitb_catcher.pyc
${PYSITELIB}/paste/cgitb_catcher.pyo
${PYSITELIB}/paste/config.py
${PYSITELIB}/paste/config.pyc
${PYSITELIB}/paste/config.pyo
${PYSITELIB}/paste/cowbell/__init__.py
${PYSITELIB}/paste/cowbell/__init__.pyc
${PYSITELIB}/paste/cowbell/__init__.pyo
Update to 2.0.2: 2.0.2 ----- * #22: Fix improper commas in request headers in wsgi_environ (https://bitbucket.org/ianb/paste/pull-request/22/fix-improper-commas-in-request-headers-in) Fixes issue #4 ("WSGI environ totally borked") (https://bitbucket.org/ianb/paste/issue/4/wsgi-environ-totally-borked) * #24: test_wsgirequest_charset: Use UTF-8 instead of iso-8859-1 (https://bitbucket.org/ianb/paste/pull-request/24/test_wsgirequest_charset-use-utf-8-instead) Fixes issue #7 ("Python 3 test failure") (https://bitbucket.org/ianb/paste/issue/7/python-3-test-failure) * #23: Replace cgi.parse_qsl w/ six.moves.urllib.parse.parse_qsl (https://bitbucket.org/ianb/paste/pull-request/23/replace-cgiparse_qsl-w) Fixes issue #8 ("cgi.parse_qsl is pending deprecation") (https://bitbucket.org/ianb/paste/issue/8/cgiparse_qsl-is-pending-deprecation) * #20: Escape CGI environment variables in HTTP 404 responses (https://bitbucket.org/ianb/paste/pull-request/20/escape-cgi-environment-variables-in-http) * #6: Add HTTP exception for new code 429 "Too Many Requests" (https://bitbucket.org/ianb/paste/pull-request/6/add-http-exception-for-new-code-429-too) * #25: replace ``has_key`` method to ``in`` operator #9 (https://bitbucket.org/ianb/paste/pull-request/25/replace-has_key-method-to-in-operator-9) Fixes #9 ("used methods removed from py3") (https://bitbucket.org/ianb/paste/issue/9/used-methods-removed-from-py3) * #5: Invalid error message when the socket is already in use (https://bitbucket.org/ianb/paste/issue/5/invalid-error-message-when-the-socket-is) 2.0.1 ----- * Fix setup.py for six dependency: move the six dependency from extras_require to install_requires. * Port paste.proxy to Python 3. * Fix paste.exceptions.serial_number_generator.hash_identifier() on Python 3. * Fix paste.util.threadedprint.uninstall(). Rename duplicated uninstall() function to uninstall_stdin() and fix typo in variable name (_oldstin => _oldstdin). * Add README.rst file. 2.0 --- * Experimental Python 3 support. * paste now requires the six module. * Drop support of Python 2.5 and older. * Fixed ``egg:Paste#cgi`` * In ``paste.httpserver``: give a 100 Continue response even when the server has been configured as an HTTP/1.0 server (clients may send ``Expect: 100-Continue`` before they know the version), and wrap 100 Continue ``environ['wsgi.input']`` files with LimitedLengthFile just like normal request bodies are wrapped, keeping WSGI applications from over-reading from the socket. * Fixed parsing of paths beginning with multiple forward slashes. * Add tox.ini to run tests with tox on Python 2.6, 2.7 and 3.4.
2015-07-16 13:36:20 +02:00
${PYSITELIB}/paste/cowbell/bell-ascending.png
${PYSITELIB}/paste/cowbell/bell-descending.png
${PYSITELIB}/paste/debug/__init__.py
${PYSITELIB}/paste/debug/__init__.pyc
${PYSITELIB}/paste/debug/__init__.pyo
${PYSITELIB}/paste/debug/debugapp.py
${PYSITELIB}/paste/debug/debugapp.pyc
${PYSITELIB}/paste/debug/debugapp.pyo
${PYSITELIB}/paste/debug/doctest_webapp.py
${PYSITELIB}/paste/debug/doctest_webapp.pyc
${PYSITELIB}/paste/debug/doctest_webapp.pyo
${PYSITELIB}/paste/debug/fsdiff.py
${PYSITELIB}/paste/debug/fsdiff.pyc
${PYSITELIB}/paste/debug/fsdiff.pyo
${PYSITELIB}/paste/debug/prints.py
${PYSITELIB}/paste/debug/prints.pyc
${PYSITELIB}/paste/debug/prints.pyo
${PYSITELIB}/paste/debug/profile.py
${PYSITELIB}/paste/debug/profile.pyc
${PYSITELIB}/paste/debug/profile.pyo
${PYSITELIB}/paste/debug/testserver.py
${PYSITELIB}/paste/debug/testserver.pyc
${PYSITELIB}/paste/debug/testserver.pyo
${PYSITELIB}/paste/debug/watchthreads.py
${PYSITELIB}/paste/debug/watchthreads.pyc
${PYSITELIB}/paste/debug/watchthreads.pyo
${PYSITELIB}/paste/debug/wdg_validate.py
${PYSITELIB}/paste/debug/wdg_validate.pyc
${PYSITELIB}/paste/debug/wdg_validate.pyo
${PYSITELIB}/paste/errordocument.py
${PYSITELIB}/paste/errordocument.pyc
${PYSITELIB}/paste/errordocument.pyo
${PYSITELIB}/paste/evalexception/__init__.py
${PYSITELIB}/paste/evalexception/__init__.pyc
${PYSITELIB}/paste/evalexception/__init__.pyo
${PYSITELIB}/paste/evalexception/evalcontext.py
${PYSITELIB}/paste/evalexception/evalcontext.pyc
${PYSITELIB}/paste/evalexception/evalcontext.pyo
${PYSITELIB}/paste/evalexception/media/MochiKit.packed.js
${PYSITELIB}/paste/evalexception/media/debug.js
${PYSITELIB}/paste/evalexception/media/minus.jpg
${PYSITELIB}/paste/evalexception/media/plus.jpg
${PYSITELIB}/paste/evalexception/middleware.py
${PYSITELIB}/paste/evalexception/middleware.pyc
${PYSITELIB}/paste/evalexception/middleware.pyo
${PYSITELIB}/paste/exceptions/__init__.py
${PYSITELIB}/paste/exceptions/__init__.pyc
${PYSITELIB}/paste/exceptions/__init__.pyo
${PYSITELIB}/paste/exceptions/collector.py
${PYSITELIB}/paste/exceptions/collector.pyc
${PYSITELIB}/paste/exceptions/collector.pyo
${PYSITELIB}/paste/exceptions/errormiddleware.py
${PYSITELIB}/paste/exceptions/errormiddleware.pyc
${PYSITELIB}/paste/exceptions/errormiddleware.pyo
${PYSITELIB}/paste/exceptions/formatter.py
${PYSITELIB}/paste/exceptions/formatter.pyc
${PYSITELIB}/paste/exceptions/formatter.pyo
${PYSITELIB}/paste/exceptions/reporter.py
${PYSITELIB}/paste/exceptions/reporter.pyc
${PYSITELIB}/paste/exceptions/reporter.pyo
${PYSITELIB}/paste/exceptions/serial_number_generator.py
${PYSITELIB}/paste/exceptions/serial_number_generator.pyc
${PYSITELIB}/paste/exceptions/serial_number_generator.pyo
${PYSITELIB}/paste/fileapp.py
${PYSITELIB}/paste/fileapp.pyc
${PYSITELIB}/paste/fileapp.pyo
${PYSITELIB}/paste/fixture.py
${PYSITELIB}/paste/fixture.pyc
${PYSITELIB}/paste/fixture.pyo
${PYSITELIB}/paste/flup_session.py
${PYSITELIB}/paste/flup_session.pyc
${PYSITELIB}/paste/flup_session.pyo
${PYSITELIB}/paste/gzipper.py
${PYSITELIB}/paste/gzipper.pyc
${PYSITELIB}/paste/gzipper.pyo
${PYSITELIB}/paste/httpexceptions.py
${PYSITELIB}/paste/httpexceptions.pyc
${PYSITELIB}/paste/httpexceptions.pyo
${PYSITELIB}/paste/httpheaders.py
${PYSITELIB}/paste/httpheaders.pyc
${PYSITELIB}/paste/httpheaders.pyo
${PYSITELIB}/paste/httpserver.py
${PYSITELIB}/paste/httpserver.pyc
${PYSITELIB}/paste/httpserver.pyo
${PYSITELIB}/paste/lint.py
${PYSITELIB}/paste/lint.pyc
${PYSITELIB}/paste/lint.pyo
${PYSITELIB}/paste/modpython.py
${PYSITELIB}/paste/modpython.pyc
${PYSITELIB}/paste/modpython.pyo
${PYSITELIB}/paste/pony.py
${PYSITELIB}/paste/pony.pyc
${PYSITELIB}/paste/pony.pyo
${PYSITELIB}/paste/progress.py
${PYSITELIB}/paste/progress.pyc
${PYSITELIB}/paste/progress.pyo
${PYSITELIB}/paste/proxy.py
${PYSITELIB}/paste/proxy.pyc
${PYSITELIB}/paste/proxy.pyo
${PYSITELIB}/paste/recursive.py
${PYSITELIB}/paste/recursive.pyc
${PYSITELIB}/paste/recursive.pyo
${PYSITELIB}/paste/registry.py
${PYSITELIB}/paste/registry.pyc
${PYSITELIB}/paste/registry.pyo
${PYSITELIB}/paste/reloader.py
${PYSITELIB}/paste/reloader.pyc
${PYSITELIB}/paste/reloader.pyo
${PYSITELIB}/paste/request.py
${PYSITELIB}/paste/request.pyc
${PYSITELIB}/paste/request.pyo
${PYSITELIB}/paste/response.py
${PYSITELIB}/paste/response.pyc
${PYSITELIB}/paste/response.pyo
${PYSITELIB}/paste/session.py
${PYSITELIB}/paste/session.pyc
${PYSITELIB}/paste/session.pyo
${PYSITELIB}/paste/transaction.py
${PYSITELIB}/paste/transaction.pyc
${PYSITELIB}/paste/transaction.pyo
${PYSITELIB}/paste/translogger.py
${PYSITELIB}/paste/translogger.pyc
${PYSITELIB}/paste/translogger.pyo
${PYSITELIB}/paste/url.py
${PYSITELIB}/paste/url.pyc
${PYSITELIB}/paste/url.pyo
${PYSITELIB}/paste/urlmap.py
${PYSITELIB}/paste/urlmap.pyc
${PYSITELIB}/paste/urlmap.pyo
${PYSITELIB}/paste/urlparser.py
${PYSITELIB}/paste/urlparser.pyc
${PYSITELIB}/paste/urlparser.pyo
${PYSITELIB}/paste/util/PySourceColor.py
${PYSITELIB}/paste/util/PySourceColor.pyc
${PYSITELIB}/paste/util/PySourceColor.pyo
${PYSITELIB}/paste/util/__init__.py
${PYSITELIB}/paste/util/__init__.pyc
${PYSITELIB}/paste/util/__init__.pyo
${PYSITELIB}/paste/util/classinit.py
${PYSITELIB}/paste/util/classinit.pyc
${PYSITELIB}/paste/util/classinit.pyo
${PYSITELIB}/paste/util/classinstance.py
${PYSITELIB}/paste/util/classinstance.pyc
${PYSITELIB}/paste/util/classinstance.pyo
${PYSITELIB}/paste/util/converters.py
${PYSITELIB}/paste/util/converters.pyc
${PYSITELIB}/paste/util/converters.pyo
${PYSITELIB}/paste/util/dateinterval.py
${PYSITELIB}/paste/util/dateinterval.pyc
${PYSITELIB}/paste/util/dateinterval.pyo
${PYSITELIB}/paste/util/datetimeutil.py
${PYSITELIB}/paste/util/datetimeutil.pyc
${PYSITELIB}/paste/util/datetimeutil.pyo
${PYSITELIB}/paste/util/filemixin.py
${PYSITELIB}/paste/util/filemixin.pyc
${PYSITELIB}/paste/util/filemixin.pyo
${PYSITELIB}/paste/util/finddata.py
${PYSITELIB}/paste/util/finddata.pyc
${PYSITELIB}/paste/util/finddata.pyo
${PYSITELIB}/paste/util/findpackage.py
${PYSITELIB}/paste/util/findpackage.pyc
${PYSITELIB}/paste/util/findpackage.pyo
${PYSITELIB}/paste/util/html.py
${PYSITELIB}/paste/util/html.pyc
${PYSITELIB}/paste/util/html.pyo
${PYSITELIB}/paste/util/import_string.py
${PYSITELIB}/paste/util/import_string.pyc
${PYSITELIB}/paste/util/import_string.pyo
${PYSITELIB}/paste/util/intset.py
${PYSITELIB}/paste/util/intset.pyc
${PYSITELIB}/paste/util/intset.pyo
${PYSITELIB}/paste/util/ip4.py
${PYSITELIB}/paste/util/ip4.pyc
${PYSITELIB}/paste/util/ip4.pyo
${PYSITELIB}/paste/util/killthread.py
${PYSITELIB}/paste/util/killthread.pyc
${PYSITELIB}/paste/util/killthread.pyo
${PYSITELIB}/paste/util/looper.py
${PYSITELIB}/paste/util/looper.pyc
${PYSITELIB}/paste/util/looper.pyo
${PYSITELIB}/paste/util/mimeparse.py
${PYSITELIB}/paste/util/mimeparse.pyc
${PYSITELIB}/paste/util/mimeparse.pyo
${PYSITELIB}/paste/util/multidict.py
${PYSITELIB}/paste/util/multidict.pyc
${PYSITELIB}/paste/util/multidict.pyo
${PYSITELIB}/paste/util/quoting.py
${PYSITELIB}/paste/util/quoting.pyc
${PYSITELIB}/paste/util/quoting.pyo
${PYSITELIB}/paste/util/scgiserver.py
${PYSITELIB}/paste/util/scgiserver.pyc
${PYSITELIB}/paste/util/scgiserver.pyo
${PYSITELIB}/paste/util/template.py
${PYSITELIB}/paste/util/template.pyc
${PYSITELIB}/paste/util/template.pyo
${PYSITELIB}/paste/util/threadedprint.py
${PYSITELIB}/paste/util/threadedprint.pyc
${PYSITELIB}/paste/util/threadedprint.pyo
${PYSITELIB}/paste/util/threadinglocal.py
${PYSITELIB}/paste/util/threadinglocal.pyc
${PYSITELIB}/paste/util/threadinglocal.pyo
${PYSITELIB}/paste/wsgilib.py
${PYSITELIB}/paste/wsgilib.pyc
${PYSITELIB}/paste/wsgilib.pyo
${PYSITELIB}/paste/wsgiwrappers.py
${PYSITELIB}/paste/wsgiwrappers.pyc
${PYSITELIB}/paste/wsgiwrappers.pyo