[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2022-09-17 Thread Michał Górny
commit: bf1503f92b8de4a970b57c27dc0cb6eda7ce3694
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Sep 17 09:38:28 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Sep 17 09:38:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf1503f9

www-servers/tornado: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 www-servers/tornado/Manifest  |  1 -
 www-servers/tornado/tornado-6.1-r1.ebuild | 68 ---
 www-servers/tornado/tornado-6.1.ebuild| 57 --
 3 files changed, 126 deletions(-)

diff --git a/www-servers/tornado/Manifest b/www-servers/tornado/Manifest
index da8fb3c0422f..76ef193658e1 100644
--- a/www-servers/tornado/Manifest
+++ b/www-servers/tornado/Manifest
@@ -1,2 +1 @@
-DIST tornado-6.1.tar.gz 497359 BLAKE2B 
ed5981dec5cca962f907f97b7f906c1eef40d2b2b6d6cc16a21bd0a0a91ee58a60bea84b7ceeeff30b3462d707c56a5062c71d4ac8f25ca6a306ded6c6f072c5
 SHA512 
0ec1db1fad911182bda547c177a18b107b906cf66576443069e2b986cf041b3d4ebe08e5a168aa5cd3b56547f32f8b384bacaf74db89f582951d7b610b7494e8
 DIST tornado-6.2.tar.gz 504849 BLAKE2B 
18fee464e043e20dcdd5677bc3a72949140a64ce353e09a21242fcade6d8b668517553c649d65e892d9c3fabacea96903d4e42b70676a62759900abc8f4a202f
 SHA512 
157cbeee21bef29ac68b319329e7fc57db4c68dbb5a245e2171b7a28427ebbfe16b745e3bdbdec5912caae5eaa60c3cbbf8830c9c76fec5ffdf025e234468517

diff --git a/www-servers/tornado/tornado-6.1-r1.ebuild 
b/www-servers/tornado/tornado-6.1-r1.ebuild
deleted file mode 100644
index 7e27327324af..
--- a/www-servers/tornado/tornado-6.1-r1.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..11} )
-PYTHON_REQ_USE="threads(+)"
-
-inherit distutils-r1
-
-DESCRIPTION="Python web framework and asynchronous networking library"
-HOMEPAGE="
-   https://www.tornadoweb.org/
-   https://github.com/tornadoweb/tornado/
-   https://pypi.org/project/tornado/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
-IUSE="examples test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   >=dev-python/pycurl-7.19.3.1[${PYTHON_USEDEP}]
-   >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   ${RDEPEND}
-   )
-"
-
-distutils_enable_sphinx docs \
-   dev-python/sphinx_rtd_theme \
-   dev-python/sphinxcontrib-asyncio
-
-src_prepare() {
-   # Disable deprecation-warnings-as-errors because tornado has a lot of 
stuff deprecated in 3.10
-   sed 's/warnings.filterwarnings("error", category=DeprecationWarning, 
module=r"tornado\\..*")//' \
-   -i tornado/test/runtests.py || die
-   # broken upstream
-   sed -i -e 's:test_multi_line_headers:_&:' \
-   tornado/test/httpclient_test.py || die
-   # network-sandbox? ipv6?
-   sed -i -e 's:test_localhost:_&:' \
-   tornado/test/netutil_test.py || die
-
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   local -x ASYNC_TEST_TIMEOUT=60
-   cd "${T}" || die
-   "${EPYTHON}" -m tornado.test.runtests --verbose ||
-   die "tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
-   if use examples; then
-   docinto examples
-   dodoc -r demos/.
-   docompress -x /usr/share/doc/${PF}/examples
-   fi
-   distutils-r1_python_install_all
-}

diff --git a/www-servers/tornado/tornado-6.1.ebuild 
b/www-servers/tornado/tornado-6.1.ebuild
deleted file mode 100644
index 282234024f34..
--- a/www-servers/tornado/tornado-6.1.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..10} )
-PYTHON_REQ_USE="threads(+)"
-
-inherit distutils-r1
-
-DESCRIPTION="Python web framework and asynchronous networking library"
-HOMEPAGE="https://www.tornadoweb.org/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
-IUSE="examples test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   >=dev-python/pycurl-7.19.3.1[${PYTHON_USEDEP}]
-   >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   ${RDEPEND}
-   )
-"
-
-distutils_enable_sphinx docs \
-   dev-python/sphinx_rtd_theme \
-   dev-python/sphinxcontrib-asyncio
-
-python_prepare_all() {
-   # Disable deprecation-warnings-as-errors because tornado has a lot of 
stuff deprecated in 3.10
-   sed 

[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2022-09-17 Thread Arthur Zamarin
commit: 0ebde70d4f3d65f96653fd43b0502437bbdea64c
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Sep 17 08:17:28 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Sep 17 08:17:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ebde70d

www-servers/tornado: Stabilize 6.2 arm64, #870325

Signed-off-by: Arthur Zamarin  gentoo.org>

 www-servers/tornado/tornado-6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.2.ebuild 
b/www-servers/tornado/tornado-6.2.ebuild
index c553d56a88b5..eb50d15d6c03 100644
--- a/www-servers/tornado/tornado-6.2.ebuild
+++ b/www-servers/tornado/tornado-6.2.ebuild
@@ -19,7 +19,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2022-09-17 Thread Agostino Sarubbo
commit: 5ed2258e0f7f3d6316ed4a233f483581d16e65e0
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Sep 17 06:09:36 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Sep 17 06:09:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ed2258e

www-servers/tornado: Stabilize 6.2 amd64, #870325

Signed-off-by: Agostino Sarubbo  gentoo.org>

 www-servers/tornado/tornado-6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.2.ebuild 
b/www-servers/tornado/tornado-6.2.ebuild
index e8d000681c19..c553d56a88b5 100644
--- a/www-servers/tornado/tornado-6.2.ebuild
+++ b/www-servers/tornado/tornado-6.2.ebuild
@@ -19,7 +19,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2022-09-16 Thread Arthur Zamarin
commit: be4f14773a73218eb4295d8a8faa1591ba830a56
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Sep 16 18:31:13 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Sep 16 18:31:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be4f1477

www-servers/tornado: Stabilize 6.2 ppc, #870325

Signed-off-by: Arthur Zamarin  gentoo.org>

 www-servers/tornado/tornado-6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.2.ebuild 
b/www-servers/tornado/tornado-6.2.ebuild
index ee2a7dc9be37..e8d000681c19 100644
--- a/www-servers/tornado/tornado-6.2.ebuild
+++ b/www-servers/tornado/tornado-6.2.ebuild
@@ -19,7 +19,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ~loong ~m68k ~ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2022-09-16 Thread Sam James
commit: 4900b60f6a8d1934fa431e8fb16f62d04aafb64e
Author: Sam James  gentoo  org>
AuthorDate: Fri Sep 16 17:26:56 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Sep 16 17:26:56 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4900b60f

www-servers/tornado: Stabilize 6.2 x86, #870325

Signed-off-by: Sam James  gentoo.org>

 www-servers/tornado/tornado-6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.2.ebuild 
b/www-servers/tornado/tornado-6.2.ebuild
index b09a9e5e9145..ee2a7dc9be37 100644
--- a/www-servers/tornado/tornado-6.2.ebuild
+++ b/www-servers/tornado/tornado-6.2.ebuild
@@ -19,7 +19,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ~loong ~m68k ~ppc ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ~loong ~m68k ~ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2022-09-16 Thread Arthur Zamarin
commit: 6d3b9d5d6e20f551ca47db87e92ae320e4bf362f
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Sep 16 17:17:15 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Sep 16 17:17:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d3b9d5d

www-servers/tornado: Stabilize 6.2 ppc64, #870325

Signed-off-by: Arthur Zamarin  gentoo.org>

 www-servers/tornado/tornado-6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.2.ebuild 
b/www-servers/tornado/tornado-6.2.ebuild
index fc88e504e716..b09a9e5e9145 100644
--- a/www-servers/tornado/tornado-6.2.ebuild
+++ b/www-servers/tornado/tornado-6.2.ebuild
@@ -19,7 +19,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ~loong ~m68k ~ppc ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2022-09-16 Thread Arthur Zamarin
commit: 2efe906c128df7578584a3a025762f60567873c1
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Sep 16 10:47:24 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Sep 16 10:47:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2efe906c

www-servers/tornado: Stabilize 6.2 hppa, #870325

Signed-off-by: Arthur Zamarin  gentoo.org>

 www-servers/tornado/tornado-6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.2.ebuild 
b/www-servers/tornado/tornado-6.2.ebuild
index a476ec6aa933..fc88e504e716 100644
--- a/www-servers/tornado/tornado-6.2.ebuild
+++ b/www-servers/tornado/tornado-6.2.ebuild
@@ -19,7 +19,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2022-09-16 Thread Arthur Zamarin
commit: a02cbf82b9e59e71cb43fc703472625509ab5f1c
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Sep 16 10:16:08 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Sep 16 10:16:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a02cbf82

www-servers/tornado: Stabilize 6.2 arm, #870325

Signed-off-by: Arthur Zamarin  gentoo.org>

 www-servers/tornado/tornado-6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.2.ebuild 
b/www-servers/tornado/tornado-6.2.ebuild
index c45060684673..a476ec6aa933 100644
--- a/www-servers/tornado/tornado-6.2.ebuild
+++ b/www-servers/tornado/tornado-6.2.ebuild
@@ -19,7 +19,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 
~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2022-09-16 Thread Arthur Zamarin
commit: e054c13717dc9d5c03c65a338eba781b7e17d8fb
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Sep 16 10:16:07 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Sep 16 10:16:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e054c137

www-servers/tornado: Stabilize 6.2 sparc, #870325

Signed-off-by: Arthur Zamarin  gentoo.org>

 www-servers/tornado/tornado-6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.2.ebuild 
b/www-servers/tornado/tornado-6.2.ebuild
index 7e27327324af..c45060684673 100644
--- a/www-servers/tornado/tornado-6.2.ebuild
+++ b/www-servers/tornado/tornado-6.2.ebuild
@@ -19,7 +19,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 
~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2022-07-03 Thread Michał Górny
commit: b1cd3bc79bddf4eeaa0d12fda5de36bcb9ea4e15
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jul  4 04:55:23 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jul  4 05:08:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1cd3bc7

www-servers/tornado: Bump to 6.2

Signed-off-by: Michał Górny  gentoo.org>

 www-servers/tornado/Manifest   |  1 +
 www-servers/tornado/tornado-6.2.ebuild | 68 ++
 2 files changed, 69 insertions(+)

diff --git a/www-servers/tornado/Manifest b/www-servers/tornado/Manifest
index 5d3a2d66a133..da8fb3c0422f 100644
--- a/www-servers/tornado/Manifest
+++ b/www-servers/tornado/Manifest
@@ -1 +1,2 @@
 DIST tornado-6.1.tar.gz 497359 BLAKE2B 
ed5981dec5cca962f907f97b7f906c1eef40d2b2b6d6cc16a21bd0a0a91ee58a60bea84b7ceeeff30b3462d707c56a5062c71d4ac8f25ca6a306ded6c6f072c5
 SHA512 
0ec1db1fad911182bda547c177a18b107b906cf66576443069e2b986cf041b3d4ebe08e5a168aa5cd3b56547f32f8b384bacaf74db89f582951d7b610b7494e8
+DIST tornado-6.2.tar.gz 504849 BLAKE2B 
18fee464e043e20dcdd5677bc3a72949140a64ce353e09a21242fcade6d8b668517553c649d65e892d9c3fabacea96903d4e42b70676a62759900abc8f4a202f
 SHA512 
157cbeee21bef29ac68b319329e7fc57db4c68dbb5a245e2171b7a28427ebbfe16b745e3bdbdec5912caae5eaa60c3cbbf8830c9c76fec5ffdf025e234468517

diff --git a/www-servers/tornado/tornado-6.2.ebuild 
b/www-servers/tornado/tornado-6.2.ebuild
new file mode 100644
index ..7e27327324af
--- /dev/null
+++ b/www-servers/tornado/tornado-6.2.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="Python web framework and asynchronous networking library"
+HOMEPAGE="
+   https://www.tornadoweb.org/
+   https://github.com/tornadoweb/tornado/
+   https://pypi.org/project/tornado/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+IUSE="examples test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=dev-python/pycurl-7.19.3.1[${PYTHON_USEDEP}]
+   >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   ${RDEPEND}
+   )
+"
+
+distutils_enable_sphinx docs \
+   dev-python/sphinx_rtd_theme \
+   dev-python/sphinxcontrib-asyncio
+
+src_prepare() {
+   # Disable deprecation-warnings-as-errors because tornado has a lot of 
stuff deprecated in 3.10
+   sed 's/warnings.filterwarnings("error", category=DeprecationWarning, 
module=r"tornado\\..*")//' \
+   -i tornado/test/runtests.py || die
+   # broken upstream
+   sed -i -e 's:test_multi_line_headers:_&:' \
+   tornado/test/httpclient_test.py || die
+   # network-sandbox? ipv6?
+   sed -i -e 's:test_localhost:_&:' \
+   tornado/test/netutil_test.py || die
+
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local -x ASYNC_TEST_TIMEOUT=60
+   cd "${T}" || die
+   "${EPYTHON}" -m tornado.test.runtests --verbose ||
+   die "tests failed under ${EPYTHON}"
+}
+
+python_install_all() {
+   if use examples; then
+   docinto examples
+   dodoc -r demos/.
+   docompress -x /usr/share/doc/${PF}/examples
+   fi
+   distutils-r1_python_install_all
+}



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2022-05-13 Thread Michał Górny
commit: aea7847a8a7d54a402eba6745a9901997a41e1cd
Author: Michał Górny  gentoo  org>
AuthorDate: Fri May 13 08:20:51 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri May 13 09:08:04 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aea7847a

www-servers/tornado: Enable py3.11

Signed-off-by: Michał Górny  gentoo.org>

 www-servers/tornado/tornado-6.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.1-r1.ebuild 
b/www-servers/tornado/tornado-6.1-r1.ebuild
index d9618f938317..7e27327324af 100644
--- a/www-servers/tornado/tornado-6.1-r1.ebuild
+++ b/www-servers/tornado/tornado-6.1-r1.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
 PYTHON_REQ_USE="threads(+)"
 
 inherit distutils-r1



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2022-05-13 Thread Michał Górny
commit: acdd702a0ab8ee0ef92e7a4420b6d6de3f2ef942
Author: Michał Górny  gentoo  org>
AuthorDate: Fri May 13 08:20:42 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri May 13 09:08:03 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acdd702a

www-servers/tornado: EAPI 8, PEP517

Signed-off-by: Michał Górny  gentoo.org>

 www-servers/tornado/tornado-6.1-r1.ebuild | 68 +++
 1 file changed, 68 insertions(+)

diff --git a/www-servers/tornado/tornado-6.1-r1.ebuild 
b/www-servers/tornado/tornado-6.1-r1.ebuild
new file mode 100644
index ..d9618f938317
--- /dev/null
+++ b/www-servers/tornado/tornado-6.1-r1.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="Python web framework and asynchronous networking library"
+HOMEPAGE="
+   https://www.tornadoweb.org/
+   https://github.com/tornadoweb/tornado/
+   https://pypi.org/project/tornado/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+IUSE="examples test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=dev-python/pycurl-7.19.3.1[${PYTHON_USEDEP}]
+   >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   ${RDEPEND}
+   )
+"
+
+distutils_enable_sphinx docs \
+   dev-python/sphinx_rtd_theme \
+   dev-python/sphinxcontrib-asyncio
+
+src_prepare() {
+   # Disable deprecation-warnings-as-errors because tornado has a lot of 
stuff deprecated in 3.10
+   sed 's/warnings.filterwarnings("error", category=DeprecationWarning, 
module=r"tornado\\..*")//' \
+   -i tornado/test/runtests.py || die
+   # broken upstream
+   sed -i -e 's:test_multi_line_headers:_&:' \
+   tornado/test/httpclient_test.py || die
+   # network-sandbox? ipv6?
+   sed -i -e 's:test_localhost:_&:' \
+   tornado/test/netutil_test.py || die
+
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local -x ASYNC_TEST_TIMEOUT=60
+   cd "${T}" || die
+   "${EPYTHON}" -m tornado.test.runtests --verbose ||
+   die "tests failed under ${EPYTHON}"
+}
+
+python_install_all() {
+   if use examples; then
+   docinto examples
+   dodoc -r demos/.
+   docompress -x /usr/share/doc/${PF}/examples
+   fi
+   distutils-r1_python_install_all
+}



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2022-01-29 Thread James Le Cuirot
commit: c0e1473452afa167e0eb03d7a694bf3238f44806
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sat Jan 29 13:20:30 2022 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sat Jan 29 13:38:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0e14734

www-servers/tornado: Keyword 6.1 for ~m68k

1 of 1167 tests failed. Seemingly timing-related.

Signed-off-by: James Le Cuirot  gentoo.org>

 www-servers/tornado/tornado-6.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-servers/tornado/tornado-6.1.ebuild 
b/www-servers/tornado/tornado-6.1.ebuild
index 07dc01f2ed59..2f2533b8e189 100644
--- a/www-servers/tornado/tornado-6.1.ebuild
+++ b/www-servers/tornado/tornado-6.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 
~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2021-09-04 Thread Michał Górny
commit: 6df86e72ae682074d2c765d5ecdcb5866b742b4f
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Sep  4 21:53:44 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Sep  4 21:53:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6df86e72

www-servers/tornado: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 www-servers/tornado/Manifest |  1 -
 www-servers/tornado/tornado-6.0.4.ebuild | 58 
 2 files changed, 59 deletions(-)

diff --git a/www-servers/tornado/Manifest b/www-servers/tornado/Manifest
index 5b991689705..5d3a2d66a13 100644
--- a/www-servers/tornado/Manifest
+++ b/www-servers/tornado/Manifest
@@ -1,2 +1 @@
-DIST tornado-6.0.4.tar.gz 496204 BLAKE2B 
6c092214d03baf5cf7615b780043e2fa40a4ed623b7ca59a2528cc3625ba904b21ef93c528278adedaf83e3b6e5a6311d867833dfe9826637e97918dee6fa334
 SHA512 
d29d69cf40f8b34fb2c55d81b6ecd9bc7c6fdf644eb4ff35452829510c0d5ec185da0a6067fec3e8afb2bedf9f5f08b06adb0ad53dcab04cb791a75abc304d6e
 DIST tornado-6.1.tar.gz 497359 BLAKE2B 
ed5981dec5cca962f907f97b7f906c1eef40d2b2b6d6cc16a21bd0a0a91ee58a60bea84b7ceeeff30b3462d707c56a5062c71d4ac8f25ca6a306ded6c6f072c5
 SHA512 
0ec1db1fad911182bda547c177a18b107b906cf66576443069e2b986cf041b3d4ebe08e5a168aa5cd3b56547f32f8b384bacaf74db89f582951d7b610b7494e8

diff --git a/www-servers/tornado/tornado-6.0.4.ebuild 
b/www-servers/tornado/tornado-6.0.4.ebuild
deleted file mode 100644
index 4e12f2e4081..000
--- a/www-servers/tornado/tornado-6.0.4.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-PYTHON_REQ_USE="threads(+)"
-
-inherit distutils-r1
-
-DESCRIPTION="Python web framework and asynchronous networking library"
-HOMEPAGE="https://www.tornadoweb.org/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~x64-macos"
-IUSE="examples test"
-RESTRICT="!test? ( test )"
-
-CDEPEND="
-   >=dev-python/pycurl-7.19.3.1[${PYTHON_USEDEP}]
-   >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
-"
-DEPEND="
-   test? (
-   ${CDEPEND}
-   dev-python/mock[${PYTHON_USEDEP}]
-   )
-"
-RDEPEND="${CDEPEND}"
-
-distutils_enable_sphinx docs \
-   dev-python/sphinx_rtd_theme \
-   dev-python/sphinxcontrib-asyncio
-
-src_prepare() {
-   # it used to pass, so apparently something changed somewhere
-   sed -i -e 's:test_method_after_redirect:_&:' \
-   tornado/test/httpclient_test.py || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   local -x ASYNC_TEST_TIMEOUT=60
-   cd "${BUILD_DIR}/lib" || die
-   "${PYTHON}" -m tornado.test.runtests --verbose ||
-   die "tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
-   if use examples; then
-   docinto examples
-   dodoc -r demos/.
-   docompress -x /usr/share/doc/${PF}/examples
-   fi
-   distutils-r1_python_install_all
-}



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2021-08-03 Thread Agostino Sarubbo
commit: 61ceac6d45b8f968287ec2d2c75bf11323c83241
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Aug  3 15:36:00 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Aug  3 15:36:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61ceac6d

www-servers/tornado: x86 stable wrt bug #805476

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 www-servers/tornado/tornado-6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.1.ebuild 
b/www-servers/tornado/tornado-6.1.ebuild
index 854f6ea33c5..a379441dae8 100644
--- a/www-servers/tornado/tornado-6.1.ebuild
+++ b/www-servers/tornado/tornado-6.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc ~x86 
~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 
~amd64-linux ~x86-linux ~x64-macos"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2021-08-03 Thread Agostino Sarubbo
commit: cce6b673dc4841d3393fd063a44b4895f2c047d4
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Aug  3 10:57:24 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Aug  3 10:57:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cce6b673

