Gentoo Archives: gentoo-commits

From: Heather Cynede <cynede@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/dotnet:master commit in: dev-util/monodevelop/
Date: Sat, 31 Jan 2015 20:55:48
Message-Id: 1422472439.05ba90137e091c0618953cc55ef481712b54a8e1.cynede@gentoo
1 commit: 05ba90137e091c0618953cc55ef481712b54a8e1
2 Author: Gustaw Smolarczyk <wielkiegie <AT> gmail <DOT> com>
3 AuthorDate: Wed Jan 28 19:13:59 2015 +0000
4 Commit: Heather Cynede <cynede <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 28 19:13:59 2015 +0000
6 URL: http://sources.gentoo.org/gitweb/?p=proj/dotnet.git;a=commit;h=05ba9013
7
8 Fix monodevelop-5.7.0 ebuild.
9
10 There was a missing git-r3_fetch before git-r3_checkout.
11
12 ---
13 dev-util/monodevelop/monodevelop-5.7.0.ebuild | 3 ++-
14 1 file changed, 2 insertions(+), 1 deletion(-)
15
16 diff --git a/dev-util/monodevelop/monodevelop-5.7.0.ebuild b/dev-util/monodevelop/monodevelop-5.7.0.ebuild
17 index 21426fa..5aa6ba5 100644
18 --- a/dev-util/monodevelop/monodevelop-5.7.0.ebuild
19 +++ b/dev-util/monodevelop/monodevelop-5.7.0.ebuild
20 @@ -12,7 +12,7 @@ SRC_URI="http://download.mono-project.com/sources/${PN}/${P}.660.tar.bz2
21 https://launchpadlibrarian.net/68057829/NUnit-2.5.10.11092.zip"
22
23 EGIT_REPO_URI="https://github.com/mono/nuget-binary.git"
24 -EGIT_CHECKOUT_DIR=${WORKDIR}/NuGet
25 +EGIT_CHECKOUT_DIR=${WORKDIR}/NuGet
26
27 LICENSE="GPL-2"
28 SLOT="0"
29 @@ -49,6 +49,7 @@ src_unpack() {
30 unpack ${A}
31
32 #clone NuGet binaries
33 + git-r3_fetch
34 git-r3_checkout
35 }