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:47:25
Message-Id: 1435232827.102cd13c63c02f8b9515079549deffe7364b105b.mrueg@gentoo
1 commit: 102cd13c63c02f8b9515079549deffe7364b105b
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 25 11:47:07 2015 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 25 11:47:07 2015 +0000
6 URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=102cd13c
7
8 [eclass] Drop superfluous /
9
10 eclass/github.eclass | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/eclass/github.eclass b/eclass/github.eclass
14 index 3b06e06..1f2b4b1 100644
15 --- a/eclass/github.eclass
16 +++ b/eclass/github.eclass
17 @@ -96,7 +96,7 @@ _calculate_patches_uri() {
18 fi
19 if [[ -n $GH_PULLREQ ]]; then
20 for gh_pullreq in "${GH_PULLREQS[@]}"; do
21 - SRC_URI+=" https://github.com/${GH_USER}/${GH_REPO}/pull//${gh_pullreq}.patch -> ${PN}-pr-${gh_pullreq}.patch"
22 + SRC_URI+=" https://github.com/${GH_USER}/${GH_REPO}/pull/${gh_pullreq}.patch -> ${PN}-pr-${gh_pullreq}.patch"
23 _GH_PATCHES+=("${DISTDIR}"/${PN}-pr-${gh_pullreq}.patch)
24 done
25 fi