Gentoo Archives: gentoo-commits

From: Heather Cynede <cynede@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/dotnet:master commit in: app-shells/pash/
Date: Thu, 25 Jun 2015 07:04:34
Message-Id: 1434897469.64be044f3ada04eb29a440e0e383f66947d656bf.cynede@gentoo
1 commit: 64be044f3ada04eb29a440e0e383f66947d656bf
2 Author: layman <-v>
3 AuthorDate: Sun Jun 21 14:37:49 2015 +0000
4 Commit: Heather Cynede <cynede <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 21 14:37:49 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=64be044f
7
8 fixes for repoman
9
10 app-shells/pash/pash-0.0-r20150618.ebuild | 31 +++++++++++++++----------------
11 1 file changed, 15 insertions(+), 16 deletions(-)
12
13 diff --git a/app-shells/pash/pash-0.0-r20150618.ebuild b/app-shells/pash/pash-0.0-r20150618.ebuild
14 index 1cb27fc..6f0268a 100644
15 --- a/app-shells/pash/pash-0.0-r20150618.ebuild
16 +++ b/app-shells/pash/pash-0.0-r20150618.ebuild
17 @@ -8,7 +8,7 @@ inherit dotnet
18
19 DESCRIPTION="An Open Source reimplementation of Windows PowerShell"
20
21 -LICENSE="BSD || ( GPL )" # LICENSE syntax is defined in https://wiki.gentoo.org/wiki/GLEP:23
22 +LICENSE="BSD || ( GPL-2+ )" # LICENSE syntax is defined in https://wiki.gentoo.org/wiki/GLEP:23
23
24 SLOT="0"
25
26 @@ -25,25 +25,24 @@ RDEPEND="${DEPEND}"
27
28 S="${WORKDIR}/${PROJECTNAME}-${EGIT_COMMIT}"
29
30 -
31 METAFILETOBUILD=${PROJECTNAME}.proj
32
33 src_compile() {
34 - # https://bugzilla.xamarin.com/show_bug.cgi?id=9340
35 - if use debug; then
36 - exbuild /p:DebugSymbols=True ${METAFILETOBUILD}
37 - else
38 - exbuild /p:DebugSymbols=False ${METAFILETOBUILD}
39 - fi
40 + # https://bugzilla.xamarin.com/show_bug.cgi?id=9340
41 + if use debug; then
42 + exbuild /p:DebugSymbols=True ${METAFILETOBUILD}
43 + else
44 + exbuild /p:DebugSymbols=False ${METAFILETOBUILD}
45 + fi
46 }
47
48 src_install() {
49 - elog "Installing assemblies"
50 - insinto /usr/lib/pash/
51 - doins ${S}/Source/PashConsole/bin/Release/Pash.exe
52 - doins ${S}/Source/PashConsole/bin/Release/*.dll
53 - if use debug; then
54 - doins ${S}/Source/PashConsole/bin/Release/*.mdb
55 - fi
56 - make_wrapper pash "mono /usr/lib/pash/Pash.exe"
57 + elog "Installing assemblies"
58 + insinto /usr/lib/pash/
59 + doins "${S}/Source/PashConsole/bin/Release/Pash.exe"
60 + doins "${S}/Source/PashConsole/bin/Release/*.dll"
61 + if use debug; then
62 + doins "${S}/Source/PashConsole/bin/Release/*.mdb"
63 + fi
64 + make_wrapper pash "mono /usr/lib/pash/Pash.exe"
65 }