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 1F8A21382C5 for ; Mon, 5 Apr 2021 07:36:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 38526E0886; Mon, 5 Apr 2021 07:36:41 +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 ACB98E0880 for ; Mon, 5 Apr 2021 07:36:39 +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 292CB335CEF for ; Mon, 5 Apr 2021 07:36:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 84492640 for ; Mon, 5 Apr 2021 07:36:36 +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: <1617607464.296be14c20fdda6dcdcc01046b40f25897eb262a.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/exdown/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/exdown/Manifest dev-python/exdown/exdown-0.8.8.ebuild X-VCS-Directories: dev-python/exdown/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 296be14c20fdda6dcdcc01046b40f25897eb262a X-VCS-Branch: master Date: Mon, 5 Apr 2021 07:36:36 +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: e08dde83-30ee-4476-8fe0-b97f2edb55f4 X-Archives-Hash: 030bb9dadd97a09412229512ef284852 commit: 296be14c20fdda6dcdcc01046b40f25897eb262a Author: Michał Górny gentoo org> AuthorDate: Mon Apr 5 07:24:24 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Apr 5 07:24:24 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=296be14c dev-python/exdown: Bump to 0.8.8 Signed-off-by: Michał Górny gentoo.org> dev-python/exdown/Manifest | 1 + dev-python/exdown/exdown-0.8.8.ebuild | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/dev-python/exdown/Manifest b/dev-python/exdown/Manifest index 92b9f5747a0..d7c1439034f 100644 --- a/dev-python/exdown/Manifest +++ b/dev-python/exdown/Manifest @@ -1 +1,2 @@ DIST exdown-0.8.6.tar.gz 5480 BLAKE2B fe383a2092691afdb2a3fd8cfeffb78f62b23bd4dc8f8d5365102084acc8670c9f2bc3e4a0ade95a50ceffc5cc142c39dbd3e505678a238d6f39b82f6553071a SHA512 28cd68ed99d24c79a7764f7603242f2b1426f119864d39424b1326cecc5bc922ed610133099e7d03d384c485f4f67d1fefcaadee4e1f69ac8ece08136eb858e9 +DIST exdown-0.8.8.tar.gz 5523 BLAKE2B b53f23ebf133ad75973298b9b98c3f85f63802a9a302e92dda1446f0d686ba4eecd4fa72056d331b6e6caca5e066ec032a31fbfa3e74c1dba39ed007cf116480 SHA512 f5ef32b15720091c459110d6c9644b8dfcc84f6fd117f8433380704e93848cac0c9a3709d879bc42561474dd46b2035bc2be2f7e0bb5207a40ceb26ce4577b4a diff --git a/dev-python/exdown/exdown-0.8.8.ebuild b/dev-python/exdown/exdown-0.8.8.ebuild new file mode 100644 index 00000000000..d8894682f3e --- /dev/null +++ b/dev-python/exdown/exdown-0.8.8.ebuild @@ -0,0 +1,25 @@ +# Copyright 2019-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DISTUTILS_USE_SETUPTOOLS=pyproject.toml +PYTHON_COMPAT=( python3_{7..9} ) + +inherit distutils-r1 virtualx + +DESCRIPTION="Extract code blocks from markdown" +HOMEPAGE="https://github.com/nschloe/exdown" +SRC_URI="https://github.com/nschloe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + $(python_gen_cond_dep ' + dev-python/importlib_metadata[${PYTHON_USEDEP}] + ' python3_7) +" + +distutils_enable_tests pytest