From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9DD9E138334 for ; Wed, 3 Apr 2019 01:14:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D8E8BE0B54; Wed, 3 Apr 2019 01:14:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B2E18E0B54 for ; Wed, 3 Apr 2019 01:14:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id ACF4B335D19 for ; Wed, 3 Apr 2019 01:14:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F23CC588 for ; Wed, 3 Apr 2019 01:14:31 +0000 (UTC) From: "Davide Pesavento" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Davide Pesavento" Message-ID: <1554254063.60deb392bb7477ec998b8b6cd29063063e3eab1b.pesa@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/qscintilla/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/qscintilla/qscintilla-2.11.1.ebuild X-VCS-Directories: x11-libs/qscintilla/ X-VCS-Committer: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: 60deb392bb7477ec998b8b6cd29063063e3eab1b X-VCS-Branch: master Date: Wed, 3 Apr 2019 01:14:31 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a12e36b8-6643-4b2a-8cdb-d08ea4f3e25f X-Archives-Hash: 75c73ace396a5371ca1ef2989311c666 commit: 60deb392bb7477ec998b8b6cd29063063e3eab1b Author: Davide Pesavento gentoo org> AuthorDate: Wed Apr 3 01:14:23 2019 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Wed Apr 3 01:14:23 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60deb392 x11-libs/qscintilla: use the new canonical SRC_URI Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Davide Pesavento gentoo.org> x11-libs/qscintilla/qscintilla-2.11.1.ebuild | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/x11-libs/qscintilla/qscintilla-2.11.1.ebuild b/x11-libs/qscintilla/qscintilla-2.11.1.ebuild index 548fa9681dc..ae3d709bc0d 100644 --- a/x11-libs/qscintilla/qscintilla-2.11.1.ebuild +++ b/x11-libs/qscintilla/qscintilla-2.11.1.ebuild @@ -5,25 +5,30 @@ EAPI=7 inherit flag-o-matic qmake-utils -MY_P=QScintilla_gpl-${PV/_pre/.dev} - DESCRIPTION="Qt port of Neil Hodgson's Scintilla C++ editor control" HOMEPAGE="https://www.riverbankcomputing.com/software/qscintilla/intro" -SRC_URI="https://www.riverbankcomputing.com/static/Downloads/QScintilla/${MY_P}.tar.gz" + +MY_PN=QScintilla +MY_P=${MY_PN}_gpl-${PV/_pre/.dev} +if [[ ${PV} == *_pre* ]]; then + SRC_URI="https://dev.gentoo.org/~pesa/distfiles/${MY_P}.tar.gz" +else + SRC_URI="https://www.riverbankcomputing.com/static/Downloads/${MY_PN}/${PV}/${MY_P}.tar.gz" +fi LICENSE="GPL-3" SLOT="0/15" KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" IUSE="designer doc" -DEPEND=" +RDEPEND=" dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 designer? ( dev-qt/designer:5 ) " -RDEPEND="${DEPEND}" +DEPEND="${RDEPEND}" S=${WORKDIR}/${MY_P}