Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: profiles/, net-im/hangups/, net-im/hangups/files/
Date: Sat, 29 Sep 2018 10:12:02
Message-Id: 1538215780.ba5e0854157bf37ab5751d862fd0628be0f3be10.mgorny@gentoo
1 commit: ba5e0854157bf37ab5751d862fd0628be0f3be10
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 29 10:09:40 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 29 10:09:40 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba5e0854
7
8 net-im/hangups: Remove last-rited pkg
9
10 Closes: https://bugs.gentoo.org/664658
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 net-im/hangups/files/unpin-dependencies.patch | 41 -----------------------
14 net-im/hangups/hangups-9999.ebuild | 48 ---------------------------
15 net-im/hangups/metadata.xml | 8 -----
16 profiles/package.mask | 5 ---
17 4 files changed, 102 deletions(-)
18
19 diff --git a/net-im/hangups/files/unpin-dependencies.patch b/net-im/hangups/files/unpin-dependencies.patch
20 deleted file mode 100644
21 index 37c8795cdd8..00000000000
22 --- a/net-im/hangups/files/unpin-dependencies.patch
23 +++ /dev/null
24 @@ -1,41 +0,0 @@
25 -diff --git a/setup.py b/setup.py
26 -index 740ce61..67e3b84 100644
27 ---- a/setup.py
28 -+++ b/setup.py
29 -@@ -65,15 +65,15 @@ with open('README.rst') as f:
30 - # hangups from breaking when new versions of dependencies are released,
31 - # especially for end-users (non-developers) who use pip to install hangups.
32 - install_requires = [
33 -- 'ConfigArgParse==0.11.0',
34 -+ 'ConfigArgParse>=0.11.0',
35 - 'aiohttp>=1.2,<1.3',
36 -- 'appdirs==1.4.0',
37 -- 'readlike==0.1.2',
38 -+ 'appdirs>=1.4.0',
39 -+ 'readlike>=0.1.2',
40 - 'requests>=2.6.0,<3', # uses semantic versioning (after 2.6)
41 -- 'ReParser==1.4.3',
42 -+ 'ReParser>=1.4.3',
43 - 'protobuf>=3.1.0,<3.2.0',
44 -- 'urwid==1.3.1',
45 -- 'MechanicalSoup==0.6.0',
46 -+ 'urwid>=1.3.1',
47 -+ 'MechanicalSoup>=0.6.0',
48 - ]
49 -
50 -
51 -@@ -109,10 +109,10 @@ setup(
52 - packages=['hangups', 'hangups.ui'],
53 - install_requires=install_requires,
54 - tests_require=[
55 -- 'pytest==3.0.5',
56 -- 'pylint==1.6.4',
57 -- 'pycodestyle==2.2.0',
58 -- 'httpretty==0.8.14',
59 -+ 'pytest>=3.0.5',
60 -+ 'pylint>=1.6.4',
61 -+ 'pycodestyle>=2.2.0',
62 -+ 'httpretty>=0.8.14',
63 - ],
64 - cmdclass={
65 - 'test': PytestCommand,
66
67 diff --git a/net-im/hangups/hangups-9999.ebuild b/net-im/hangups/hangups-9999.ebuild
68 deleted file mode 100644
69 index 6566dc8bf4d..00000000000
70 --- a/net-im/hangups/hangups-9999.ebuild
71 +++ /dev/null
72 @@ -1,48 +0,0 @@
73 -# Copyright 1999-2018 Gentoo Foundation
74 -# Distributed under the terms of the GNU General Public License v2
75 -
76 -EAPI=6
77 -
78 -PYTHON_COMPAT=( python3_{4,5,6} )
79 -inherit distutils-r1
80 -
81 -if [[ ${PV} = *9999* ]]; then
82 - EGIT_REPO_URI="https://github.com/tdryer/${PN}"
83 - inherit git-r3
84 -else
85 - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
86 - KEYWORDS="~amd64"
87 -fi
88 -
89 -DESCRIPTION="Third Party IM Client for Google Hangouts"
90 -HOMEPAGE="https://pypi.org/project/hangups/"
91 -
92 -LICENSE="MIT"
93 -SLOT="0"
94 -IUSE="test"
95 -
96 -PATCHES=(
97 - "${FILESDIR}"/unpin-dependencies.patch
98 -)
99 -
100 -COMMON_DEPEND=">=dev-python/configargparse-0.11.0[${PYTHON_USEDEP}]
101 - >=dev-python/aiohttp-1.2.0[${PYTHON_USEDEP}]
102 - <dev-python/aiohttp-1.3.0
103 - >=dev-python/appdirs-1.4.0[${PYTHON_USEDEP}]
104 - >=dev-python/readlike-0.1.2[${PYTHON_USEDEP}]
105 - >=dev-python/requests-2.6.0[${PYTHON_USEDEP}]
106 - <dev-python/requests-3.0.0
107 - >=dev-python/ReParser-1.4.3[${PYTHON_USEDEP}]
108 - >=dev-python/protobuf-python-3.1.0[${PYTHON_USEDEP}]
109 - >=dev-python/urwid-1.3.1[${PYTHON_USEDEP}]
110 - >=dev-python/MechanicalSoup-0.6.0[${PYTHON_USEDEP}]"
111 - DEPEND="${COMMON_DEPEND}
112 - dev-python/setuptools[${PYTHON_USEDEP}]
113 - test? (
114 - >=dev-python/pytest-3.0.5[${PYTHON_USEDEP}]
115 - >=dev-python/pylint-1.6.4[${PYTHON_USEDEP}]
116 - >=dev-python/pycodestyle-2.2.0[${PYTHON_USEDEP}]
117 - >=dev-python/httpretty-0.8.14[${PYTHON_USEDEP}]
118 - )
119 -"
120 -RDEPEND="${COMMON_DEPEND}"
121
122 diff --git a/net-im/hangups/metadata.xml b/net-im/hangups/metadata.xml
123 deleted file mode 100644
124 index c36c37139fa..00000000000
125 --- a/net-im/hangups/metadata.xml
126 +++ /dev/null
127 @@ -1,8 +0,0 @@
128 -<?xml version="1.0" encoding="UTF-8"?>
129 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
130 -<pkgmetadata>
131 - <maintainer type="person">
132 - <email>williamh@g.o</email>
133 - <name>William Hubbs</name>
134 - </maintainer>
135 -</pkgmetadata>
136
137 diff --git a/profiles/package.mask b/profiles/package.mask
138 index dcc497c656c..17bb92f5054 100644
139 --- a/profiles/package.mask
140 +++ b/profiles/package.mask
141 @@ -205,11 +205,6 @@ media-plugins/vdr-rotor
142 # Bug 664678
143 media-plugins/vdr-videosystem
144
145 -# Michał Górny <mgorny@g.o> (26 Aug 2018)
146 -# Live ebuild only. Dependencies can no longer be satisfied by ::gentoo
147 -# packages. Bug #664658. Removal in 30 days.
148 -net-im/hangups
149 -
150 # Virgil Dupras <vdupras@g.o> (23 Aug 2018)
151 # Vulnerable and can't be removed yet because of alpha. Bug #664346
152 <dev-python/paramiko-2.4.1