diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-10-01 03:18:10 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-10-01 03:18:10 +0000 |
commit | 5986d3c3d0dcdc7a06335eee656ee8c49d9b78a2 (patch) | |
tree | ea49543279309cc22ec9e738fc8848b4ad20326a /dev-python/pysvg | |
parent | 0.6.14-r1 revbump. Install python modules in /usr/lib/calibre, including bund... (diff) | |
download | gentoo-2-5986d3c3d0dcdc7a06335eee656ee8c49d9b78a2.tar.gz gentoo-2-5986d3c3d0dcdc7a06335eee656ee8c49d9b78a2.tar.bz2 gentoo-2-5986d3c3d0dcdc7a06335eee656ee8c49d9b78a2.zip |
Version bump. Set SUPPORT_PYTHON_ABIS.
(Portage version: 14469-svn/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/pysvg')
-rw-r--r-- | dev-python/pysvg/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/pysvg/pysvg-0.2.0.ebuild | 34 |
2 files changed, 41 insertions, 1 deletions
diff --git a/dev-python/pysvg/ChangeLog b/dev-python/pysvg/ChangeLog index 0ef824d5a059..7b6a599a85ef 100644 --- a/dev-python/pysvg/ChangeLog +++ b/dev-python/pysvg/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/pysvg # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvg/ChangeLog,v 1.3 2009/09/04 18:44:52 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvg/ChangeLog,v 1.4 2009/10/01 03:18:10 arfrever Exp $ + +*pysvg-0.2.0 (01 Oct 2009) + + 01 Oct 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + +pysvg-0.2.0.ebuild: + Version bump. Set SUPPORT_PYTHON_ABIS. 04 Sep 2009; Patrick Lauer <patrick@gentoo.org> -pysvg-0.1.5.ebuild: Remove old diff --git a/dev-python/pysvg/pysvg-0.2.0.ebuild b/dev-python/pysvg/pysvg-0.2.0.ebuild new file mode 100644 index 000000000000..915dbd595c2d --- /dev/null +++ b/dev-python/pysvg/pysvg-0.2.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvg/pysvg-0.2.0.ebuild,v 1.1 2009/10/01 03:18:10 arfrever Exp $ + +EAPI="2" +SUPPORT_PYTHON_ABIS="1" + +inherit distutils + +MY_PN="pySVG" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Python SVG document creation library" +HOMEPAGE="http://codeboje.de/pysvg/" +SRC_URI="http://www.codeboje.de/downloads/${MY_P}.zip" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND="app-arch/unzip" +RDEPEND="" +RESTRICT_PYTHON_ABIS="3.*" + +S="${WORKDIR}/${MY_PN}" + +pkg_postinst() { + distutils_pkg_postinst + + ewarn "If you want to use pysvg to make a profit or in a corporate environment," + ewarn "then contact Kerim Mansour <kmansour@web.de>." + ebeep 6 +} |