diff options
author | 2011-09-13 13:54:56 +0000 | |
---|---|---|
committer | 2011-09-13 13:54:56 +0000 | |
commit | fda5b8824f9cfcfbc43e0b9c45670d7fab805df9 (patch) | |
tree | 31b9b471662cbc13d01b6b3254cf48ce858cdef0 /app-portage | |
parent | Fix building with libpng15 wrt #378335 by Diego Elio Pettenò (diff) | |
download | gentoo-2-fda5b8824f9cfcfbc43e0b9c45670d7fab805df9.tar.gz gentoo-2-fda5b8824f9cfcfbc43e0b9c45670d7fab805df9.tar.bz2 gentoo-2-fda5b8824f9cfcfbc43e0b9c45670d7fab805df9.zip |
Fixing python dependencies and use git-2.eclass (Bug 382767)
(Portage version: 2.1.10.15/cvs/Linux i686)
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/tatt/ChangeLog | 7 | ||||
-rw-r--r-- | app-portage/tatt/tatt-9999.ebuild | 9 |
2 files changed, 10 insertions, 6 deletions
diff --git a/app-portage/tatt/ChangeLog b/app-portage/tatt/ChangeLog index 7b7427302ce3..c8858b0073f3 100644 --- a/app-portage/tatt/ChangeLog +++ b/app-portage/tatt/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-portage/tatt -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/tatt/ChangeLog,v 1.2 2010/12/03 17:15:55 tomka Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-portage/tatt/ChangeLog,v 1.3 2011/09/13 13:54:56 tomka Exp $ + + 13 Sep 2011; Thomas Kahle <tomka@gentoo.org> tatt-9999.ebuild: + Fixing python dependencies and use git-2.eclass (Bug 382767) 03 Dec 2010; Thomas Kahle <tomka@gentoo.org> tatt-9999.ebuild, metadata.xml: install templates, update metadata diff --git a/app-portage/tatt/tatt-9999.ebuild b/app-portage/tatt/tatt-9999.ebuild index eed294ff8419..ecb24c7cd394 100644 --- a/app-portage/tatt/tatt-9999.ebuild +++ b/app-portage/tatt/tatt-9999.ebuild @@ -1,11 +1,12 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/tatt/tatt-9999.ebuild,v 1.3 2010/12/03 17:18:33 tomka Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/tatt/tatt-9999.ebuild,v 1.4 2011/09/13 13:54:56 tomka Exp $ EAPI="2" SUPPORT_PYTHON_ABIS="1" +PYTHON_DEPEND="2:2.6" -inherit distutils git +inherit distutils git-2 DESCRIPTION="tatt is an arch testing tool" HOMEPAGE="http://github.com/tom111/tatt" @@ -23,7 +24,7 @@ RDEPEND="app-portage/eix dev-python/configobj" #configobj does not support python-3 -RESTRICT_PYTHON_ABIS="3.*" +RESTRICT_PYTHON_ABIS="2.[45] 3.*" S="${WORKDIR}/${PN}" |