mgorny 14/05/08 21:56:21 Modified: ChangeLog Added: bcrypt-1.0.2-r1.ebuild Removed: bcrypt-1.0.2.ebuild Log: Add a slot operator on dev-python/cffi dep (bug #506552), and make it conditional to CPython implementations (PyPy has built-in cffi). (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Revision Changes Path 1.4 dev-python/bcrypt/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bcrypt/ChangeLog?rev=1.4&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bcrypt/ChangeLog?rev=1.4&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bcrypt/ChangeLog?r1=1.3&r2=1.4 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/bcrypt/ChangeLog,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- ChangeLog 31 Mar 2014 20:27:30 -0000 1.3 +++ ChangeLog 8 May 2014 21:56:21 -0000 1.4 @@ -1,6 +1,13 @@ # ChangeLog for dev-python/bcrypt # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/bcrypt/ChangeLog,v 1.3 2014/03/31 20:27:30 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/bcrypt/ChangeLog,v 1.4 2014/05/08 21:56:21 mgorny Exp $ + +*bcrypt-1.0.2-r1 (08 May 2014) + + 08 May 2014; Michał Górny <[email protected]> +bcrypt-1.0.2-r1.ebuild, + -bcrypt-1.0.2.ebuild: + Add a slot operator on dev-python/cffi dep (bug #506552), and make it + conditional to CPython implementations (PyPy has built-in cffi). 31 Mar 2014; Michał Górny <[email protected]> bcrypt-1.0.2.ebuild: Add support for the new PyPy slotting. 1.1 dev-python/bcrypt/bcrypt-1.0.2-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bcrypt/bcrypt-1.0.2-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bcrypt/bcrypt-1.0.2-r1.ebuild?rev=1.1&content-type=text/plain Index: bcrypt-1.0.2-r1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/bcrypt/bcrypt-1.0.2-r1.ebuild,v 1.1 2014/05/08 21:56:21 mgorny Exp $ EAPI=5 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy ) inherit distutils-r1 DESCRIPTION="Modern password hashing for software and servers" HOMEPAGE="https://github.com/dstufft/bcrypt/" SRC_URI="https://github.com/pyca/bcrypt/archive/v${PV}.tar.gz -> ${P}.tar.gz" KEYWORDS="~amd64 ~x86" IUSE="test" LICENSE="Apache-2.0" SLOT="0" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] test? ( dev-python/pytest[${PYTHON_USEDEP}] )" RDEPEND="$(python_gen_cond_dep '>=dev-python/cffi-0.8:=[${PYTHON_USEDEP}]' python*) !dev-python/py-bcrypt" DISTUTILS_IN_SOURCE_BUILD=1 python_test() { esetup.py test }
