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 B93A6138350 for ; Fri, 24 Jan 2020 06:54:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C2B25E081E; Fri, 24 Jan 2020 06:54:47 +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 A573DE081E for ; Fri, 24 Jan 2020 06:54:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 4A3D734E238 for ; Fri, 24 Jan 2020 06:54:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B0AC1F0 for ; Fri, 24 Jan 2020 06:54:44 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1579848872.4a47365989b6428ebe90ae87268b3b9adc072399.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/markdown/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/markdown/markdown-3.1.1-r1.ebuild X-VCS-Directories: dev-python/markdown/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 4a47365989b6428ebe90ae87268b3b9adc072399 X-VCS-Branch: master Date: Fri, 24 Jan 2020 06:54:44 +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: 627897ad-36aa-4660-b8fd-ff33b41f6665 X-Archives-Hash: ea401459c644809af48b277712759d4e commit: 4a47365989b6428ebe90ae87268b3b9adc072399 Author: Andrew Ammerlaan riseup net> AuthorDate: Wed Jan 22 09:58:56 2020 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Fri Jan 24 06:54:32 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a473659 dev-python/markdown: Fix USE=doc Add py3_{7,8} Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Andrew Ammerlaan riseup.net> Closes: https://github.com/gentoo/gentoo/pull/14345 Signed-off-by: Joonas Niilola gentoo.org> dev-python/markdown/markdown-3.1.1-r1.ebuild | 38 ++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/dev-python/markdown/markdown-3.1.1-r1.ebuild b/dev-python/markdown/markdown-3.1.1-r1.ebuild new file mode 100644 index 00000000000..2f068d7276e --- /dev/null +++ b/dev-python/markdown/markdown-3.1.1-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} pypy3 ) + +DISTUTILS_USE_SETUPTOOLS=rdepend + +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" + +IUSE="doc" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" + +DEPEND="test? ( + dev-python/pygments[${PYTHON_USEDEP}] + dev-python/pytidylib[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] )" + +S="${WORKDIR}/${P^}" + +distutils_enable_tests pytest + +python_install_all() { + use doc && dodoc -r docs/ + + distutils-r1_python_install_all +}