diff --git a/sdk_container/src/third_party/portage-stable/dev-python/cherrypy/Manifest b/sdk_container/src/third_party/portage-stable/dev-python/cherrypy/Manifest index 28bce18490..03e4f61bd9 100644 --- a/sdk_container/src/third_party/portage-stable/dev-python/cherrypy/Manifest +++ b/sdk_container/src/third_party/portage-stable/dev-python/cherrypy/Manifest @@ -1,5 +1 @@ DIST CherryPy-3.8.0.tar.gz 433711 SHA256 ffcdb43667d4098247efaf8c82dd36d3dd4f8e5dc768ef5e90b480899e523bea SHA512 25f84093e30d814c0980f7d77b98492113470c3297c66ee8652e40650757f8e2b7db01bb8de6d7a1ea9b4bed8b764502b1f563ac6f0d082970bc2d46739d19c2 WHIRLPOOL 9e484fb5589e219108c48281f34bbe64d4767796a391dfb7f194f57dda89774d4517a6acd032fb492879a7bae2d0373e843e4b8aad53bf7b606b1b60dc2bfe56 -EBUILD cherrypy-3.8.0.ebuild 1661 SHA256 9e266df1796b4b2ee6d59417e59d8f62f70b1cfa326aa5e6e3b0ae0e5bb1a0a9 SHA512 7149cfa87ee95bed2f95e0107425e476155902f411a7261b4b05e8eb002aa3f4730d3c3469aad48ead90fe5838baa14b2e4e441e0d1848e013c88e9e8ecbf195 WHIRLPOOL 131d8b2e7902bc6b9baecb4fab83007ad212ec4d41a72b5a35cbc030b48cfae36a55c65d90db57a56acd250b840b871950c91c7f4eb9d03646dcaf35d82420be -MISC ChangeLog 3089 SHA256 56cbe357b081048638fd6608a4aa6068627f38fb3671f30ee2367ffc97290e2e SHA512 bbaabd6f81640129beb855e3f2885db70261d725be262b1f443bbbb862ee23344eeecb52664ed53cd31be21fa0372f41888819d94f95f925dc8cf0e2f28c888c WHIRLPOOL 18a62d457097cc0edc8a839fa5b86af970fc858a361a8a0f9064156c29b3be85812d9e13bb6becc07847eff2c02687912d81f74a00d40f9e9772827a7ecdc57e -MISC ChangeLog-2015 11295 SHA256 eada0e80e782b2a01dfd17ccb910906f3317d5c4f114c6c25076dc0c6341d7ea SHA512 ada3f7c1c34320f735330bb012eeda181e17c2a2ea15fef5bc85b2c6395ce14e2dd3356a3ca34432b59392bcd7edb7678e593c766bb3c0c289db09ca0164fad7 WHIRLPOOL c811020382852a6dc56b8bc340848eaef22e4236d77506ef0543aa126dacde0859bccc677e02bbe31b6cde1ac001010aaf9f5bd6db30b23c2dfbaff01cb41515 -MISC metadata.xml 321 SHA256 9eb1098052e5bce4d1d6d09363aea9d573c3672914aeb939200c635457c87206 SHA512 c777da5d545e3d626d663830437ec91a8f228c58734c7df4e4a16f0609904a5ad4613310d2d05b4e8ea89053371ad0bd4f0624137afe54ff6c4f5d9eef734d10 WHIRLPOOL a4de1510c9aa327636b7ac4a2d6d7f8e5f40ae26000dc3ca26c42c06cd99a1788e7e4e03def655147c9a5fffca769618a49c68d7ef4a31546ee62f1698ea8889 diff --git a/sdk_container/src/third_party/portage-stable/dev-python/cherrypy/cherrypy-3.3.0.ebuild b/sdk_container/src/third_party/portage-stable/dev-python/cherrypy/cherrypy-3.3.0.ebuild deleted file mode 100644 index 4f2448cbef..0000000000 --- a/sdk_container/src/third_party/portage-stable/dev-python/cherrypy/cherrypy-3.3.0.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -PYTHON_COMPAT=( python{2_7,3_4} pypy pypy3 ) - -inherit distutils-r1 - -MY_P="CherryPy-${PV}" - -DESCRIPTION="CherryPy is a pythonic, object-oriented HTTP framework" -HOMEPAGE="http://www.cherrypy.org/ https://pypi.python.org/pypi/CherryPy" -SRC_URI="mirror://pypi/C/CherryPy/${MY_P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 arm ia64 ppc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" -IUSE="test" - -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - test? ( >=dev-python/nose-1.3.3[${PYTHON_USEDEP}] )" -RDEPEND="" -S="${WORKDIR}/${MY_P}" - -DISTUTILS_IN_SOURCE_BUILD=1 - -PATCHES=( "${FILESDIR}/${PN}-3.3.0-test_config.patch" ) - -python_prepare_all() { - # Prevent interactive failures (hangs) in the test suite - sed -i -e "s/interactive = True/interactive = False/" cherrypy/test/webtest.py || die - distutils-r1_python_prepare_all -} - -python_test() { - # suite requires current latest nose-1.3.3 - # https://bitbucket.org/cherrypy/cherrypy/issue/1308 - # https://bitbucket.org/cherrypy/cherrypy/issue/1306 - local exclude=( - -e test_file_stream -e test_4_File_deletion -e test_3_Redirect - -e test_2_File_Concurrency -e test_0_Session -e testStatic - ) - - # This really doesn't sit well with multiprocessing - # The issue 1306 tells us some tests are subject to the deleterious effects of - # the 'race condition'. Both the issues are unresolved / open - if [[ "${EPYTHON}" == pypy ]]; then - nosetests "${exclude[@]}" -I test_logging.py < /dev/tty || die "Testing failed with${EPYTHON}" - else - nosetests "${exclude[@]}" < /dev/tty || die "Testing failed with ${EPYTHON}" - fi -} diff --git a/sdk_container/src/third_party/portage-stable/dev-python/cherrypy/cherrypy-3.7.0.ebuild b/sdk_container/src/third_party/portage-stable/dev-python/cherrypy/cherrypy-3.7.0.ebuild deleted file mode 100644 index 5ed8975de2..0000000000 --- a/sdk_container/src/third_party/portage-stable/dev-python/cherrypy/cherrypy-3.7.0.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -PYTHON_COMPAT=( python{2_7,3_4} pypy pypy3 ) - -inherit distutils-r1 - -MY_P="CherryPy-${PV}" - -DESCRIPTION="CherryPy is a pythonic, object-oriented HTTP framework" -HOMEPAGE="http://www.cherrypy.org/ https://pypi.python.org/pypi/CherryPy" -SRC_URI="mirror://pypi/C/CherryPy/${MY_P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" -IUSE="test" - -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - test? ( >=dev-python/nose-1.3.3[${PYTHON_USEDEP}] )" -RDEPEND="" -S="${WORKDIR}/${MY_P}" - -# testsuite predominantly connects to the network -RESTRICT="test" - -python_prepare_all() { - # Prevent interactive failures (hangs) in the test suite - sed -i -e "s/interactive = True/interactive = False/" cherrypy/test/webtest.py || die - distutils-r1_python_prepare_all -} - -python_test() { - # suite requires current latest nose-1.3.3 - # https://bitbucket.org/cherrypy/cherrypy/issue/1308 - # https://bitbucket.org/cherrypy/cherrypy/issue/1306 - local exclude=( - -e test_file_stream -e test_4_File_deletion -e test_3_Redirect - -e test_2_File_Concurrency -e test_0_Session -e testStatic - ) - - # This really doesn't sit well with multiprocessing - # The issue 1306 tells us some tests are subject to the deleterious effects of - # the 'race condition'. Both the issues are unresolved / open -# if [[ "${EPYTHON}" == pypy ]]; then - nosetests "${exclude[@]}" -I test_logging.py || die "Testing failed with ${EPYTHON}" -# else -# nosetests "${exclude[@]}" < /dev/tty || die "Testing failed with ${EPYTHON}" -# fi -} diff --git a/sdk_container/src/third_party/portage-stable/dev-python/cherrypy/files/cherrypy-3.3.0-test_config.patch b/sdk_container/src/third_party/portage-stable/dev-python/cherrypy/files/cherrypy-3.3.0-test_config.patch deleted file mode 100644 index 55c7195646..0000000000 --- a/sdk_container/src/third_party/portage-stable/dev-python/cherrypy/files/cherrypy-3.3.0-test_config.patch +++ /dev/null @@ -1,20 +0,0 @@ -# HG changeset patch -# User Mike Gilbert -# Date 1399130996 14400 -# Sat May 03 11:29:56 2014 -0400 -# Node ID f8f63e119bd85b16bdee9b95195aba60d5fbca27 -# Parent 60c8bb0cd34632becb758a063032e76c13dc3425 -Remove unicode literal to avoid syntax error in python3.2 - -diff --git a/cherrypy/test/test_config.py b/cherrypy/test/test_config.py ---- a/cherrypy/test/test_config.py -+++ b/cherrypy/test/test_config.py -@@ -206,7 +206,7 @@ - - if not compat.py3k: - self.getPage("/repr?key=thing3") -- self.assertBody(repr(u'test')) -+ self.assertBody(repr(unicode('test'))) - - self.getPage("/repr?key=complex") - self.assertBody("(3+2j)") diff --git a/sdk_container/src/third_party/portage-stable/metadata/md5-cache/dev-python/cherrypy-3.3.0 b/sdk_container/src/third_party/portage-stable/metadata/md5-cache/dev-python/cherrypy-3.3.0 deleted file mode 100644 index b6c9b42e72..0000000000 --- a/sdk_container/src/third_party/portage-stable/metadata/md5-cache/dev-python/cherrypy-3.3.0 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-python/setuptools[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] test? ( >=dev-python/nose-1.3.3[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] ) python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] -DESCRIPTION=CherryPy is a pythonic, object-oriented HTTP framework -EAPI=5 -HOMEPAGE=http://www.cherrypy.org/ https://pypi.python.org/pypi/CherryPy -IUSE=test python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 -KEYWORDS=amd64 arm ia64 ppc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos -LICENSE=BSD -RDEPEND=python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] -REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 ) -SLOT=0 -SRC_URI=mirror://pypi/C/CherryPy/CherryPy-3.3.0.tar.gz -_eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 284a473719153462f3e974d86c8cb81c python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 8fec6b1eb195836560e70b66d98fb163 xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 -_md5_=c85c3334322ce0c629c6b02fc95495d2 diff --git a/sdk_container/src/third_party/portage-stable/metadata/md5-cache/dev-python/cherrypy-3.7.0 b/sdk_container/src/third_party/portage-stable/metadata/md5-cache/dev-python/cherrypy-3.7.0 deleted file mode 100644 index 5511d2dc77..0000000000 --- a/sdk_container/src/third_party/portage-stable/metadata/md5-cache/dev-python/cherrypy-3.7.0 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-python/setuptools[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] test? ( >=dev-python/nose-1.3.3[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] ) python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] -DESCRIPTION=CherryPy is a pythonic, object-oriented HTTP framework -EAPI=5 -HOMEPAGE=http://www.cherrypy.org/ https://pypi.python.org/pypi/CherryPy -IUSE=test python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 -KEYWORDS=~amd64 ~arm ~ia64 ~ppc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos -LICENSE=BSD -RDEPEND=python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] -REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 ) -RESTRICT=test -SLOT=0 -SRC_URI=mirror://pypi/C/CherryPy/CherryPy-3.7.0.tar.gz -_eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 284a473719153462f3e974d86c8cb81c python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 8fec6b1eb195836560e70b66d98fb163 xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 -_md5_=06057bd92918131c9023479c6a0b8226