diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-09-16 16:07:06 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-09-16 16:07:06 +0000 |
commit | d606a047db3b90d0cade2404f57e696eee21ea76 (patch) | |
tree | 92d7fce57f1fbdc46ef74073ea170ecc52dcaa13 /dev-python | |
parent | Allow setting CMAKE_BUILD_DIR (can be utilized in some exotic circumstances) (diff) | |
download | gentoo-2-d606a047db3b90d0cade2404f57e696eee21ea76.tar.gz gentoo-2-d606a047db3b90d0cade2404f57e696eee21ea76.tar.bz2 gentoo-2-d606a047db3b90d0cade2404f57e696eee21ea76.zip |
Version bump.
(Portage version: 2.2_rc83_p11/cvs/Linux x86_64)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/markupsafe/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/markupsafe/markupsafe-0.11.ebuild | 33 |
2 files changed, 40 insertions, 1 deletions
diff --git a/dev-python/markupsafe/ChangeLog b/dev-python/markupsafe/ChangeLog index 9cc7aef644fd..a57a9b0b3782 100644 --- a/dev-python/markupsafe/ChangeLog +++ b/dev-python/markupsafe/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/markupsafe # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/markupsafe/ChangeLog,v 1.4 2010/07/31 21:58:52 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/markupsafe/ChangeLog,v 1.5 2010/09/16 16:07:06 arfrever Exp $ + +*markupsafe-0.11 (16 Sep 2010) + + 16 Sep 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + +markupsafe-0.11.ebuild: + Version bump. 31 Jul 2010; Markos Chandras <hwoarang@gentoo.org> markupsafe-0.9.2.ebuild: diff --git a/dev-python/markupsafe/markupsafe-0.11.ebuild b/dev-python/markupsafe/markupsafe-0.11.ebuild new file mode 100644 index 000000000000..c47f71cffd75 --- /dev/null +++ b/dev-python/markupsafe/markupsafe-0.11.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/markupsafe/markupsafe-0.11.ebuild,v 1.1 2010/09/16 16:07:06 arfrever Exp $ + +EAPI="3" +SUPPORT_PYTHON_ABIS="1" +DISTUTILS_SRC_TEST="setup.py" + +inherit distutils + +MY_PN="MarkupSafe" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Implements a XML/HTML/XHTML Markup safe string for Python" +HOMEPAGE="http://pypi.python.org/pypi/MarkupSafe" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" +IUSE="" + +DEPEND="dev-python/setuptools" +RDEPEND="" + +S="${WORKDIR}/${MY_P}" + +DISTUTILS_GLOBAL_OPTIONS=("--with-speedups") + +src_install() { + distutils_src_install + python_clean_installation_image +} |