www-servers/tornado: amd64 stable wrt bug #805476

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 www-servers/tornado/tornado-6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.1.ebuild 
b/www-servers/tornado/tornado-6.1.ebuild
index ad72c6fb24a..854f6ea33c5 100644
--- a/www-servers/tornado/tornado-6.1.ebuild
+++ b/www-servers/tornado/tornado-6.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc 
~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc ~x86 
~amd64-linux ~x86-linux ~x64-macos"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2021-08-03 Thread Sam James
commit: ca8ba21038f1978ea516b06c32e9ea3fc2247ab3
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Aug  3 08:29:42 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Aug  3 10:54:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca8ba210

www-servers/tornado: stable 6.1 for hppa, bug #805476

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 www-servers/tornado/tornado-6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.1.ebuild 
b/www-servers/tornado/tornado-6.1.ebuild
index 11717529896..ad72c6fb24a 100644
--- a/www-servers/tornado/tornado-6.1.ebuild
+++ b/www-servers/tornado/tornado-6.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc 
~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc 
~x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2021-08-01 Thread Agostino Sarubbo
commit: 39048e5906dee0ae10a46c7ce9e2e331dd27ef74
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Aug  2 04:02:55 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Aug  2 04:02:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39048e59

www-servers/tornado: ppc stable wrt bug #805476

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 www-servers/tornado/tornado-6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.1.ebuild 
b/www-servers/tornado/tornado-6.1.ebuild
index 4e6a80360ab..11717529896 100644
--- a/www-servers/tornado/tornado-6.1.ebuild
+++ b/www-servers/tornado/tornado-6.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 sparc 
~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc 
~x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2021-08-01 Thread Sam James
commit: 5106457b87fc11058bd311127a127b2b63ed416e
Author: Sam James  gentoo  org>
AuthorDate: Mon Aug  2 03:17:16 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Aug  2 03:17:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5106457b

www-servers/tornado: Stabilize 6.1 arm, #805476

Signed-off-by: Sam James  gentoo.org>

 www-servers/tornado/tornado-6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.1.ebuild 
b/www-servers/tornado/tornado-6.1.ebuild
index 4fbcd193a31..4e6a80360ab 100644
--- a/www-servers/tornado/tornado-6.1.ebuild
+++ b/www-servers/tornado/tornado-6.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 sparc 
~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 sparc 
~x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2021-07-31 Thread Sam James
commit: 8a15447de323a3303570cae2cf88a9de7f19c4ea
Author: Sam James  gentoo  org>
AuthorDate: Sat Jul 31 22:22:44 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jul 31 22:22:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a15447d

www-servers/tornado: Stabilize 6.1 sparc, #805476

Signed-off-by: Sam James  gentoo.org>

 www-servers/tornado/tornado-6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.1.ebuild 
b/www-servers/tornado/tornado-6.1.ebuild
index 8c099492931..51a92158651 100644
--- a/www-servers/tornado/tornado-6.1.ebuild
+++ b/www-servers/tornado/tornado-6.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 sparc 
~x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2021-06-01 Thread Michał Górny
commit: 02872e75e5649f6c2387d6ba0cf57d47d58b4f14
Author: Ekaterina Vaartis  kotobank  ch>
AuthorDate: Sat May 15 21:48:31 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun  1 20:35:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02872e75

www-servers/tornado: Bump to python 3.10

Signed-off-by: Ekaterina Vaartis  kotobank.ch>
Closes: https://github.com/gentoo/gentoo/pull/20835
Signed-off-by: Michał Górny  gentoo.org>

 www-servers/tornado/tornado-6.1.ebuild | 10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.1.ebuild 
b/www-servers/tornado/tornado-6.1.ebuild
index aad1b1cbc58..a956fc321b8 100644
--- a/www-servers/tornado/tornado-6.1.ebuild
+++ b/www-servers/tornado/tornado-6.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7..9} )
+PYTHON_COMPAT=( python3_{7..10} )
 PYTHON_REQ_USE="threads(+)"
 
 inherit distutils-r1
@@ -32,6 +32,14 @@ distutils_enable_sphinx docs \
dev-python/sphinx_rtd_theme \
dev-python/sphinxcontrib-asyncio
 
+python_prepare_all() {
+   # Disable deprecation-warnings-as-errors because tornado has a lot of 
stuff deprecated in 3.10
+   sed 's/warnings.filterwarnings("error", category=DeprecationWarning, 
module=r"tornado\\..*")//' \
+   -i tornado/test/runtests.py || die
+
+   distutils-r1_python_prepare_all
+}
+
 python_test() {
local -x ASYNC_TEST_TIMEOUT=60
cd "${BUILD_DIR}/lib" || die



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2021-01-13 Thread Michał Górny
commit: 8abf23df6b6046652f5989359b80bb43bbd37d6c
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jan 13 11:52:51 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jan 13 11:54:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8abf23df

www-servers/tornado: Bump to 6.1

Closes: https://bugs.gentoo.org/765184
Signed-off-by: Michał Górny  gentoo.org>

 www-servers/tornado/Manifest   |  1 +
 www-servers/tornado/tornado-6.1.ebuild | 49 ++
 2 files changed, 50 insertions(+)

diff --git a/www-servers/tornado/Manifest b/www-servers/tornado/Manifest
index be07c599176..5b991689705 100644
--- a/www-servers/tornado/Manifest
+++ b/www-servers/tornado/Manifest
@@ -1 +1,2 @@
 DIST tornado-6.0.4.tar.gz 496204 BLAKE2B 
6c092214d03baf5cf7615b780043e2fa40a4ed623b7ca59a2528cc3625ba904b21ef93c528278adedaf83e3b6e5a6311d867833dfe9826637e97918dee6fa334
 SHA512 
d29d69cf40f8b34fb2c55d81b6ecd9bc7c6fdf644eb4ff35452829510c0d5ec185da0a6067fec3e8afb2bedf9f5f08b06adb0ad53dcab04cb791a75abc304d6e
+DIST tornado-6.1.tar.gz 497359 BLAKE2B 
ed5981dec5cca962f907f97b7f906c1eef40d2b2b6d6cc16a21bd0a0a91ee58a60bea84b7ceeeff30b3462d707c56a5062c71d4ac8f25ca6a306ded6c6f072c5
 SHA512 
0ec1db1fad911182bda547c177a18b107b906cf66576443069e2b986cf041b3d4ebe08e5a168aa5cd3b56547f32f8b384bacaf74db89f582951d7b610b7494e8

diff --git a/www-servers/tornado/tornado-6.1.ebuild 
b/www-servers/tornado/tornado-6.1.ebuild
new file mode 100644
index 000..23fd9623ccf
--- /dev/null
+++ b/www-servers/tornado/tornado-6.1.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6..9} )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="Python web framework and asynchronous networking library"
+HOMEPAGE="https://www.tornadoweb.org/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux ~x64-macos"
+IUSE="examples test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=dev-python/pycurl-7.19.3.1[${PYTHON_USEDEP}]
+   >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   ${RDEPEND}
+   )
+"
+
+distutils_enable_sphinx docs \
+   dev-python/sphinx_rtd_theme \
+   dev-python/sphinxcontrib-asyncio
+
+python_test() {
+   local -x ASYNC_TEST_TIMEOUT=60
+   cd "${BUILD_DIR}/lib" || die
+   "${PYTHON}" -m tornado.test.runtests --verbose ||
+   die "tests failed under ${EPYTHON}"
+}
+
+python_install_all() {
+   if use examples; then
+   docinto examples
+   dodoc -r demos/.
+   docompress -x /usr/share/doc/${PF}/examples
+   fi
+   distutils-r1_python_install_all
+}



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2020-12-31 Thread Michał Górny
commit: d56202dc286ee123ca111ad3aef7d150276eccd0
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jan  1 00:48:12 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jan  1 00:48:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d56202dc

www-servers/tornado: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 www-servers/tornado/Manifest |  1 -
 www-servers/tornado/tornado-4.5.3.ebuild | 54 
 2 files changed, 55 deletions(-)

diff --git a/www-servers/tornado/Manifest b/www-servers/tornado/Manifest
index 7ac937f14bf..be07c599176 100644
--- a/www-servers/tornado/Manifest
+++ b/www-servers/tornado/Manifest
@@ -1,2 +1 @@
-DIST tornado-4.5.3.tar.gz 484221 BLAKE2B 
7b3682fa85a7f6ad32351d40993516a3e397b7b0a5de9d807bcd8b2b21325a6170f3670cb13e12aa208b6590313cf165ddf40537dba1fee61fa9d71954265a66
 SHA512 
c17dd7a3b541c26950d27c8a399ae4fdff1d99d16ff0c5de9871fe2de4c0f797c96712b23b5ed5efdaee06bb251f7def114c83fe6f7f37f344cdac9996d14448
 DIST tornado-6.0.4.tar.gz 496204 BLAKE2B 
6c092214d03baf5cf7615b780043e2fa40a4ed623b7ca59a2528cc3625ba904b21ef93c528278adedaf83e3b6e5a6311d867833dfe9826637e97918dee6fa334
 SHA512 
d29d69cf40f8b34fb2c55d81b6ecd9bc7c6fdf644eb4ff35452829510c0d5ec185da0a6067fec3e8afb2bedf9f5f08b06adb0ad53dcab04cb791a75abc304d6e

diff --git a/www-servers/tornado/tornado-4.5.3.ebuild 
b/www-servers/tornado/tornado-4.5.3.ebuild
deleted file mode 100644
index 0c7d57c3595..000
--- a/www-servers/tornado/tornado-4.5.3.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_6 )
-PYTHON_REQ_USE="threads(+)"
-
-inherit distutils-r1
-
-DESCRIPTION="Python web framework and asynchronous networking library"
-HOMEPAGE="http://www.tornadoweb.org/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ppc ppc64 s390 sparc x86 
~amd64-linux ~x86-linux"
-IUSE="examples test"
-RESTRICT="!test? ( test )"
-
-CDEPEND="
-   dev-python/certifi[${PYTHON_USEDEP}]
-   >=dev-python/pycurl-7.19.3.1[${PYTHON_USEDEP}]
-   >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
-"
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? (
-   ${CDEPEND}
-   dev-python/mock[${PYTHON_USEDEP}]
-   )
-"
-RDEPEND="${CDEPEND}"
-
-distutils_enable_sphinx docs \
-   dev-python/sphinx_rtd_theme
-
-# doc without intersphinx does not build (asyncio error)
-#PATCHES=(
-#  "${FILESDIR}"/4.5.1-drop-intersphinx.patch
-#)
-
-python_test() {
-   "${PYTHON}" -m tornado.test.runtests || die "tests failed under 
${EPYTHON}"
-}
-
-python_install_all() {
-   if use examples; then
-   insinto /usr/share/doc/${PF}/examples
-   doins -r demos/.
-   docompress -x /usr/share/doc/${PF}/examples
-   fi
-   distutils-r1_python_install_all
-}



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2020-12-23 Thread Sam James
commit: 62586360552e41b24941103ece8a4e4a1fb11850
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 23 21:52:47 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 23 21:52:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62586360

www-servers/tornado: restore prefix keywords

Closes: https://bugs.gentoo.org/759739
Package-Manager: Portage-3.0.12-prefix, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>

 www-servers/tornado/tornado-6.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.0.4.ebuild 
b/www-servers/tornado/tornado-6.0.4.ebuild
index d76544db12e..48335d4575f 100644
--- a/www-servers/tornado/tornado-6.0.4.ebuild
+++ b/www-servers/tornado/tornado-6.0.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 s390 sparc x86 
~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 s390 sparc x86 
~amd64-linux ~x86-linux ~x64-macos"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2020-12-13 Thread Sam James
commit: ab85143f52ffd10624dffd3e286a76f7a07c1682
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 13 23:23:01 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 13 23:23:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab85143f

www-servers/tornado: stable 6.0.4 for s390

stable wrt bug #720660

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="s390"
Signed-off-by: Sam James  gentoo.org>

 www-servers/tornado/tornado-6.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.0.4.ebuild 
b/www-servers/tornado/tornado-6.0.4.ebuild
index 2a7f9ddf482..d76544db12e 100644
--- a/www-servers/tornado/tornado-6.0.4.ebuild
+++ b/www-servers/tornado/tornado-6.0.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~s390 sparc x86 
~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 s390 sparc x86 
~x64-macos"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2020-11-28 Thread Sam James
commit: f72e49d76ec774d7f31a044c2ba5644752c828bf
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 28 11:57:45 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 28 11:57:52 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f72e49d7

www-servers/tornado: ~x64-macos keyworded

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>

 www-servers/tornado/tornado-6.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.0.4.ebuild 
b/www-servers/tornado/tornado-6.0.4.ebuild
index e4e095338d4..2a7f9ddf482 100644
--- a/www-servers/tornado/tornado-6.0.4.ebuild
+++ b/www-servers/tornado/tornado-6.0.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~s390 sparc x86 
~x64-macos"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2020-08-06 Thread Michał Górny
commit: 743acf100d533b5f0246b62135b898e7fc12effd
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Aug  7 04:32:10 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Aug  7 04:53:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=743acf10

www-servers/tornado: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 www-servers/tornado/Manifest  |  2 -
 www-servers/tornado/tornado-5.1-r1.ebuild | 55 ---
 www-servers/tornado/tornado-6.0.3.ebuild  | 62 ---
 3 files changed, 119 deletions(-)

diff --git a/www-servers/tornado/Manifest b/www-servers/tornado/Manifest
index 61034a8fe14..7ac937f14bf 100644
--- a/www-servers/tornado/Manifest
+++ b/www-servers/tornado/Manifest
@@ -1,4 +1,2 @@
 DIST tornado-4.5.3.tar.gz 484221 BLAKE2B 
7b3682fa85a7f6ad32351d40993516a3e397b7b0a5de9d807bcd8b2b21325a6170f3670cb13e12aa208b6590313cf165ddf40537dba1fee61fa9d71954265a66
 SHA512 
c17dd7a3b541c26950d27c8a399ae4fdff1d99d16ff0c5de9871fe2de4c0f797c96712b23b5ed5efdaee06bb251f7def114c83fe6f7f37f344cdac9996d14448
-DIST tornado-5.1.tar.gz 516359 BLAKE2B 
1ff6e6ced124b7b0df0e476eac555de20e4ac86f01369ee484e33bf5d749c269a81dd11a0b4c8b3169db6fd9f7a1b4e3c3551d46474c53a1fed8e342660c57f9
 SHA512 
8f45e5bbee5453a4225f05840a9fa80dd574c5a9cac9ec4d787f11c3f86f347c66d39c984a8bbe96dbb41f599e25102f1a3dad1c55b479bebee7d856aaca764a
-DIST tornado-6.0.3.tar.gz 482444 BLAKE2B 
1dda4baae52034d779879fef507d5764894f4aa054e60b00a2f8a989df4b31b495cbed6397d602e7c19844ea1538988558d5741da91646b64b6dbb8e78d618ed
 SHA512 
2db182da7327fdd32fe76a50726a1285332139972766368c3b3dac5b4d54b4bd452a76062c09d1d158a97ace78b7915d93a29a7a8138499a2e56aee9df461abc
 DIST tornado-6.0.4.tar.gz 496204 BLAKE2B 
6c092214d03baf5cf7615b780043e2fa40a4ed623b7ca59a2528cc3625ba904b21ef93c528278adedaf83e3b6e5a6311d867833dfe9826637e97918dee6fa334
 SHA512 
d29d69cf40f8b34fb2c55d81b6ecd9bc7c6fdf644eb4ff35452829510c0d5ec185da0a6067fec3e8afb2bedf9f5f08b06adb0ad53dcab04cb791a75abc304d6e

diff --git a/www-servers/tornado/tornado-5.1-r1.ebuild 
b/www-servers/tornado/tornado-5.1-r1.ebuild
deleted file mode 100644
index 8ad9e01ae78..000
--- a/www-servers/tornado/tornado-5.1-r1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7,8} )
-PYTHON_REQ_USE="threads(+)"
-
-inherit distutils-r1
-
-DESCRIPTION="Python web framework and asynchronous networking library"
-HOMEPAGE="http://www.tornadoweb.org/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~s390 ~sparc x86 
~amd64-linux ~x86-linux"
-IUSE="examples test"
-RESTRICT="!test? ( test )"
-
-CDEPEND="
-   >=dev-python/pycurl-7.19.3.1[${PYTHON_USEDEP}]
-   >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
-"
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? (
-   ${CDEPEND}
-   dev-python/mock[${PYTHON_USEDEP}]
-   )
-"
-RDEPEND="${CDEPEND}"
-
-distutils_enable_sphinx docs \
-   dev-python/sphinx_rtd_theme
-
-# doc without intersphinx does not build (asyncio error)
-#PATCHES=(
-#  "${FILESDIR}"/4.5.1-drop-intersphinx.patch
-#)
-
-python_test() {
-   local -x ASYNC_TEST_TIMEOUT=60
-   "${PYTHON}" -m tornado.test.runtests --verbose ||
-   die "tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
-   if use examples; then
-   insinto /usr/share/doc/${PF}/examples
-   doins -r demos/.
-   docompress -x /usr/share/doc/${PF}/examples
-   fi
-   distutils-r1_python_install_all
-}

diff --git a/www-servers/tornado/tornado-6.0.3.ebuild 
b/www-servers/tornado/tornado-6.0.3.ebuild
deleted file mode 100644
index a26972210ab..000
--- a/www-servers/tornado/tornado-6.0.3.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6..9} )
-PYTHON_REQ_USE="threads(+)"
-
-inherit distutils-r1
-
-DESCRIPTION="Python web framework and asynchronous networking library"
-HOMEPAGE="https://www.tornadoweb.org/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux"
-IUSE="examples test"
-RESTRICT="!test? ( test )"
-
-CDEPEND="
-   >=dev-python/pycurl-7.19.3.1[${PYTHON_USEDEP}]
-   >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
-"
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? (
-   ${CDEPEND}
-   dev-python/mock[${PYTHON_USEDEP}]
-   )
-"
-RDEPEND="${CDEPEND}"
-
-distutils_enable_sphinx docs \
-   dev-python/sphinx_rtd_theme
-
-# doc without intersphinx does not build 

