From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 8DE7B138CEE for ; Thu, 25 Jun 2015 11:46:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 30CCBE08A1; Thu, 25 Jun 2015 11:46:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E8353E08A1 for ; Thu, 25 Jun 2015 11:46:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1DED7340831 for ; Thu, 25 Jun 2015 11:46:28 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C4BCCA25 for ; Thu, 25 Jun 2015 11:46:26 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1435232779.513b4eb21f56a56cb6b363ed0fb690240330cabe.mrueg@gentoo> Subject: [gentoo-commits] dev/mrueg:master commit in: eclass/ X-VCS-Repository: dev/mrueg X-VCS-Files: eclass/github.eclass X-VCS-Directories: eclass/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 513b4eb21f56a56cb6b363ed0fb690240330cabe X-VCS-Branch: master Date: Thu, 25 Jun 2015 11:46:26 +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: afb62d56-266c-4eec-9e19-24d3cec67f3d X-Archives-Hash: 99f152ce1ef4fc7af9f8438d6047ab25 commit: 513b4eb21f56a56cb6b363ed0fb690240330cabe Author: Manuel Rüger gentoo org> AuthorDate: Thu Jun 25 11:46:19 2015 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Thu Jun 25 11:46:19 2015 +0000 URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=513b4eb2 [eclass] Fix incomplete renaming. eclass/github.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/github.eclass b/eclass/github.eclass index 4b4ac68..3b06e06 100644 --- a/eclass/github.eclass +++ b/eclass/github.eclass @@ -95,9 +95,9 @@ _calculate_patches_uri() { done fi if [[ -n $GH_PULLREQ ]]; then - for gh_pullreqid in "${GH_PULLREQS[@]}"; do + for gh_pullreq in "${GH_PULLREQS[@]}"; do SRC_URI+=" https://github.com/${GH_USER}/${GH_REPO}/pull//${gh_pullreq}.patch -> ${PN}-pr-${gh_pullreq}.patch" - _GH_PATCHES+=("${DISTDIR}"/${PN}-pr-${gh_pullreqid}.patch) + _GH_PATCHES+=("${DISTDIR}"/${PN}-pr-${gh_pullreq}.patch) done fi }