diff options
author | Michał Górny <mgorny@gentoo.org> | 2021-10-17 11:02:27 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2021-10-17 11:02:27 +0200 |
commit | 904a0b9a5ed8081ee33ec4f8d0bab6788d2e783e (patch) | |
tree | 324aa6beb3483eaf39683979ea83e48fc4af3ce3 /dev-python/markdown | |
parent | dev-python/lmfit: Remove old (diff) | |
download | gentoo-904a0b9a5ed8081ee33ec4f8d0bab6788d2e783e.tar.gz gentoo-904a0b9a5ed8081ee33ec4f8d0bab6788d2e783e.tar.bz2 gentoo-904a0b9a5ed8081ee33ec4f8d0bab6788d2e783e.zip |
dev-python/markdown: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/markdown')
-rw-r--r-- | dev-python/markdown/Manifest | 1 | ||||
-rw-r--r-- | dev-python/markdown/markdown-2.6.11.ebuild | 33 |
2 files changed, 0 insertions, 34 deletions
diff --git a/dev-python/markdown/Manifest b/dev-python/markdown/Manifest index 1664e656113a..83edaf19986b 100644 --- a/dev-python/markdown/Manifest +++ b/dev-python/markdown/Manifest @@ -1,2 +1 @@ -DIST Markdown-2.6.11.tar.gz 274132 BLAKE2B 0d14d308c97d925db83d71f3b9be5622e77ee4a159fced15c811390b39950e81bff9ffc567f32e878cbc44014640ab0a2f596258cfd0dce6b66029105cec7370 SHA512 4e7dd3e04f181fa2751a359aede301fb29a23b9af74867ff9d1d0fdd051dcd16d04a5891e37aff0b309649c5fd13363802ec7e10fc33896e9453991efcab4a66 DIST Markdown-3.3.4.tar.gz 322192 BLAKE2B 37122305112440b85d7f0e5e1bf90bafe15a8bcb84e8d8bdd9b4183dcb4be1010d287450062bab7dc9017d8e618f84a8245e6fd35f8204e5e2ece14d302fb13b SHA512 37422619dd8f542bfcf7975c92e76a39e4eeeb42386727d52037869cee1617f8efcb74a382a9c7cb903907ebf3643a27ba0de583bc0dbd327a36e72bbf8520af diff --git a/dev-python/markdown/markdown-2.6.11.ebuild b/dev-python/markdown/markdown-2.6.11.ebuild deleted file mode 100644 index c52e5e760917..000000000000 --- a/dev-python/markdown/markdown-2.6.11.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_7 python3_8 pypy3 ) - -inherit distutils-r1 - -DESCRIPTION="Python implementation of the markdown markup language" -HOMEPAGE=" - https://python-markdown.github.io/ - https://pypi.org/project/Markdown/ - https://github.com/Python-Markdown/markdown" -SRC_URI="mirror://pypi/M/${PN^}/${P^}.tar.gz" - -LICENSE="|| ( BSD GPL-2 )" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" -IUSE="doc" -RESTRICT="test" - -S="${WORKDIR}/${P^}" - -python_compile_all() { - if use doc; then - esetup.py build_docs - HTML_DOCS=( "${BUILD_DIR}"/docs/. ) - - # remove .txt files - find "${BUILD_DIR}"/docs -name '*.txt' -delete || die - fi -} |