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:07:26
Message-Id: 1435230428.d28600c6abe90135bac0f6d2360472b9c39db4b8.mrueg@gentoo
1 commit: d28600c6abe90135bac0f6d2360472b9c39db4b8
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 25 11:07:08 2015 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 25 11:07:08 2015 +0000
6 URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=d28600c6
7
8 [eclass] Fix patch SRC_URI creation.
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 6c302f5..7f33ab5 100644
15 --- a/eclass/github.eclass
16 +++ b/eclass/github.eclass
17 @@ -80,7 +80,7 @@ _calculate_patches_uri() {
18 if [[ -n $GH_PATCHES ]]; then
19 _GH_PATCHES=
20 for gh_commit in "${GH_PATCHES[@]}"; do
21 - SRC_URI=+" https://github.com/${GH_USER}/${GH_REPO}/commit/${gh_commit}.patch -> ${PN}-${gh_commit}.patch"
22 + SRC_URI+=" https://github.com/${GH_USER}/${GH_REPO}/commit/${gh_commit}.patch -> ${PN}-${gh_commit}.patch"
23 _GH_PATCHES+=( "${DISTDIR}"/${PN}-${gh_commit}.patch )
24 done
25 fi