Gentoo Archives: gentoo-commits

From: Davide Pesavento <pesa@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/eric/
Date: Mon, 18 Nov 2019 05:45:40
Message-Id: 1574055929.5548a4b3f6613a66d3fb2d2050bcca3b8b9a994a.pesa@gentoo
1 commit: 5548a4b3f6613a66d3fb2d2050bcca3b8b9a994a
2 Author: Davide Pesavento <pesa <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 18 05:45:29 2019 +0000
4 Commit: Davide Pesavento <pesa <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 18 05:45:29 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5548a4b3
7
8 dev-util/eric: remove old
9
10 Package-Manager: Portage-2.3.79, Repoman-2.3.18
11 Signed-off-by: Davide Pesavento <pesa <AT> gentoo.org>
12
13 dev-util/eric/Manifest | 1 -
14 dev-util/eric/eric-17.12-r1.ebuild | 78 --------------------------------------
15 2 files changed, 79 deletions(-)
16
17 diff --git a/dev-util/eric/Manifest b/dev-util/eric/Manifest
18 index d34fd881907..fa92b8ea12c 100644
19 --- a/dev-util/eric/Manifest
20 +++ b/dev-util/eric/Manifest
21 @@ -1,2 +1 @@
22 -DIST eric6-17.12.tar.gz 19035763 BLAKE2B e19195ef0b36ce216dc4f21ec221da4002a20ee3e3e300b80045d31d8793df299c2224f41f562fb59a0f8a65ead4f616df89a905905918dd1ae396d55d77fdc3 SHA512 7144c1fad76eb0f3ccdd2a29fb3fc369ad35d28dfbae1e6b75855b85218df34afa715f3a2df37bd6163e2f3a23a2a9a7f528cfe54f1bc21486ab81da6a69a697
23 DIST eric6-18.03.tar.gz 16517664 BLAKE2B f7f5292df8bc694fc4715ec1a250d948123a2eb99a590e6824d985318446babff86aeb745f5b5dbd0707e771638eaa943673e5b546676bea97e266888b844989 SHA512 e488010791b44cc7da782620baec9b97259aaefeb90d491023ec1d4582fb68acbc06d9eedba7beef9ddc706302e06e36b9ebb4e46d6f035b6c74e9f4eb9ac400
24
25 diff --git a/dev-util/eric/eric-17.12-r1.ebuild b/dev-util/eric/eric-17.12-r1.ebuild
26 deleted file mode 100644
27 index e4789912cf9..00000000000
28 --- a/dev-util/eric/eric-17.12-r1.ebuild
29 +++ /dev/null
30 @@ -1,78 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -MY_P=${PN}6-${PV}
37 -PYTHON_COMPAT=( python2_7 python3_{5,6} )
38 -PYTHON_REQ_USE="sqlite,xml"
39 -inherit python-single-r1 xdg-utils
40 -
41 -DESCRIPTION="A full featured Python IDE using PyQt and QScintilla"
42 -HOMEPAGE="https://eric-ide.python-projects.org/"
43 -SRC_URI="mirror://sourceforge/eric-ide/${PN}6/stable/${PV}/${MY_P}.tar.gz"
44 -
45 -LICENSE="GPL-3"
46 -SLOT="6"
47 -KEYWORDS="~amd64 ~ppc64 ~x86"
48 -IUSE=""
49 -
50 -DEPEND="
51 - ${PYTHON_DEPS}
52 - >=dev-python/sip-4.14.3[${PYTHON_USEDEP}]
53 - >=dev-python/PyQt5-5.7.1[gui,network,printsupport,sql,svg,widgets,${PYTHON_USEDEP}]
54 - >=dev-python/qscintilla-python-2.10[qt5(+),${PYTHON_USEDEP}]
55 -"
56 -RDEPEND="${DEPEND}
57 - || (
58 - dev-python/PyQt5[help,webengine,${PYTHON_USEDEP}]
59 - dev-python/PyQt5[help,webkit,${PYTHON_USEDEP}]
60 - )
61 - >=dev-python/chardet-3.0.4[${PYTHON_USEDEP}]
62 - >=dev-python/coverage-4.1.0[${PYTHON_USEDEP}]
63 - >=dev-python/pygments-2.2.0[${PYTHON_USEDEP}]
64 - !dev-util/eric:4
65 - !dev-util/eric:5
66 -"
67 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
68 -
69 -S=${WORKDIR}/${MY_P}
70 -
71 -DOCS=( changelog README.rst THANKS )
72 -
73 -src_prepare() {
74 - default
75 -
76 - # Delete internal copies of dev-python/chardet and dev-python/pygments
77 - rm -fr eric/ThirdParty/{CharDet,Pygments} || die
78 -
79 - # Delete internal copy of dev-python/coverage
80 - rm -fr eric/DebugClients/Python{,3}/coverage || die
81 - sed -i -e 's/from DebugClients\.Python3\?\.coverage/from coverage/' \
82 - $(grep -lr 'from DebugClients\.Python3\?\.coverage' .) || die
83 -}
84 -
85 -src_install() {
86 - "${PYTHON}" install.py \
87 - -b "${EPREFIX}/usr/bin" \
88 - -d "$(python_get_sitedir)" \
89 - -i "${D}" \
90 - -c \
91 - -z \
92 - || die
93 -
94 - python_optimize
95 - einstalldocs
96 -}
97 -
98 -pkg_postinst(){
99 - xdg_desktop_database_update
100 -
101 - if ! has_version dev-python/enchant; then
102 - elog "You might want to install dev-python/pyenchant for spell checking."
103 - fi
104 -}
105 -
106 -pkg_postrm() {
107 - xdg_desktop_database_update
108 -}