diff options
author | Justin Lecher <jlec@gentoo.org> | 2010-08-06 13:43:59 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2010-08-06 13:43:59 +0000 |
commit | f38a6a1e66c639f5a2fe12f99900440fd0f3b4cf (patch) | |
tree | 846d70652f4949d7f5df4c48305e6d7d92691a7f /media-gfx/uniconvertor | |
parent | New addition (diff) | |
download | historical-f38a6a1e66c639f5a2fe12f99900440fd0f3b4cf.tar.gz historical-f38a6a1e66c639f5a2fe12f99900440fd0f3b4cf.tar.bz2 historical-f38a6a1e66c639f5a2fe12f99900440fd0f3b4cf.zip |
Version Bump, fix for python ABIS, bug 326189 & bug 313517
Package-Manager: portage-2.2_rc67/cvs/Linux x86_64
Diffstat (limited to 'media-gfx/uniconvertor')
-rw-r--r-- | media-gfx/uniconvertor/ChangeLog | 8 | ||||
-rw-r--r-- | media-gfx/uniconvertor/uniconvertor-1.1.4.ebuild | 11 | ||||
-rw-r--r-- | media-gfx/uniconvertor/uniconvertor-1.1.5.ebuild | 39 |
3 files changed, 54 insertions, 4 deletions
diff --git a/media-gfx/uniconvertor/ChangeLog b/media-gfx/uniconvertor/ChangeLog index 18466d1e3829..c57efa6c5e18 100644 --- a/media-gfx/uniconvertor/ChangeLog +++ b/media-gfx/uniconvertor/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-gfx/uniconvertor # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/uniconvertor/ChangeLog,v 1.2 2010/01/10 14:20:36 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/uniconvertor/ChangeLog,v 1.3 2010/08/06 13:43:59 jlec Exp $ + +*uniconvertor-1.1.5 (06 Aug 2010) + + 06 Aug 2010; Justin Lecher <jlec@gentoo.org> uniconvertor-1.1.4.ebuild, + +uniconvertor-1.1.5.ebuild: + Version Bump, fix for python ABIS, 326189 &313517 *uniconvertor-1.1.4 (10 Jan 2010) diff --git a/media-gfx/uniconvertor/uniconvertor-1.1.4.ebuild b/media-gfx/uniconvertor/uniconvertor-1.1.4.ebuild index 98743163dfd2..2f479b31ab23 100644 --- a/media-gfx/uniconvertor/uniconvertor-1.1.4.ebuild +++ b/media-gfx/uniconvertor/uniconvertor-1.1.4.ebuild @@ -1,13 +1,18 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/uniconvertor/uniconvertor-1.1.4.ebuild,v 1.1 2010/01/10 14:20:36 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/uniconvertor/uniconvertor-1.1.4.ebuild,v 1.2 2010/08/06 13:43:59 jlec Exp $ EAPI=2 + +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.*" + inherit distutils MY_P=UniConvertor-${PV} -DESCRIPTION="UniConvertor - commandline tool for popular vector formats convertion." +DESCRIPTION="Commandline tool for popular vector formats convertion" HOMEPAGE="http://sk1project.org/modules.php?name=Products&product=uniconvertor" SRC_URI="http://sk1project.org/downloads/${PN}/v${PV}/${P}.tar.gz" @@ -16,7 +21,7 @@ SLOT="0" LICENSE="GPL-2 LGPL-2" IUSE="" -DEPEND="virtual/python +DEPEND=" dev-python/imaging dev-python/reportlab" diff --git a/media-gfx/uniconvertor/uniconvertor-1.1.5.ebuild b/media-gfx/uniconvertor/uniconvertor-1.1.5.ebuild new file mode 100644 index 000000000000..cab71a649b1e --- /dev/null +++ b/media-gfx/uniconvertor/uniconvertor-1.1.5.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/uniconvertor/uniconvertor-1.1.5.ebuild,v 1.1 2010/08/06 13:43:59 jlec Exp $ + +EAPI=2 + +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="2.7 3.*" + +inherit distutils + +DESCRIPTION="Commandline tool for popular vector formats convertion" +HOMEPAGE="http://sk1project.org/modules.php?name=Products&product=uniconvertor" +SRC_URI="http://uniconvertor.googlecode.com/files/${P}.tar.gz" + +KEYWORDS="~amd64 ~x86" +SLOT="0" +LICENSE="GPL-2 LGPL-2" +IUSE="" + +DEPEND=" + dev-python/imaging + dev-python/reportlab + >=media-libs/sk1libs-0.9.1" + +S=${WORKDIR}/${P} + +src_prepare() { + sed -i \ + -e "s/'GNU_GPL_v2', 'GNU_LGPL_v2', 'COPYRIGHTS',//" \ + setup.py || die + + distutils_src_prepare +} + +src_install() { + distutils_src_install +} |