xarthisius 15/01/18 01:28:56 Modified: ChangeLog Added: hglib-1.5.ebuild Log: Version bump (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 0x5D21B852895192F9)
Revision Changes Path 1.12 dev-python/hglib/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/hglib/ChangeLog?rev=1.12&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/hglib/ChangeLog?rev=1.12&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/hglib/ChangeLog?r1=1.11&r2=1.12 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/hglib/ChangeLog,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- ChangeLog 31 Mar 2014 21:07:39 -0000 1.11 +++ ChangeLog 18 Jan 2015 01:28:56 -0000 1.12 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/hglib -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/hglib/ChangeLog,v 1.11 2014/03/31 21:07:39 mgorny Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/hglib/ChangeLog,v 1.12 2015/01/18 01:28:56 xarthisius Exp $ + +*hglib-1.5 (18 Jan 2015) + + 18 Jan 2015; Kacper Kowalik <xarthis...@gentoo.org> +hglib-1.5.ebuild: + Version bump 31 Mar 2014; Michał Górny <mgo...@gentoo.org> hglib-1.0.ebuild: Add support for the new PyPy slotting. 1.1 dev-python/hglib/hglib-1.5.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/hglib/hglib-1.5.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/hglib/hglib-1.5.ebuild?rev=1.1&content-type=text/plain Index: hglib-1.5.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/hglib/hglib-1.5.ebuild,v 1.1 2015/01/18 01:28:56 xarthisius Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 pypy pypy2_0 ) PYTHON_REQ_USE="threads(+)" MY_P="python-${P}" MY_PN="python-${PN}" inherit distutils-r1 DESCRIPTION="Library for using the Mercurial Command Server from Python" HOMEPAGE="http://mercurial.selenic.com/" SRC_URI="mirror://pypi/p/${MY_PN}/${MY_P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="examples test" RDEPEND=">=dev-vcs/mercurial-2.4.2" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] test? ( dev-python/nose[${PYTHON_USEDEP}] )" S=${WORKDIR}/${MY_P} python_test() { if ! ${PYTHON} test.py; then die "Tests failed under ${EPYTHON}" fi } python_install_all() { use examples && local EXAMPLES=( examples/stats.py ) distutils-r1_python_install_all }