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 8D37D1382C5 for ; Thu, 21 May 2020 18:49:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BB734E0932; Thu, 21 May 2020 18:49:41 +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 A16B6E0932 for ; Thu, 21 May 2020 18:49:41 +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 78A1F34F0E2 for ; Thu, 21 May 2020 18:49:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 680F8230 for ; Thu, 21 May 2020 18:49:38 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1590086809.bd600564db9f5c5edacd9a172aa95cd7345703ff.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/kqoauth/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/kqoauth/kqoauth-0.98-r2.ebuild X-VCS-Directories: dev-libs/kqoauth/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: bd600564db9f5c5edacd9a172aa95cd7345703ff X-VCS-Branch: master Date: Thu, 21 May 2020 18:49:38 +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: c2550bd3-1674-4951-a9f9-0be6137bfa83 X-Archives-Hash: cd9c306a1ad6d030a23dcb4dd270b3c8 commit: bd600564db9f5c5edacd9a172aa95cd7345703ff Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu May 21 18:46:49 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu May 21 18:46:49 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd600564 dev-libs/kqoauth: EAPI-7 bump Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/kqoauth/kqoauth-0.98-r2.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dev-libs/kqoauth/kqoauth-0.98-r2.ebuild b/dev-libs/kqoauth/kqoauth-0.98-r2.ebuild index dbfc65327cd..af40313065f 100644 --- a/dev-libs/kqoauth/kqoauth-0.98-r2.ebuild +++ b/dev-libs/kqoauth/kqoauth-0.98-r2.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 inherit qmake-utils @@ -30,10 +30,10 @@ src_prepare() { # prevent tests from beeing built at src_compile sed -i -e '/SUBDIRS/s/ tests//' ${PN}.pro || die "sed on ${PN}.pro failed" # respect libdir - sed -e 's:{INSTALL_PREFIX}/lib:[QT_INSTALL_LIBS]:g' -i src/src.pro || die "sed on src.pro failed" + sed -e 's:{INSTALL_PREFIX}/lib:[QT_INSTALL_LIBS]:g'\ + -i src/src.pro || die "sed on src.pro failed" - sed \ - -e "s/TARGET = kqoauth/TARGET = kqoauth-qt5/g" \ + sed -e "s/TARGET = kqoauth/TARGET = kqoauth-qt5/g" \ -i src/src.pro || die }