summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavide Pesavento <pesa@gentoo.org>2017-01-04 06:02:32 +0100
committerDavide Pesavento <pesa@gentoo.org>2017-01-04 06:09:43 +0100
commit98a6632260629024f472462831ef98e8d3b94795 (patch)
tree1bd06bf2613652607a35b147313dd0d7571b806b /dev-util
parentdev-util/eric: remove last eric:5 ebuild (diff)
downloadgentoo-98a6632260629024f472462831ef98e8d3b94795.tar.gz
gentoo-98a6632260629024f472462831ef98e8d3b94795.tar.bz2
gentoo-98a6632260629024f472462831ef98e8d3b94795.zip
dev-util/eric: remove old
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'dev-util')
-rw-r--r--dev-util/eric/Manifest1
-rw-r--r--dev-util/eric/eric-16.11.1.ebuild68
2 files changed, 0 insertions, 69 deletions
diff --git a/dev-util/eric/Manifest b/dev-util/eric/Manifest
index 214ca0e56e6d..30fc9df3ad64 100644
--- a/dev-util/eric/Manifest
+++ b/dev-util/eric/Manifest
@@ -1,2 +1 @@
-DIST eric6-16.11.1.tar.gz 18748396 SHA256 dcea69e31465f56c8e0c58c9b3a3e8385ea82eea7e84282e824ba0b4ef269191 SHA512 cbcb4079446b10163579a08b148a5a319411d4cbdf7835a266b5efe87ef770646171216d39240cbab7d0dd6e39505faf15cdaf29828d8de8c109b6390d70daac WHIRLPOOL 7c040febc0ee1e333208c2555087467ae971a85fba6f1ee54dd6456a29a81380b0f623fd856864d16f1429995a648f5300c2b4bc065040b13bfc3a758be8f3fd
DIST eric6-16.12.tar.gz 18764980 SHA256 cfb70ef9c68fe88ea0752bc0141efc04c7fce118fd9166ec5ef57dfe23a492c6 SHA512 53506c52e289db141abf8faf1a90a7b1a2d32ab6932d6254aa8cb3e69ed8b78932d648c8625335cfae187053c3f7d3adf84f60867591ab804215b645a1719340 WHIRLPOOL 085a0048805d33b8a0426e743eb112643a6aa54668185eeeedb0ecadf68ae7f41aae98e0f853a0183e62b4c82ffcad7aca94d97087d00d10b57c0cdb5f3d5eb2
diff --git a/dev-util/eric/eric-16.11.1.ebuild b/dev-util/eric/eric-16.11.1.ebuild
deleted file mode 100644
index 261e2141a075..000000000000
--- a/dev-util/eric/eric-16.11.1.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-PYTHON_REQ_USE="sqlite,xml"
-
-inherit python-single-r1
-
-DESCRIPTION="A full featured Python IDE using PyQt and QScintilla"
-HOMEPAGE="http://eric-ide.python-projects.org/"
-LICENSE="GPL-3"
-SLOT="6"
-
-MY_P=${PN}${SLOT}-${PV}
-SRC_URI="mirror://sourceforge/eric-ide/${PN}${SLOT}/stable/${PV}/${MY_P}.tar.gz"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
-IUSE=""
-
-DEPEND="
- ${PYTHON_DEPS}
- >=dev-python/sip-4.14.3[${PYTHON_USEDEP}]
- >=dev-python/PyQt4-4.10[${PYTHON_USEDEP},X,help,sql,svg,webkit]
- >=dev-python/qscintilla-python-2.8[${PYTHON_USEDEP}]
-"
-RDEPEND="${DEPEND}
- >=dev-python/chardet-2.2.1[${PYTHON_USEDEP}]
- >=dev-python/coverage-4.1.0[${PYTHON_USEDEP}]
- >=dev-python/pygments-2.1.3[${PYTHON_USEDEP}]
- !dev-util/eric:4
- !dev-util/eric:5
-"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-S=${WORKDIR}/${MY_P}
-
-DOCS=(changelog README.rst THANKS)
-
-src_prepare() {
- default
-
- # Delete internal copies of dev-python/chardet and dev-python/pygments
- rm -fr eric/ThirdParty/{CharDet,Pygments} || die
-
- # Delete internal copy of dev-python/coverage
- rm -fr eric/DebugClients/Python{,3}/coverage || die
- sed -i -e 's/from DebugClients\.Python3\?\.coverage/from coverage/' \
- $(grep -lr 'from DebugClients\.Python3\?\.coverage' .) || die
-
- # Fix desktop files (bug 458092)
- sed -i -re '/^Categories=/s:(Python|QtWeb):X-&:g' eric/eric6{,_{,web}browser}.desktop || die
-}
-
-src_install() {
- "${PYTHON}" install.py \
- -b "${EPREFIX}/usr/bin" \
- -d "$(python_get_sitedir)" \
- -i "${D}" \
- -c \
- -z \
- --pyqt=4 \
- || die
-
- python_optimize
- einstalldocs
-}