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 B7586138334 for ; Sat, 15 Dec 2018 13:51:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6E321E09EC; Sat, 15 Dec 2018 13:51:22 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 4571EE09EC for ; Sat, 15 Dec 2018 13:51:21 +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 0C68D335C3D for ; Sat, 15 Dec 2018 13:51:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 63A3044B for ; Sat, 15 Dec 2018 13:51:18 +0000 (UTC) From: "Eray Aslan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Eray Aslan" Message-ID: <1544881858.226edee4b114ccdcdc7c9245656e3a1a7ce09922.eras@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libverto/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libverto/libverto-0.3.0.ebuild X-VCS-Directories: dev-libs/libverto/ X-VCS-Committer: eras X-VCS-Committer-Name: Eray Aslan X-VCS-Revision: 226edee4b114ccdcdc7c9245656e3a1a7ce09922 X-VCS-Branch: master Date: Sat, 15 Dec 2018 13:51:18 +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: b717d0a4-45e0-4a38-88eb-8c8003608f6b X-Archives-Hash: 1f6011484800ad081f4f25fbe0bcb345 commit: 226edee4b114ccdcdc7c9245656e3a1a7ce09922 Author: Eray Aslan gentoo org> AuthorDate: Sat Dec 15 13:50:58 2018 +0000 Commit: Eray Aslan gentoo org> CommitDate: Sat Dec 15 13:50:58 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=226edee4 dev-libs/libverto: fix quotes Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Eray Aslan gentoo.org> dev-libs/libverto/libverto-0.3.0.ebuild | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/dev-libs/libverto/libverto-0.3.0.ebuild b/dev-libs/libverto/libverto-0.3.0.ebuild index f0b436a4b83..5ef09140c7a 100644 --- a/dev-libs/libverto/libverto-0.3.0.ebuild +++ b/dev-libs/libverto/libverto-0.3.0.ebuild @@ -2,6 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 + inherit autotools multilib-minimal DESCRIPTION="Main event loop abstraction library" @@ -26,10 +27,10 @@ RDEPEND="${DEPEND}" REQUIRED_USE="|| ( glib libev libevent tevent ) " -PATCHES=( ${FILESDIR}/${PN}-libev-c89.patch \ - ${FILESDIR}/${PN}-verify-cflags.patch \ - ${FILESDIR}/${PN}-Wflags.patch \ - ${FILESDIR}/${PN}-load.patch ) +PATCHES=( "${FILESDIR}/${PN}-libev-c89.patch" \ + "${FILESDIR}/${PN}-verify-cflags.patch" \ + "${FILESDIR}/${PN}-Wflags.patch" \ + "${FILESDIR}/${PN}-load.patch" ) DOCS=( AUTHORS ChangeLog NEWS INSTALL README )