bman 15/03/16 11:08:45 Modified: ChangeLog Added: aiohttp-0.14.4-r1.ebuild Removed: aiohttp-0.14.4.ebuild Log: add setuptools to depend; add proper die message; rm old (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 8EE88A22)
Revision Changes Path 1.2 dev-python/aiohttp/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/aiohttp/ChangeLog?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/aiohttp/ChangeLog?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/aiohttp/ChangeLog?r1=1.1&r2=1.2 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/aiohttp/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- ChangeLog 14 Mar 2015 12:49:07 -0000 1.1 +++ ChangeLog 16 Mar 2015 11:08:45 -0000 1.2 @@ -1,6 +1,12 @@ # ChangeLog for dev-python/aiohttp # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/aiohttp/ChangeLog,v 1.1 2015/03/14 12:49:07 bman Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/aiohttp/ChangeLog,v 1.2 2015/03/16 11:08:45 bman Exp $ + +*aiohttp-0.14.4-r1 (16 Mar 2015) + + 16 Mar 2015; Aaron Bauman <[email protected]> +aiohttp-0.14.4-r1.ebuild, + -aiohttp-0.14.4.ebuild: + add setuptools to depend; add proper die message; rm old *aiohttp-0.14.4 (14 Mar 2015) 1.1 dev-python/aiohttp/aiohttp-0.14.4-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/aiohttp/aiohttp-0.14.4-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/aiohttp/aiohttp-0.14.4-r1.ebuild?rev=1.1&content-type=text/plain Index: aiohttp-0.14.4-r1.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/aiohttp/aiohttp-0.14.4-r1.ebuild,v 1.1 2015/03/16 11:08:45 bman Exp $ EAPI="5" PYTHON_COMPAT=( python{3_3,3_4} ) inherit distutils-r1 DESCRIPTION="HTTP client/server for asyncio" HOMEPAGE="https://github.com/KeepSafe/aiohttp https://pypi.python.org/pypi/aiohttp" SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="test" RDEPEND="dev-python/asyncio[${PYTHON_USEDEP}]" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] test? ( ${RDEPEND} dev-python/chardet[${PYTHON_USEDEP}] dev-python/nose[${PYTHON_USEDEP}] www-servers/gunicorn[${PYTHON_USEDEP}] )" python_test() { nosetests || die "Tests failed under ${EPYTHON}" }
