diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2018-09-30 11:19:18 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2018-09-30 11:19:18 +0100 |
commit | 62f67115b5c46134c34f88f4b1cbdacc19384c0a (patch) | |
tree | 0a76b14de203a4c23040e5665e39df8de9867745 /net-im/hangups | |
parent | 265dbe5dbc14c199299496c6db8fce3f76647015 (diff) |
gentoo resync : 30.09.2018
Diffstat (limited to 'net-im/hangups')
-rw-r--r-- | net-im/hangups/Manifest | 3 | ||||
-rw-r--r-- | net-im/hangups/files/unpin-dependencies.patch | 41 | ||||
-rw-r--r-- | net-im/hangups/hangups-9999.ebuild | 48 | ||||
-rw-r--r-- | net-im/hangups/metadata.xml | 8 |
4 files changed, 0 insertions, 100 deletions
diff --git a/net-im/hangups/Manifest b/net-im/hangups/Manifest deleted file mode 100644 index 12e6c256bf4e..000000000000 --- a/net-im/hangups/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -AUX unpin-dependencies.patch 1165 BLAKE2B 77ea9649a56a4170dfce53ac457812157f8aa11f7ac8c1b8e2396b2770cd3ae0c8627c30a9c98e4da41de35c68ae2b74e65afc7a11b4d8436637cbe862f09e45 SHA512 590a419d2bf83d5892519cfcd1f9464168d047d84a8a184480cbc1dad8542330bf268d89d618af3fbfe565bda89fa9bbbc1c22a53dbf52e041c0afabf91d839d -EBUILD hangups-9999.ebuild 1348 BLAKE2B 78d1dbf38106097ee5fb5fa3e811ae64bf6a1a6850ee180a8c0b05839f26b85903829fc7fcee3fb6f47c33a3ace00bfe22998354c144a48ff27d2e1b59a44b3c SHA512 2a18cb7e3047f8f69b05e016d27417b94bab1afdb4179aec64c586dcb2d85dacd0172b4b06240caeb126fa482dde2fe00ec80acf2c65326577e0993352c2a3cb -MISC metadata.xml 248 BLAKE2B 5d9c3678c604aac0f24c5d5015e28f02b9ce83bb6a179755a44adeb3d69e4dd50be4acc30a6317649f5be23bcf13ac210bbe4712aa403e9c4cf2de351b39c941 SHA512 dc5b06a888be6367909895d5891a08189f4657bcee602e5ff0021be2ad3677e58ec7387ff244625be66a142138666e7eac790d2a7b1e298f0ad644725b5e57e0 diff --git a/net-im/hangups/files/unpin-dependencies.patch b/net-im/hangups/files/unpin-dependencies.patch deleted file mode 100644 index 37c8795cdd8d..000000000000 --- a/net-im/hangups/files/unpin-dependencies.patch +++ /dev/null @@ -1,41 +0,0 @@ -diff --git a/setup.py b/setup.py -index 740ce61..67e3b84 100644 ---- a/setup.py -+++ b/setup.py -@@ -65,15 +65,15 @@ with open('README.rst') as f: - # hangups from breaking when new versions of dependencies are released, - # especially for end-users (non-developers) who use pip to install hangups. - install_requires = [ -- 'ConfigArgParse==0.11.0', -+ 'ConfigArgParse>=0.11.0', - 'aiohttp>=1.2,<1.3', -- 'appdirs==1.4.0', -- 'readlike==0.1.2', -+ 'appdirs>=1.4.0', -+ 'readlike>=0.1.2', - 'requests>=2.6.0,<3', # uses semantic versioning (after 2.6) -- 'ReParser==1.4.3', -+ 'ReParser>=1.4.3', - 'protobuf>=3.1.0,<3.2.0', -- 'urwid==1.3.1', -- 'MechanicalSoup==0.6.0', -+ 'urwid>=1.3.1', -+ 'MechanicalSoup>=0.6.0', - ] - - -@@ -109,10 +109,10 @@ setup( - packages=['hangups', 'hangups.ui'], - install_requires=install_requires, - tests_require=[ -- 'pytest==3.0.5', -- 'pylint==1.6.4', -- 'pycodestyle==2.2.0', -- 'httpretty==0.8.14', -+ 'pytest>=3.0.5', -+ 'pylint>=1.6.4', -+ 'pycodestyle>=2.2.0', -+ 'httpretty>=0.8.14', - ], - cmdclass={ - 'test': PytestCommand, diff --git a/net-im/hangups/hangups-9999.ebuild b/net-im/hangups/hangups-9999.ebuild deleted file mode 100644 index 6566dc8bf4dd..000000000000 --- a/net-im/hangups/hangups-9999.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_{4,5,6} ) -inherit distutils-r1 - -if [[ ${PV} = *9999* ]]; then - EGIT_REPO_URI="https://github.com/tdryer/${PN}" - inherit git-r3 -else - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - KEYWORDS="~amd64" -fi - -DESCRIPTION="Third Party IM Client for Google Hangouts" -HOMEPAGE="https://pypi.org/project/hangups/" - -LICENSE="MIT" -SLOT="0" -IUSE="test" - -PATCHES=( - "${FILESDIR}"/unpin-dependencies.patch -) - -COMMON_DEPEND=">=dev-python/configargparse-0.11.0[${PYTHON_USEDEP}] - >=dev-python/aiohttp-1.2.0[${PYTHON_USEDEP}] - <dev-python/aiohttp-1.3.0 - >=dev-python/appdirs-1.4.0[${PYTHON_USEDEP}] - >=dev-python/readlike-0.1.2[${PYTHON_USEDEP}] - >=dev-python/requests-2.6.0[${PYTHON_USEDEP}] - <dev-python/requests-3.0.0 - >=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}]" - DEPEND="${COMMON_DEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - >=dev-python/pytest-3.0.5[${PYTHON_USEDEP}] - >=dev-python/pylint-1.6.4[${PYTHON_USEDEP}] - >=dev-python/pycodestyle-2.2.0[${PYTHON_USEDEP}] - >=dev-python/httpretty-0.8.14[${PYTHON_USEDEP}] - ) -" -RDEPEND="${COMMON_DEPEND}" diff --git a/net-im/hangups/metadata.xml b/net-im/hangups/metadata.xml deleted file mode 100644 index c36c37139fad..000000000000 --- a/net-im/hangups/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>williamh@gentoo.org</email> - <name>William Hubbs</name> - </maintainer> -</pkgmetadata> |