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 E46D113835A for ; Fri, 30 Oct 2020 17:23:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 06B8BE084A; Fri, 30 Oct 2020 17:23:28 +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 E26E9E084A for ; Fri, 30 Oct 2020 17:23:27 +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 DC2CC340D1B for ; Fri, 30 Oct 2020 17:23:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 859CE3D2 for ; Fri, 30 Oct 2020 17:23:25 +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: <1604078602.7c5b8d43b61e2dfc2d8ba2608743e7ada698cfbc.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/elementpath/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/elementpath/Manifest dev-python/elementpath/elementpath-2.0.4.ebuild X-VCS-Directories: dev-python/elementpath/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 7c5b8d43b61e2dfc2d8ba2608743e7ada698cfbc X-VCS-Branch: master Date: Fri, 30 Oct 2020 17:23:25 +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: 80bfb511-4ca7-438d-a740-0bbddce26d81 X-Archives-Hash: b0398cd9e4c48631f6d2c1497640ae56 commit: 7c5b8d43b61e2dfc2d8ba2608743e7ada698cfbc Author: Michał Górny gentoo org> AuthorDate: Fri Oct 30 17:16:58 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Oct 30 17:23:22 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c5b8d43 dev-python/elementpath: Bump to 2.0.4 Signed-off-by: Michał Górny gentoo.org> dev-python/elementpath/Manifest | 1 + dev-python/elementpath/elementpath-2.0.4.ebuild | 26 +++++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/dev-python/elementpath/Manifest b/dev-python/elementpath/Manifest index b47eed41300..fd26efdec1f 100644 --- a/dev-python/elementpath/Manifest +++ b/dev-python/elementpath/Manifest @@ -1 +1,2 @@ DIST elementpath-2.0.3.tar.gz 191499 BLAKE2B dd8ee226b5e04168de90e0375db971bb51aad233cbc56a63e1a79aa847fffbeddc5438ca769317ccd0ad6f30aad61ec65fe9dc7c32dfff687e8cd208ccf9ee46 SHA512 fccb291405aafa5751f0dbb636171145a41941e929dd93b097d61f11366e71757f47a65c32b83fd8ad0fafcfb530315417ea879b3e05421bc479b2e309960006 +DIST elementpath-2.0.4.tar.gz 191601 BLAKE2B fc2f29a737c180fb04cc289b8cd9149b7a4f3c317a5efd746c42658aa6fbfe5cb78b957f517ba9a9e8650cc1ba0ee885a723695a8a107ec4cc05328828f5cf21 SHA512 b114ebe054eb6f46e261ae2a39c8126b86abafba26803eee676731d8d46d613daf5493215873ae96c9b098f6ebf9961a1ac777ddc0a1e2b1e4a3ca924d74c213 diff --git a/dev-python/elementpath/elementpath-2.0.4.ebuild b/dev-python/elementpath/elementpath-2.0.4.ebuild new file mode 100644 index 00000000000..c7a8e1d2336 --- /dev/null +++ b/dev-python/elementpath/elementpath-2.0.4.ebuild @@ -0,0 +1,26 @@ +# Copyright 2019-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 ) +inherit distutils-r1 + +DESCRIPTION="XPath 1.0/2.0 parsers and selectors for ElementTree and lxml" +HOMEPAGE="https://github.com/sissaschool/elementpath + https://pypi.org/project/elementpath/" +SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +BDEPEND=" + test? ( + dev-python/lxml[${PYTHON_USEDEP}] + dev-python/xmlschema[${PYTHON_USEDEP}] + )" + +distutils_enable_tests unittest