diff options
| author | Palica <palica+gitlab@liguros.net> | 2020-06-23 22:35:08 +0200 |
|---|---|---|
| committer | Palica <palica+gitlab@liguros.net> | 2020-06-23 22:35:08 +0200 |
| commit | ecdac123787b96ce6649f0f91da12ea6458cc2b1 (patch) | |
| tree | b89c74d9e6fe6e8aebc4c77bcbeb4ab73214127d /dev-python/bottle | |
| parent | 1be72aa41cf41dedadeecf59dca9f01de6381f5e (diff) | |
| download | baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.tar.gz baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.tar.xz baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.zip | |
Updating liguros repo
Diffstat (limited to 'dev-python/bottle')
| -rw-r--r-- | dev-python/bottle/Manifest | 1 | ||||
| -rw-r--r-- | dev-python/bottle/bottle-0.12.18.ebuild | 48 | ||||
| -rw-r--r-- | dev-python/bottle/files/bottle-0.12.8-py3.5-backport.patch | 36 | ||||
| -rw-r--r-- | dev-python/bottle/metadata.xml | 12 |
4 files changed, 97 insertions, 0 deletions
diff --git a/dev-python/bottle/Manifest b/dev-python/bottle/Manifest new file mode 100644 index 000000000000..f8636ed54391 --- /dev/null +++ b/dev-python/bottle/Manifest @@ -0,0 +1 @@ +DIST bottle-0.12.18.tar.gz 71557 BLAKE2B a34cc1ab9a2a8505b7fda8bbddbae30b4e6c4829cae53f0f886237a21fdfa7f2b2463b216d7a16464539f41bdce4c1dabb5cc66027b8fdd19b10e9a78a3cdbb5 SHA512 db8a341cd80d755205518bb9eac5b79dca9e541ab3ad9d9d57f891d895f7df75a8facd16b068cbdf7c4f884f35e384449f4cbd565a43e9c5d000d3a9f5b7dcb0 diff --git a/dev-python/bottle/bottle-0.12.18.ebuild b/dev-python/bottle/bottle-0.12.18.ebuild new file mode 100644 index 000000000000..1e518dc8bb12 --- /dev/null +++ b/dev-python/bottle/bottle-0.12.18.ebuild @@ -0,0 +1,48 @@ +# 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,9} pypy3 ) + +inherit distutils-r1 eutils + +DESCRIPTION="A fast and simple micro-framework for small web-applications" +HOMEPAGE="https://pypi.org/project/bottle/ https://bottlepy.org/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86" +IUSE="test" +RESTRICT="!test? ( test )" + +BDEPEND="test? ( dev-python/mako[${PYTHON_USEDEP}] )" +RDEPEND="" + +PATCHES=( + "${FILESDIR}"/${PN}-0.12.8-py3.5-backport.patch +) + +python_prepare_all() { + sed -i -e '/scripts/d' setup.py || die + + # Remove test file requring connection to network + rm test/test_server.py || die + distutils-r1_python_prepare_all +} + +python_test() { + # A few odd fails in the suite under pypy + # https://github.com/bottlepy/bottle/issues/714 + "${EPYTHON}" test/testall.py || die "tests failed under ${EPYTHON}" +} + +pkg_postinst() { + optfeature "Templating support" dev-python/mako + elog "Due to problems with bottle.py being in /usr/bin (see bug #474874)" + elog "we do as most other distros and do not install the script anymore." + elog "If you do want/have to call it directly rather than through your app," + elog "please use the following instead:" + elog ' `python -m bottle`' +} diff --git a/dev-python/bottle/files/bottle-0.12.8-py3.5-backport.patch b/dev-python/bottle/files/bottle-0.12.8-py3.5-backport.patch new file mode 100644 index 000000000000..86e1ac04bc41 --- /dev/null +++ b/dev-python/bottle/files/bottle-0.12.8-py3.5-backport.patch @@ -0,0 +1,36 @@ + test/test_environ.py | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +diff --git a/test/test_environ.py b/test/test_environ.py +old mode 100755 +new mode 100644 +index 2b8079b..2feebe3 +--- a/test/test_environ.py ++++ b/test/test_environ.py +@@ -592,7 +592,7 @@ class TestResponse(unittest.TestCase): + r.set_cookie('name2', 'value', max_age=datetime.timedelta(days=1)) + cookies = sorted([value for name, value in r.headerlist + if name.title() == 'Set-Cookie']) +- self.assertEqual(cookies[0], 'name1=value; Max-Age=5') ++ self.assertEqual(cookies[0].lower(), 'name1=value; max-age=5') + self.assertEqual(cookies[1], 'name2=value; Max-Age=86400') + + def test_set_cookie_expires(self): +@@ -602,7 +602,7 @@ class TestResponse(unittest.TestCase): + r.set_cookie('name2', 'value', expires=datetime.datetime(1970,1,1,0,0,43)) + cookies = sorted([value for name, value in r.headerlist + if name.title() == 'Set-Cookie']) +- self.assertEqual(cookies[0], 'name1=value; expires=Thu, 01 Jan 1970 00:00:42 GMT') ++ self.assertEqual(cookies[0].lower(), 'name1=value; expires=thu, 01 jan 1970 00:00:42 gmt') + self.assertEqual(cookies[1], 'name2=value; expires=Thu, 01 Jan 1970 00:00:43 GMT') + + def test_delete_cookie(self): +@@ -611,7 +611,7 @@ class TestResponse(unittest.TestCase): + response.delete_cookie('name') + cookies = [value for name, value in response.headerlist + if name.title() == 'Set-Cookie'] +- self.assertTrue('name=;' in cookies[0]) ++ self.assertTrue('Max-Age=-1' in cookies[0]) + + def test_set_header(self): + response = BaseResponse() diff --git a/dev-python/bottle/metadata.xml b/dev-python/bottle/metadata.xml new file mode 100644 index 000000000000..3ba321c03488 --- /dev/null +++ b/dev-python/bottle/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <email>python@gentoo.org</email> + <name>Python</name> + </maintainer> + <upstream> + <remote-id type="pypi">bottle</remote-id> + </upstream> + <origin>gentoo-staging</origin> +</pkgmetadata> |
