Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/markdown/
Date: Fri, 05 Jan 2018 09:36:54
Message-Id: 1515144998.c8276f4d32a69206f48acd5e0130270c6343c36c.mgorny@gentoo
1 commit: c8276f4d32a69206f48acd5e0130270c6343c36c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 4 23:31:47 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 5 09:36:38 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8276f4d
7
8 dev-python/markdown: Clean old up
9
10 dev-python/markdown/Manifest | 1 -
11 dev-python/markdown/markdown-2.6.1.ebuild | 44 -------------------------------
12 2 files changed, 45 deletions(-)
13
14 diff --git a/dev-python/markdown/Manifest b/dev-python/markdown/Manifest
15 index 19cd1324970..a966acaeeda 100644
16 --- a/dev-python/markdown/Manifest
17 +++ b/dev-python/markdown/Manifest
18 @@ -1,3 +1,2 @@
19 -DIST Markdown-2.6.1.tar.gz 298074 BLAKE2B a02c80d34793d480a6872e304ade7436738bfdbb675f46225a6b6807a5e584b7132070ccc4617bce23106b53315acf1f2d933005b402fe6735179fec97d13f0b SHA512 53e11c5d4feacdb8210427da65b6b09453e8c904e86b42095a80132a4b67e926ba974458769e5227bfeaddd3bba5f6bd7ca7e3385951982ec982f63989119d78
20 DIST Markdown-2.6.5.tar.gz 301781 BLAKE2B 527a84bc8c4a891e64749bce273bf10c439376386c27355f386de8a0dd89e2bf0c1d6cadb0ff937fa3825655ab6220901f7b17ea2d184f3b3d178cbb54af58b8 SHA512 d966136a7184ada4eec70af661aba441694a8c4f59e57d59a28dfbc1649ca1e90cc1e4a29b354b3caf35362e1e0c96eeb3f46c68f82d7a898b76c08866d459d3
21 DIST Markdown-2.6.8.tar.gz 307330 BLAKE2B 6867f15425bd84bc030ab52000dc2f83bff0c9885854cec4a2a785f80b18129160bc57da30226fe17f42043b4938482e2e4eff9cdb3d4370b0146cc09f1ff576 SHA512 85c1a16ebb50af79f378eb2fa936342df6174a4f597a74fee6d0495ef2bc4c7c8337463799e427cb6788b3429e400309958b5c4784f536593047ab2e47ac7c23
22
23 diff --git a/dev-python/markdown/markdown-2.6.1.ebuild b/dev-python/markdown/markdown-2.6.1.ebuild
24 deleted file mode 100644
25 index f1817a405d0..00000000000
26 --- a/dev-python/markdown/markdown-2.6.1.ebuild
27 +++ /dev/null
28 @@ -1,44 +0,0 @@
29 -# Copyright 1999-2015 Gentoo Foundation
30 -# Distributed under the terms of the GNU General Public License v2
31 -
32 -EAPI=5
33 -PYTHON_COMPAT=( python{2_7,3_4} pypy pypy3 )
34 -
35 -inherit distutils-r1
36 -
37 -MY_PN="Markdown"
38 -MY_P=${MY_PN}-${PV}
39 -
40 -DESCRIPTION="Python implementation of the markdown markup language"
41 -HOMEPAGE="http://www.freewisdom.org/projects/python-markdown https://pypi.python.org/pypi/Markdown"
42 -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
43 -
44 -LICENSE="|| ( BSD GPL-2 )"
45 -SLOT="0"
46 -KEYWORDS="alpha amd64 arm ~arm64 ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
47 -IUSE="doc test pygments"
48 -
49 -DEPEND="test? ( dev-python/nose[${PYTHON_USEDEP}]
50 - dev-python/pyyaml[${PYTHON_USEDEP}] )"
51 -# source cites pytidylib however from testruns it appears optional
52 -RDEPEND="pygments? ( dev-python/pygments[${PYTHON_USEDEP}] )"
53 -
54 -S="${WORKDIR}/${MY_P}"
55 -
56 -python_compile_all() {
57 - use doc && esetup.py build_docs
58 -}
59 -
60 -python_test() {
61 - cp -r -l run-tests.py tests "${BUILD_DIR}"/ || die
62 - pushd "${BUILD_DIR}" > /dev/null
63 - "${PYTHON}" run-tests.py || die "Tests fail with ${EPYTHON}"
64 - popd > /dev/null
65 -}
66 -
67 -python_install_all() {
68 - # make use doc do a doc build
69 - use doc && local HTML_DOCS=( "${BUILD_DIR}"/docs/. )
70 -
71 - distutils-r1_python_install_all
72 -}