summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2017-05-02 22:31:42 +0200
committerMichał Górny <mgorny@gentoo.org>2017-05-03 08:14:50 +0200
commit07342c91c258204a43b3b99285cf7825394831d8 (patch)
tree00544d9a367e14fca527ea47ba87b52c1a0297e5 /dev-python/markups/markups-0.2.4-r1.ebuild
parentdev-python/waitress: Clean old versions up (diff)
downloadgentoo-07342c91c258204a43b3b99285cf7825394831d8.tar.gz
gentoo-07342c91c258204a43b3b99285cf7825394831d8.tar.bz2
gentoo-07342c91c258204a43b3b99285cf7825394831d8.zip
dev-python/markups: Clean old versions up
Diffstat (limited to 'dev-python/markups/markups-0.2.4-r1.ebuild')
-rw-r--r--dev-python/markups/markups-0.2.4-r1.ebuild34
1 files changed, 0 insertions, 34 deletions
diff --git a/dev-python/markups/markups-0.2.4-r1.ebuild b/dev-python/markups/markups-0.2.4-r1.ebuild
deleted file mode 100644
index 7c40377906c1..000000000000
--- a/dev-python/markups/markups-0.2.4-r1.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-PYTHON_COMPAT=( python2_7 python3_4 pypy )
-
-inherit distutils-r1
-
-MY_PN="Markups"
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="A wrapper around various text markups"
-HOMEPAGE="https://pypi.python.org/pypi/Markups"
-SRC_URI="mirror://pypi/M/${MY_PN}/${MY_P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-S="${WORKDIR}"/${MY_P}
-
-DEPEND="dev-python/markdown[${PYTHON_USEDEP}]"
-RDEPEND="${DEPEND}"
-
-python_test() {
- pushd tests > /dev/null
- for test in test_*.py ; do
- local testName="$(echo ${test} | sed 's/test_\(.*\).py/\1/g')"
- einfo "Running test '${testName}' with '${EPYTHON}'."
- ${EPYTHON} ${test} || die "Test '${testName}' with '${EPYTHON}' failed."
- done
- popd tests > /dev/null
-}