diff options
author | Michał Górny <mgorny@gentoo.org> | 2018-04-24 23:42:53 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2018-04-24 23:45:29 +0200 |
commit | 157a64be229bb395071681833ba986227a1226f9 (patch) | |
tree | ba37fba2e45441b9474d699652f09103d3a8729e /dev-python/markupsafe/markupsafe-1.0.ebuild | |
parent | net-mail/dbmail: add LibreSSL support (diff) | |
download | gentoo-157a64be229bb395071681833ba986227a1226f9.tar.gz gentoo-157a64be229bb395071681833ba986227a1226f9.tar.bz2 gentoo-157a64be229bb395071681833ba986227a1226f9.zip |
dev-python/markupsafe: Bump to 1.0
Diffstat (limited to 'dev-python/markupsafe/markupsafe-1.0.ebuild')
-rw-r--r-- | dev-python/markupsafe/markupsafe-1.0.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/dev-python/markupsafe/markupsafe-1.0.ebuild b/dev-python/markupsafe/markupsafe-1.0.ebuild new file mode 100644 index 000000000000..c134189e63fc --- /dev/null +++ b/dev-python/markupsafe/markupsafe-1.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_{4,5,6}} pypy{,3} ) + +inherit distutils-r1 + +MY_PN="MarkupSafe" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Implements a XML/HTML/XHTML Markup safe string for Python" +HOMEPAGE="https://pypi.org/project/MarkupSafe" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris" +IUSE="" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="" + +S=${WORKDIR}/${MY_P} +DISTUTILS_IN_SOURCE_BUILD=1 + +python_test() { + esetup.py test +} |