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 0E82513832E for ; Fri, 5 Aug 2016 20:21:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2A23121C04E; Fri, 5 Aug 2016 20:21:27 +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 C533F21C04E for ; Fri, 5 Aug 2016 20:21:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1DDA0340967 for ; Fri, 5 Aug 2016 20:21:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EE10E7CE for ; Fri, 5 Aug 2016 20:21:21 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1470428469.4f91edf6fcbc417d8046c58fb6fd1dcc99fd7e58.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-mud/tf/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-mud/tf/tf-50_beta8-r2.ebuild X-VCS-Directories: games-mud/tf/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 4f91edf6fcbc417d8046c58fb6fd1dcc99fd7e58 X-VCS-Branch: master Date: Fri, 5 Aug 2016 20:21:21 +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: e247800a-944f-4e08-bb67-33265497611a X-Archives-Hash: 3d0314269a2608780dacb808f938284a commit: 4f91edf6fcbc417d8046c58fb6fd1dcc99fd7e58 Author: Sergei Trofimovich gentoo org> AuthorDate: Fri Aug 5 20:21:09 2016 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Fri Aug 5 20:21:09 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f91edf6 games-mud/tf: fix PATCHES variable not to use glob on DISTDIR Noticed egencache warning today: /gentoo-ebuilds/gentoo/games-mud/tf/tf-50_beta8-r2.ebuild: line 32: no match: /gentoo/distfiles/tf-all*patch.txt Package-Manager: portage-2.3.0 games-mud/tf/tf-50_beta8-r2.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/games-mud/tf/tf-50_beta8-r2.ebuild b/games-mud/tf/tf-50_beta8-r2.ebuild index 51ae5ae..7b3d1c9 100644 --- a/games-mud/tf/tf-50_beta8-r2.ebuild +++ b/games-mud/tf/tf-50_beta8-r2.ebuild @@ -26,7 +26,8 @@ DEPEND=${RDEPEND} S=${WORKDIR}/${MY_P} PATCHES=( - "${DISTDIR}"/tf-all*patch.txt + "${DISTDIR}"/tf-allrootpatch.txt + "${DISTDIR}"/tf-allsrcpatch.txt "${FILESDIR}"/${P}-pcre.patch "${FILESDIR}"/${P}-stdarg.patch )