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 549A9139694 for ; Thu, 27 Apr 2017 19:16:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7EB1721C090; Thu, 27 Apr 2017 19:16:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5F45521C090 for ; Thu, 27 Apr 2017 19:16:22 +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 455A733D3CE for ; Thu, 27 Apr 2017 19:16:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E04707438 for ; Thu, 27 Apr 2017 19:16:19 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1493320547.6f5743da0cc7b83eee05fefed07791d8c477cc7a.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dialup/cutecom/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dialup/cutecom/cutecom-0.40.0-r1.ebuild net-dialup/cutecom/cutecom-0.40.0.ebuild X-VCS-Directories: net-dialup/cutecom/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 6f5743da0cc7b83eee05fefed07791d8c477cc7a X-VCS-Branch: master Date: Thu, 27 Apr 2017 19:16:19 +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-Archives-Salt: 89605846-fac8-4ebf-9bf4-f91be34fd57e X-Archives-Hash: 67e1884e7f7742bed33187312352cbdd commit: 6f5743da0cc7b83eee05fefed07791d8c477cc7a Author: Michael Orlitzky gentoo org> AuthorDate: Thu Apr 27 19:06:58 2017 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Thu Apr 27 19:15:47 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f5743da net-dialup/cutecom: new revision to drop unused eutils.eclass. Package-Manager: Portage-2.3.3, Repoman-2.3.1 .../cutecom/{cutecom-0.40.0.ebuild => cutecom-0.40.0-r1.ebuild} | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/net-dialup/cutecom/cutecom-0.40.0.ebuild b/net-dialup/cutecom/cutecom-0.40.0-r1.ebuild similarity index 83% rename from net-dialup/cutecom/cutecom-0.40.0.ebuild rename to net-dialup/cutecom/cutecom-0.40.0-r1.ebuild index 552e006cf0d..2b1539ca374 100644 --- a/net-dialup/cutecom/cutecom-0.40.0.ebuild +++ b/net-dialup/cutecom/cutecom-0.40.0-r1.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit cmake-utils eutils +inherit cmake-utils DESCRIPTION="CuteCom is a serial terminal, like minicom, written in qt" HOMEPAGE="https://github.com/neundorf/CuteCom" @@ -27,13 +27,13 @@ src_prepare() { sed -i \ -e '/Path/d' \ -e '/Terminal/s/0/false/' \ - ${PN}.desktop || die 'sed on desktop file failed' + "${PN}.desktop" || die 'sed on desktop file failed' cmake-utils_src_prepare } src_install() { cmake-utils_src_install - domenu ${PN}.desktop - doicon distribution/${PN}.png + domenu "${PN}.desktop" + doicon "distribution/${PN}.png" }