commit:     425fa09ddecf328d9bcc596caf18d4cc7873c008
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Sun Jan  1 14:19:45 2017 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sun Jan  1 14:20:30 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=425fa09d

x11-libs/qscintilla: remove old

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 x11-libs/qscintilla/Manifest                   |  2 -
 x11-libs/qscintilla/qscintilla-2.8.4-r2.ebuild | 91 -------------------------
 x11-libs/qscintilla/qscintilla-2.9.3-r1.ebuild | 82 -----------------------
 x11-libs/qscintilla/qscintilla-2.9.3-r2.ebuild | 92 --------------------------
 4 files changed, 267 deletions(-)

diff --git a/x11-libs/qscintilla/Manifest b/x11-libs/qscintilla/Manifest
index 3f4483f..7bebb5a 100644
--- a/x11-libs/qscintilla/Manifest
+++ b/x11-libs/qscintilla/Manifest
@@ -1,4 +1,2 @@
-DIST QScintilla-gpl-2.8.4.tar.gz 3031919 SHA256 
9b7b2d7440cc39736bbe937b853506b3bd218af3b79095d4f710cccb0fabe80f SHA512 
ab10dc756231b293ddebc06e681bb65a11b2be2a4c4132a5b2a27ca583adef76af325fa95748888d9091f2e89a30494d370df262c4eaba7b7fbed04fb7c76907
 WHIRLPOOL 
7357addbc0ad8869c5749a67106c18e47d79e32399416cc2867461fa8ad0c662711b8937987cb7c3cd5b83fe9f88e1529911eefec28a972e86c7f242c8c0d634
 DIST QScintilla_gpl-2.9.2.tar.gz 2491222 SHA256 
f2c8ccdc9d3dbb90764ceed53ea096da9bb13b6260da1324e6ab4ecea29e620a SHA512 
28f88111d7eb6a016a4b87f04d2b7f5d6481b521a3361a526b3b45a56240f5c8de10310e819234fcba773c6df73bf398ae2dce622976a8e760f506be1defb7c8
 WHIRLPOOL 
a04420c66fd417e5304c92a1ee3c1998f6849bccb9088dae96ed48c06cab0a9b1c012f073aafb1e05aaee46564de9ac89ae07145f3ded35cf47beac78065650a
-DIST QScintilla_gpl-2.9.3.tar.gz 2503568 SHA256 
98aab93d73b05635867c2fc757acb383b5856a0b416e3fd7659f1879996ddb7e SHA512 
43c0edb91b7cf31f4cca71aae54d7bfea8ee66e296c0e99b694069eeedf394762b8a670952debfa2671363fd8ab5c46dd7a7da60e8f1234406a12d12afa503ab
 WHIRLPOOL 
4a46b6cf38486d1642ad8899fc986272ddbffc33e2cb2e60e9f74c56a014c22fabdbf0f24e434cf386a9463fb82b30987d554a1419d606e152e785c3286ae063
 DIST QScintilla_gpl-2.9.4.tar.gz 2557199 SHA256 
8b3a23023e9f0573caed6f9cee86f898d87b768ee15b8c211a423783a4cfa4e6 SHA512 
5a2eebbe523a0f2f1c7bc63ce5ee9cb8793a597d00eea5b638f18f90d6e798e92c281be23ee5e7072d5afced9e1fccb6ae51526a3623d373d57c3db64d026b16
 WHIRLPOOL 
68aacdcd0fc7102494ccae1f0ea3e222845bdd3f9bef603d89fe50d50dba6ac77471228a84c1c281a46ccf74bdb6902aa3bb21f89388ec5408bdde5876cf8655

