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 6F40F138334 for ; Thu, 27 Dec 2018 19:49:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6C3D5E07E2; Thu, 27 Dec 2018 19:49:36 +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 3D1D7E07E2 for ; Thu, 27 Dec 2018 19:49:36 +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 8945F335C78 for ; Thu, 27 Dec 2018 19:49:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 25A404CF for ; Thu, 27 Dec 2018 19:49:32 +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: <1545940149.c1817958017e66441540377a9bad895bbac27e0c.pesa@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sip/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sip/sip-4.19.14_pre1812231555.ebuild X-VCS-Directories: dev-python/sip/ X-VCS-Committer: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: c1817958017e66441540377a9bad895bbac27e0c X-VCS-Branch: master Date: Thu, 27 Dec 2018 19:49:32 +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: e3884d53-36fd-4bc9-bd74-b1593b639f0d X-Archives-Hash: fae1ff1b0a992cc9a61d9d8fb04af937 commit: c1817958017e66441540377a9bad895bbac27e0c Author: Davide Pesavento gentoo org> AuthorDate: Thu Dec 27 19:27:26 2018 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Thu Dec 27 19:49:09 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1817958 dev-python/sip: cosmetic changes to minimize diff with PyQt5-sip Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Davide Pesavento gentoo.org> dev-python/sip/sip-4.19.14_pre1812231555.ebuild | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/dev-python/sip/sip-4.19.14_pre1812231555.ebuild b/dev-python/sip/sip-4.19.14_pre1812231555.ebuild index 69b050301a6..294e56df9f4 100644 --- a/dev-python/sip/sip-4.19.14_pre1812231555.ebuild +++ b/dev-python/sip/sip-4.19.14_pre1812231555.ebuild @@ -9,12 +9,11 @@ inherit python-r1 toolchain-funcs DESCRIPTION="Python extension module generator for C and C++ libraries" HOMEPAGE="https://www.riverbankcomputing.com/software/sip/intro" +MY_P=${P/_pre/.dev} if [[ ${PV} == *_pre* ]]; then - MY_P=${P/_pre/.dev} SRC_URI="https://dev.gentoo.org/~pesa/distfiles/${MY_P}.tar.gz" - S=${WORKDIR}/${MY_P} else - SRC_URI="mirror://sourceforge/pyqt/${P}.tar.gz" + SRC_URI="mirror://sourceforge/pyqt/${MY_P}.tar.gz" fi # Sub-slot based on SIP_API_MAJOR_NR from siplib/sip.h @@ -23,10 +22,12 @@ LICENSE="|| ( GPL-2 GPL-3 SIP )" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" IUSE="debug doc" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + DEPEND="${PYTHON_DEPS}" RDEPEND="${DEPEND}" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" +S=${WORKDIR}/${MY_P} PATCHES=( "${FILESDIR}"/${PN}-4.18-darwin.patch )