mgorny 14/12/25 19:59:44 Modified: ChangeLog Added: dap-2.2.6.7-r1.ebuild Log: Convert to distutils-r1. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Revision Changes Path 1.12 dev-python/dap/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dap/ChangeLog?rev=1.12&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dap/ChangeLog?rev=1.12&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dap/ChangeLog?r1=1.11&r2=1.12 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/dap/ChangeLog,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- ChangeLog 2 Aug 2012 18:17:15 -0000 1.11 +++ ChangeLog 25 Dec 2014 19:59:44 -0000 1.12 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/dap -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/dap/ChangeLog,v 1.11 2012/08/02 18:17:15 bicatali Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/dap/ChangeLog,v 1.12 2014/12/25 19:59:44 mgorny Exp $ + +*dap-2.2.6.7-r1 (25 Dec 2014) + + 25 Dec 2014; Michał Górny <mgo...@gentoo.org> +dap-2.2.6.7-r1.ebuild: + Convert to distutils-r1. 02 Aug 2012; Sébastien Fabbro <bicat...@gentoo.org> dap-2.2.6.7.ebuild: Keyword amd64-linux and x86-linux 1.1 dev-python/dap/dap-2.2.6.7-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dap/dap-2.2.6.7-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dap/dap-2.2.6.7-r1.ebuild?rev=1.1&content-type=text/plain Index: dap-2.2.6.7-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/dap/dap-2.2.6.7-r1.ebuild,v 1.1 2014/12/25 19:59:44 mgorny Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) inherit distutils-r1 DESCRIPTION="Data Access Protocol client and server" HOMEPAGE="http://pydap.org http://pypi.python.org/pypi/dap http://pypi.python.org/pypi/Pydap" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" IUSE="server" RDEPEND="dev-python/httplib2[${PYTHON_USEDEP}] server? ( dev-python/cheetah[${PYTHON_USEDEP}] dev-python/paste[${PYTHON_USEDEP}] dev-python/pastedeploy[${PYTHON_USEDEP}] dev-python/pastescript[${PYTHON_USEDEP}] )" DEPEND="${RDEPEND} dev-python/setuptools[${PYTHON_USEDEP}]" DOCS=( docs/bugs docs/Changelog docs/history README TODO ) src_prepare() { sed -e "s/'dap.plugins'/'dap', 'dap.plugins'/" -i setup.py || die "sed failed" distutils-r1_src_prepare }