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 F3BA7158018 for ; Mon, 4 Oct 2021 08:11:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3CC0CE094A; Mon, 4 Oct 2021 08:11:33 +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 25C65E0943 for ; Mon, 4 Oct 2021 08:11:32 +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 D5A5A342FCB for ; Mon, 4 Oct 2021 08:11:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 12BA8143 for ; Mon, 4 Oct 2021 08:11:29 +0000 (UTC) From: "Theo Anderson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Theo Anderson" Message-ID: <1633332167.542fa77e7c6ba01fa72c3ee1247438fee2a26696.telans@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pywebview/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/pywebview/Manifest dev-python/pywebview/pywebview-3.5.ebuild X-VCS-Directories: dev-python/pywebview/ X-VCS-Committer: telans X-VCS-Committer-Name: Theo Anderson X-VCS-Revision: 542fa77e7c6ba01fa72c3ee1247438fee2a26696 X-VCS-Branch: dev Date: Mon, 4 Oct 2021 08:11:29 +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: c8d98063-ff19-440e-b75b-e0f97701789c X-Archives-Hash: 69a3f7100cbb9929d1d0fe54dd86eb50 commit: 542fa77e7c6ba01fa72c3ee1247438fee2a26696 Author: James Beddek posteo de> AuthorDate: Mon Oct 4 07:22:47 2021 +0000 Commit: Theo Anderson posteo de> CommitDate: Mon Oct 4 07:22:47 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=542fa77e dev-python/pywebview: add 3.5 Signed-off-by: James Beddek posteo.de> dev-python/pywebview/Manifest | 1 + dev-python/pywebview/pywebview-3.5.ebuild | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/dev-python/pywebview/Manifest b/dev-python/pywebview/Manifest index 178771567..db7f7ea7e 100644 --- a/dev-python/pywebview/Manifest +++ b/dev-python/pywebview/Manifest @@ -1 +1,2 @@ DIST pywebview-3.4.tar.gz 307993 BLAKE2B a838514ebbca25b8d54cbc2e9dd4a6caad01a05593cc82d6bb371398b2f70642fe1321b57f45f56121ca0cddeaa62eba05eebc0aa94f9cf0b36736bf8fe3f331 SHA512 a30c8c726e1351f3a5cc96c2774246a0a6326e8b6a2e9c25fe6e3bb7d866ff0c7cbd16da0428f6891c8316eafc70fd96c13255515b63d907ef20459a6cabd70a +DIST pywebview-3.5.tar.gz 336741 BLAKE2B 332a71499d034acb94e2151771399007d441d85485bf596fb510e7513a417ac8dd1f1091db7796a767b535089d024affaea979567d6992f1bbe1154452cfcd80 SHA512 0d4e60a1389a11a9406634ac05446bc11bdea30ed4d81aca311ef01d8e9613d3582cf480c0a79bfe2b5a8c803c56c437abc0bb86ef4ba243bff638fcd6de9490 diff --git a/dev-python/pywebview/pywebview-3.5.ebuild b/dev-python/pywebview/pywebview-3.5.ebuild new file mode 100644 index 000000000..6ba1acf3f --- /dev/null +++ b/dev-python/pywebview/pywebview-3.5.ebuild @@ -0,0 +1,22 @@ +# Copyright 2020-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{7..9} ) + +inherit distutils-r1 + +DESCRIPTION="A lightweight cross-platform wrapper around a webview component" +HOMEPAGE="https://github.com/r0x0r/pywebview" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +RDEPEND=" + dev-python/pygobject[${PYTHON_USEDEP}] + dev-python/PyQt5[${PYTHON_USEDEP}] + dev-python/PyQtWebEngine[${PYTHON_USEDEP}] +"