diff options
author | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-02-11 04:11:50 +0000 |
---|---|---|
committer | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-02-11 04:11:50 +0000 |
commit | bdf02f3d9780cb84443e3b9580cdf16fbbeb7b13 (patch) | |
tree | 5abdb9c47573ac6911bfa03c7388c820bf66a455 /dev-util/itstool | |
parent | Add Mendeley-EULA to EULA, needed for sci-misc/mendeleydesktop (diff) | |
download | gentoo-2-bdf02f3d9780cb84443e3b9580cdf16fbbeb7b13.tar.gz gentoo-2-bdf02f3d9780cb84443e3b9580cdf16fbbeb7b13.tar.bz2 gentoo-2-bdf02f3d9780cb84443e3b9580cdf16fbbeb7b13.zip |
Bump, improves error handling.
(Portage version: 2.2.0_alpha85/cvs/Linux x86_64)
Diffstat (limited to 'dev-util/itstool')
-rw-r--r-- | dev-util/itstool/ChangeLog | 8 | ||||
-rw-r--r-- | dev-util/itstool/itstool-1.1.2.ebuild | 32 |
2 files changed, 39 insertions, 1 deletions
diff --git a/dev-util/itstool/ChangeLog b/dev-util/itstool/ChangeLog index 688e8591740e..c18a0adaa1cd 100644 --- a/dev-util/itstool/ChangeLog +++ b/dev-util/itstool/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-util/itstool # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/itstool/ChangeLog,v 1.5 2012/01/14 16:50:00 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/itstool/ChangeLog,v 1.6 2012/02/11 04:11:50 tetromino Exp $ + +*itstool-1.1.2 (11 Feb 2012) + + 11 Feb 2012; Alexandre Rostovtsev <tetromino@gentoo.org> + +itstool-1.1.2.ebuild: + Bump, improves error handling. 14 Jan 2012; Markus Meier <maekke@gentoo.org> itstool-1.1.1.ebuild: x86 stable, bug #393007 diff --git a/dev-util/itstool/itstool-1.1.2.ebuild b/dev-util/itstool/itstool-1.1.2.ebuild new file mode 100644 index 000000000000..79898affb53e --- /dev/null +++ b/dev-util/itstool/itstool-1.1.2.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/itstool/itstool-1.1.2.ebuild,v 1.1 2012/02/11 04:11:50 tetromino Exp $ + +EAPI="4" +PYTHON_USE_WITH="xml" +PYTHON_DEPEND="2:2.5" + +inherit python + +DESCRIPTION="Translation tool for XML documents that uses gettext files and ITS rules" +HOMEPAGE="http://itstool.org/" +SRC_URI="http://files.itstool.org/itstool/${P}.tar.bz2" + +# files in /usr/share/itstool/its are as-is +LICENSE="GPL-3 as-is" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-libs/libxml2[python]" +DEPEND="${RDEPEND}" + +pkg_setup() { + DOCS=(ChangeLog NEWS) # AUTHORS, README are empty + python_set_active_version 2 + python_pkg_setup +} + +src_prepare() { + python_convert_shebangs -r 2 . +} |