From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 22165138359 for ; Tue, 20 Oct 2020 02:50:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 540A1E0872; Tue, 20 Oct 2020 02:50:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 36CE2E0872 for ; Tue, 20 Oct 2020 02:50:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EED80340CE1 for ; Tue, 20 Oct 2020 02:50:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 88EA43B1 for ; Tue, 20 Oct 2020 02:50:19 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1603162213.6582df16864bc707a1d2e801198cfb4ea5588928.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/markdown2/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/markdown2/Manifest dev-python/markdown2/markdown2-2.3.10.ebuild X-VCS-Directories: dev-python/markdown2/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 6582df16864bc707a1d2e801198cfb4ea5588928 X-VCS-Branch: master Date: Tue, 20 Oct 2020 02:50:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 1fd71e6d-1fa1-44f8-95b2-910c5b9addfd X-Archives-Hash: fbe0b25a56ce3ad8f58659ce589c56f6 commit: 6582df16864bc707a1d2e801198cfb4ea5588928 Author: Michał Górny gentoo org> AuthorDate: Tue Oct 20 02:23:37 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Oct 20 02:50:13 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6582df16 dev-python/markdown2: Bump to 2.3.10 Signed-off-by: Michał Górny gentoo.org> dev-python/markdown2/Manifest | 1 + dev-python/markdown2/markdown2-2.3.10.ebuild | 30 ++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/dev-python/markdown2/Manifest b/dev-python/markdown2/Manifest index 270b69b6c1a..24c69a1f829 100644 --- a/dev-python/markdown2/Manifest +++ b/dev-python/markdown2/Manifest @@ -1 +1,2 @@ +DIST markdown2-2.3.10.tar.gz 102543 BLAKE2B 78c20c0b183c90d2f7e0a3e92660619761f1cd754bf3f142e5d6e29736242fb847e1ab4e4aa316378a8943912bd3a0270c0f26cfe74cf224969974ad1632cf77 SHA512 0d695cae9e131930ef67b0f389e0c14b062ddd009e441ec8b70553e4a71d7f4a0ec63f9e039624059c3fe09ad37480e3ddafcf31ffa1b031be26490c6b6b89c4 DIST markdown2-2.3.9.tar.gz 101067 BLAKE2B 4b1ba9e90e2cd370edaff4d61bec9182ca30952351274c4aa508e2e3573a79bac7ab70a1d29d279eb2a94da56a823222a9413b0f3f871f3bd2dfb2ed60621158 SHA512 1be193b27efff9bd084da94cf4121fc91cffda57165333ac644a4ad31b33da62bcda1df0fdb450a02421c0199484de5d6b65131a0afe2dd941c52a3f81bb218d diff --git a/dev-python/markdown2/markdown2-2.3.10.ebuild b/dev-python/markdown2/markdown2-2.3.10.ebuild new file mode 100644 index 00000000000..9ed8c181099 --- /dev/null +++ b/dev-python/markdown2/markdown2-2.3.10.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} ) + +inherit distutils-r1 + +DESCRIPTION="Python Markdown language reimplementation" +SRC_URI="mirror://pypi/m/markdown2/${P}.tar.gz" +HOMEPAGE="https://github.com/trentm/python-markdown2" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux" + +RDEPEND="dev-python/pygments[${PYTHON_USEDEP}]" + +distutils_enable_tests unittest + +src_test() { + cd test || die + distutils-r1_src_test +} + +python_test() { + "${EPYTHON}" -m unittest test_markdown2.py -v || + die "Tests fail with ${EPYTHON}" +}