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/commonmark/
Date: Thu, 18 Oct 2018 16:39:47
Message-Id: 1539880774.94678f1f004f26d6a0ae006433a9eadf841532ea.mgorny@gentoo
1 commit: 94678f1f004f26d6a0ae006433a9eadf841532ea
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 18 16:17:12 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 18 16:39:34 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94678f1f
7
8 dev-python/commonmark: Bump to 0.8.1
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/commonmark/Manifest | 1 +
13 dev-python/commonmark/commonmark-0.8.1.ebuild | 43 +++++++++++++++++++++++++++
14 2 files changed, 44 insertions(+)
15
16 diff --git a/dev-python/commonmark/Manifest b/dev-python/commonmark/Manifest
17 index 5c0753d322e..bfc2e44e1c6 100644
18 --- a/dev-python/commonmark/Manifest
19 +++ b/dev-python/commonmark/Manifest
20 @@ -1,2 +1,3 @@
21 DIST CommonMark-0.5.4.tar.gz 120316 BLAKE2B 47904d101d9d0e3759f82c28a4b80edfc0ed12cf0888e4915339118e496322cf0791d8a46d2edddca0d1794e82a9647cc22cbcfcc2d385a740c7c31cb8251659 SHA512 1983714a50a627f30f86af0d02dad9e52cb7b0ffce29691d0e740f587e599ead6de2412d72b895b7df772e1c81e171e56dfecaf593e611af65bd5798632a98ad
22 DIST CommonMark-0.7.5.tar.gz 88702 BLAKE2B fc80d9e739d27f7e5dbf539b624c2fc2e700e61b17d0335c3234fc0fa0d3738e9117a8ca29e7a6bbaa6cd0d58b112defb6e19a7efce3ca57ca25c8ce67b2d3d2 SHA512 b0e3c4fea6c99b51c541054ecfe887935c2cc517a82df86da1d9cb4914189652326ec5b543cbbcb40ec43e5e09c285c47f5304ca1907764692e659c540591bdd
23 +DIST commonmark-0.8.1.tar.gz 90795 BLAKE2B 718c2b1af035672d74e2c6b6f89ea0cd23f45d7b0e47b6dadeef742d772f5458e08ec5f69fd4f34df9ab2c491d9d7add4c4acc7018c4048649aa0d8244d7db91 SHA512 dbab51d45c1973a8d0906148d785fb8ddc2b52177dfe0e69fe79bef2a5eb05a5a7ab8693852f4aaa8545af19d741569d04a24f06ea65171e6e80d9f66af47fdf
24
25 diff --git a/dev-python/commonmark/commonmark-0.8.1.ebuild b/dev-python/commonmark/commonmark-0.8.1.ebuild
26 new file mode 100644
27 index 00000000000..68e34aca47d
28 --- /dev/null
29 +++ b/dev-python/commonmark/commonmark-0.8.1.ebuild
30 @@ -0,0 +1,43 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6,3_7} )
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Python parser for the CommonMark Markdown spec"
40 +HOMEPAGE="https://github.com/rtfd/CommonMark-py"
41 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 +
43 +LICENSE="BSD"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
46 +IUSE="test"
47 +
48 +RDEPEND="
49 + dev-python/future[${PYTHON_USEDEP}]
50 +"
51 +DEPEND="${RDEPEND}
52 + test? (
53 + >=dev-python/hypothesis-3.7.1[${PYTHON_USEDEP}]
54 + )
55 + dev-python/setuptools[${PYTHON_USEDEP}]
56 +"
57 +
58 +python_test() {
59 + PYTHONIOENCODING='utf8' \
60 + esetup.py test
61 +}
62 +
63 +src_prepare() {
64 + default
65 + # Fix file collision with app-text/cmark, see bug #627034
66 + sed -i -e "s:'cmark\( = commonmark.cmark\:main'\):'cmark.py\1:" \
67 + setup.py || die
68 +}
69 +
70 +pkg_postinst() {
71 + ewarn "/usr/bin/cmark has been renamed to /usr/bin/cmark.py due file"
72 + ewarn "collision with app-text/cmark (see bug #627034)"
73 +}