From 8376ef56580626e9c0f796d5b85b53a0a1c7d5f5 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 14 Jul 2018 21:03:06 +0100 Subject: gentoo resync : 14.07.2018 --- dev-python/paste/Manifest | 4 ++ .../paste/files/paste-2.0.3-unbundle-tempita.patch | 36 +++++++++++ dev-python/paste/metadata.xml | 20 ++++++ dev-python/paste/paste-2.0.3-r1.ebuild | 73 ++++++++++++++++++++++ 4 files changed, 133 insertions(+) create mode 100644 dev-python/paste/Manifest create mode 100644 dev-python/paste/files/paste-2.0.3-unbundle-tempita.patch create mode 100644 dev-python/paste/metadata.xml create mode 100644 dev-python/paste/paste-2.0.3-r1.ebuild (limited to 'dev-python/paste') diff --git a/dev-python/paste/Manifest b/dev-python/paste/Manifest new file mode 100644 index 000000000000..ba99ba83b357 --- /dev/null +++ b/dev-python/paste/Manifest @@ -0,0 +1,4 @@ +AUX paste-2.0.3-unbundle-tempita.patch 1260 BLAKE2B eee8a9ede07730cc6af7de910a0298bfac23f6d2b31467101375720782920d878716bf91a031ba651e00a61f3a7201708e94ecd8b78f1bd6a52c50ef2826f8d5 SHA512 f21894596c81d984bd7820876e7dfc614728beba107294fecbab084ae1e023428d4d86bde31e428c2f0aa78647636d19f476129ff319dd2c90052218cf428c98 +DIST Paste-2.0.3.tar.gz 643935 BLAKE2B 140f88cbab40728713a052e5aca0c7f14336d526a2c7bcd6a279fcdd13b14ed83938f69997182b43d2a83a76f51586c3b9132428f0f9c9e9ba08b6ff820827b9 SHA512 174b06d77bc6e1d4079e8de7df40412ffda098364efd4e3f915f858be1188c8a6fb546fe4ab981ccc067ec77b7171083b2469e7db6fc3b777d5a24151c928362 +EBUILD paste-2.0.3-r1.ebuild 1846 BLAKE2B 958c2a16662b6070ed1e1ae1296fe4473eb5070689c4be61b5198c6dfb52a4616a218df28254b2cda14b0b5215c1fa166e5de7a5b1a97fc1c27cf77bf210c80d SHA512 4abb3ee2e85e817e40d6667b2de476eaa9bbf791f2f4fdbdb52e89b02538257ea88a225d1c2581c57fc01b6006a0ba0a5b4662d6962235f1e4af1fe6c49e150a +MISC metadata.xml 778 BLAKE2B 74d5474ab918861e65f330eff278a319f8b197c6f95e65c862e55bd19d84534c447e348df82ddc68558dd089f8ac81785c16de38e3fdc70f706d4e5b870243fc SHA512 86b244a3dd365e74dfc12dfc283809840352cbe210b34c34ffda1929db29362d1e02b246920d8461cde70b087020d15cecd3ec5cfe0f168fb69fa45cdb66015a diff --git a/dev-python/paste/files/paste-2.0.3-unbundle-tempita.patch b/dev-python/paste/files/paste-2.0.3-unbundle-tempita.patch new file mode 100644 index 000000000000..eef7abb4108e --- /dev/null +++ b/dev-python/paste/files/paste-2.0.3-unbundle-tempita.patch @@ -0,0 +1,36 @@ + paste/util/looper/__init__.py | 4 ++++ + paste/util/{looper.py => looper/_looper.py} | 0 + paste/util/template/__init__.py | 6 ++++++ + paste/util/{template.py => template/_template.py} | 0 + 4 files changed, 10 insertions(+) + +diff --git a/paste/util/looper/__init__.py b/paste/util/looper/__init__.py +new file mode 100644 +index 0000000..77d7e80 +--- /dev/null ++++ b/paste/util/looper/__init__.py +@@ -0,0 +1,4 @@ ++try: ++ from tempita._looper import * ++except ImportError: ++ from _looper import * +diff --git a/paste/util/looper.py b/paste/util/looper/_looper.py +similarity index 100% +rename from paste/util/looper.py +rename to paste/util/looper/_looper.py +diff --git a/paste/util/template/__init__.py b/paste/util/template/__init__.py +new file mode 100644 +index 0000000..a0a5730 +--- /dev/null ++++ b/paste/util/template/__init__.py +@@ -0,0 +1,6 @@ ++try: ++ from tempita import * ++ from tempita import paste_script_template_renderer ++except ImportError: ++ from _template import * ++ from _template import paste_script_template_renderer +diff --git a/paste/util/template.py b/paste/util/template/_template.py +similarity index 100% +rename from paste/util/template.py +rename to paste/util/template/_template.py diff --git a/dev-python/paste/metadata.xml b/dev-python/paste/metadata.xml new file mode 100644 index 000000000000..0d00d7f04c00 --- /dev/null +++ b/dev-python/paste/metadata.xml @@ -0,0 +1,20 @@ + + + + + python@gentoo.org + Python + + + enable support for flup (and therefore for various + wgsi servers and middleware) + enable OpenID support + + This package provides several pieces of "middleware" (or filters) that can + be nested to build web applications. Each piece of middleware uses the WSGI + (PEP 333) interface, and should be compatible with other middleware based on + those interfaces. + + Paste + + diff --git a/dev-python/paste/paste-2.0.3-r1.ebuild b/dev-python/paste/paste-2.0.3-r1.ebuild new file mode 100644 index 000000000000..babdf62124f0 --- /dev/null +++ b/dev-python/paste/paste-2.0.3-r1.ebuild @@ -0,0 +1,73 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) + +inherit distutils-r1 + +MY_PN="Paste" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Tools for using a Web Server Gateway Interface stack" +HOMEPAGE="https://pypi.org/project/Paste/" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 ~arm64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris" +IUSE="doc flup openid" + +RDEPEND="dev-python/namespace-paste[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] + >=dev-python/tempita-0.5.2_pre20130828[${PYTHON_USEDEP}] + flup? ( dev-python/flup[$(python_gen_usedep 'python2*')] ) + openid? ( dev-python/python-openid[$(python_gen_usedep 'python2*')] )" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" + +S="${WORKDIR}/${MY_P}" + +python_prepare_all() { + # Disable failing tests. + rm -f tests/test_cgiapp.py || die + sed \ + -e "s/test_find_file/_&/" \ + -e "s/test_deep/_&/" \ + -e "s/test_static_parser/_&/" \ + -i tests/test_urlparser.py || die "sed failed" + + # Remove a test that runs against the paste website. + rm -f tests/test_proxy.py || die + + local PATCHES=( + "${FILESDIR}"/${P}-unbundle-tempita.patch + ) + + distutils-r1_python_prepare_all +} + +python_compile() { + distutils-r1_python_compile egg_info --egg-base "${BUILD_DIR}/lib" +} + +python_compile_all() { + use doc && esetup.py build_sphinx +} + +python_test() { + nosetests -P -v || die "Tests fail with ${EPYTHON}" +} + +python_install() { + distutils-r1_python_install egg_info --egg-base "${BUILD_DIR}/lib" +} + +python_install_all() { + use doc && local HTML_DOCS=( "${BUILD_DIR}"/sphinx/html/. ) + distutils-r1_python_install_all + + find "${D}" -name '*.pth' -delete || die +} -- cgit v1.2.3