Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/markdown/
Date: Sun, 01 Apr 2018 21:55:24
Message-Id: 1522619609.917f5fbf453e189c7a6085dae3094670aa3a138e.monsieurp@gentoo
1 commit: 917f5fbf453e189c7a6085dae3094670aa3a138e
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 31 21:38:11 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 1 21:53:29 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=917f5fbf
7
8 dev-python/markdown: version bump.
9
10 Closes: https://bugs.gentoo.org/636872
11 Package-Manager: Portage-2.3.19, Repoman-2.3.6
12
13 dev-python/markdown/Manifest | 1 +
14 dev-python/markdown/markdown-2.6.9.ebuild | 54 +++++++++++++++++++++++++++++++
15 2 files changed, 55 insertions(+)
16
17 diff --git a/dev-python/markdown/Manifest b/dev-python/markdown/Manifest
18 index a966acaeeda..a2e10943bf9 100644
19 --- a/dev-python/markdown/Manifest
20 +++ b/dev-python/markdown/Manifest
21 @@ -1,2 +1,3 @@
22 DIST Markdown-2.6.5.tar.gz 301781 BLAKE2B 527a84bc8c4a891e64749bce273bf10c439376386c27355f386de8a0dd89e2bf0c1d6cadb0ff937fa3825655ab6220901f7b17ea2d184f3b3d178cbb54af58b8 SHA512 d966136a7184ada4eec70af661aba441694a8c4f59e57d59a28dfbc1649ca1e90cc1e4a29b354b3caf35362e1e0c96eeb3f46c68f82d7a898b76c08866d459d3
23 DIST Markdown-2.6.8.tar.gz 307330 BLAKE2B 6867f15425bd84bc030ab52000dc2f83bff0c9885854cec4a2a785f80b18129160bc57da30226fe17f42043b4938482e2e4eff9cdb3d4370b0146cc09f1ff576 SHA512 85c1a16ebb50af79f378eb2fa936342df6174a4f597a74fee6d0495ef2bc4c7c8337463799e427cb6788b3429e400309958b5c4784f536593047ab2e47ac7c23
24 +DIST Markdown-2.6.9.tar.gz 271564 BLAKE2B 792e438955a55de9f473107618516d17129caa4d02097d510992d25715a4f28aae005781b3a2e4fe53692bc12e96ab49008b66ff49247bf1685bac4c7607e0b6 SHA512 d00c800dc7c1ae0753cbcddd755ade7d593a8d9c9d4ffc6eb8765233a44027a75b68948c14b4469d7aa0e7f74029e9f60159d81ed40b3d2e770c68a81533ccfa
25
26 diff --git a/dev-python/markdown/markdown-2.6.9.ebuild b/dev-python/markdown/markdown-2.6.9.ebuild
27 new file mode 100644
28 index 00000000000..f30420fc6e3
29 --- /dev/null
30 +++ b/dev-python/markdown/markdown-2.6.9.ebuild
31 @@ -0,0 +1,54 @@
32 +# Copyright 1999-2018 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Python implementation of the markdown markup language"
42 +HOMEPAGE="
43 + http://www.freewisdom.org/projects/python-markdown
44 + https://pypi.python.org/pypi/Markdown
45 + https://pythonhosted.org/Markdown/
46 + https://github.com/waylan/Python-Markdown"
47 +SRC_URI="mirror://pypi/M/${PN^}/${P^}.tar.gz"
48 +
49 +LICENSE="|| ( BSD GPL-2 )"
50 +SLOT="0"
51 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
52 +IUSE="doc test pygments"
53 +
54 +DEPEND="
55 + test? (
56 + dev-python/nose[${PYTHON_USEDEP}]
57 + dev-python/pyyaml[${PYTHON_USEDEP}]
58 + dev-python/pygments[${PYTHON_USEDEP}]
59 + dev-python/pytidylib[${PYTHON_USEDEP}]
60 + )"
61 +# source cites pytidylib however from testruns it appears optional
62 +RDEPEND="pygments? ( dev-python/pygments[${PYTHON_USEDEP}] )"
63 +
64 +S="${WORKDIR}/${P^}"
65 +
66 +PATCHES=(
67 + # build system always builds docs
68 + "${FILESDIR}"/${PN}-2.6.8-dont-build-docs-default.patch
69 +)
70 +
71 +python_compile_all() {
72 + if use doc; then
73 + esetup.py build_docs
74 + HTML_DOCS=( "${BUILD_DIR}"/docs/. )
75 +
76 + # remove .txt files
77 + find "${BUILD_DIR}"/docs -name '*.txt' -delete || die
78 + fi
79 +}
80 +
81 +python_test() {
82 + cp -r -l run-tests.py tests "${BUILD_DIR}"/ || die
83 + cd "${BUILD_DIR}" || die
84 + "${EPYTHON}" run-tests.py || die "Tests fail with ${EPYTHON}"
85 +}