Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] dev/mrueg:master commit in: eclass/
Date: Thu, 25 Jun 2015 11:46:29
Message-Id: 1435232779.513b4eb21f56a56cb6b363ed0fb690240330cabe.mrueg@gentoo
1 commit: 513b4eb21f56a56cb6b363ed0fb690240330cabe
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 25 11:46:19 2015 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 25 11:46:19 2015 +0000
6 URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=513b4eb2
7
8 [eclass] Fix incomplete renaming.
9
10 eclass/github.eclass | 4 ++--
11 1 file changed, 2 insertions(+), 2 deletions(-)
12
13 diff --git a/eclass/github.eclass b/eclass/github.eclass
14 index 4b4ac68..3b06e06 100644
15 --- a/eclass/github.eclass
16 +++ b/eclass/github.eclass
17 @@ -95,9 +95,9 @@ _calculate_patches_uri() {
18 done
19 fi
20 if [[ -n $GH_PULLREQ ]]; then
21 - for gh_pullreqid in "${GH_PULLREQS[@]}"; do
22 + for gh_pullreq in "${GH_PULLREQS[@]}"; do
23 SRC_URI+=" https://github.com/${GH_USER}/${GH_REPO}/pull//${gh_pullreq}.patch -> ${PN}-pr-${gh_pullreq}.patch"
24 - _GH_PATCHES+=("${DISTDIR}"/${PN}-pr-${gh_pullreqid}.patch)
25 + _GH_PATCHES+=("${DISTDIR}"/${PN}-pr-${gh_pullreq}.patch)
26 done
27 fi
28 }