[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2020-07-11 Thread Sam James
commit: 28eab8e7a313ab48661b641e204a8b794d58e6df
Author: Sam James  gentoo  org>
AuthorDate: Sat Jul 11 22:41:32 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jul 11 22:41:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28eab8e7

www-servers/tornado: s390 keyworded (bug #713276)

Package-Manager: Portage-2.3.99, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

 www-servers/tornado/tornado-6.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.0.4.ebuild 
b/www-servers/tornado/tornado-6.0.4.ebuild
index 8b4489def9c..e4e095338d4 100644
--- a/www-servers/tornado/tornado-6.0.4.ebuild
+++ b/www-servers/tornado/tornado-6.0.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~s390 sparc x86"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2020-07-04 Thread Mart Raudsepp
commit: d724d909a76cc35edff56f51ceb70c9c7f57a77f
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Fri Jul  3 00:52:55 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Jul  4 12:28:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d724d909

www-servers/tornado: arm64 stable (bug #720660)

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

 www-servers/tornado/tornado-6.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.0.4.ebuild 
b/www-servers/tornado/tornado-6.0.4.ebuild
index 3220a5e3f31..8b4489def9c 100644
--- a/www-servers/tornado/tornado-6.0.4.ebuild
+++ b/www-servers/tornado/tornado-6.0.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ppc ppc64 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2020-06-17 Thread Sergei Trofimovich
commit: 33226068b51f16c7cd3616946c090eecb4e965f4
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Jun 17 19:19:58 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Jun 17 20:36:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33226068

www-servers/tornado: stable 6.0.4 for sparc, bug #720660

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 www-servers/tornado/tornado-6.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.0.4.ebuild 
b/www-servers/tornado/tornado-6.0.4.ebuild
index ee6d9ccf897..3220a5e3f31 100644
--- a/www-servers/tornado/tornado-6.0.4.ebuild
+++ b/www-servers/tornado/tornado-6.0.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ppc ppc64 sparc x86"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2020-06-17 Thread Michał Górny
commit: 9d2339861e5d7ff83c2f99c6205490cdf342855d
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 17 11:00:27 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 17 19:23:57 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d233986

www-servers/tornado: Fix testing speedups

Signed-off-by: Michał Górny  gentoo.org>

 www-servers/tornado/tornado-6.0.4.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/www-servers/tornado/tornado-6.0.4.ebuild 
b/www-servers/tornado/tornado-6.0.4.ebuild
index e0d9db3ce16..ee6d9ccf897 100644
--- a/www-servers/tornado/tornado-6.0.4.ebuild
+++ b/www-servers/tornado/tornado-6.0.4.ebuild
@@ -43,6 +43,7 @@ src_prepare() {
 
 python_test() {
local -x ASYNC_TEST_TIMEOUT=60
+   cd "${BUILD_DIR}/lib" || die
"${PYTHON}" -m tornado.test.runtests --verbose ||
die "tests failed under ${EPYTHON}"
 }



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2020-06-17 Thread Sergei Trofimovich
commit: d31dad1d51126bda7989a6fb14d13841bcb47655
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Jun 17 16:07:32 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Jun 17 18:08:28 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d31dad1d

www-servers/tornado: stable 6.0.4 for hppa, bug #720660

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 www-servers/tornado/tornado-6.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.0.4.ebuild 
b/www-servers/tornado/tornado-6.0.4.ebuild
index 26cc0c315e0..e0d9db3ce16 100644
--- a/www-servers/tornado/tornado-6.0.4.ebuild
+++ b/www-servers/tornado/tornado-6.0.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ppc ppc64 ~sparc x86"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2020-06-11 Thread Sergei Trofimovich
commit: b593de5fb47b572425d8ada08b4b966115ea61fc
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Jun 11 13:59:53 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jun 11 18:00:57 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b593de5f

www-servers/tornado: keyworded 6.0.4 for hppa, bug #713276

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 www-servers/tornado/tornado-6.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.0.4.ebuild 
b/www-servers/tornado/tornado-6.0.4.ebuild
index 46dd999b289..26cc0c315e0 100644
--- a/www-servers/tornado/tornado-6.0.4.ebuild
+++ b/www-servers/tornado/tornado-6.0.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2020-05-31 Thread Matt Turner
commit: 10336bbf46519016f8d353ec2547ad8c178f76fa
Author: Matt Turner  gentoo  org>
AuthorDate: Sun May 31 22:48:49 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun May 31 22:49:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10336bbf

www-servers/tornado: Keyword 6.0.4 alpha, #713276

Signed-off-by: Matt Turner  gentoo.org>

 www-servers/tornado/tornado-6.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.0.4.ebuild 
b/www-servers/tornado/tornado-6.0.4.ebuild
index 4c403b6e678..46dd999b289 100644
--- a/www-servers/tornado/tornado-6.0.4.ebuild
+++ b/www-servers/tornado/tornado-6.0.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~ia64 ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ppc ppc64 ~sparc x86"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2020-05-29 Thread Michał Górny
commit: 191cbf55f3a60c52538e4b799ed7ed666d5a6811
Author: Michał Górny  gentoo  org>
AuthorDate: Fri May 29 10:41:21 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri May 29 10:41:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=191cbf55

www-servers/tornado: Keyword 6.0.4 sparc, #713276

Signed-off-by: Michał Górny  gentoo.org>

 www-servers/tornado/tornado-6.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.0.4.ebuild 
b/www-servers/tornado/tornado-6.0.4.ebuild
index ea5f2957d6b..4c403b6e678 100644
--- a/www-servers/tornado/tornado-6.0.4.ebuild
+++ b/www-servers/tornado/tornado-6.0.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~ia64 ppc ppc64 x86"
+KEYWORDS="amd64 arm ~arm64 ~ia64 ppc ppc64 ~sparc x86"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2020-05-27 Thread Michał Górny
commit: 1b76cfa60fe25b74f1ee7d3756ed832f4c7f2a17
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 27 15:28:26 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 27 15:37:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b76cfa6

www-servers/tornado: Port to py39, fix tests

Signed-off-by: Michał Górny  gentoo.org>

 www-servers/tornado/tornado-6.0.3.ebuild | 13 +++--
 www-servers/tornado/tornado-6.0.4.ebuild |  9 -
 2 files changed, 19 insertions(+), 3 deletions(-)

diff --git a/www-servers/tornado/tornado-6.0.3.ebuild 
b/www-servers/tornado/tornado-6.0.3.ebuild
index ae3b96b715a..a26972210ab 100644
--- a/www-servers/tornado/tornado-6.0.3.ebuild
+++ b/www-servers/tornado/tornado-6.0.3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_COMPAT=( python3_{6..9} )
 PYTHON_REQ_USE="threads(+)"
 
 inherit distutils-r1
@@ -39,8 +39,17 @@ distutils_enable_sphinx docs \
 #  "${FILESDIR}"/4.5.1-drop-intersphinx.patch
 #)
 
+src_prepare() {
+   # it used to pass, so apparently something changed somewhere
+   sed -i -e 's:test_method_after_redirect:_&:' \
+   tornado/test/httpclient_test.py || die
+   distutils-r1_src_prepare
+}
+
 python_test() {
-   "${PYTHON}" -m tornado.test.runtests || die "tests failed under 
${EPYTHON}"
+   local -x ASYNC_TEST_TIMEOUT=60
+   "${PYTHON}" -m tornado.test.runtests --verbose ||
+   die "tests failed under ${EPYTHON}"
 }
 
 python_install_all() {

diff --git a/www-servers/tornado/tornado-6.0.4.ebuild 
b/www-servers/tornado/tornado-6.0.4.ebuild
index 002e85d1fac..ea5f2957d6b 100644
--- a/www-servers/tornado/tornado-6.0.4.ebuild
+++ b/www-servers/tornado/tornado-6.0.4.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_COMPAT=( python3_{6..9} )
 PYTHON_REQ_USE="threads(+)"
 
 inherit distutils-r1
@@ -34,6 +34,13 @@ distutils_enable_sphinx docs \
dev-python/sphinx_rtd_theme \
dev-python/sphinxcontrib-asyncio
 
+src_prepare() {
+   # it used to pass, so apparently something changed somewhere
+   sed -i -e 's:test_method_after_redirect:_&:' \
+   tornado/test/httpclient_test.py || die
+   distutils-r1_src_prepare
+}
+
 python_test() {
local -x ASYNC_TEST_TIMEOUT=60
"${PYTHON}" -m tornado.test.runtests --verbose ||



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2020-05-13 Thread Sergei Trofimovich
commit: b431714160f77925ca5bd5ab4bf4cb76ea347556
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed May 13 23:03:24 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed May 13 23:03:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4317141

www-servers/tornado: stable 6.0.4 for ppc

Tested-by: ernsteiswuerfel
Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 www-servers/tornado/tornado-6.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.0.4.ebuild 
b/www-servers/tornado/tornado-6.0.4.ebuild
index 25b059bbdc6..002e85d1fac 100644
--- a/www-servers/tornado/tornado-6.0.4.ebuild
+++ b/www-servers/tornado/tornado-6.0.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~ia64 ~ppc ppc64 x86"
+KEYWORDS="amd64 arm ~arm64 ~ia64 ppc ppc64 x86"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2020-05-04 Thread Michał Górny
commit: 3fcfc64f4cac24c7e96e1b5c4f98062c87d1a3d4
Author: Michał Górny  gentoo  org>
AuthorDate: Mon May  4 12:33:12 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon May  4 12:33:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fcfc64f

www-servers/tornado: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 www-servers/tornado/tornado-6.0.3-r1.ebuild | 56 -
 1 file changed, 56 deletions(-)

diff --git a/www-servers/tornado/tornado-6.0.3-r1.ebuild 
b/www-servers/tornado/tornado-6.0.3-r1.ebuild
deleted file mode 100644
index 971f3a1c557..000
--- a/www-servers/tornado/tornado-6.0.3-r1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7,8} )
-PYTHON_REQ_USE="threads(+)"
-
-inherit distutils-r1
-
-DESCRIPTION="Python web framework and asynchronous networking library"
-HOMEPAGE="https://www.tornadoweb.org/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
-IUSE="examples test"
-RESTRICT="!test? ( test )"
-
-CDEPEND="
-   >=dev-python/pycurl-7.19.3.1[${PYTHON_USEDEP}]
-   >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
-"
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? (
-   ${CDEPEND}
-   dev-python/mock[${PYTHON_USEDEP}]
-   )
-"
-RDEPEND="${CDEPEND}"
-
-distutils_enable_sphinx docs \
-   dev-python/sphinx_rtd_theme \
-   dev-python/sphinxcontrib-asyncio
-
-# doc without intersphinx does not build (asyncio error)
-#PATCHES=(
-#  "${FILESDIR}"/4.5.1-drop-intersphinx.patch
-#)
-
-python_test() {
-   local -x ASYNC_TEST_TIMEOUT=60
-   "${PYTHON}" -m tornado.test.runtests --verbose ||
-   die "tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
-   if use examples; then
-   insinto /usr/share/doc/${PF}/examples
-   doins -r demos/.
-   docompress -x /usr/share/doc/${PF}/examples
-   fi
-   distutils-r1_python_install_all
-}



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2020-05-03 Thread Agostino Sarubbo
commit: 1b8419ba376ffc311f315a836b5e11f0ce2c6e5b
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun May  3 12:59:30 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun May  3 12:59:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b8419ba

www-servers/tornado: ppc64 stable wrt bug #720660

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 www-servers/tornado/tornado-6.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.0.4.ebuild 
b/www-servers/tornado/tornado-6.0.4.ebuild
index 9d71b6e223e..25b059bbdc6 100644
--- a/www-servers/tornado/tornado-6.0.4.ebuild
+++ b/www-servers/tornado/tornado-6.0.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~ia64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 arm ~arm64 ~ia64 ~ppc ppc64 x86"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2020-05-03 Thread Agostino Sarubbo
commit: a214ad430f8ee8b0a6075f094727f17c784c7120
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun May  3 10:29:19 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun May  3 10:29:19 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a214ad43

www-servers/tornado: x86 stable wrt bug #720660

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 www-servers/tornado/tornado-6.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.0.4.ebuild 
b/www-servers/tornado/tornado-6.0.4.ebuild
index 5c17310e94d..9d71b6e223e 100644
--- a/www-servers/tornado/tornado-6.0.4.ebuild
+++ b/www-servers/tornado/tornado-6.0.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 arm ~arm64 ~ia64 ~ppc ~ppc64 x86"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2020-05-03 Thread Agostino Sarubbo
commit: 43ea39f57f5e797eebaf87f56359cd2a668f1903
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun May  3 10:12:30 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun May  3 10:12:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43ea39f5

www-servers/tornado: arm stable wrt bug #720660

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="arm"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 www-servers/tornado/tornado-6.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.0.4.ebuild 
b/www-servers/tornado/tornado-6.0.4.ebuild
index a9f4a292819..5c17310e94d 100644
--- a/www-servers/tornado/tornado-6.0.4.ebuild
+++ b/www-servers/tornado/tornado-6.0.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2020-05-03 Thread Agostino Sarubbo
commit: 595d3b98e8f4134f09b4069801a7b8643c12f59a
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun May  3 09:59:48 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun May  3 09:59:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=595d3b98

www-servers/tornado: amd64 stable wrt bug #720660

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 www-servers/tornado/tornado-6.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.0.4.ebuild 
b/www-servers/tornado/tornado-6.0.4.ebuild
index 766d414ad37..a9f4a292819 100644
--- a/www-servers/tornado/tornado-6.0.4.ebuild
+++ b/www-servers/tornado/tornado-6.0.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2020-04-13 Thread Sebastian Pipping
commit: 88a02a545c00375a71f87b991ae78c5c2ad38e07
Author: Sebastian Pipping  gentoo  org>
AuthorDate: Mon Apr 13 16:42:20 2020 +
Commit: Sebastian Pipping  gentoo  org>
CommitDate: Mon Apr 13 16:48:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88a02a54

www-servers/tornado: 6.0.4 + QA

Signed-off-by: Sebastian Pipping  gentoo.org>
Package-Manager: Portage-2.3.98, Repoman-2.3.22

 www-servers/tornado/Manifest |  1 +
 www-servers/tornado/tornado-6.0.4.ebuild | 50 
 2 files changed, 51 insertions(+)

diff --git a/www-servers/tornado/Manifest b/www-servers/tornado/Manifest
index 07d6f004dd1..61034a8fe14 100644
--- a/www-servers/tornado/Manifest
+++ b/www-servers/tornado/Manifest
@@ -1,3 +1,4 @@
 DIST tornado-4.5.3.tar.gz 484221 BLAKE2B 
7b3682fa85a7f6ad32351d40993516a3e397b7b0a5de9d807bcd8b2b21325a6170f3670cb13e12aa208b6590313cf165ddf40537dba1fee61fa9d71954265a66
 SHA512 
c17dd7a3b541c26950d27c8a399ae4fdff1d99d16ff0c5de9871fe2de4c0f797c96712b23b5ed5efdaee06bb251f7def114c83fe6f7f37f344cdac9996d14448
 DIST tornado-5.1.tar.gz 516359 BLAKE2B 
1ff6e6ced124b7b0df0e476eac555de20e4ac86f01369ee484e33bf5d749c269a81dd11a0b4c8b3169db6fd9f7a1b4e3c3551d46474c53a1fed8e342660c57f9
 SHA512 
8f45e5bbee5453a4225f05840a9fa80dd574c5a9cac9ec4d787f11c3f86f347c66d39c984a8bbe96dbb41f599e25102f1a3dad1c55b479bebee7d856aaca764a
 DIST tornado-6.0.3.tar.gz 482444 BLAKE2B 
1dda4baae52034d779879fef507d5764894f4aa054e60b00a2f8a989df4b31b495cbed6397d602e7c19844ea1538988558d5741da91646b64b6dbb8e78d618ed
 SHA512 
2db182da7327fdd32fe76a50726a1285332139972766368c3b3dac5b4d54b4bd452a76062c09d1d158a97ace78b7915d93a29a7a8138499a2e56aee9df461abc
+DIST tornado-6.0.4.tar.gz 496204 BLAKE2B 
6c092214d03baf5cf7615b780043e2fa40a4ed623b7ca59a2528cc3625ba904b21ef93c528278adedaf83e3b6e5a6311d867833dfe9826637e97918dee6fa334
 SHA512 
d29d69cf40f8b34fb2c55d81b6ecd9bc7c6fdf644eb4ff35452829510c0d5ec185da0a6067fec3e8afb2bedf9f5f08b06adb0ad53dcab04cb791a75abc304d6e

diff --git a/www-servers/tornado/tornado-6.0.4.ebuild 
b/www-servers/tornado/tornado-6.0.4.ebuild
new file mode 100644
index 000..766d414ad37
--- /dev/null
+++ b/www-servers/tornado/tornado-6.0.4.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="Python web framework and asynchronous networking library"
+HOMEPAGE="https://www.tornadoweb.org/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
+IUSE="examples test"
+RESTRICT="!test? ( test )"
+
+CDEPEND="
+   >=dev-python/pycurl-7.19.3.1[${PYTHON_USEDEP}]
+   >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
+"
+DEPEND="
+   test? (
+   ${CDEPEND}
+   dev-python/mock[${PYTHON_USEDEP}]
+   )
+"
+RDEPEND="${CDEPEND}"
+
+distutils_enable_sphinx docs \
+   dev-python/sphinx_rtd_theme \
+   dev-python/sphinxcontrib-asyncio
+
+python_test() {
+   local -x ASYNC_TEST_TIMEOUT=60
+   "${PYTHON}" -m tornado.test.runtests --verbose ||
+   die "tests failed under ${EPYTHON}"
+}
+
+python_install_all() {
+   if use examples; then
+   docinto examples
+   dodoc -r demos/.
+   docompress -x /usr/share/doc/${PF}/examples
+   fi
+   distutils-r1_python_install_all
+}



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2020-04-11 Thread Michał Górny
commit: 6adfcf7397f570e3fe2ad3dd7df4686def70540a
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Apr 11 15:35:21 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Apr 11 15:35:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6adfcf73

www-servers/tornado: Increase timeout for async tests

Bug: https://bugs.gentoo.org/663490
Signed-off-by: Michał Górny  gentoo.org>

 www-servers/tornado/tornado-5.1-r1.ebuild   | 4 +++-
 www-servers/tornado/tornado-6.0.3-r1.ebuild | 4 +++-
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/www-servers/tornado/tornado-5.1-r1.ebuild 
b/www-servers/tornado/tornado-5.1-r1.ebuild
index 740e1d0ee98..8ad9e01ae78 100644
--- a/www-servers/tornado/tornado-5.1-r1.ebuild
+++ b/www-servers/tornado/tornado-5.1-r1.ebuild
@@ -40,7 +40,9 @@ distutils_enable_sphinx docs \
 #)
 
 python_test() {
-   "${PYTHON}" -m tornado.test.runtests || die "tests failed under 
${EPYTHON}"
+   local -x ASYNC_TEST_TIMEOUT=60
+   "${PYTHON}" -m tornado.test.runtests --verbose ||
+   die "tests failed under ${EPYTHON}"
 }
 
 python_install_all() {

diff --git a/www-servers/tornado/tornado-6.0.3-r1.ebuild 
b/www-servers/tornado/tornado-6.0.3-r1.ebuild
index da2aa090acc..971f3a1c557 100644
--- a/www-servers/tornado/tornado-6.0.3-r1.ebuild
+++ b/www-servers/tornado/tornado-6.0.3-r1.ebuild
@@ -41,7 +41,9 @@ distutils_enable_sphinx docs \
 #)
 
 python_test() {
-   "${PYTHON}" -m tornado.test.runtests || die "tests failed under 
${EPYTHON}"
+   local -x ASYNC_TEST_TIMEOUT=60
+   "${PYTHON}" -m tornado.test.runtests --verbose ||
+   die "tests failed under ${EPYTHON}"
 }
 
 python_install_all() {



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2020-04-04 Thread Sergei Trofimovich
commit: f9ff9da9764814bcb69d3658ecb8399b17042c07
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Apr  4 10:39:26 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Apr  4 10:39:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9ff9da9

www-servers/tornado: keyworded 6.0.3-r1 for ppc, bug #713276

Package-Manager: Portage-2.3.96, Repoman-2.3.22
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 www-servers/tornado/tornado-6.0.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.0.3-r1.ebuild 
b/www-servers/tornado/tornado-6.0.3-r1.ebuild
index 05f500879b8..da2aa090acc 100644
--- a/www-servers/tornado/tornado-6.0.3-r1.ebuild
+++ b/www-servers/tornado/tornado-6.0.3-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2020-03-29 Thread Sergei Trofimovich
commit: 1fa22e0b793e7ea612eb624b870df7ef434e4485
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Mar 29 21:15:40 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Mar 29 21:21:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fa22e0b

www-servers/tornado: keyworded 6.0.3-r1 for ppc64, bug #713276

Package-Manager: Portage-2.3.96, Repoman-2.3.22
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 www-servers/tornado/tornado-6.0.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.0.3-r1.ebuild 
b/www-servers/tornado/tornado-6.0.3-r1.ebuild
index 0b9a57781bd..05f500879b8 100644
--- a/www-servers/tornado/tornado-6.0.3-r1.ebuild
+++ b/www-servers/tornado/tornado-6.0.3-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc64 ~x86"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2020-03-28 Thread Sergei Trofimovich
commit: d378808c24cc956275fb908608fd82303d073c83
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Mar 28 23:38:00 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Mar 28 23:40:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d378808c

www-servers/tornado: keyworded 6.0.3-r1 for ia64, bug #713276

Package-Manager: Portage-2.3.96, Repoman-2.3.22
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 www-servers/tornado/tornado-6.0.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.0.3-r1.ebuild 
b/www-servers/tornado/tornado-6.0.3-r1.ebuild
index b9f80356d57..0b9a57781bd 100644
--- a/www-servers/tornado/tornado-6.0.3-r1.ebuild
+++ b/www-servers/tornado/tornado-6.0.3-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~x86"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2020-03-25 Thread Michał Górny
commit: 8c8a1fb0e763212b4ee24e9d5fd25fb048366aed
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 25 07:12:35 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 25 09:39:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c8a1fb0

www-servers/tornado: Remove py2

Signed-off-by: Michał Górny  gentoo.org>

 www-servers/tornado/tornado-4.5.3.ebuild  | 15 ++-
 www-servers/tornado/tornado-5.1-r1.ebuild |  8 +---
 2 files changed, 3 insertions(+), 20 deletions(-)

diff --git a/www-servers/tornado/tornado-4.5.3.ebuild 
b/www-servers/tornado/tornado-4.5.3.ebuild
index 9de109a2f00..2f8adca7e83 100644
--- a/www-servers/tornado/tornado-4.5.3.ebuild
+++ b/www-servers/tornado/tornado-4.5.3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python2_7 python3_6 )
+PYTHON_COMPAT=( python3_6 )
 PYTHON_REQ_USE="threads(+)"
 
 inherit distutils-r1
@@ -21,18 +21,7 @@ RESTRICT="!test? ( test )"
 CDEPEND="
dev-python/certifi[${PYTHON_USEDEP}]
>=dev-python/pycurl-7.19.3.1[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep 
'>=dev-python/backports-ssl-match-hostname-3.5[${PYTHON_USEDEP}]' 'python2_7')
-   || (
-   >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
-   (   $(python_gen_cond_dep 
'dev-python/twisted-names[${PYTHON_USEDEP}]' 'python2_7')
-   $(python_gen_cond_dep 
'dev-python/twisted-web[${PYTHON_USEDEP}]' 'python2_7')
-   )
-   )
-   $(python_gen_cond_dep '
-   dev-python/backports-abc[${PYTHON_USEDEP}]
-   dev-python/futures[${PYTHON_USEDEP}]
-   dev-python/singledispatch[${PYTHON_USEDEP}]
-   ' -2)
+   >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
 "
 DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]

diff --git a/www-servers/tornado/tornado-5.1-r1.ebuild 
b/www-servers/tornado/tornado-5.1-r1.ebuild
index d2edc90b333..9fe88cdfb05 100644
--- a/www-servers/tornado/tornado-5.1-r1.ebuild
+++ b/www-servers/tornado/tornado-5.1-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python2_7 python3_{6,7,8} )
+PYTHON_COMPAT=( python3_{6,7,8} )
 PYTHON_REQ_USE="threads(+)"
 
 inherit distutils-r1
@@ -19,14 +19,8 @@ IUSE="examples test"
 RESTRICT="!test? ( test )"
 
 CDEPEND="
-   $(python_gen_cond_dep 'dev-python/futures[${PYTHON_USEDEP}]' 
'python2_7')
>=dev-python/pycurl-7.19.3.1[${PYTHON_USEDEP}]
>=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep '
-   dev-python/backports-abc[${PYTHON_USEDEP}]
-   dev-python/futures[${PYTHON_USEDEP}]
-   dev-python/singledispatch[${PYTHON_USEDEP}]
-   ' -2)
 "
 DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2020-03-18 Thread Michał Górny
commit: a4d2bcee17d5a8bdb346e7538202525514251e03
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 18 07:33:17 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 18 18:14:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4d2bcee

www-servers/tornado: Add missing dep on sphinxcontrib-asyncio

Signed-off-by: Michał Górny  gentoo.org>

 www-servers/tornado/tornado-6.0.3-r1.ebuild | 54 +
 1 file changed, 54 insertions(+)

diff --git a/www-servers/tornado/tornado-6.0.3-r1.ebuild 
b/www-servers/tornado/tornado-6.0.3-r1.ebuild
new file mode 100644
index 000..b9f80356d57
--- /dev/null
+++ b/www-servers/tornado/tornado-6.0.3-r1.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="Python web framework and asynchronous networking library"
+HOMEPAGE="https://www.tornadoweb.org/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE="examples test"
+RESTRICT="!test? ( test )"
+
+CDEPEND="
+   >=dev-python/pycurl-7.19.3.1[${PYTHON_USEDEP}]
+   >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
+"
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? (
+   ${CDEPEND}
+   dev-python/mock[${PYTHON_USEDEP}]
+   )
+"
+RDEPEND="${CDEPEND}"
+
+distutils_enable_sphinx docs \
+   dev-python/sphinx_rtd_theme \
+   dev-python/sphinxcontrib-asyncio
+
+# doc without intersphinx does not build (asyncio error)
+#PATCHES=(
+#  "${FILESDIR}"/4.5.1-drop-intersphinx.patch
+#)
+
+python_test() {
+   "${PYTHON}" -m tornado.test.runtests || die "tests failed under 
${EPYTHON}"
+}
+
+python_install_all() {
+   if use examples; then
+   insinto /usr/share/doc/${PF}/examples
+   doins -r demos/.
+   docompress -x /usr/share/doc/${PF}/examples
+   fi
+   distutils-r1_python_install_all
+}



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2020-03-18 Thread Michał Górny
commit: 709997a8baac0690cbc1edb46f943d438cba016c
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 18 07:00:16 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 18 07:27:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=709997a8

www-servers/tornado: Use distutils_enable_sphinx

Signed-off-by: Michał Górny  gentoo.org>

 www-servers/tornado/tornado-4.5.3.ebuild  | 14 --
 www-servers/tornado/tornado-5.1-r1.ebuild | 14 --
 www-servers/tornado/tornado-6.0.3.ebuild  | 14 --
 3 files changed, 12 insertions(+), 30 deletions(-)

diff --git a/www-servers/tornado/tornado-4.5.3.ebuild 
b/www-servers/tornado/tornado-4.5.3.ebuild
index 2daf907e25d..9de109a2f00 100644
--- a/www-servers/tornado/tornado-4.5.3.ebuild
+++ b/www-servers/tornado/tornado-4.5.3.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 ~sh sparc x86 
~amd64-linux ~x86-linux"
-IUSE="doc examples test"
+IUSE="examples test"
 RESTRICT="!test? ( test )"
 
 CDEPEND="
@@ -36,10 +36,6 @@ CDEPEND="
 "
 DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
-   doc? (
-   dev-python/sphinx[${PYTHON_USEDEP}]
-   dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
-   )
test? (
${CDEPEND}
dev-python/mock[${PYTHON_USEDEP}]
@@ -47,21 +43,19 @@ DEPEND="
 "
 RDEPEND="${CDEPEND}"
 
+distutils_enable_sphinx docs \
+   dev-python/sphinx_rtd_theme
+
 # doc without intersphinx does not build (asyncio error)
 #PATCHES=(
 #  "${FILESDIR}"/4.5.1-drop-intersphinx.patch
 #)
 
-python_compile_all() {
-   use doc && emake -C docs sphinx
-}
-
 python_test() {
"${PYTHON}" -m tornado.test.runtests || die "tests failed under 
${EPYTHON}"
 }
 
 python_install_all() {
-   use doc && local HTML_DOCS=( docs/build/html/. )
if use examples; then
insinto /usr/share/doc/${PF}/examples
doins -r demos/.

diff --git a/www-servers/tornado/tornado-5.1-r1.ebuild 
b/www-servers/tornado/tornado-5.1-r1.ebuild
index 11bf422e43d..d2edc90b333 100644
--- a/www-servers/tornado/tornado-5.1-r1.ebuild
+++ b/www-servers/tornado/tornado-5.1-r1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-linux ~x86-linux"
-IUSE="doc examples test"
+IUSE="examples test"
 RESTRICT="!test? ( test )"
 
 CDEPEND="
@@ -30,10 +30,6 @@ CDEPEND="
 "
 DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
-   doc? (
-   dev-python/sphinx[${PYTHON_USEDEP}]
-   dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
-   )
test? (
${CDEPEND}
dev-python/mock[${PYTHON_USEDEP}]
@@ -41,21 +37,19 @@ DEPEND="
 "
 RDEPEND="${CDEPEND}"
 
+distutils_enable_sphinx docs \
+   dev-python/sphinx_rtd_theme
+
 # doc without intersphinx does not build (asyncio error)
 #PATCHES=(
 #  "${FILESDIR}"/4.5.1-drop-intersphinx.patch
 #)
 
-python_compile_all() {
-   use doc && emake -C docs sphinx
-}
-
 python_test() {
"${PYTHON}" -m tornado.test.runtests || die "tests failed under 
${EPYTHON}"
 }
 
 python_install_all() {
-   use doc && local HTML_DOCS=( docs/build/html/. )
if use examples; then
insinto /usr/share/doc/${PF}/examples
doins -r demos/.

diff --git a/www-servers/tornado/tornado-6.0.3.ebuild 
b/www-servers/tornado/tornado-6.0.3.ebuild
index 6f6d43e6709..154b14a5124 100644
--- a/www-servers/tornado/tornado-6.0.3.ebuild
+++ b/www-servers/tornado/tornado-6.0.3.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-linux ~x86-linux"
-IUSE="doc examples test"
+IUSE="examples test"
 RESTRICT="!test? ( test )"
 
 CDEPEND="
@@ -24,10 +24,6 @@ CDEPEND="
 "
 DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
-   doc? (
-   dev-python/sphinx[${PYTHON_USEDEP}]
-   dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
-   )
test? (
${CDEPEND}
dev-python/mock[${PYTHON_USEDEP}]
@@ -35,21 +31,19 @@ DEPEND="
 "
 RDEPEND="${CDEPEND}"
 
+distutils_enable_sphinx docs \
+   dev-python/sphinx_rtd_theme
+
 # doc without intersphinx does not build (asyncio error)
 #PATCHES=(
 #  "${FILESDIR}"/4.5.1-drop-intersphinx.patch
 #)
 
-python_compile_all() {
-   use doc && emake -C docs sphinx
-}
-
 python_test() {
"${PYTHON}" -m tornado.test.runtests || die "tests failed under 
${EPYTHON}"
 }
 
 python_install_all() {
-   use doc && local HTML_DOCS=( docs/build/html/. )
if use examples; then
insinto 

[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2020-03-16 Thread Michał Górny
commit: 118e133c02d12331eb9c9855cb6b75738fd1bd23
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Mar 16 18:23:37 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Mar 16 18:27:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=118e133c

www-servers/tornado: Replace virtuals with conditional deps

Signed-off-by: Michał Górny  gentoo.org>

 www-servers/tornado/tornado-4.5.3.ebuild  | 8 +---
 www-servers/tornado/tornado-5.1-r1.ebuild | 8 +---
 www-servers/tornado/tornado-6.0.3.ebuild  | 3 ---
 3 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/www-servers/tornado/tornado-4.5.3.ebuild 
b/www-servers/tornado/tornado-4.5.3.ebuild
index 1fbfe5ab004..2daf907e25d 100644
--- a/www-servers/tornado/tornado-4.5.3.ebuild
+++ b/www-servers/tornado/tornado-4.5.3.ebuild
@@ -28,9 +28,11 @@ CDEPEND="
$(python_gen_cond_dep 
'dev-python/twisted-web[${PYTHON_USEDEP}]' 'python2_7')
)
)
-   virtual/python-backports_abc[${PYTHON_USEDEP}]
-   virtual/python-futures[${PYTHON_USEDEP}]
-   virtual/python-singledispatch[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   dev-python/backports-abc[${PYTHON_USEDEP}]
+   dev-python/futures[${PYTHON_USEDEP}]
+   dev-python/singledispatch[${PYTHON_USEDEP}]
+   ' -2)
 "
 DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]

diff --git a/www-servers/tornado/tornado-5.1-r1.ebuild 
b/www-servers/tornado/tornado-5.1-r1.ebuild
index 4f08262de07..11bf422e43d 100644
--- a/www-servers/tornado/tornado-5.1-r1.ebuild
+++ b/www-servers/tornado/tornado-5.1-r1.ebuild
@@ -22,9 +22,11 @@ CDEPEND="
$(python_gen_cond_dep 'dev-python/futures[${PYTHON_USEDEP}]' 
'python2_7')
>=dev-python/pycurl-7.19.3.1[${PYTHON_USEDEP}]
>=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
-   virtual/python-backports_abc[${PYTHON_USEDEP}]
-   virtual/python-futures[${PYTHON_USEDEP}]
-   virtual/python-singledispatch[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   dev-python/backports-abc[${PYTHON_USEDEP}]
+   dev-python/futures[${PYTHON_USEDEP}]
+   dev-python/singledispatch[${PYTHON_USEDEP}]
+   ' -2)
 "
 DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]

diff --git a/www-servers/tornado/tornado-6.0.3.ebuild 
b/www-servers/tornado/tornado-6.0.3.ebuild
index 1350ccb7946..c2f2a4a7b4b 100644
--- a/www-servers/tornado/tornado-6.0.3.ebuild
+++ b/www-servers/tornado/tornado-6.0.3.ebuild
@@ -21,9 +21,6 @@ RESTRICT="!test? ( test )"
 CDEPEND="
>=dev-python/pycurl-7.19.3.1[${PYTHON_USEDEP}]
>=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
-   virtual/python-backports_abc[${PYTHON_USEDEP}]
-   virtual/python-futures[${PYTHON_USEDEP}]
-   virtual/python-singledispatch[${PYTHON_USEDEP}]
 "
 DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/, www-servers/tornado/files/

2020-03-16 Thread Michał Górny
commit: 3912eaa510f709996896ca8e20632a03816bcfa9
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Mar 16 18:18:20 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Mar 16 18:27:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3912eaa5

www-servers/tornado: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 www-servers/tornado/Manifest   |  3 -
 .../tornado/files/4.4-drop-intersphinx.patch   | 36 ---
 www-servers/tornado/files/4.4.1-options-test.patch | 13 
 .../tornado/files/4.5.1-drop-intersphinx.patch | 22 ---
 www-servers/tornado/tornado-4.4.2-r1.ebuild| 69 --
 www-servers/tornado/tornado-4.5.1.ebuild   | 69 --
 www-servers/tornado/tornado-5.0.2.ebuild   | 68 -
 www-servers/tornado/tornado-5.1.ebuild | 63 
 8 files changed, 343 deletions(-)

diff --git a/www-servers/tornado/Manifest b/www-servers/tornado/Manifest
index 36be0c9914d..07d6f004dd1 100644
--- a/www-servers/tornado/Manifest
+++ b/www-servers/tornado/Manifest
@@ -1,6 +1,3 @@
-DIST tornado-4.4.2.tar.gz 460193 BLAKE2B 
4586397e8899af19582e07ac9ecdf56980a552a8c15458f1c16d83dc8ec7bf73b6a1eb341a5402d8555319c3d7528702567d13c4b56a995597e7dba4576f694b
 SHA512 
f330bc62433576708e3c566577cede07c54c19996f374df82d5abc19a669ade549e7b6c27dcae3d421921fec506fae39473443cdb04692553c5ea2f8ec11a327
-DIST tornado-4.5.1.tar.gz 483225 BLAKE2B 
261a5da8a7cc43b11b8504162a030fdad9c3c1409d653f86ab37deb5e4398f39ac05bee1da58944c2d1a2fa92dd5894256b748910f90926834305d6c6adf7ab4
 SHA512 
b31b3572bf58df8b758694c32b2233c547d6600b0c27f56cff3521abaad38a1646a528d2c2dfcf13214159bf5ba0f59470ba3d538edf16dc014a8b03f0d3bb87
 DIST tornado-4.5.3.tar.gz 484221 BLAKE2B 
7b3682fa85a7f6ad32351d40993516a3e397b7b0a5de9d807bcd8b2b21325a6170f3670cb13e12aa208b6590313cf165ddf40537dba1fee61fa9d71954265a66
 SHA512 
c17dd7a3b541c26950d27c8a399ae4fdff1d99d16ff0c5de9871fe2de4c0f797c96712b23b5ed5efdaee06bb251f7def114c83fe6f7f37f344cdac9996d14448
-DIST tornado-5.0.2.tar.gz 506544 BLAKE2B 
616298761f5e0cdcacfa96c3a14efaf2cc1d7579d582dc8b2fae2a3a3e45405804aa2a1409665a9af38d2f415908b373c1c34e4ff5868f989bb1bd29fe81a569
 SHA512 
fbd360df34fe29ed3e5f406992923e2af2815f93446fb9d9810f7575fe06300a2cb15c3f36bd93150284ba297772f94c94a4227acca2dc65c94cf7d100cb5974
 DIST tornado-5.1.tar.gz 516359 BLAKE2B 
1ff6e6ced124b7b0df0e476eac555de20e4ac86f01369ee484e33bf5d749c269a81dd11a0b4c8b3169db6fd9f7a1b4e3c3551d46474c53a1fed8e342660c57f9
 SHA512 
8f45e5bbee5453a4225f05840a9fa80dd574c5a9cac9ec4d787f11c3f86f347c66d39c984a8bbe96dbb41f599e25102f1a3dad1c55b479bebee7d856aaca764a
 DIST tornado-6.0.3.tar.gz 482444 BLAKE2B 
1dda4baae52034d779879fef507d5764894f4aa054e60b00a2f8a989df4b31b495cbed6397d602e7c19844ea1538988558d5741da91646b64b6dbb8e78d618ed
 SHA512 
2db182da7327fdd32fe76a50726a1285332139972766368c3b3dac5b4d54b4bd452a76062c09d1d158a97ace78b7915d93a29a7a8138499a2e56aee9df461abc

diff --git a/www-servers/tornado/files/4.4-drop-intersphinx.patch 
b/www-servers/tornado/files/4.4-drop-intersphinx.patch
deleted file mode 100644
index cec403e772f..000
--- a/www-servers/tornado/files/4.4-drop-intersphinx.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-diff --git a/docs/Makefile b/docs/Makefile
-index 7001b80..ab2ffdd 100644
 a/docs/Makefile
-+++ b/docs/Makefile
-@@ -3,7 +3,7 @@ all: sphinx
- 
- # No -W for doctests because that disallows tests with empty output.
- SPHINX_DOCTEST_OPTS=-n -d build/doctress .
--SPHINXOPTS=-n -W -d build/doctrees .
-+SPHINXOPTS=-n -d build/doctrees .
- 
- .PHONY: sphinx
- sphinx:
-diff --git a/docs/conf.py b/docs/conf.py
-index 368e4e8..85a276d 100644
 a/docs/conf.py
-+++ b/docs/conf.py
-@@ -17,7 +17,6 @@ extensions = [
- "sphinx.ext.coverage",
- "sphinx.ext.doctest",
- "sphinx.ext.extlinks",
--"sphinx.ext.intersphinx",
- "sphinx.ext.viewcode",
- ]
- 
-@@ -92,10 +91,6 @@
- 'tornado-%s.tar.g' % version),
- }
- 
--intersphinx_mapping = {
--'python': ('https://docs.python.org/3.5/', None),
--}
--
- on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
- 
- # On RTD we can't import sphinx_rtd_theme, but it will be applied by

diff --git a/www-servers/tornado/files/4.4.1-options-test.patch 
b/www-servers/tornado/files/4.4.1-options-test.patch
deleted file mode 100644
index 48036264771..000
--- a/www-servers/tornado/files/4.4.1-options-test.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/tornado/test/options_test.py b/tornado/test/options_test.py
-index f7b215c..c050cb6 100644
 a/tornado/test/options_test.py
-+++ b/tornado/test/options_test.py
-@@ -36,7 +36,7 @@ class OptionsTest(unittest.TestCase):
- options.define("port", default=80)
- options.define("username", default='foo')
- options.define("my_path")
--config_path = os.path.join(os.path.dirname(__file__),
-+config_path = 

[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2020-03-16 Thread Michał Górny
commit: ce352fb37ae7e9a81453bdbbd3b15724d3a2d2cb
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Mar 16 18:19:46 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Mar 16 18:27:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce352fb3

www-servers/tornado: Stabilize 5.1-r1 ALLARCHES

Signed-off-by: Michał Górny  gentoo.org>

 www-servers/tornado/tornado-5.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-5.1-r1.ebuild 
b/www-servers/tornado/tornado-5.1-r1.ebuild
index bc0f928eb9d..4f08262de07 100644
--- a/www-servers/tornado/tornado-5.1-r1.ebuild
+++ b/www-servers/tornado/tornado-5.1-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2020-03-16 Thread Michał Górny
commit: 2c62f5c2973e9168cb9248904e4721021bf865f5
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Mar 16 18:24:59 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Mar 16 18:27:14 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c62f5c2

www-servers/tornado: Use HTTPS

Signed-off-by: Michał Górny  gentoo.org>

 www-servers/tornado/tornado-6.0.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.0.3.ebuild 
b/www-servers/tornado/tornado-6.0.3.ebuild
index c2f2a4a7b4b..6f6d43e6709 100644
--- a/www-servers/tornado/tornado-6.0.3.ebuild
+++ b/www-servers/tornado/tornado-6.0.3.ebuild
@@ -9,7 +9,7 @@ PYTHON_REQ_USE="threads(+)"
 inherit distutils-r1
 
 DESCRIPTION="Python web framework and asynchronous networking library"
-HOMEPAGE="http://www.tornadoweb.org/;
+HOMEPAGE="https://www.tornadoweb.org/;
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2020-03-02 Thread Andrey Grozin
commit: 6ae4c5ec6acba7c435bb02fe69d528b6d87a382a
Author: Andrey Grozin  gentoo  org>
AuthorDate: Mon Mar  2 15:13:02 2020 +
Commit: Andrey Grozin  gentoo  org>
CommitDate: Mon Mar  2 15:13:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ae4c5ec

www-servers/tornado: bump to 6.0.3; python3_8 added to 5.1-r1

Package-Manager: Portage-2.3.91, Repoman-2.3.20
Signed-off-by: Andrey Grozin  gentoo.org>

 www-servers/tornado/Manifest  |  1 +
 www-servers/tornado/tornado-5.1-r1.ebuild | 63 +++
 www-servers/tornado/tornado-6.0.3.ebuild  | 62 ++
 3 files changed, 126 insertions(+)

diff --git a/www-servers/tornado/Manifest b/www-servers/tornado/Manifest
index 4d69ed6933e..36be0c9914d 100644
--- a/www-servers/tornado/Manifest
+++ b/www-servers/tornado/Manifest
@@ -3,3 +3,4 @@ DIST tornado-4.5.1.tar.gz 483225 BLAKE2B 
261a5da8a7cc43b11b8504162a030fdad9c3c14
 DIST tornado-4.5.3.tar.gz 484221 BLAKE2B 
7b3682fa85a7f6ad32351d40993516a3e397b7b0a5de9d807bcd8b2b21325a6170f3670cb13e12aa208b6590313cf165ddf40537dba1fee61fa9d71954265a66
 SHA512 
c17dd7a3b541c26950d27c8a399ae4fdff1d99d16ff0c5de9871fe2de4c0f797c96712b23b5ed5efdaee06bb251f7def114c83fe6f7f37f344cdac9996d14448
 DIST tornado-5.0.2.tar.gz 506544 BLAKE2B 
616298761f5e0cdcacfa96c3a14efaf2cc1d7579d582dc8b2fae2a3a3e45405804aa2a1409665a9af38d2f415908b373c1c34e4ff5868f989bb1bd29fe81a569
 SHA512 
fbd360df34fe29ed3e5f406992923e2af2815f93446fb9d9810f7575fe06300a2cb15c3f36bd93150284ba297772f94c94a4227acca2dc65c94cf7d100cb5974
 DIST tornado-5.1.tar.gz 516359 BLAKE2B 
1ff6e6ced124b7b0df0e476eac555de20e4ac86f01369ee484e33bf5d749c269a81dd11a0b4c8b3169db6fd9f7a1b4e3c3551d46474c53a1fed8e342660c57f9
 SHA512 
8f45e5bbee5453a4225f05840a9fa80dd574c5a9cac9ec4d787f11c3f86f347c66d39c984a8bbe96dbb41f599e25102f1a3dad1c55b479bebee7d856aaca764a
+DIST tornado-6.0.3.tar.gz 482444 BLAKE2B 
1dda4baae52034d779879fef507d5764894f4aa054e60b00a2f8a989df4b31b495cbed6397d602e7c19844ea1538988558d5741da91646b64b6dbb8e78d618ed
 SHA512 
2db182da7327fdd32fe76a50726a1285332139972766368c3b3dac5b4d54b4bd452a76062c09d1d158a97ace78b7915d93a29a7a8138499a2e56aee9df461abc

diff --git a/www-servers/tornado/tornado-5.1-r1.ebuild 
b/www-servers/tornado/tornado-5.1-r1.ebuild
new file mode 100644
index 000..bc0f928eb9d
--- /dev/null
+++ b/www-servers/tornado/tornado-5.1-r1.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{6,7,8} )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="Python web framework and asynchronous networking library"
+HOMEPAGE="http://www.tornadoweb.org/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-linux ~x86-linux"
+IUSE="doc examples test"
+RESTRICT="!test? ( test )"
+
+CDEPEND="
+   $(python_gen_cond_dep 'dev-python/futures[${PYTHON_USEDEP}]' 
'python2_7')
+   >=dev-python/pycurl-7.19.3.1[${PYTHON_USEDEP}]
+   >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
+   virtual/python-backports_abc[${PYTHON_USEDEP}]
+   virtual/python-futures[${PYTHON_USEDEP}]
+   virtual/python-singledispatch[${PYTHON_USEDEP}]
+"
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   doc? (
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
+   )
+   test? (
+   ${CDEPEND}
+   dev-python/mock[${PYTHON_USEDEP}]
+   )
+"
+RDEPEND="${CDEPEND}"
+
+# doc without intersphinx does not build (asyncio error)
+#PATCHES=(
+#  "${FILESDIR}"/4.5.1-drop-intersphinx.patch
+#)
+
+python_compile_all() {
+   use doc && emake -C docs sphinx
+}
+
+python_test() {
+   "${PYTHON}" -m tornado.test.runtests || die "tests failed under 
${EPYTHON}"
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/build/html/. )
+   if use examples; then
+   insinto /usr/share/doc/${PF}/examples
+   doins -r demos/.
+   docompress -x /usr/share/doc/${PF}/examples
+   fi
+   distutils-r1_python_install_all
+}

diff --git a/www-servers/tornado/tornado-6.0.3.ebuild 
b/www-servers/tornado/tornado-6.0.3.ebuild
new file mode 100644
index 000..1350ccb7946
--- /dev/null
+++ b/www-servers/tornado/tornado-6.0.3.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="Python web framework and asynchronous networking library"
+HOMEPAGE="http://www.tornadoweb.org/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm 

[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2020-01-20 Thread Sergei Trofimovich
commit: 4b62b4a8181fe25d5d414fc1de6dfb032fa8c39f
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jan 20 23:11:14 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jan 20 23:12:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b62b4a8

www-servers/tornado: stable 5.1 for ia64, bug #700670

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 www-servers/tornado/tornado-5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-5.1.ebuild 
b/www-servers/tornado/tornado-5.1.ebuild
index 662a05c2290..a5a20e4870c 100644
--- a/www-servers/tornado/tornado-5.1.ebuild
+++ b/www-servers/tornado/tornado-5.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2019-12-24 Thread Mikle Kolyada
commit: c254da8e7ae3cee28a222acf00f063f744244ae3
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Dec 24 14:27:57 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Dec 24 14:27:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c254da8e

www-servers/tornado: arm stable wrt bug #700670

Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="arm"
Signed-off-by: Mikle Kolyada  gentoo.org>

 www-servers/tornado/tornado-5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-5.1.ebuild 
b/www-servers/tornado/tornado-5.1.ebuild
index 7ae492a1d30..bdbff6e8d24 100644
--- a/www-servers/tornado/tornado-5.1.ebuild
+++ b/www-servers/tornado/tornado-5.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2019-12-15 Thread Agostino Sarubbo
commit: e95955701e384728ae9a67d34b4e3b6f92420598
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Dec 15 14:45:58 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Dec 15 14:45:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9595570

www-servers/tornado: x86 stable wrt bug #700670

Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 www-servers/tornado/tornado-5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-5.1.ebuild 
b/www-servers/tornado/tornado-5.1.ebuild
index 650cdfc7f53..7ae492a1d30 100644
--- a/www-servers/tornado/tornado-5.1.ebuild
+++ b/www-servers/tornado/tornado-5.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2019-12-15 Thread Agostino Sarubbo
commit: 2940da13b6d742ad2ec274a42a0ae9d0a02a5a1b
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Dec 15 14:14:25 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Dec 15 14:14:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2940da13

www-servers/tornado: ppc64 stable wrt bug #700670

Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 www-servers/tornado/tornado-5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-5.1.ebuild 
b/www-servers/tornado/tornado-5.1.ebuild
index b795cbf5cf7..650cdfc7f53 100644
--- a/www-servers/tornado/tornado-5.1.ebuild
+++ b/www-servers/tornado/tornado-5.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2019-12-15 Thread Agostino Sarubbo
commit: c0f3d37827403d8587299326e2b92c2432ad802b
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Dec 15 14:05:40 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Dec 15 14:07:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0f3d378

www-servers/tornado: ppc stable wrt bug #700670

Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 www-servers/tornado/tornado-5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-5.1.ebuild 
b/www-servers/tornado/tornado-5.1.ebuild
index 8d4759b7d53..b795cbf5cf7 100644
--- a/www-servers/tornado/tornado-5.1.ebuild
+++ b/www-servers/tornado/tornado-5.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2019-12-03 Thread Aaron Bauman
commit: 84637abf9b87f6b67e4d3525a832bbafbab412d7
Author: Aaron Bauman  gentoo  org>
AuthorDate: Wed Dec  4 01:42:53 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed Dec  4 01:46:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84637abf

www-servers/tornado: amd64 stable version 5.1

Signed-off-by: Aaron Bauman  gentoo.org>

 www-servers/tornado/tornado-5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-5.1.ebuild 
b/www-servers/tornado/tornado-5.1.ebuild
index addc3d01bc4..cf30654f357 100644
--- a/www-servers/tornado/tornado-5.1.ebuild
+++ b/www-servers/tornado/tornado-5.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 
 CDEPEND="



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2019-03-03 Thread Mikle Kolyada
commit: 9d1032edfae3c099802b834365d78a872b646114
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Mar  3 10:52:35 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Mar  3 10:52:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d1032ed

www-servers/tornado: mark s390 stable

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 www-servers/tornado/tornado-4.4.2-r1.ebuild | 4 ++--
 www-servers/tornado/tornado-4.5.3.ebuild| 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/www-servers/tornado/tornado-4.4.2-r1.ebuild 
b/www-servers/tornado/tornado-4.4.2-r1.ebuild
index 199566aa16b..50cfb25a346 100644
--- a/www-servers/tornado/tornado-4.4.2-r1.ebuild
+++ b/www-servers/tornado/tornado-4.4.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 ~sh sparc x86 
~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 
 CDEPEND="

diff --git a/www-servers/tornado/tornado-4.5.3.ebuild 
b/www-servers/tornado/tornado-4.5.3.ebuild
index 6b28f6e2c02..3d8f54a9c46 100644
--- a/www-servers/tornado/tornado-4.5.3.ebuild
+++ b/www-servers/tornado/tornado-4.5.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 ~sh sparc x86 
~amd64-fbsd ~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 
 CDEPEND="



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2018-07-16 Thread Michał Górny
commit: 7b25bd17cecb194c1265c11659b2b7e975e90baf
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jul 14 20:15:34 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jul 16 19:57:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b25bd17

www-servers/tornado: Enable py3.7

 www-servers/tornado/tornado-5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-5.1.ebuild 
b/www-servers/tornado/tornado-5.1.ebuild
index 7b99b382e3f..728122716d3 100644
--- a/www-servers/tornado/tornado-5.1.ebuild
+++ b/www-servers/tornado/tornado-5.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} )
 PYTHON_REQ_USE="threads(+)"
 
 inherit distutils-r1



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2018-07-14 Thread Brian Dolbec
commit: 109b1b0baeb8facd4c5f61bb4431a5e061d66794
Author: Brian Dolbec  gentoo  org>
AuthorDate: Sat Jul 14 16:41:15 2018 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Sat Jul 14 16:41:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=109b1b0b

www-servers/tornado: Version bump, eapi bump

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 www-servers/tornado/Manifest   |  1 +
 www-servers/tornado/tornado-5.1.ebuild | 62 ++
 2 files changed, 63 insertions(+)

diff --git a/www-servers/tornado/Manifest b/www-servers/tornado/Manifest
index 80b89045ccf..4d69ed6933e 100644
--- a/www-servers/tornado/Manifest
+++ b/www-servers/tornado/Manifest
@@ -2,3 +2,4 @@ DIST tornado-4.4.2.tar.gz 460193 BLAKE2B 
4586397e8899af19582e07ac9ecdf56980a552a
 DIST tornado-4.5.1.tar.gz 483225 BLAKE2B 
261a5da8a7cc43b11b8504162a030fdad9c3c1409d653f86ab37deb5e4398f39ac05bee1da58944c2d1a2fa92dd5894256b748910f90926834305d6c6adf7ab4
 SHA512 
b31b3572bf58df8b758694c32b2233c547d6600b0c27f56cff3521abaad38a1646a528d2c2dfcf13214159bf5ba0f59470ba3d538edf16dc014a8b03f0d3bb87
 DIST tornado-4.5.3.tar.gz 484221 BLAKE2B 
7b3682fa85a7f6ad32351d40993516a3e397b7b0a5de9d807bcd8b2b21325a6170f3670cb13e12aa208b6590313cf165ddf40537dba1fee61fa9d71954265a66
 SHA512 
c17dd7a3b541c26950d27c8a399ae4fdff1d99d16ff0c5de9871fe2de4c0f797c96712b23b5ed5efdaee06bb251f7def114c83fe6f7f37f344cdac9996d14448
 DIST tornado-5.0.2.tar.gz 506544 BLAKE2B 
616298761f5e0cdcacfa96c3a14efaf2cc1d7579d582dc8b2fae2a3a3e45405804aa2a1409665a9af38d2f415908b373c1c34e4ff5868f989bb1bd29fe81a569
 SHA512 
fbd360df34fe29ed3e5f406992923e2af2815f93446fb9d9810f7575fe06300a2cb15c3f36bd93150284ba297772f94c94a4227acca2dc65c94cf7d100cb5974
+DIST tornado-5.1.tar.gz 516359 BLAKE2B 
1ff6e6ced124b7b0df0e476eac555de20e4ac86f01369ee484e33bf5d749c269a81dd11a0b4c8b3169db6fd9f7a1b4e3c3551d46474c53a1fed8e342660c57f9
 SHA512 
8f45e5bbee5453a4225f05840a9fa80dd574c5a9cac9ec4d787f11c3f86f347c66d39c984a8bbe96dbb41f599e25102f1a3dad1c55b479bebee7d856aaca764a

diff --git a/www-servers/tornado/tornado-5.1.ebuild 
b/www-servers/tornado/tornado-5.1.ebuild
new file mode 100644
index 000..7b99b382e3f
--- /dev/null
+++ b/www-servers/tornado/tornado-5.1.ebuild
@@ -0,0 +1,62 @@
+# 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} )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="Python web framework and asynchronous networking library"
+HOMEPAGE="http://www.tornadoweb.org/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
+IUSE="doc examples test"
+
+CDEPEND="
+   $(python_gen_cond_dep 'dev-python/futures[${PYTHON_USEDEP}]' 
'python2_7')
+   >=dev-python/pycurl-7.19.3.1[${PYTHON_USEDEP}]
+   >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
+   virtual/python-backports_abc[${PYTHON_USEDEP}]
+   virtual/python-futures[${PYTHON_USEDEP}]
+   virtual/python-singledispatch[${PYTHON_USEDEP}]
+"
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   doc? (
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
+   )
+   test? (
+   ${CDEPEND}
+   dev-python/mock[${PYTHON_USEDEP}]
+   )
+"
+RDEPEND="${CDEPEND}"
+
+# doc without intersphinx does not build (asyncio error)
+#PATCHES=(
+#  "${FILESDIR}"/4.5.1-drop-intersphinx.patch
+#)
+
+python_compile_all() {
+   use doc && emake -C docs sphinx
+}
+
+python_test() {
+   "${PYTHON}" -m tornado.test.runtests || die "tests failed under 
${EPYTHON}"
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/build/html/. )
+   if use examples; then
+   insinto /usr/share/doc/${PF}/examples
+   doins -r demos/.
+   docompress -x /usr/share/doc/${PF}/examples
+fi
+   distutils-r1_python_install_all
+}



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2018-07-04 Thread Matt Thode
commit: 42ca0833ab09e57245bce7085d181ead7415a029
Author: Matthew Thode  gentoo  org>
AuthorDate: Wed Jul  4 17:43:24 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Wed Jul  4 17:56:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42ca0833

www-servers/tornado: 4.5.3 stable under allarches

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 www-servers/tornado/tornado-4.5.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-4.5.3.ebuild 
b/www-servers/tornado/tornado-4.5.3.ebuild
index 455bb5303a0..6b28f6e2c02 100644
--- a/www-servers/tornado/tornado-4.5.3.ebuild
+++ b/www-servers/tornado/tornado-4.5.3.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 
 CDEPEND="



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2018-06-09 Thread Matt Thode
commit: 3c554d94e471d473a8c42f6edcfc2e6b0eb8c7bd
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Jun  9 18:21:47 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Jun  9 18:22:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c554d94

www-servers/tornado: 4.5.3 and 5.0.2 bups

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 www-servers/tornado/Manifest |  2 +
 www-servers/tornado/tornado-4.5.3.ebuild | 68 
 www-servers/tornado/tornado-5.0.2.ebuild | 67 +++
 3 files changed, 137 insertions(+)

diff --git a/www-servers/tornado/Manifest b/www-servers/tornado/Manifest
index 4f21881b736..80b89045ccf 100644
--- a/www-servers/tornado/Manifest
+++ b/www-servers/tornado/Manifest
@@ -1,2 +1,4 @@
 DIST tornado-4.4.2.tar.gz 460193 BLAKE2B 
4586397e8899af19582e07ac9ecdf56980a552a8c15458f1c16d83dc8ec7bf73b6a1eb341a5402d8555319c3d7528702567d13c4b56a995597e7dba4576f694b
 SHA512 
f330bc62433576708e3c566577cede07c54c19996f374df82d5abc19a669ade549e7b6c27dcae3d421921fec506fae39473443cdb04692553c5ea2f8ec11a327
 DIST tornado-4.5.1.tar.gz 483225 BLAKE2B 
261a5da8a7cc43b11b8504162a030fdad9c3c1409d653f86ab37deb5e4398f39ac05bee1da58944c2d1a2fa92dd5894256b748910f90926834305d6c6adf7ab4
 SHA512 
b31b3572bf58df8b758694c32b2233c547d6600b0c27f56cff3521abaad38a1646a528d2c2dfcf13214159bf5ba0f59470ba3d538edf16dc014a8b03f0d3bb87
+DIST tornado-4.5.3.tar.gz 484221 BLAKE2B 
7b3682fa85a7f6ad32351d40993516a3e397b7b0a5de9d807bcd8b2b21325a6170f3670cb13e12aa208b6590313cf165ddf40537dba1fee61fa9d71954265a66
 SHA512 
c17dd7a3b541c26950d27c8a399ae4fdff1d99d16ff0c5de9871fe2de4c0f797c96712b23b5ed5efdaee06bb251f7def114c83fe6f7f37f344cdac9996d14448
+DIST tornado-5.0.2.tar.gz 506544 BLAKE2B 
616298761f5e0cdcacfa96c3a14efaf2cc1d7579d582dc8b2fae2a3a3e45405804aa2a1409665a9af38d2f415908b373c1c34e4ff5868f989bb1bd29fe81a569
 SHA512 
fbd360df34fe29ed3e5f406992923e2af2815f93446fb9d9810f7575fe06300a2cb15c3f36bd93150284ba297772f94c94a4227acca2dc65c94cf7d100cb5974

diff --git a/www-servers/tornado/tornado-4.5.3.ebuild 
b/www-servers/tornado/tornado-4.5.3.ebuild
new file mode 100644
index 000..455bb5303a0
--- /dev/null
+++ b/www-servers/tornado/tornado-4.5.3.ebuild
@@ -0,0 +1,68 @@
+# 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} )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="Python web framework and asynchronous networking library"
+HOMEPAGE="http://www.tornadoweb.org/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
+IUSE="doc examples test"
+
+CDEPEND="
+   dev-python/certifi[${PYTHON_USEDEP}]
+   >=dev-python/pycurl-7.19.3.1[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep 
'>=dev-python/backports-ssl-match-hostname-3.5[${PYTHON_USEDEP}]' 'python2_7' 
'python3_4')
+   || (
+   >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
+   (   $(python_gen_cond_dep 
'dev-python/twisted-names[${PYTHON_USEDEP}]' 'python2_7')
+   $(python_gen_cond_dep 
'dev-python/twisted-web[${PYTHON_USEDEP}]' 'python2_7')
+   )
+   )
+   virtual/python-backports_abc[${PYTHON_USEDEP}]
+   virtual/python-futures[${PYTHON_USEDEP}]
+   virtual/python-singledispatch[${PYTHON_USEDEP}]
+"
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   doc? (
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
+   )
+   test? (
+   ${CDEPEND}
+   dev-python/mock[${PYTHON_USEDEP}]
+   )
+"
+RDEPEND="${CDEPEND}"
+
+# doc without intersphinx does not build (asyncio error)
+#PATCHES=(
+#  "${FILESDIR}"/4.5.1-drop-intersphinx.patch
+#)
+
+python_compile_all() {
+   use doc && emake -C docs sphinx
+}
+
+python_test() {
+   "${PYTHON}" -m tornado.test.runtests || die "tests failed under 
${EPYTHON}"
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/build/html/. )
+   if use examples; then
+   insinto /usr/share/doc/${PF}/examples
+   doins -r demos/.
+   docompress -x /usr/share/doc/${PF}/examples
+fi
+   distutils-r1_python_install_all
+}

diff --git a/www-servers/tornado/tornado-5.0.2.ebuild 
b/www-servers/tornado/tornado-5.0.2.ebuild
new file mode 100644
index 000..8eec00be8a4
--- /dev/null
+++ b/www-servers/tornado/tornado-5.0.2.ebuild
@@ -0,0 +1,67 @@
+# 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} )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="Python web framework and 

[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2018-05-01 Thread Mart Raudsepp
commit: 163cda61b446f25f11b28eee37e3fd1ce19b0241
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Tue May  1 12:28:38 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Tue May  1 12:28:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=163cda61

www-servers/tornado: drop to ~arm64

Requires twisted, which we aren't handling for stable quite yet.
Only currently stable consumer is dev-python/urllib3[test], but it also
has RESTRICT="test"

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 www-servers/tornado/tornado-4.4.2-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-servers/tornado/tornado-4.4.2-r1.ebuild 
b/www-servers/tornado/tornado-4.4.2-r1.ebuild
index 9174d8ba05b..199566aa16b 100644
--- a/www-servers/tornado/tornado-4.4.2-r1.ebuild
+++ b/www-servers/tornado/tornado-4.4.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 
~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 
 CDEPEND="



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2018-03-10 Thread Pacho Ramos
commit: 0d3aa61f63283acda3207e3f27f9f6c7467d74fe
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Mar 10 14:49:16 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Mar 10 14:54:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d3aa61f

www-servers/tornado: Update maintainer due to bug #502560

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 www-servers/tornado/metadata.xml | 4 
 1 file changed, 4 deletions(-)

diff --git a/www-servers/tornado/metadata.xml b/www-servers/tornado/metadata.xml
index 6d6315f45be..752e51121d1 100644
--- a/www-servers/tornado/metadata.xml
+++ b/www-servers/tornado/metadata.xml
@@ -1,10 +1,6 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-alund...@gentoo.org
-Alex Brandt
-  
   
 pyt...@gentoo.org
 Python



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2018-02-22 Thread Michał Górny
commit: e96b2f34196906eb1f96a39a8bab3f4299c4add1
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Feb 22 17:00:17 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Feb 22 17:02:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e96b2f34

www-servers/tornado: Tested on ~amd64-fbsd

 www-servers/tornado/tornado-4.5.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-servers/tornado/tornado-4.5.1.ebuild 
b/www-servers/tornado/tornado-4.5.1.ebuild
index 23317435e30..455bb5303a0 100644
--- a/www-servers/tornado/tornado-4.5.1.ebuild
+++ b/www-servers/tornado/tornado-4.5.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 
 CDEPEND="



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2017-07-16 Thread Patrice Clement
commit: 4b31dfc6dd73239764ecc3b01dbee4043e7186f4
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Jul 16 13:03:53 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Jul 16 13:05:46 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b31dfc6

www-servers/tornado: use python_gen_cond_dep for backports-ssl-match-hostname 
dependency.

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 www-servers/tornado/tornado-4.4.2-r1.ebuild | 2 +-
 www-servers/tornado/tornado-4.5.1.ebuild| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-servers/tornado/tornado-4.4.2-r1.ebuild 
b/www-servers/tornado/tornado-4.4.2-r1.ebuild
index 9e359932b30..5321d46eb93 100644
--- a/www-servers/tornado/tornado-4.4.2-r1.ebuild
+++ b/www-servers/tornado/tornado-4.4.2-r1.ebuild
@@ -20,7 +20,7 @@ IUSE="doc examples test"
 CDEPEND="
dev-python/certifi[${PYTHON_USEDEP}]
>=dev-python/pycurl-7.19.3.1[${PYTHON_USEDEP}]
-   dev-python/backports-ssl-match-hostname[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep 
'>=dev-python/backports-ssl-match-hostname-3.5[${PYTHON_USEDEP}]' 'python2_7' 
'python3_4')
|| (
>=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
(   $(python_gen_cond_dep 
'dev-python/twisted-names[${PYTHON_USEDEP}]' 'python2_7')

diff --git a/www-servers/tornado/tornado-4.5.1.ebuild 
b/www-servers/tornado/tornado-4.5.1.ebuild
index ab03eec142c..23317435e30 100644
--- a/www-servers/tornado/tornado-4.5.1.ebuild
+++ b/www-servers/tornado/tornado-4.5.1.ebuild
@@ -20,7 +20,7 @@ IUSE="doc examples test"
 CDEPEND="
dev-python/certifi[${PYTHON_USEDEP}]
>=dev-python/pycurl-7.19.3.1[${PYTHON_USEDEP}]
-   dev-python/backports-ssl-match-hostname[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep 
'>=dev-python/backports-ssl-match-hostname-3.5[${PYTHON_USEDEP}]' 'python2_7' 
'python3_4')
|| (
>=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
(   $(python_gen_cond_dep 
'dev-python/twisted-names[${PYTHON_USEDEP}]' 'python2_7')



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/, www-servers/tornado/files/

2017-06-27 Thread Sebastien Fabbro
commit: 12a0ffc1e2d18c7c4342c5359725c59785e51e49
Author: Sébastien Fabbro  gentoo  org>
AuthorDate: Tue Jun 27 17:55:36 2017 +
Commit: Sebastien Fabbro  gentoo  org>
CommitDate: Wed Jun 28 04:00:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12a0ffc1

www-servers/tornado: version bump

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 www-servers/tornado/Manifest   |  1 +
 .../tornado/files/4.5.1-drop-intersphinx.patch | 22 +++
 www-servers/tornado/tornado-4.5.1.ebuild   | 68 ++
 3 files changed, 91 insertions(+)

diff --git a/www-servers/tornado/Manifest b/www-servers/tornado/Manifest
index 66fca8816ce..140cae4dd42 100644
--- a/www-servers/tornado/Manifest
+++ b/www-servers/tornado/Manifest
@@ -1 +1,2 @@
 DIST tornado-4.4.2.tar.gz 460193 SHA256 
2898f992f898cd41eeb8d53b6df75495f2f423b6672890aadaf196ea1448edcc SHA512 
f330bc62433576708e3c566577cede07c54c19996f374df82d5abc19a669ade549e7b6c27dcae3d421921fec506fae39473443cdb04692553c5ea2f8ec11a327
 WHIRLPOOL 
df04a35ed30f9bbaff87be06c96de7a9038e1535b21d40906eb92a5beeaaf6ac4ea1b14b4f16df1527b9a07d41a5ee4c04ec141a068e3acfb4b6717019ff5fdd
+DIST tornado-4.5.1.tar.gz 483225 SHA256 
db0904a28253cfe53e7dedc765c71596f3c53bb8a866ae50123320ec1a7b73fd SHA512 
b31b3572bf58df8b758694c32b2233c547d6600b0c27f56cff3521abaad38a1646a528d2c2dfcf13214159bf5ba0f59470ba3d538edf16dc014a8b03f0d3bb87
 WHIRLPOOL 
31e2bb974c938979b430cdc1a873bd1f5f2b6d5fdec61ef8901e7ea83ec2d6801e004202042dc5070ac4083b6d8fec35166b12aaa0664e0775cb1b7af43c148d

diff --git a/www-servers/tornado/files/4.5.1-drop-intersphinx.patch 
b/www-servers/tornado/files/4.5.1-drop-intersphinx.patch
new file mode 100644
index 000..606bfc78738
--- /dev/null
+++ b/www-servers/tornado/files/4.5.1-drop-intersphinx.patch
@@ -0,0 +1,22 @@
+diff -Nur tornado-4.5.1.orig/docs/conf.py tornado-4.5.1/docs/conf.py
+--- tornado-4.5.1.orig/docs/conf.py2017-06-27 17:39:55.881133239 +
 tornado-4.5.1/docs/conf.py 2017-06-27 17:40:59.910682166 +
+@@ -16,7 +16,6 @@
+ "sphinx.ext.autodoc",
+ "sphinx.ext.coverage",
+ "sphinx.ext.doctest",
+-"sphinx.ext.intersphinx",
+ "sphinx.ext.viewcode",
+ ]
+ 
+@@ -81,10 +80,6 @@
+ ('index', 'tornado.tex', 'Tornado Documentation', 'The Tornado Authors', 
'manual', False),
+ ]
+ 
+-intersphinx_mapping = {
+-'python': ('https://docs.python.org/3.5/', None),
+-}
+-
+ on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
+ 
+ # On RTD we can't import sphinx_rtd_theme, but it will be applied by

diff --git a/www-servers/tornado/tornado-4.5.1.ebuild 
b/www-servers/tornado/tornado-4.5.1.ebuild
new file mode 100644
index 000..ab03eec142c
--- /dev/null
+++ b/www-servers/tornado/tornado-4.5.1.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="Python web framework and asynchronous networking library"
+HOMEPAGE="http://www.tornadoweb.org/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-linux ~x86-linux"
+IUSE="doc examples test"
+
+CDEPEND="
+   dev-python/certifi[${PYTHON_USEDEP}]
+   >=dev-python/pycurl-7.19.3.1[${PYTHON_USEDEP}]
+   dev-python/backports-ssl-match-hostname[${PYTHON_USEDEP}]
+   || (
+   >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
+   (   $(python_gen_cond_dep 
'dev-python/twisted-names[${PYTHON_USEDEP}]' 'python2_7')
+   $(python_gen_cond_dep 
'dev-python/twisted-web[${PYTHON_USEDEP}]' 'python2_7')
+   )
+   )
+   virtual/python-backports_abc[${PYTHON_USEDEP}]
+   virtual/python-futures[${PYTHON_USEDEP}]
+   virtual/python-singledispatch[${PYTHON_USEDEP}]
+"
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   doc? (
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
+   )
+   test? (
+   ${CDEPEND}
+   dev-python/mock[${PYTHON_USEDEP}]
+   )
+"
+RDEPEND="${CDEPEND}"
+
+# doc without intersphinx does not build (asyncio error)
+#PATCHES=(
+#  "${FILESDIR}"/4.5.1-drop-intersphinx.patch
+#)
+
+python_compile_all() {
+   use doc && emake -C docs sphinx
+}
+
+python_test() {
+   "${PYTHON}" -m tornado.test.runtests || die "tests failed under 
${EPYTHON}"
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/build/html/. )
+   if use examples; then
+   insinto /usr/share/doc/${PF}/examples
+   doins -r demos/.
+   docompress -x /usr/share/doc/${PF}/examples
+fi
+   distutils-r1_python_install_all
+}



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2017-05-19 Thread Michael Weber
commit: d98b0286398522a7c5bda8dca03799d3780eb5ac
Author: Michael Weber  gentoo  org>
AuthorDate: Fri May 19 13:24:17 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Fri May 19 13:36:17 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d98b0286

www-servers/tornado: arm64 stable (bug 617258).

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="arm64"

 www-servers/tornado/tornado-4.4.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-4.4.2-r1.ebuild 
b/www-servers/tornado/tornado-4.4.2-r1.ebuild
index cd660fd5271..9e359932b30 100644
--- a/www-servers/tornado/tornado-4.4.2-r1.ebuild
+++ b/www-servers/tornado/tornado-4.4.2-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 
~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 
 CDEPEND="



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2017-02-12 Thread Zac Medico
commit: 9426c53268fea5fd2ab4b6b400d3923282ac7afb
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Feb 12 08:51:12 2017 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Feb 12 22:19:45 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9426c532

www-servers/tornado: PYTHON_COMPAT: add python3_6

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 www-servers/tornado/tornado-4.4.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-4.4.2-r1.ebuild 
b/www-servers/tornado/tornado-4.4.2-r1.ebuild
index cc3e4c7aa0..5a01749882 100644
--- a/www-servers/tornado/tornado-4.4.2-r1.ebuild
+++ b/www-servers/tornado/tornado-4.4.2-r1.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
 PYTHON_REQ_USE="threads(+)"
 
 inherit distutils-r1



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/, www-servers/tornado/files/

2017-01-17 Thread Brian Dolbec
commit: 76dfce4ab8c325420e7f5eb092e73f8a2c734694
Author: Brian Dolbec  gentoo  org>
AuthorDate: Tue Jan 17 16:25:20 2017 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Tue Jan 17 16:26:25 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76dfce4a

www-servers/tornado: Cleanup vulnerable versions

X-Gentoo-bug: 597740
X-Gentoo-bug-url: https://bugs.gentoo.org/show_bug.cgi?id=597740

Package-Manager: Portage-2.3.3_p23, Repoman-2.3.1_p16

 www-servers/tornado/Manifest   |  2 -
 www-servers/tornado/files/drop-intersphinx.patch   | 36 
 .../files/tornado-4.2.1-py3.5-backport.patch   | 63 
 www-servers/tornado/tornado-4.2.1.ebuild   | 68 --
 www-servers/tornado/tornado-4.3.ebuild | 67 -
 5 files changed, 236 deletions(-)

diff --git a/www-servers/tornado/Manifest b/www-servers/tornado/Manifest
index 8d0dfa2..66fca88 100644
--- a/www-servers/tornado/Manifest
+++ b/www-servers/tornado/Manifest
@@ -1,3 +1 @@
-DIST tornado-4.2.1.tar.gz 434304 SHA256 
a16fcdc4f76b184cb82f4f9eaeeacef6113b524b26a2cb331222e4a7fa6f2969 SHA512 
5bb391b05c8574c8ae5e315b7617e1259ab80e993f1230db611c5beef8058517cc588daf75fac2e0f7969668715470b06ed183c9832b22081be265beb6967e30
 WHIRLPOOL 
5230055b1d10c32968c1f400e3d1fffbde1cbf9b4578ec42835cb202234d24daf6d4e621622a2fc884d3db8e5b3f64d6e62d17841bb9d71ab8ab91928cd0dfe3
-DIST tornado-4.3.tar.gz 450916 SHA256 
c9c2d32593d16eedf2cec1b6a41893626a2649b40b21ca9c4cac4243bde2efbf SHA512 
4220ae67eb8bfbe112edead47f37308eca9a272df24f073a7e5d1a0d0e90fb9f8c74b48db0d78fd995463591924800ab5268d32bcacc497ba204f164bce438bc
 WHIRLPOOL 
13dec91628a7941623d0e8d381aa893ec6e4f1a480171bb29263c85cb11449d650488f459705c0b5d7b2d37044628caec6f14fa13762e67fce2688da6706fc78
 DIST tornado-4.4.2.tar.gz 460193 SHA256 
2898f992f898cd41eeb8d53b6df75495f2f423b6672890aadaf196ea1448edcc SHA512 
f330bc62433576708e3c566577cede07c54c19996f374df82d5abc19a669ade549e7b6c27dcae3d421921fec506fae39473443cdb04692553c5ea2f8ec11a327
 WHIRLPOOL 
df04a35ed30f9bbaff87be06c96de7a9038e1535b21d40906eb92a5beeaaf6ac4ea1b14b4f16df1527b9a07d41a5ee4c04ec141a068e3acfb4b6717019ff5fdd

diff --git a/www-servers/tornado/files/drop-intersphinx.patch 
b/www-servers/tornado/files/drop-intersphinx.patch
deleted file mode 100644
index 7502dc5..
--- a/www-servers/tornado/files/drop-intersphinx.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-diff --git a/docs/Makefile b/docs/Makefile
-index 7001b80..ab2ffdd 100644
 a/docs/Makefile
-+++ b/docs/Makefile
-@@ -3,7 +3,7 @@ all: sphinx
- 
- # No -W for doctests because that disallows tests with empty output.
- SPHINX_DOCTEST_OPTS=-n -d build/doctress .
--SPHINXOPTS=-n -W -d build/doctrees .
-+SPHINXOPTS=-n -d build/doctrees .
- 
- .PHONY: sphinx
- sphinx:
-diff --git a/docs/conf.py b/docs/conf.py
-index 368e4e8..85a276d 100644
 a/docs/conf.py
-+++ b/docs/conf.py
-@@ -16,7 +16,6 @@ extensions = [
- "sphinx.ext.coverage",
- "sphinx.ext.doctest",
- "sphinx.ext.extlinks",
--"sphinx.ext.intersphinx",
- "sphinx.ext.viewcode",
- ]
- 
-@@ -91,10 +90,6 @@ extlinks = {
- 'tornado-%s.tar.g' % version),
- }
- 
--intersphinx_mapping = {
--'python': ('https://docs.python.org/3.4/', None),
--}
--
- on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
- 
- # On RTD we can't import sphinx_rtd_theme, but it will be applied by

diff --git a/www-servers/tornado/files/tornado-4.2.1-py3.5-backport.patch 
b/www-servers/tornado/files/tornado-4.2.1-py3.5-backport.patch
deleted file mode 100644
index e649935..
--- a/www-servers/tornado/files/tornado-4.2.1-py3.5-backport.patch
+++ /dev/null
@@ -1,63 +0,0 @@
-From 2971e857104f8d02fa9107a0e13f50170eb4f30d Mon Sep 17 00:00:00 2001
-From: Ben Darnell 
-Date: Sat, 6 Jun 2015 15:40:21 -0400
-Subject: [PATCH] Get the tests passing under Python 3.5b2
-

- tornado/test/web_test.py |  7 +--
- tornado/util.py  | 10 --
- 2 files changed, 13 insertions(+), 4 deletions(-)
-
-diff --git a/tornado/test/web_test.py b/tornado/test/web_test.py
-index 96edd6c..a93369c 100644
 a/tornado/test/web_test.py
-+++ b/tornado/test/web_test.py
-@@ -1538,8 +1538,11 @@ def get(self):
- def test_clear_all_cookies(self):
- response = self.fetch('/', headers={'Cookie': 'foo=bar; baz=xyzzy'})
- set_cookies = sorted(response.headers.get_list('Set-Cookie'))
--self.assertTrue(set_cookies[0].startswith('baz=;'))
--self.assertTrue(set_cookies[1].startswith('foo=;'))
-+# Python 3.5 sends 'baz="";'; older versions use 'baz=;'
-+self.assertTrue(set_cookies[0].startswith('baz=;') or
-+set_cookies[0].startswith('baz="";'))
-+self.assertTrue(set_cookies[1].startswith('foo=;') or
-+set_cookies[1].startswith('foo="";'))
- 
- 
- class PermissionError(Exception):
-diff --git 

[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2016-12-01 Thread Markus Meier
commit: 0e7e30f5a570fbea92b5b5fbcc7e32f2814f7d32
Author: Markus Meier  gentoo  org>
AuthorDate: Thu Dec  1 20:51:30 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Thu Dec  1 20:51:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e7e30f5

www-servers/tornado: arm stable, bug #597740

Package-Manager: portage-2.3.2
RepoMan-Options: --include-arches="arm"

 www-servers/tornado/tornado-4.4.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-4.4.2-r1.ebuild 
b/www-servers/tornado/tornado-4.4.2-r1.ebuild
index 46ff95d..78075df 100644
--- a/www-servers/tornado/tornado-4.4.2-r1.ebuild
+++ b/www-servers/tornado/tornado-4.4.2-r1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 
 CDEPEND="



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2016-11-20 Thread Agostino Sarubbo
commit: d36dde1368094b6766674795c51220aaab45a335
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Nov 20 13:45:13 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Nov 20 13:45:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d36dde13

www-servers/tornado: x86 stable wrt bug #597740

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 www-servers/tornado/tornado-4.4.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-4.4.2-r1.ebuild 
b/www-servers/tornado/tornado-4.4.2-r1.ebuild
index ae57fe4..46ff95d 100644
--- a/www-servers/tornado/tornado-4.4.2-r1.ebuild
+++ b/www-servers/tornado/tornado-4.4.2-r1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~ppc ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 
 CDEPEND="



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2016-11-14 Thread Tobias Klausmann
commit: 0dba28b628e9cad6d0e29cc5acda274ad033ee37
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Mon Nov 14 15:08:42 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Mon Nov 14 15:09:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0dba28b6

www-servers/tornado-4.4.2-r1: stable on alpha

Gentoo-Bug: 597740

 www-servers/tornado/tornado-4.4.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-4.4.2-r1.ebuild 
b/www-servers/tornado/tornado-4.4.2-r1.ebuild
index f9ba2a0..ae57fe4 100644
--- a/www-servers/tornado/tornado-4.4.2-r1.ebuild
+++ b/www-servers/tornado/tornado-4.4.2-r1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~ppc ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~ppc ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 
 CDEPEND="



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2016-11-12 Thread Jeroen Roovers
commit: cc33ae571bb9004fa620ddd2d2bf9e3486c92196
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Nov 12 11:11:20 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Nov 12 11:11:58 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc33ae57

www-servers/tornado: Stable for HPPA PPC64 (bug #597740).

Package-Manager: portage-2.3.2
RepoMan-Options: --ignore-arches

 www-servers/tornado/tornado-4.4.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-4.4.2-r1.ebuild 
b/www-servers/tornado/tornado-4.4.2-r1.ebuild
index 2581b82..f9ba2a0 100644
--- a/www-servers/tornado/tornado-4.4.2-r1.ebuild
+++ b/www-servers/tornado/tornado-4.4.2-r1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~ppc ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 
 CDEPEND="



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2016-11-07 Thread Agostino Sarubbo
commit: ad9b1c010773e1c4380d95d50748cbe80cada557
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Nov  7 15:37:22 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Nov  7 15:37:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad9b1c01

www-servers/tornado: amd64 stable wrt bug #597740

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 www-servers/tornado/tornado-4.4.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-4.4.2-r1.ebuild 
b/www-servers/tornado/tornado-4.4.2-r1.ebuild
index 8a76a30..2581b82 100644
--- a/www-servers/tornado/tornado-4.4.2-r1.ebuild
+++ b/www-servers/tornado/tornado-4.4.2-r1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 
 CDEPEND="



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2016-10-21 Thread Brian Dolbec
commit: e0cff803c9c5e5fe3bf46e355f8f649f93ba2792
Author: Brian Dolbec  gentoo  org>
AuthorDate: Sat Oct 22 01:52:48 2016 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Sat Oct 22 01:52:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0cff803

www-servers/tornado: Fix examples install, bug 595020

Package-Manager: portage-2.3.2

 .../tornado/{tornado-4.4.2.ebuild => tornado-4.4.2-r1.ebuild}  | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/www-servers/tornado/tornado-4.4.2.ebuild 
b/www-servers/tornado/tornado-4.4.2-r1.ebuild
similarity index 92%
rename from www-servers/tornado/tornado-4.4.2.ebuild
rename to www-servers/tornado/tornado-4.4.2-r1.ebuild
index ae21f0c..8a76a30 100644
--- a/www-servers/tornado/tornado-4.4.2.ebuild
+++ b/www-servers/tornado/tornado-4.4.2-r1.ebuild
@@ -60,7 +60,10 @@ python_test() {
 
 python_install_all() {
use doc && local HTML_DOCS=( docs/build/html/. )
-   use examples && local EXAMPLES=( demos/. )
-
+   if use examples; then
+   insinto /usr/share/doc/${PF}/examples
+   doins -r demos/.
+   docompress -x /usr/share/doc/${PF}/examples
+fi
distutils-r1_python_install_all
 }



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2016-10-21 Thread Brian Dolbec
commit: 8df044869cf1f7a6c791370d4e98a8826063f5b8
Author: Brian Dolbec  gentoo  org>
AuthorDate: Fri Oct 21 23:24:42 2016 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Fri Oct 21 23:41:36 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8df04486

www-servers/tornado: Version bump and security fix

Fixes a cookie parsing vulnerability:
http://www.tornadoweb.org/en/stable/releases/v4.4.2.html

Package-Manager: portage-2.3.2

 www-servers/tornado/Manifest   | 2 +-
 www-servers/tornado/{tornado-4.4.1.ebuild => tornado-4.4.2.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/Manifest b/www-servers/tornado/Manifest
index cfe138c..8d0dfa2 100644
--- a/www-servers/tornado/Manifest
+++ b/www-servers/tornado/Manifest
@@ -1,3 +1,3 @@
 DIST tornado-4.2.1.tar.gz 434304 SHA256 
a16fcdc4f76b184cb82f4f9eaeeacef6113b524b26a2cb331222e4a7fa6f2969 SHA512 
5bb391b05c8574c8ae5e315b7617e1259ab80e993f1230db611c5beef8058517cc588daf75fac2e0f7969668715470b06ed183c9832b22081be265beb6967e30
 WHIRLPOOL 
5230055b1d10c32968c1f400e3d1fffbde1cbf9b4578ec42835cb202234d24daf6d4e621622a2fc884d3db8e5b3f64d6e62d17841bb9d71ab8ab91928cd0dfe3
 DIST tornado-4.3.tar.gz 450916 SHA256 
c9c2d32593d16eedf2cec1b6a41893626a2649b40b21ca9c4cac4243bde2efbf SHA512 
4220ae67eb8bfbe112edead47f37308eca9a272df24f073a7e5d1a0d0e90fb9f8c74b48db0d78fd995463591924800ab5268d32bcacc497ba204f164bce438bc
 WHIRLPOOL 
13dec91628a7941623d0e8d381aa893ec6e4f1a480171bb29263c85cb11449d650488f459705c0b5d7b2d37044628caec6f14fa13762e67fce2688da6706fc78
-DIST tornado-4.4.1.tar.gz 456992 SHA256 
371d0cf3d56c47accc66116a77ad558d76eebaa8458a6b677af71ca606522146 SHA512 
46cd686d73348c20dfdb2a997b8368f3bb12f08d9f610c804090a4411b1d478ca11b5b34e1421873a3ab66eb6c2580b2cb3b092357cb60b72acf646fa8e0af43
 WHIRLPOOL 
113da16b8033eff24148458798be6d113682557d1c699c895429fb92377c36ea9f00677c0ce7bab3b7d56d5e4d33d4512186a481f23ad52d899c93b85195
+DIST tornado-4.4.2.tar.gz 460193 SHA256 
2898f992f898cd41eeb8d53b6df75495f2f423b6672890aadaf196ea1448edcc SHA512 
f330bc62433576708e3c566577cede07c54c19996f374df82d5abc19a669ade549e7b6c27dcae3d421921fec506fae39473443cdb04692553c5ea2f8ec11a327
 WHIRLPOOL 
df04a35ed30f9bbaff87be06c96de7a9038e1535b21d40906eb92a5beeaaf6ac4ea1b14b4f16df1527b9a07d41a5ee4c04ec141a068e3acfb4b6717019ff5fdd

diff --git a/www-servers/tornado/tornado-4.4.1.ebuild 
b/www-servers/tornado/tornado-4.4.2.ebuild
similarity index 100%
rename from www-servers/tornado/tornado-4.4.1.ebuild
rename to www-servers/tornado/tornado-4.4.2.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2016-10-12 Thread Brian Dolbec
commit: c7c527b55d672753c10fe561cc7e8f33f2bb0fb5
Author: Brian Dolbec  gentoo  org>
AuthorDate: Wed Oct 12 22:03:34 2016 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Wed Oct 12 22:07:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7c527b5

www-servers/tornado: 4.4.1 Update the twisted dep order to prefer the new 
twisted pkg

With the new twisted pkg now in the tree, prefer the new pkg.
There will be no new releases of  the split pkgs.

Package-Manager: portage-2.3.2

 www-servers/tornado/tornado-4.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-4.4.1.ebuild 
b/www-servers/tornado/tornado-4.4.1.ebuild
index 520d50c..ae21f0c 100644
--- a/www-servers/tornado/tornado-4.4.1.ebuild
+++ b/www-servers/tornado/tornado-4.4.1.ebuild
@@ -23,10 +23,10 @@ CDEPEND="
>=dev-python/pycurl-7.19.3.1[${PYTHON_USEDEP}]
dev-python/backports-ssl-match-hostname[${PYTHON_USEDEP}]
|| (
+   >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
(   $(python_gen_cond_dep 
'dev-python/twisted-names[${PYTHON_USEDEP}]' 'python2_7')
$(python_gen_cond_dep 
'dev-python/twisted-web[${PYTHON_USEDEP}]' 'python2_7')
)
-   >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
)
virtual/python-backports_abc[${PYTHON_USEDEP}]
virtual/python-futures[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/, www-servers/tornado/files/

2016-09-23 Thread Brian Dolbec
commit: 90c9aa5b38437b03b7066683110962c4a65c67bc
Author: Brian Dolbec  gentoo  org>
AuthorDate: Fri Sep 23 18:08:49 2016 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Fri Sep 23 18:52:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90c9aa5b

www-servers/tornado: Version bump

Add new twisted single pkg dep (almost ready for the tree)
Needed for newer salt version(s)

Package-Manager: portage-2.3.1_p4

 www-servers/tornado/Manifest   |  1 +
 .../tornado/files/4.4-drop-intersphinx.patch   | 36 
 www-servers/tornado/files/4.4.1-options-test.patch | 13 +
 www-servers/tornado/tornado-4.4.1.ebuild   | 66 ++
 4 files changed, 116 insertions(+)

diff --git a/www-servers/tornado/Manifest b/www-servers/tornado/Manifest
index 6eabc15..cfe138c 100644
--- a/www-servers/tornado/Manifest
+++ b/www-servers/tornado/Manifest
@@ -1,2 +1,3 @@
 DIST tornado-4.2.1.tar.gz 434304 SHA256 
a16fcdc4f76b184cb82f4f9eaeeacef6113b524b26a2cb331222e4a7fa6f2969 SHA512 
5bb391b05c8574c8ae5e315b7617e1259ab80e993f1230db611c5beef8058517cc588daf75fac2e0f7969668715470b06ed183c9832b22081be265beb6967e30
 WHIRLPOOL 
5230055b1d10c32968c1f400e3d1fffbde1cbf9b4578ec42835cb202234d24daf6d4e621622a2fc884d3db8e5b3f64d6e62d17841bb9d71ab8ab91928cd0dfe3
 DIST tornado-4.3.tar.gz 450916 SHA256 
c9c2d32593d16eedf2cec1b6a41893626a2649b40b21ca9c4cac4243bde2efbf SHA512 
4220ae67eb8bfbe112edead47f37308eca9a272df24f073a7e5d1a0d0e90fb9f8c74b48db0d78fd995463591924800ab5268d32bcacc497ba204f164bce438bc
 WHIRLPOOL 
13dec91628a7941623d0e8d381aa893ec6e4f1a480171bb29263c85cb11449d650488f459705c0b5d7b2d37044628caec6f14fa13762e67fce2688da6706fc78
+DIST tornado-4.4.1.tar.gz 456992 SHA256 
371d0cf3d56c47accc66116a77ad558d76eebaa8458a6b677af71ca606522146 SHA512 
46cd686d73348c20dfdb2a997b8368f3bb12f08d9f610c804090a4411b1d478ca11b5b34e1421873a3ab66eb6c2580b2cb3b092357cb60b72acf646fa8e0af43
 WHIRLPOOL 
113da16b8033eff24148458798be6d113682557d1c699c895429fb92377c36ea9f00677c0ce7bab3b7d56d5e4d33d4512186a481f23ad52d899c93b85195

diff --git a/www-servers/tornado/files/4.4-drop-intersphinx.patch 
b/www-servers/tornado/files/4.4-drop-intersphinx.patch
new file mode 100644
index ..cec403e
--- /dev/null
+++ b/www-servers/tornado/files/4.4-drop-intersphinx.patch
@@ -0,0 +1,36 @@
+diff --git a/docs/Makefile b/docs/Makefile
+index 7001b80..ab2ffdd 100644
+--- a/docs/Makefile
 b/docs/Makefile
+@@ -3,7 +3,7 @@ all: sphinx
+ 
+ # No -W for doctests because that disallows tests with empty output.
+ SPHINX_DOCTEST_OPTS=-n -d build/doctress .
+-SPHINXOPTS=-n -W -d build/doctrees .
++SPHINXOPTS=-n -d build/doctrees .
+ 
+ .PHONY: sphinx
+ sphinx:
+diff --git a/docs/conf.py b/docs/conf.py
+index 368e4e8..85a276d 100644
+--- a/docs/conf.py
 b/docs/conf.py
+@@ -17,7 +17,6 @@ extensions = [
+ "sphinx.ext.coverage",
+ "sphinx.ext.doctest",
+ "sphinx.ext.extlinks",
+-"sphinx.ext.intersphinx",
+ "sphinx.ext.viewcode",
+ ]
+ 
+@@ -92,10 +91,6 @@
+ 'tornado-%s.tar.g' % version),
+ }
+ 
+-intersphinx_mapping = {
+-'python': ('https://docs.python.org/3.5/', None),
+-}
+-
+ on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
+ 
+ # On RTD we can't import sphinx_rtd_theme, but it will be applied by

diff --git a/www-servers/tornado/files/4.4.1-options-test.patch 
b/www-servers/tornado/files/4.4.1-options-test.patch
new file mode 100644
index ..4803626
--- /dev/null
+++ b/www-servers/tornado/files/4.4.1-options-test.patch
@@ -0,0 +1,13 @@
+diff --git a/tornado/test/options_test.py b/tornado/test/options_test.py
+index f7b215c..c050cb6 100644
+--- a/tornado/test/options_test.py
 b/tornado/test/options_test.py
+@@ -36,7 +36,7 @@ class OptionsTest(unittest.TestCase):
+ options.define("port", default=80)
+ options.define("username", default='foo')
+ options.define("my_path")
+-config_path = os.path.join(os.path.dirname(__file__),
++config_path = os.path.join(os.path.dirname(os.path.abspath(__file__)),
+"options_test.cfg")
+ options.parse_config_file(config_path)
+ self.assertEqual(options.port, 443)

diff --git a/www-servers/tornado/tornado-4.4.1.ebuild 
b/www-servers/tornado/tornado-4.4.1.ebuild
new file mode 100644
index ..520d50c
--- /dev/null
+++ b/www-servers/tornado/tornado-4.4.1.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5} )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="Python web framework and asynchronous networking library"
+HOMEPAGE="http://www.tornadoweb.org/ https://pypi.python.org/pypi/tornado;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 

[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2016-02-27 Thread Matt Thode
commit: 52d434da321eca22515abc76a60470510d0eca74
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Feb 28 06:17:18 2016 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sun Feb 28 06:40:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52d434da

www-servers/tornado: keywording arm64

merged on X-C1

Package-Manager: portage-2.2.26

 www-servers/tornado/tornado-4.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-4.3.ebuild 
b/www-servers/tornado/tornado-4.3.ebuild
index 6fb16e0..1ab2319 100644
--- a/www-servers/tornado/tornado-4.3.ebuild
+++ b/www-servers/tornado/tornado-4.3.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 
 CDEPEND="



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2016-01-11 Thread Agostino Sarubbo
commit: bcd6c89d38a074761ecc68ba5dc739c963bfcb2f
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Jan 11 09:55:00 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Jan 11 09:55:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcd6c89d

www-servers/tornado: ia64 stable wrt bug #549898

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 www-servers/tornado/tornado-4.2.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-4.2.1.ebuild 
b/www-servers/tornado/tornado-4.2.1.ebuild
index fc2ce8f..4cf2663 100644
--- a/www-servers/tornado/tornado-4.2.1.ebuild
+++ b/www-servers/tornado/tornado-4.2.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 
 CDEPEND="



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/files/, www-servers/tornado/

2016-01-11 Thread Justin Lecher
commit: d36d7fcf8d7df517ef6fc11a31a63052aae3a707
Author: Justin Lecher  gentoo  org>
AuthorDate: Mon Jan 11 10:16:52 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Mon Jan 11 10:16:52 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d36d7fcf

www-servers/tornado: Drop versions vulnerable to CVE-2014-9720

Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=549898

obsoletes
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=482494
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=487292
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=511514
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=535794

Package-Manager: portage-2.2.26
Signed-off-by: Justin Lecher  gentoo.org>

 www-servers/tornado/Manifest   |  2 --
 .../files/tornado-3.1.1-py2_6-tests-fix.patch  | 31 
 .../files/unittest2-import-issue-1005.patch| 41 --
 www-servers/tornado/tornado-3.1.1-r1.ebuild| 40 -
 www-servers/tornado/tornado-4.0.1.ebuild   | 34 --
 5 files changed, 148 deletions(-)

diff --git a/www-servers/tornado/Manifest b/www-servers/tornado/Manifest
index aa8d149..6eabc15 100644
--- a/www-servers/tornado/Manifest
+++ b/www-servers/tornado/Manifest
@@ -1,4 +1,2 @@
-DIST tornado-3.1.1.tar.gz 374086 SHA256 
345904bfe4a0ce5d687203f783986a73cfd7dc3a9957ee3342cd43d4e310fdc6 SHA512 
13f17166153a89ecf1a16a08f0d15cd342f5de7ad964e669e015c2226e2c18297306f47ffc560164ec9f8080489a5fb81cbf6b41f89f12fe1745b0cd73524207
 WHIRLPOOL 
689f4ba4dc4d98ac7b7de33b15288aa90683bc529364b02c0d5d1c9090b47c5178ef520cdcc93ae94e8886278cc4a16100c167e33a05f406c9431f4a0888087b
-DIST tornado-4.0.1.tar.gz 314852 SHA256 
ae058668b276b1ec7383cfc911323e6d27b3b47e38a12d3d3eaf6b6577b99901 SHA512 
a4e0231e77ebbc2885bab648b292b842cb15c84d66a1972de18cb00fcc611eae2794b872f070ab7d5af32dd0c6c1773527fe1332bd382c1821e1f2d5d76808fb
 WHIRLPOOL 
eafd8c3cf60c2aacdbdc495f21d4e677cf77ce5ad5ce17d8e13b66b79bb1e416f9837d1b2dfbbe6d24b6447507b71270f1abe533e260e4a960477f974623045a
 DIST tornado-4.2.1.tar.gz 434304 SHA256 
a16fcdc4f76b184cb82f4f9eaeeacef6113b524b26a2cb331222e4a7fa6f2969 SHA512 
5bb391b05c8574c8ae5e315b7617e1259ab80e993f1230db611c5beef8058517cc588daf75fac2e0f7969668715470b06ed183c9832b22081be265beb6967e30
 WHIRLPOOL 
5230055b1d10c32968c1f400e3d1fffbde1cbf9b4578ec42835cb202234d24daf6d4e621622a2fc884d3db8e5b3f64d6e62d17841bb9d71ab8ab91928cd0dfe3
 DIST tornado-4.3.tar.gz 450916 SHA256 
c9c2d32593d16eedf2cec1b6a41893626a2649b40b21ca9c4cac4243bde2efbf SHA512 
4220ae67eb8bfbe112edead47f37308eca9a272df24f073a7e5d1a0d0e90fb9f8c74b48db0d78fd995463591924800ab5268d32bcacc497ba204f164bce438bc
 WHIRLPOOL 
13dec91628a7941623d0e8d381aa893ec6e4f1a480171bb29263c85cb11449d650488f459705c0b5d7b2d37044628caec6f14fa13762e67fce2688da6706fc78

diff --git a/www-servers/tornado/files/tornado-3.1.1-py2_6-tests-fix.patch 
b/www-servers/tornado/files/tornado-3.1.1-py2_6-tests-fix.patch
deleted file mode 100644
index ea18df2..000
--- a/www-servers/tornado/files/tornado-3.1.1-py2_6-tests-fix.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-diff --git a/tornado/test/twisted_test.py b/tornado/test/twisted_test.py
-index b8d9c6f..998282c 100644
 a/tornado/test/twisted_test.py
-+++ b/tornado/test/twisted_test.py
-@@ -22,6 +22,7 @@ from __future__ import absolute_import, division, 
print_function, with_statement
- import os
- import shutil
- import signal
-+import sys
- import tempfile
- import threading
- 
-@@ -477,8 +478,6 @@ if have_twisted:
- 'twisted.internet.test.test_fdset.ReactorFDSetTestsBuilder': [
- "test_lostFileDescriptor",  # incompatible with epoll and kqueue
- ],
--'twisted.internet.test.test_process.ProcessTestsBuilder': [
--],
- # Process tests appear to work on OSX 10.7, but not 10.6
- #'twisted.internet.test.test_process.PTYProcessTestsBuilder': [
- #'test_systemCallUninterruptedByChildExit',
-@@ -519,6 +518,9 @@ if have_twisted:
- ],
- 'twisted.internet.test.test_unix.UNIXPortTestsBuilder': [],
- }
-+if sys.version_info >= (2,7):
-+
twisted_tests['twisted.internet.test.test_process.ProcessTestsBuilder'] = []
-+
- for test_name, blacklist in twisted_tests.items():
- try:
- test_class = import_object(test_name)

diff --git a/www-servers/tornado/files/unittest2-import-issue-1005.patch 
b/www-servers/tornado/files/unittest2-import-issue-1005.patch
deleted file mode 100644
index 3ad5b91..000
--- a/www-servers/tornado/files/unittest2-import-issue-1005.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-commit 79e29c62ce095984d0e9da5b7c5072eb9aa6e131
-Author: yac 
-Date:   Sat Mar 8 00:32:09 2014 +0100
-
-fixes #1005
-
-diff --git a/tornado/test/util.py b/tornado/test/util.py
-index 3604310..e4e37f0 100644
 a/tornado/test/util.py
-+++ b/tornado/test/util.py
-@@ -3,6 +3,10 @@ from 

[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2016-01-10 Thread Agostino Sarubbo
commit: 3d9bfbe96ddb69a810489291ae4373761f93335c
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Jan 10 11:20:20 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Jan 10 11:20:20 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d9bfbe9

www-servers/tornado: alpha stable wrt bug #549898

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="alpha"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 www-servers/tornado/tornado-4.2.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-4.2.1.ebuild 
b/www-servers/tornado/tornado-4.2.1.ebuild
index c75d69a..fc2ce8f 100644
--- a/www-servers/tornado/tornado-4.2.1.ebuild
+++ b/www-servers/tornado/tornado-4.2.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 
 CDEPEND="



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2015-12-25 Thread Agostino Sarubbo
commit: 9e35de549fca7158f553cb27c141973971491b2b
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Dec 25 18:17:46 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Dec 25 18:17:46 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e35de54

www-servers/tornado: x86 stable wrt bug #549898

Package-Manager: portage-2.2.24
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 www-servers/tornado/tornado-4.2.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-4.2.1.ebuild 
b/www-servers/tornado/tornado-4.2.1.ebuild
index 3a86564..1787445 100644
--- a/www-servers/tornado/tornado-4.2.1.ebuild
+++ b/www-servers/tornado/tornado-4.2.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~ppc ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 
 CDEPEND="



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2015-11-26 Thread Markus Meier
commit: e95418f8b10463eda9ad74b22e1668fabf8c73a9
Author: Markus Meier  gentoo  org>
AuthorDate: Thu Nov 26 19:25:49 2015 +
Commit: Markus Meier  gentoo  org>
CommitDate: Thu Nov 26 19:25:49 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e95418f8

www-servers/tornado: arm stable, bug #549898

Package-Manager: portage-2.2.25
RepoMan-Options: --include-arches="arm"

 www-servers/tornado/tornado-4.2.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-4.2.1.ebuild 
b/www-servers/tornado/tornado-4.2.1.ebuild
index f3499c8..3a86564 100644
--- a/www-servers/tornado/tornado-4.2.1.ebuild
+++ b/www-servers/tornado/tornado-4.2.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~ppc ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 
 CDEPEND="



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2015-11-24 Thread Jeroen Roovers
commit: 6a115c02b8d36ef09100688e73a0c4697978310a
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Nov 24 09:36:06 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Nov 24 09:37:21 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a115c02

www-servers/tornado: Stable for PPC64 (bug #549898).

Package-Manager: portage-2.2.25
RepoMan-Options: --ignore-arches

 www-servers/tornado/tornado-4.2.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-4.2.1.ebuild 
b/www-servers/tornado/tornado-4.2.1.ebuild
index 2848af9..f3499c8 100644
--- a/www-servers/tornado/tornado-4.2.1.ebuild
+++ b/www-servers/tornado/tornado-4.2.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 
 CDEPEND="



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2015-11-21 Thread Jeroen Roovers
commit: 40f2c87f425dd2a6fa1c899edc9c1a498c3e3fd6
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sun Nov 22 05:01:17 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sun Nov 22 05:36:41 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40f2c87f

www-servers/tornado: Stable for HPPA (bug #549898).

Package-Manager: portage-2.2.25
RepoMan-Options: --ignore-arches

 www-servers/tornado/tornado-4.2.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-4.2.1.ebuild 
b/www-servers/tornado/tornado-4.2.1.ebuild
index f670d99..2848af9 100644
--- a/www-servers/tornado/tornado-4.2.1.ebuild
+++ b/www-servers/tornado/tornado-4.2.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 
 CDEPEND="



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2015-11-19 Thread Agostino Sarubbo
commit: aecad224528408b86f2bb1ae243ded47dfed4537
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 19 10:16:18 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 19 10:16:18 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aecad224

www-servers/tornado: amd64 stable wrt bug #549898

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="amd64"

 www-servers/tornado/tornado-4.2.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-4.2.1.ebuild 
b/www-servers/tornado/tornado-4.2.1.ebuild
index 75c9417..f670d99 100644
--- a/www-servers/tornado/tornado-4.2.1.ebuild
+++ b/www-servers/tornado/tornado-4.2.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 
 CDEPEND="



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2015-11-18 Thread Justin Lecher
commit: e651a9c79d5f6239a73d08acb6e0ac6dfdc72a31
Author: Justin Lecher  gentoo  org>
AuthorDate: Wed Nov 18 15:15:32 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Wed Nov 18 15:40:15 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e651a9c7

www-servers/tornado: Keyword under ALLARCHES policy

Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=543802

Package-Manager: portage-2.2.25
Signed-off-by: Justin Lecher  gentoo.org>

 www-servers/tornado/tornado-4.0.1.ebuild | 2 +-
 www-servers/tornado/tornado-4.3.ebuild   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-servers/tornado/tornado-4.0.1.ebuild 
b/www-servers/tornado/tornado-4.0.1.ebuild
index 1990422..f522bb5 100644
--- a/www-servers/tornado/tornado-4.0.1.ebuild
+++ b/www-servers/tornado/tornado-4.0.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 arm hppa ppc ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux 
~x86-linux"
 IUSE="curl test"
 
 RDEPEND="

diff --git a/www-servers/tornado/tornado-4.3.ebuild 
b/www-servers/tornado/tornado-4.3.ebuild
index 7d743a3..6fb16e0 100644
--- a/www-servers/tornado/tornado-4.3.ebuild
+++ b/www-servers/tornado/tornado-4.3.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 
 CDEPEND="



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2015-11-18 Thread Justin Lecher
commit: 1eeed153fd8c265b6a2c1ca7dc69c1836fc305ba
Author: Justin Lecher  gentoo  org>
AuthorDate: Wed Nov 18 16:40:07 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Wed Nov 18 19:14:46 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1eeed153

www-servers/tornado: Backport KEYWORDS

Package-Manager: portage-2.2.25
Signed-off-by: Justin Lecher  gentoo.org>

 www-servers/tornado/tornado-4.2.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-4.2.1.ebuild 
b/www-servers/tornado/tornado-4.2.1.ebuild
index 58a8544..75c9417 100644
--- a/www-servers/tornado/tornado-4.2.1.ebuild
+++ b/www-servers/tornado/tornado-4.2.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 
 CDEPEND="



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2015-11-11 Thread Justin Lecher
commit: 74f9a6f6233947c9b62a11f53c741fec9662dc62
Author: Justin Lecher  gentoo  org>
AuthorDate: Wed Nov 11 17:25:25 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Wed Nov 11 17:27:03 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74f9a6f6

www-servers/tornado: Depend on threading support in python

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 www-servers/tornado/tornado-3.1.1-r1.ebuild | 1 +
 www-servers/tornado/tornado-4.0.1.ebuild| 1 +
 www-servers/tornado/tornado-4.2.1.ebuild| 1 +
 www-servers/tornado/tornado-4.3.ebuild  | 1 +
 4 files changed, 4 insertions(+)

diff --git a/www-servers/tornado/tornado-3.1.1-r1.ebuild 
b/www-servers/tornado/tornado-3.1.1-r1.ebuild
index 3177d06..8a56639 100644
--- a/www-servers/tornado/tornado-3.1.1-r1.ebuild
+++ b/www-servers/tornado/tornado-3.1.1-r1.ebuild
@@ -5,6 +5,7 @@
 EAPI=5
 
 PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
+PYTHON_REQ_USE="threads(+)"
 
 inherit distutils-r1
 

diff --git a/www-servers/tornado/tornado-4.0.1.ebuild 
b/www-servers/tornado/tornado-4.0.1.ebuild
index 45e6acd..1990422 100644
--- a/www-servers/tornado/tornado-4.0.1.ebuild
+++ b/www-servers/tornado/tornado-4.0.1.ebuild
@@ -5,6 +5,7 @@
 EAPI=5
 
 PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
+PYTHON_REQ_USE="threads(+)"
 
 inherit distutils-r1
 

diff --git a/www-servers/tornado/tornado-4.2.1.ebuild 
b/www-servers/tornado/tornado-4.2.1.ebuild
index 7cbfbc2..58a8544 100644
--- a/www-servers/tornado/tornado-4.2.1.ebuild
+++ b/www-servers/tornado/tornado-4.2.1.ebuild
@@ -5,6 +5,7 @@
 EAPI=5
 
 PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+PYTHON_REQ_USE="threads(+)"
 
 inherit distutils-r1
 

diff --git a/www-servers/tornado/tornado-4.3.ebuild 
b/www-servers/tornado/tornado-4.3.ebuild
index 0209a28..7d743a3 100644
--- a/www-servers/tornado/tornado-4.3.ebuild
+++ b/www-servers/tornado/tornado-4.3.ebuild
@@ -5,6 +5,7 @@
 EAPI=5
 
 PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+PYTHON_REQ_USE="threads(+)"
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/, www-servers/tornado/files/

2015-11-10 Thread Justin Lecher
commit: 46c971147e9b7e4ce6a449463a7dd1f010484d10
Author: Justin Lecher  gentoo  org>
AuthorDate: Tue Nov 10 07:58:04 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Tue Nov 10 10:54:09 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46c97114

www-servers/tornado: Clean old

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 www-servers/tornado/Manifest   |  4 --
 .../tornado/files/4.1.0-drop-intersphinx.patch | 36 
 www-servers/tornado/tornado-3.1.1.ebuild   | 29 --
 www-servers/tornado/tornado-4.0.2.ebuild   | 32 ---
 www-servers/tornado/tornado-4.1.0-r1.ebuild| 63 
 www-servers/tornado/tornado-4.1.0.ebuild   | 61 
 www-servers/tornado/tornado-4.2.0_beta1.ebuild | 67 --
 www-servers/tornado/tornado-4.2.ebuild | 67 --
 8 files changed, 359 deletions(-)

diff --git a/www-servers/tornado/Manifest b/www-servers/tornado/Manifest
index b1626bb..b87e07e 100644
--- a/www-servers/tornado/Manifest
+++ b/www-servers/tornado/Manifest
@@ -1,7 +1,3 @@
 DIST tornado-3.1.1.tar.gz 374086 SHA256 
345904bfe4a0ce5d687203f783986a73cfd7dc3a9957ee3342cd43d4e310fdc6 SHA512 
13f17166153a89ecf1a16a08f0d15cd342f5de7ad964e669e015c2226e2c18297306f47ffc560164ec9f8080489a5fb81cbf6b41f89f12fe1745b0cd73524207
 WHIRLPOOL 
689f4ba4dc4d98ac7b7de33b15288aa90683bc529364b02c0d5d1c9090b47c5178ef520cdcc93ae94e8886278cc4a16100c167e33a05f406c9431f4a0888087b
 DIST tornado-4.0.1.tar.gz 314852 SHA256 
ae058668b276b1ec7383cfc911323e6d27b3b47e38a12d3d3eaf6b6577b99901 SHA512 
a4e0231e77ebbc2885bab648b292b842cb15c84d66a1972de18cb00fcc611eae2794b872f070ab7d5af32dd0c6c1773527fe1332bd382c1821e1f2d5d76808fb
 WHIRLPOOL 
eafd8c3cf60c2aacdbdc495f21d4e677cf77ce5ad5ce17d8e13b66b79bb1e416f9837d1b2dfbbe6d24b6447507b71270f1abe533e260e4a960477f974623045a
-DIST tornado-4.0.2.tar.gz 315841 SHA256 
900c5124ebdb6598ca8e8a0c5888f41a5f14117952d5515258e3d20222b21bfa SHA512 
93591068dc63af8d50a7925d528bc0cccdd705232c529b6162619fe28dddaf115e8a460b1842877d35160bd7ed480c1bd0bdbec57d1f359085bd1814e0c1c242
 WHIRLPOOL 
e00484208ec70c55ca7a0bfb383a5f26928882ce547c274de8597312e539296c29edbbfdcece40c161bcfc71b5b74c42653625310a7c7cd5d2b244faa6027692
-DIST tornado-4.1.0.tar.gz 427424 SHA256 
bf00fe845576a729f57e86dc3a7e767bf101e018eebbc86bf8c0148094409733 SHA512 
bbe79aed51a29d4868557ad1ccea391a0c28b9702c40bdad21665a53796650884de8621c0f4333e2edeed268e0cf97a7807086b1513c63257a8bf02ef98d261f
 WHIRLPOOL 
0231e010a021bd2cba13cee1c108abfe4850b7753655b0dd6edf22b72f04e7ba9a723fa434bd64aeae41f6c4c14fd189563e795c4843ed6255b1b7975287f306
-DIST tornado-4.2.0_beta1.tar.gz 433456 SHA256 
216e505f14978143248030e62c275853272316fbd20f3447e40c7295898a2a8e SHA512 
ebd5c2a7ef3d99e24821de685560e5810d8d0986bb394897cb9bdd799b221a5c6e314bedd589b6e374e4cae5425372e13b25b932a4c701820952f260f8bc46f7
 WHIRLPOOL 
6b1dfb9df5d24363fd85c2ab2864106d637c97268b4a58342481d292baf2856604ae61d99bded9e259e7d2ef12647169c18392a474246f09a16b17f2f20df315
 DIST tornado-4.2.1.tar.gz 434304 SHA256 
a16fcdc4f76b184cb82f4f9eaeeacef6113b524b26a2cb331222e4a7fa6f2969 SHA512 
5bb391b05c8574c8ae5e315b7617e1259ab80e993f1230db611c5beef8058517cc588daf75fac2e0f7969668715470b06ed183c9832b22081be265beb6967e30
 WHIRLPOOL 
5230055b1d10c32968c1f400e3d1fffbde1cbf9b4578ec42835cb202234d24daf6d4e621622a2fc884d3db8e5b3f64d6e62d17841bb9d71ab8ab91928cd0dfe3
-DIST tornado-4.2.tar.gz 433734 SHA256 
e8b1207da67dbdceebfb291292b4ef1b547d6171525bec1b366853f923456a5f SHA512 
b9f27cf544b0743bd08687c3cea2882528786d4bb1158b1f1b97b6e1b8c170396c07032802f6daafec3be9a21975f73292a321a160a17bad1d215e40f2e9244e
 WHIRLPOOL 
76070b3c9bed55232a8b36f0bb45f398c142a04d5bb7c11e8cf152eec68eaa54804e9452a8042f01710cd45b8e2bfdfddbcfe911854a158a93f47e201ae89f20

diff --git a/www-servers/tornado/files/4.1.0-drop-intersphinx.patch 
b/www-servers/tornado/files/4.1.0-drop-intersphinx.patch
deleted file mode 100644
index e7da6fb..000
--- a/www-servers/tornado/files/4.1.0-drop-intersphinx.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-diff --git a/docs/Makefile b/docs/Makefile
-index a491685..ba4888f 100644
 a/docs/Makefile
-+++ b/docs/Makefile
-@@ -1,7 +1,7 @@
- .PHONY: all
- all: sphinx
- 
--SPHINXOPTS=-n -W -d build/doctrees .
-+SPHINXOPTS=-n -d build/doctrees .
- 
- .PHONY: sphinx
- sphinx:
-diff --git a/docs/conf.py b/docs/conf.py
-index d9b4761..4c11038 100644
 a/docs/conf.py
-+++ b/docs/conf.py
-@@ -15,7 +15,6 @@ extensions = [
- "sphinx.ext.autodoc",
- "sphinx.ext.coverage",
- "sphinx.ext.extlinks",
--"sphinx.ext.intersphinx",
- "sphinx.ext.viewcode",
- ]
- 
-@@ -94,10 +93,6 @@ extlinks = {
- 'tornado-%s.tar.g' % version),
- }
- 
--intersphinx_mapping = {
--'python': ('http://python.readthedocs.org/en/latest/', None),
--}
--
- on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
- 

[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2015-11-10 Thread Justin Lecher
commit: c29f532cbe5e11e32a9d487b766141d98c26447d
Author: Justin Lecher  gentoo  org>
AuthorDate: Tue Nov 10 08:24:24 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Tue Nov 10 10:54:09 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c29f532c

www-servers/tornado: Use virtual for module with mixed support

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 www-servers/tornado/tornado-4.0.1.ebuild | 7 ---
 www-servers/tornado/tornado-4.2.1.ebuild | 2 +-
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/www-servers/tornado/tornado-4.0.1.ebuild 
b/www-servers/tornado/tornado-4.0.1.ebuild
index 0a1734d..472b0eb 100644
--- a/www-servers/tornado/tornado-4.0.1.ebuild
+++ b/www-servers/tornado/tornado-4.0.1.ebuild
@@ -17,9 +17,10 @@ SLOT="0"
 KEYWORDS="amd64 arm hppa ppc ppc64 x86 ~amd64-linux ~x86-linux"
 IUSE="curl test"
 
-RDEPEND="curl? ( $(python_gen_cond_dep 'dev-python/pycurl[${PYTHON_USEDEP}]' 
python2_7) )
-   dev-python/certifi[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep 
'dev-python/backports-ssl-match-hostname[${PYTHON_USEDEP}]' python2_7 pypy)"
+RDEPEND="
+   curl? ( $(python_gen_cond_dep 'dev-python/pycurl[${PYTHON_USEDEP}]' 
python2_7) )
+   dev-python/certifi[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep 
'dev-python/backports-ssl-match-hostname[${PYTHON_USEDEP}]' python2_7 pypy)"
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
test? ( ${RDEPEND}
$(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' 
python2_7 pypy)

diff --git a/www-servers/tornado/tornado-4.2.1.ebuild 
b/www-servers/tornado/tornado-4.2.1.ebuild
index 9187a28..40d3840 100644
--- a/www-servers/tornado/tornado-4.2.1.ebuild
+++ b/www-servers/tornado/tornado-4.2.1.ebuild
@@ -23,9 +23,9 @@ CDEPEND="
$(python_gen_cond_dep 
'dev-python/backports-ssl-match-hostname[${PYTHON_USEDEP}]' 'python2_7')
$(python_gen_cond_dep 'dev-python/certifi[${PYTHON_USEDEP}]' 
'python2_7' 'python3_3')
$(python_gen_cond_dep 'dev-python/futures[${PYTHON_USEDEP}]' 'python2_7 
pypy')
-   $(python_gen_cond_dep 'dev-python/singledispatch[${PYTHON_USEDEP}]' 
'python2_7' 'python3_3')
$(python_gen_cond_dep 'dev-python/twisted-names[${PYTHON_USEDEP}]' 
'python2_7')
$(python_gen_cond_dep 'dev-python/twisted-web[${PYTHON_USEDEP}]' 
'python2_7')
+   virtual/python-singledispatch
 "
 # dev-python/twisted-* only supports python2_7 currently
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2015-11-10 Thread Justin Lecher
commit: 14d2bf6e43828bd821a9e69491aeeb8953820a3c
Author: Justin Lecher  gentoo  org>
AuthorDate: Tue Nov 10 10:32:39 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Tue Nov 10 10:54:09 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14d2bf6e

www-servers/tornado: Version Bump

Update DESCRIPTION

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 www-servers/tornado/Manifest   |  1 +
 www-servers/tornado/tornado-3.1.1-r1.ebuild|  2 +-
 www-servers/tornado/tornado-4.0.1.ebuild   |  2 +-
 www-servers/tornado/tornado-4.2.1.ebuild   |  4 ++--
 .../tornado/{tornado-4.2.1.ebuild => tornado-4.3.ebuild}   | 14 +++---
 5 files changed, 12 insertions(+), 11 deletions(-)

diff --git a/www-servers/tornado/Manifest b/www-servers/tornado/Manifest
index b87e07e..aa8d149 100644
--- a/www-servers/tornado/Manifest
+++ b/www-servers/tornado/Manifest
@@ -1,3 +1,4 @@
 DIST tornado-3.1.1.tar.gz 374086 SHA256 
345904bfe4a0ce5d687203f783986a73cfd7dc3a9957ee3342cd43d4e310fdc6 SHA512 
13f17166153a89ecf1a16a08f0d15cd342f5de7ad964e669e015c2226e2c18297306f47ffc560164ec9f8080489a5fb81cbf6b41f89f12fe1745b0cd73524207
 WHIRLPOOL 
689f4ba4dc4d98ac7b7de33b15288aa90683bc529364b02c0d5d1c9090b47c5178ef520cdcc93ae94e8886278cc4a16100c167e33a05f406c9431f4a0888087b
 DIST tornado-4.0.1.tar.gz 314852 SHA256 
ae058668b276b1ec7383cfc911323e6d27b3b47e38a12d3d3eaf6b6577b99901 SHA512 
a4e0231e77ebbc2885bab648b292b842cb15c84d66a1972de18cb00fcc611eae2794b872f070ab7d5af32dd0c6c1773527fe1332bd382c1821e1f2d5d76808fb
 WHIRLPOOL 
eafd8c3cf60c2aacdbdc495f21d4e677cf77ce5ad5ce17d8e13b66b79bb1e416f9837d1b2dfbbe6d24b6447507b71270f1abe533e260e4a960477f974623045a
 DIST tornado-4.2.1.tar.gz 434304 SHA256 
a16fcdc4f76b184cb82f4f9eaeeacef6113b524b26a2cb331222e4a7fa6f2969 SHA512 
5bb391b05c8574c8ae5e315b7617e1259ab80e993f1230db611c5beef8058517cc588daf75fac2e0f7969668715470b06ed183c9832b22081be265beb6967e30
 WHIRLPOOL 
5230055b1d10c32968c1f400e3d1fffbde1cbf9b4578ec42835cb202234d24daf6d4e621622a2fc884d3db8e5b3f64d6e62d17841bb9d71ab8ab91928cd0dfe3
+DIST tornado-4.3.tar.gz 450916 SHA256 
c9c2d32593d16eedf2cec1b6a41893626a2649b40b21ca9c4cac4243bde2efbf SHA512 
4220ae67eb8bfbe112edead47f37308eca9a272df24f073a7e5d1a0d0e90fb9f8c74b48db0d78fd995463591924800ab5268d32bcacc497ba204f164bce438bc
 WHIRLPOOL 
13dec91628a7941623d0e8d381aa893ec6e4f1a480171bb29263c85cb11449d650488f459705c0b5d7b2d37044628caec6f14fa13762e67fce2688da6706fc78

diff --git a/www-servers/tornado/tornado-3.1.1-r1.ebuild 
b/www-servers/tornado/tornado-3.1.1-r1.ebuild
index 809c748..3177d06 100644
--- a/www-servers/tornado/tornado-3.1.1-r1.ebuild
+++ b/www-servers/tornado/tornado-3.1.1-r1.ebuild
@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
 
 inherit distutils-r1
 
-DESCRIPTION="Scalable, non-blocking web server and tools"
+DESCRIPTION="Python web framework and asynchronous networking library"
 HOMEPAGE="http://www.tornadoweb.org/ https://pypi.python.org/pypi/tornado;
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 

diff --git a/www-servers/tornado/tornado-4.0.1.ebuild 
b/www-servers/tornado/tornado-4.0.1.ebuild
index 472b0eb..45e6acd 100644
--- a/www-servers/tornado/tornado-4.0.1.ebuild
+++ b/www-servers/tornado/tornado-4.0.1.ebuild
@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
 
 inherit distutils-r1
 
-DESCRIPTION="Scalable, non-blocking web server and tools"
+DESCRIPTION="Python web framework and asynchronous networking library"
 HOMEPAGE="http://www.tornadoweb.org/ https://pypi.python.org/pypi/tornado;
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 

diff --git a/www-servers/tornado/tornado-4.2.1.ebuild 
b/www-servers/tornado/tornado-4.2.1.ebuild
index 40d3840..c3808d8 100644
--- a/www-servers/tornado/tornado-4.2.1.ebuild
+++ b/www-servers/tornado/tornado-4.2.1.ebuild
@@ -8,8 +8,8 @@ PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
 
 inherit distutils-r1
 
-DESCRIPTION="Tornado is a Python web framework and asynchronous networking 
library, ... ."
-HOMEPAGE="http://www.tornadoweb.org/;
+DESCRIPTION="Python web framework and asynchronous networking library"
+HOMEPAGE="http://www.tornadoweb.org/ https://pypi.python.org/pypi/tornado;
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"

diff --git a/www-servers/tornado/tornado-4.2.1.ebuild 
b/www-servers/tornado/tornado-4.3.ebuild
similarity index 76%
copy from www-servers/tornado/tornado-4.2.1.ebuild
copy to www-servers/tornado/tornado-4.3.ebuild
index 40d3840..38a907f 100644
--- a/www-servers/tornado/tornado-4.2.1.ebuild
+++ b/www-servers/tornado/tornado-4.3.ebuild
@@ -8,8 +8,8 @@ PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
 
 inherit distutils-r1
 
-DESCRIPTION="Tornado is a Python web framework and asynchronous networking 
library, ... ."
-HOMEPAGE="http://www.tornadoweb.org/;
+DESCRIPTION="Python web framework and asynchronous networking 

[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2015-11-10 Thread Justin Lecher
commit: d53c9aa61b78b562c70c4b6b1fb8cbd2c9cf4274
Author: Justin Lecher  gentoo  org>
AuthorDate: Tue Nov 10 11:16:09 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Tue Nov 10 11:49:39 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d53c9aa6

www-servers/tornado: Use virtual for module with mixed support

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 www-servers/tornado/tornado-4.2.1.ebuild | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/www-servers/tornado/tornado-4.2.1.ebuild 
b/www-servers/tornado/tornado-4.2.1.ebuild
index c3808d8..7cbfbc2 100644
--- a/www-servers/tornado/tornado-4.2.1.ebuild
+++ b/www-servers/tornado/tornado-4.2.1.ebuild
@@ -18,14 +18,15 @@ KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux"
 IUSE="doc examples test"
 
 CDEPEND="
+   dev-python/certifi[${PYTHON_USEDEP}]
>=dev-python/pycurl-7.19.3.1[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep 'dev-python/asyncio[${PYTHON_USEDEP}]' 
'python3_3')
+   $(python_gen_cond_dep 'virtual/python-asyncio[${PYTHON_USEDEP}]' 
'python3*')
$(python_gen_cond_dep 
'dev-python/backports-ssl-match-hostname[${PYTHON_USEDEP}]' 'python2_7')
-   $(python_gen_cond_dep 'dev-python/certifi[${PYTHON_USEDEP}]' 
'python2_7' 'python3_3')
-   $(python_gen_cond_dep 'dev-python/futures[${PYTHON_USEDEP}]' 'python2_7 
pypy')
$(python_gen_cond_dep 'dev-python/twisted-names[${PYTHON_USEDEP}]' 
'python2_7')
$(python_gen_cond_dep 'dev-python/twisted-web[${PYTHON_USEDEP}]' 
'python2_7')
-   virtual/python-singledispatch
+   virtual/python-backports_abc[${PYTHON_USEDEP}]
+   virtual/python-futures[${PYTHON_USEDEP}]
+   virtual/python-singledispatch[${PYTHON_USEDEP}]
 "
 # dev-python/twisted-* only supports python2_7 currently
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2015-11-10 Thread Justin Lecher
commit: 2cf535c44b66c649b16d72612ba272d0cba2382a
Author: Justin Lecher  gentoo  org>
AuthorDate: Tue Nov 10 11:49:21 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Tue Nov 10 11:49:39 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cf535c4

www-servers/tornado: Forward porting dropped KEYWORD

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 www-servers/tornado/tornado-4.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-4.3.ebuild 
b/www-servers/tornado/tornado-4.3.ebuild
index 38a907f..0209a28 100644
--- a/www-servers/tornado/tornado-4.3.ebuild
+++ b/www-servers/tornado/tornado-4.3.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 
 CDEPEND="



  1   2   >