Gentoo Archives: gentoo-commits

From: Davide Pesavento <pesa@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/qscintilla/
Date: Wed, 03 Apr 2019 01:14:36
Message-Id: 1554254063.60deb392bb7477ec998b8b6cd29063063e3eab1b.pesa@gentoo
1 commit: 60deb392bb7477ec998b8b6cd29063063e3eab1b
2 Author: Davide Pesavento <pesa <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 3 01:14:23 2019 +0000
4 Commit: Davide Pesavento <pesa <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 3 01:14:23 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60deb392
7
8 x11-libs/qscintilla: use the new canonical SRC_URI
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Davide Pesavento <pesa <AT> gentoo.org>
12
13 x11-libs/qscintilla/qscintilla-2.11.1.ebuild | 15 ++++++++++-----
14 1 file changed, 10 insertions(+), 5 deletions(-)
15
16 diff --git a/x11-libs/qscintilla/qscintilla-2.11.1.ebuild b/x11-libs/qscintilla/qscintilla-2.11.1.ebuild
17 index 548fa9681dc..ae3d709bc0d 100644
18 --- a/x11-libs/qscintilla/qscintilla-2.11.1.ebuild
19 +++ b/x11-libs/qscintilla/qscintilla-2.11.1.ebuild
20 @@ -5,25 +5,30 @@ EAPI=7
21
22 inherit flag-o-matic qmake-utils
23
24 -MY_P=QScintilla_gpl-${PV/_pre/.dev}
25 -
26 DESCRIPTION="Qt port of Neil Hodgson's Scintilla C++ editor control"
27 HOMEPAGE="https://www.riverbankcomputing.com/software/qscintilla/intro"
28 -SRC_URI="https://www.riverbankcomputing.com/static/Downloads/QScintilla/${MY_P}.tar.gz"
29 +
30 +MY_PN=QScintilla
31 +MY_P=${MY_PN}_gpl-${PV/_pre/.dev}
32 +if [[ ${PV} == *_pre* ]]; then
33 + SRC_URI="https://dev.gentoo.org/~pesa/distfiles/${MY_P}.tar.gz"
34 +else
35 + SRC_URI="https://www.riverbankcomputing.com/static/Downloads/${MY_PN}/${PV}/${MY_P}.tar.gz"
36 +fi
37
38 LICENSE="GPL-3"
39 SLOT="0/15"
40 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
41 IUSE="designer doc"
42
43 -DEPEND="
44 +RDEPEND="
45 dev-qt/qtcore:5
46 dev-qt/qtgui:5
47 dev-qt/qtprintsupport:5
48 dev-qt/qtwidgets:5
49 designer? ( dev-qt/designer:5 )
50 "
51 -RDEPEND="${DEPEND}"
52 +DEPEND="${RDEPEND}"
53
54 S=${WORKDIR}/${MY_P}