update hangups-0.4.14

This commit is contained in:
Andreas Billmeier 2021-07-02 19:49:42 +02:00 committed by Andreas Billmeier
parent d908e99246
commit ab2db961c3
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 43 additions and 0 deletions

View File

@ -1,5 +1,7 @@
DIST hangups-0.4.10.tar.gz 95401 BLAKE2B 12bca5b029fee39084350694aa3ddac2e9775e1434a55f097087d945e32365f9c1df40de1e2ceb1d4e9f902adf6e447d7b5be9fd13ee16b02e7779f29f6e2c9d SHA512 0fc9470e16130d5247673a8d434f64da73320f1b69a6f5d93f93c3031f76c5f9b8bbc71d7171b1660273b3b153e435a9ab13962354facb404d40fd8f85741d2a
DIST hangups-0.4.11.tar.gz 97364 BLAKE2B 430ab3e5981eea14a7b373a7578c675d19d57add126a63aef4e1089b8a3df48651efcd34e08b207df43170a32b7c22a400bc661691e24efccf27d3ddca1f2411 SHA512 d9e3791f2b5a00f06dadb7c0d73f4f7d39e88402029bd53b704ebe7f0cfecebbac8a2f89484f6db4f2c20cbd7c753d10df0710a63f21a54c895d0f52990b0045
DIST hangups-0.4.14.tar.gz 98178 BLAKE2B e0c649844c90ef29c8f847d43a6919be619d3a1641e5d53db813c4c76afbd5fd8b7c8629fc82f4c175b2d3b26bda0888c8dd65c5d820a9961f4d9aec71357438 SHA512 5e2ced76e2a6f746d7a5218c11425956d34ce85972a4d56520c10f86179d404fe55170c13109044d17a5c7c2c50603cc654f19a9620ad927fa619f48bff55c66
EBUILD hangups-0.4.10.ebuild 1191 BLAKE2B 125d3ba609fd48ea3af0059caa239ec2a2b0d65cb2127d97bb35078db682b97672db5722b4d004c591794cb30474bc92b052b3ea5583cee5d549f02897d0f255 SHA512 44cdba71b1ecb319cae9186de5a213c5222d807709037f56c344f4c974219e013561143b0184740dc6ff5669e62c2a0561d6f07802acc0f8a1191c13cf15988a
EBUILD hangups-0.4.11.ebuild 1191 BLAKE2B 125d3ba609fd48ea3af0059caa239ec2a2b0d65cb2127d97bb35078db682b97672db5722b4d004c591794cb30474bc92b052b3ea5583cee5d549f02897d0f255 SHA512 44cdba71b1ecb319cae9186de5a213c5222d807709037f56c344f4c974219e013561143b0184740dc6ff5669e62c2a0561d6f07802acc0f8a1191c13cf15988a
EBUILD hangups-0.4.14.ebuild 1183 BLAKE2B 7316b6ec345d277dfeeaa7a92ce7aac43f8e9fa74be366ad260664002cbf7ba8e85dfb2c765779f599455985113b18d355dc1d98d19b0d9cee36ff5286d113a6 SHA512 8b19c80b590aa48ca9dca33b852b870dcfe17f915cc4512a17f4f6b3411ed575a3e4d94a61edd3e008627c541091c2cc3857a6870515c079dfef764978ce5256
MISC metadata.xml 451 BLAKE2B 1f2f40e10acb79f4fa5757212b27ef94b26ed07a92f978f019e6adcd6d55a3c821ace6443fc1bdbccf4037df16ee1e7bc716690bbd1fb7fa74a27c3fcb5398b4 SHA512 c17dc52ee756daf9c7d33d3637ddb516ad0ae6f15a0ad95e4f5420a800060609f71a8320815e4b0b3b93d2f5eb9bb7a1d3b5cdcc7522e682d7c6d5123493e4e4

View File

@ -0,0 +1,41 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="the first third-party instant messaging client for Google Hangouts"
HOMEPAGE="https://github.com/tdryer/hangups https://pypi.org/project/hangups/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.rst"
RDEPEND="~dev-python/configargparse-0.11.0[${PYTHON_USEDEP}]
dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/async_timeout[${PYTHON_USEDEP}]
>=dev-python/appdirs-1.4[${PYTHON_USEDEP}]
~dev-python/readlike-0.1.2[${PYTHON_USEDEP}]
>=dev-python/requests-2.6.0[${PYTHON_USEDEP}]
~dev-python/ReParser-1.4.3[${PYTHON_USEDEP}]
>=dev-python/protobuf-python-3.1.0[${PYTHON_USEDEP}]
>=dev-python/urwid-1.3.1[${PYTHON_USEDEP}]
>=dev-python/MechanicalSoup-0.6.0[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}