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 B076C158086 for ; Sat, 9 Oct 2021 06:34:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0B0B2E0843; Sat, 9 Oct 2021 06:34:38 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CC9A3E0858 for ; Sat, 9 Oct 2021 06:34:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D0CB5343078 for ; Sat, 9 Oct 2021 06:34:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 45A359B for ; Sat, 9 Oct 2021 06:34:35 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1633761246.a787ba66b1842334bbf9cf20ea9c27142c31fd0f.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/leather/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/leather/Manifest dev-python/leather/leather-0.3.4.ebuild X-VCS-Directories: dev-python/leather/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: a787ba66b1842334bbf9cf20ea9c27142c31fd0f X-VCS-Branch: master Date: Sat, 9 Oct 2021 06:34:35 +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: 1b3c0e6f-81c1-4407-bc72-c81d0bc0fef8 X-Archives-Hash: 75fe3c2f010f652ed42112508f4df77c commit: a787ba66b1842334bbf9cf20ea9c27142c31fd0f Author: Arthur Zamarin gentoo org> AuthorDate: Fri Oct 8 19:42:48 2021 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sat Oct 9 06:34:06 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a787ba66 dev-python/leather: add 0.3.4 - use IUSE="test" for test dependencies - remove useless sed block (those requirements files are used only for CI. - use cleaner URL to download from github Signed-off-by: Arthur Zamarin gentoo.org> dev-python/leather/Manifest | 1 + dev-python/leather/leather-0.3.4.ebuild | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/dev-python/leather/Manifest b/dev-python/leather/Manifest index 1499dbaab74..c91e23b5c9f 100644 --- a/dev-python/leather/Manifest +++ b/dev-python/leather/Manifest @@ -1 +1,2 @@ DIST leather-0.3.3-src.tar.gz 40522 BLAKE2B 3c7e6a48615751b310b7f066f2a78a2494e00256cae2ebfb4633c9389cca2477c2265fcf8c68f37733568ef729db1a5daf02ddc640bf2a60f2b39127c9a38d91 SHA512 30ea50ac6f97c55ee695b0e175a27e1e64fd17da7b0686ca8595fe0e5067932e19e59368fe6441f8f291ec52be3e597a80f8e04a3fcc0eeae33b3a5b3030e1d6 +DIST leather-0.3.4.gh.tar.gz 41368 BLAKE2B a1181da5904234677290134726da33a71e0f37e6f0161beb0ec7a73efca1b2b26e973221f2f42b72fd2640ef503a8adc905273885deef212ee9d1aae6d91f804 SHA512 0547adf5d455afe9397cf9c597cc7edbcdbe25bb56e32d764c67119bfe1329d959834f2a41720adb51ec926065e044feb27f7a5e3f800c8636a22d4f96752212 diff --git a/dev-python/leather/leather-0.3.4.ebuild b/dev-python/leather/leather-0.3.4.ebuild new file mode 100644 index 00000000000..0b16ba2fc74 --- /dev/null +++ b/dev-python/leather/leather-0.3.4.ebuild @@ -0,0 +1,26 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="Python charting for 80% of humans" +HOMEPAGE="https://github.com/wireservice/leather https://pypi.org/project/leather/" +SRC_URI="https://github.com/wireservice/leather/archive/${PV}.tar.gz -> ${P}.gh.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + dev-python/cssselect[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] +" +BDEPEND="test? ( dev-python/lxml[${PYTHON_USEDEP}] )" + +distutils_enable_tests pytest +distutils_enable_sphinx docs \ + dev-python/sphinx_rtd_theme