diff --git a/x11-libs/qscintilla/qscintilla-2.8.4-r2.ebuild 
b/x11-libs/qscintilla/qscintilla-2.8.4-r2.ebuild
deleted file mode 100644
index 0d86621..00000000
--- a/x11-libs/qscintilla/qscintilla-2.8.4-r2.ebuild
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit flag-o-matic qmake-utils
-
-MY_P=QScintilla-gpl-${PV}
-
-DESCRIPTION="A Qt port of Neil Hodgson's Scintilla C++ editor class"
-HOMEPAGE="http://www.riverbankcomputing.com/software/qscintilla/intro";
-SRC_URI="mirror://sourceforge/pyqt/${MY_P}.tar.gz"
-
-LICENSE="|| ( GPL-2 GPL-3 )"
-SLOT="0/11"
-KEYWORDS="alpha amd64 ~arm ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
-IUSE="designer doc +qt4"
-
-DEPEND="
-       >=dev-qt/qtcore-4.8.5:4
-       >=dev-qt/qtgui-4.8.5:4
-       designer? ( >=dev-qt/designer-4.8.5:4 )
-"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-src_unpack() {
-       default
-
-       # Sub-slot sanity check
-       local subslot=${SLOT#*/}
-       local version=$(sed -nre 's:.*VERSION\s*=\s*([0-9\.]+):\1:p' 
"${S}"/Qt4Qt5/qscintilla.pro)
-       local major=${version%%.*}
-       if [[ ${subslot} != ${major} ]]; then
-               eerror
-               eerror "Ebuild sub-slot (${subslot}) does not match QScintilla 
major version (${major})"
-               eerror "Please update SLOT variable as follows:"
-               eerror "    SLOT=\"${SLOT%%/*}/${major}\""
-               eerror
-               die "sub-slot sanity check failed"
-       fi
-}
-
-src_configure() {
-       pushd Qt4Qt5 > /dev/null
-       eqmake4
-       popd > /dev/null
-
-       if use designer; then
-               # prevent building against system version (bug 466120)
-               append-cxxflags -I../Qt4Qt5
-               append-ldflags -L../Qt4Qt5
-
-               pushd designer-Qt4Qt5 > /dev/null
-               eqmake4
-               popd > /dev/null
-       fi
-}
-
-src_compile() {
-       pushd Qt4Qt5 > /dev/null
-       emake
-       popd > /dev/null
-
-       if use designer; then
-               pushd designer-Qt4Qt5 > /dev/null
-               emake
-               popd > /dev/null
-       fi
-}
-
-src_install() {
-       pushd Qt4Qt5 > /dev/null
-       emake INSTALL_ROOT="${D}" install
-       popd > /dev/null
-
-       if use designer; then
-               pushd designer-Qt4Qt5 > /dev/null
-               emake INSTALL_ROOT="${D}" install
-               popd > /dev/null
-       fi
-
-       dodoc NEWS
-
-       if use doc; then
-               docinto html
-               dodoc -r doc/html-Qt4Qt5/*
-       fi
-}

diff --git a/x11-libs/qscintilla/qscintilla-2.9.3-r1.ebuild 
b/x11-libs/qscintilla/qscintilla-2.9.3-r1.ebuild
deleted file mode 100644
index a73439a..00000000
--- a/x11-libs/qscintilla/qscintilla-2.9.3-r1.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-inherit flag-o-matic qmake-utils
-
-MY_P=QScintilla_gpl-${PV}
-
-DESCRIPTION="A Qt port of Neil Hodgson's Scintilla C++ editor class"
-HOMEPAGE="http://www.riverbankcomputing.com/software/qscintilla/intro";
-SRC_URI="mirror://sourceforge/pyqt/${MY_P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0/12"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
-IUSE="designer doc +qt4"
-
-DEPEND="
-       dev-qt/qtcore:4
-       dev-qt/qtgui:4
-       designer? ( dev-qt/designer:4 )
-"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-src_unpack() {
-       default
-
-       # Sub-slot sanity check
-       local subslot=${SLOT#*/}
-       local version=$(sed -nre 's:.*VERSION\s*=\s*([0-9\.]+):\1:p' 
"${S}"/Qt4Qt5/qscintilla.pro)
-       local major=${version%%.*}
-       if [[ ${subslot} != ${major} ]]; then
-               eerror
-               eerror "Ebuild sub-slot (${subslot}) does not match QScintilla 
major version (${major})"
-               eerror "Please update SLOT variable as follows:"
-               eerror "    SLOT=\"${SLOT%%/*}/${major}\""
-               eerror
-               die "sub-slot sanity check failed"
-       fi
-}
-
-qsci_run_in() {
-       pushd "$1" >/dev/null || die
-       shift || die
-       "$@" || die
-       popd >/dev/null || die
-}
-
-src_configure() {
-       qsci_run_in Qt4Qt5 eqmake4
-
-       if use designer; then
-               # prevent building against system version (bug 466120)
-               append-cxxflags -I../Qt4Qt5
-               append-ldflags -L../Qt4Qt5
-
-               qsci_run_in designer-Qt4Qt5 eqmake4
-       fi
-}
-
-src_compile() {
-       qsci_run_in Qt4Qt5 emake
-
-       use designer && qsci_run_in designer-Qt4Qt5 emake
-}
-
-src_install() {
-       qsci_run_in Qt4Qt5 emake INSTALL_ROOT="${D}" install
-
-       use designer && qsci_run_in designer-Qt4Qt5 emake INSTALL_ROOT="${D}" 
install
-
-       dodoc ChangeLog NEWS
-
-       if use doc; then
-               docinto html
-               dodoc -r doc/html-Qt4Qt5/*
-       fi
-}

diff --git a/x11-libs/qscintilla/qscintilla-2.9.3-r2.ebuild 
b/x11-libs/qscintilla/qscintilla-2.9.3-r2.ebuild
deleted file mode 100644
index d63f3e1..00000000
--- a/x11-libs/qscintilla/qscintilla-2.9.3-r2.ebuild
+++ /dev/null
@@ -1,92 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-inherit flag-o-matic qmake-utils
-
-MY_P=QScintilla_gpl-${PV}
-
-DESCRIPTION="A Qt port of Neil Hodgson's Scintilla C++ editor class"
-HOMEPAGE="http://www.riverbankcomputing.com/software/qscintilla/intro";
-SRC_URI="mirror://sourceforge/pyqt/${MY_P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0/12"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
-IUSE="designer doc +qt4 qt5"
-
-REQUIRED_USE="^^ ( qt4 qt5 )"
-
-DEPEND="
-       qt4? (
-               dev-qt/qtcore:4
-               dev-qt/qtgui:4
-               designer? ( dev-qt/designer:4 )
-       )
-       qt5? (
-               dev-qt/qtcore:5
-               dev-qt/qtgui:5
-               dev-qt/qtprintsupport:5
-               dev-qt/qtwidgets:5
-               designer? ( dev-qt/designer:5 )
-       )
-"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-src_unpack() {
-       default
-
-       # Sub-slot sanity check
-       local subslot=${SLOT#*/}
-       local version=$(sed -nre 's:.*VERSION\s*=\s*([0-9\.]+):\1:p' 
"${S}"/Qt4Qt5/qscintilla.pro)
-       local major=${version%%.*}
-       if [[ ${subslot} != ${major} ]]; then
-               eerror
-               eerror "Ebuild sub-slot (${subslot}) does not match QScintilla 
major version (${major})"
-               eerror "Please update SLOT variable as follows:"
-               eerror "    SLOT=\"${SLOT%%/*}/${major}\""
-               eerror
-               die "sub-slot sanity check failed"
-       fi
-}
-
-qsci_run_in() {
-       pushd "$1" >/dev/null || die
-       shift || die
-       "$@" || die
-       popd >/dev/null || die
-}
-
-src_configure() {
-       local my_eqmake=eqmake$(usex qt5 5 4)
-
-       qsci_run_in Qt4Qt5 ${my_eqmake}
-
-       if use designer; then
-               # prevent building against system version (bug 466120)
-               append-cxxflags -I../Qt4Qt5
-               append-ldflags -L../Qt4Qt5
-
-               qsci_run_in designer-Qt4Qt5 ${my_eqmake}
-       fi
-}
-
-src_compile() {
-       qsci_run_in Qt4Qt5 emake
-
-       use designer && qsci_run_in designer-Qt4Qt5 emake
-}
-
-src_install() {
-       qsci_run_in Qt4Qt5 emake INSTALL_ROOT="${D}" install
-
-       use designer && qsci_run_in designer-Qt4Qt5 emake INSTALL_ROOT="${D}" 
install
-
-       DOCS=( ChangeLog NEWS )
-       use doc && HTML_DOCS=( doc/html-Qt4Qt5/. )
-       einstalldocs
-}

Reply via email to