diff options
author | Michał Górny <mgorny@gentoo.org> | 2018-01-05 00:33:24 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2018-01-05 10:36:39 +0100 |
commit | c59ef5f7a86f714650ee47cab0cf67e5ad19df99 (patch) | |
tree | 899d17089c64ca39583a7c7b9e284366cf2f65e0 /dev-python/markups | |
parent | dev-python/markdown: Clean old up (diff) | |
download | gentoo-c59ef5f7a86f714650ee47cab0cf67e5ad19df99.tar.gz gentoo-c59ef5f7a86f714650ee47cab0cf67e5ad19df99.tar.bz2 gentoo-c59ef5f7a86f714650ee47cab0cf67e5ad19df99.zip |
dev-python/markups: Clean old up
Diffstat (limited to 'dev-python/markups')
-rw-r--r-- | dev-python/markups/Manifest | 2 | ||||
-rw-r--r-- | dev-python/markups/markups-0.2.4-r1.ebuild | 34 | ||||
-rw-r--r-- | dev-python/markups/markups-1.0.1.ebuild | 31 |
3 files changed, 0 insertions, 67 deletions
diff --git a/dev-python/markups/Manifest b/dev-python/markups/Manifest index db6c7eb4968d..b5d383f994d6 100644 --- a/dev-python/markups/Manifest +++ b/dev-python/markups/Manifest @@ -1,3 +1 @@ -DIST Markups-0.2.4.tar.gz 8827 BLAKE2B ac58b60afa1c1b98e5f3871fb4412e1e5c143882d5171e8a060bb5ea5ef70304bc2b00e8365f602253cd0d0f536110aac0f2972ad2d1104da18b45d2b965822e SHA512 369eda02474f723d694bc0518324afde9f5baef02719448abb420a77d58cf1543939e6d38aa1db531d4214dc4cd4c47b29d79fa7a23b33b4ae74b45ad2ec52c7 -DIST Markups-1.0.1.tar.gz 14894 BLAKE2B 4b97689573f62277d86a09cee6647ccb2e4e8e6c1e44fcf7a9c56edad58774c970c9d3c97aaa7a3564466b0633ade5cc7e81f6f29529c08c5ea2a8fa4a3729ff SHA512 f57f712f84413ed35f53643533d392e2164de02742e170f85fc4556094041ffa16ed1ff6d902bcafe996d22a4410e4c2794e4c96246fc06afbf878d6be85cf31 DIST Markups-2.0.0.tar.gz 16772 BLAKE2B 88091cbdb6dc5c7289561e4ff8d585335f13ece27ff62951d7356bb89b35e09b8eeafb960583f9dd5faa5fbe9cdb6961523a5314bca8c78e2f0f80514f28595a SHA512 8ccd348efea68678bfb7f47bd13da2729f95a5b5a8d44f11239dbb86b8224867cb1197e46d875ab9a0ba914be004bdc9aa6848b1e6549dc53b12e06040faaaae 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 -} diff --git a/dev-python/markups/markups-1.0.1.ebuild b/dev-python/markups/markups-1.0.1.ebuild deleted file mode 100644 index 745a9abcb2c7..000000000000 --- a/dev-python/markups/markups-1.0.1.ebuild +++ /dev/null @@ -1,31 +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=" - http://pythonhosted.org/Markups/ - https://github.com/retext-project/pymarkups - 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() { - ${EPYTHON} -m unittest discover -s tests -v || die -} |