diff options
author | 2014-12-23 15:51:50 +0000 | |
---|---|---|
committer | 2014-12-23 15:51:50 +0000 | |
commit | 62a1f83a2e1ab7dc84996a38038768fca860ca83 (patch) | |
tree | 0b2cc2cd6827179c72dca9e81853d2bb267663aa /app-portage | |
parent | Add HTS547575A9E384, provided by Olexandr Burlaka, https://bugs.funtoo.org/br... (diff) | |
download | gentoo-2-62a1f83a2e1ab7dc84996a38038768fca860ca83.tar.gz gentoo-2-62a1f83a2e1ab7dc84996a38038768fca860ca83.tar.bz2 gentoo-2-62a1f83a2e1ab7dc84996a38038768fca860ca83.zip |
app-portage/tatt: Move to git-r3; fix python eclass usage
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/tatt/ChangeLog | 5 | ||||
-rw-r--r-- | app-portage/tatt/metadata.xml | 24 | ||||
-rw-r--r-- | app-portage/tatt/tatt-9999.ebuild | 19 |
3 files changed, 23 insertions, 25 deletions
diff --git a/app-portage/tatt/ChangeLog b/app-portage/tatt/ChangeLog index 0193569b2a6f..0ec66fb73855 100644 --- a/app-portage/tatt/ChangeLog +++ b/app-portage/tatt/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-portage/tatt # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/tatt/ChangeLog,v 1.7 2014/04/28 19:48:47 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/tatt/ChangeLog,v 1.8 2014/12/23 15:51:50 jlec Exp $ + + 23 Dec 2014; Justin Lecher <jlec@gentoo.org> tatt-9999.ebuild, metadata.xml: + Move to git-r3; fix python eclass usage 28 Apr 2014; Sébastien Fabbro <bicatali@gentoo.org> tatt-0.1.ebuild: Keyword ~amd64-linux ~x86-linux diff --git a/app-portage/tatt/metadata.xml b/app-portage/tatt/metadata.xml index bd992d9ca960..4e940181df04 100644 --- a/app-portage/tatt/metadata.xml +++ b/app-portage/tatt/metadata.xml @@ -1,18 +1,18 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> -<maintainer> - <email>tomka@gentoo.org</email> - <name>Thomas Kahle</name> -</maintainer> -<maintainer> - <email>fauli@gentoo.org</email> - <name>Christian Faulhammer</name> -</maintainer> -<use> - <flag name="templates">Install template scripts to be used with tatt</flag> -</use> -<longdescription lang="en"> + <maintainer> + <email>tomka@gentoo.org</email> + <name>Thomas Kahle</name> + </maintainer> + <maintainer> + <email>fauli@gentoo.org</email> + <name>Christian Faulhammer</name> + </maintainer> + <use> + <flag name="templates">Install template scripts to be used with tatt</flag> + </use> + <longdescription lang="en"> Tatt arch testing tool can be use to automatically generate scripts for various boring tasks during arch work. It aims at developers. If you are a normal user you will not need tatt. </longdescription> diff --git a/app-portage/tatt/tatt-9999.ebuild b/app-portage/tatt/tatt-9999.ebuild index 7dae1392b7cc..b61e03abaf7e 100644 --- a/app-portage/tatt/tatt-9999.ebuild +++ b/app-portage/tatt/tatt-9999.ebuild @@ -1,15 +1,14 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 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.7 2013/06/10 14:01:05 tomka Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/tatt/tatt-9999.ebuild,v 1.8 2014/12/23 15:51:50 jlec Exp $ EAPI=5 -#configobj does not support python-3 -PYTHON_COMPAT=( python2_6 python2_7 ) +PYTHON_COMPAT=( python2_7 python3_{3,4} ) -inherit distutils-r1 git-2 +inherit distutils-r1 git-r3 -DESCRIPTION="tatt is an arch testing tool" +DESCRIPTION="arch testing tool" HOMEPAGE="http://github.com/tom111/tatt" EGIT_REPO_URI="https://github.com/tom111/tatt.git \ git://github.com/tom111/tatt.git" @@ -20,17 +19,13 @@ KEYWORDS="" IUSE="+templates" RDEPEND=" - ${PYTHON_DEPS} app-portage/eix app-portage/gentoolkit www-client/pybugz - dev-python/configobj" -DEPEND=" - ${RDEPEND} + dev-python/configobj[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} dev-python/setuptools[${PYTHON_USEDEP}]" -S="${WORKDIR}/${PN}" - python_install_all() { distutils-r1_python_install_all if use templates; then |