public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/dotnet:master commit in: app-shells/pash/
@ 2015-06-25  7:04 Heather Cynede
  0 siblings, 0 replies; 5+ messages in thread
From: Heather Cynede @ 2015-06-25  7:04 UTC (permalink / raw
  To: gentoo-commits

commit:     ea7a2612720c5128f2412d93512ba6581a28fe2b
Author:     layman <-v>
AuthorDate: Sun Jun 21 15:01:37 2015 +0000
Commit:     Heather Cynede <cynede <AT> gentoo <DOT> org>
CommitDate: Sun Jun 21 15:01:37 2015 +0000
URL:        https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=ea7a2612

removing  from doins paths

 app-shells/pash/pash-0.0-r20150618.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-shells/pash/pash-0.0-r20150618.ebuild b/app-shells/pash/pash-0.0-r20150618.ebuild
index 6f0268a..bc437cb 100644
--- a/app-shells/pash/pash-0.0-r20150618.ebuild
+++ b/app-shells/pash/pash-0.0-r20150618.ebuild
@@ -39,10 +39,10 @@ src_compile() {
 src_install() {
 	elog "Installing assemblies"
 	insinto /usr/lib/pash/
-	doins "${S}/Source/PashConsole/bin/Release/Pash.exe"
-	doins "${S}/Source/PashConsole/bin/Release/*.dll"
+	doins Source/PashConsole/bin/Release/Pash.exe
+	doins Source/PashConsole/bin/Release/*.dll
 	if use debug; then
-		doins "${S}/Source/PashConsole/bin/Release/*.mdb"
+		doins Source/PashConsole/bin/Release/*.mdb
 	fi
 	make_wrapper pash "mono /usr/lib/pash/Pash.exe"
 }


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] proj/dotnet:master commit in: app-shells/pash/
@ 2015-06-25  7:04 Heather Cynede
  0 siblings, 0 replies; 5+ messages in thread
From: Heather Cynede @ 2015-06-25  7:04 UTC (permalink / raw
  To: gentoo-commits

commit:     64be044f3ada04eb29a440e0e383f66947d656bf
Author:     layman <-v>
AuthorDate: Sun Jun 21 14:37:49 2015 +0000
Commit:     Heather Cynede <cynede <AT> gentoo <DOT> org>
CommitDate: Sun Jun 21 14:37:49 2015 +0000
URL:        https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=64be044f

fixes for repoman

 app-shells/pash/pash-0.0-r20150618.ebuild | 31 +++++++++++++++----------------
 1 file changed, 15 insertions(+), 16 deletions(-)

diff --git a/app-shells/pash/pash-0.0-r20150618.ebuild b/app-shells/pash/pash-0.0-r20150618.ebuild
index 1cb27fc..6f0268a 100644
--- a/app-shells/pash/pash-0.0-r20150618.ebuild
+++ b/app-shells/pash/pash-0.0-r20150618.ebuild
@@ -8,7 +8,7 @@ inherit dotnet
 
 DESCRIPTION="An Open Source reimplementation of Windows PowerShell"
 
-LICENSE="BSD || ( GPL )"   # LICENSE syntax is defined in https://wiki.gentoo.org/wiki/GLEP:23
+LICENSE="BSD || ( GPL-2+ )"   # LICENSE syntax is defined in https://wiki.gentoo.org/wiki/GLEP:23
 
 SLOT="0"
 
@@ -25,25 +25,24 @@ RDEPEND="${DEPEND}"
 
 S="${WORKDIR}/${PROJECTNAME}-${EGIT_COMMIT}"
 
-
 METAFILETOBUILD=${PROJECTNAME}.proj
 
 src_compile() {
-    # https://bugzilla.xamarin.com/show_bug.cgi?id=9340
-    if use debug; then
-        exbuild /p:DebugSymbols=True ${METAFILETOBUILD}
-    else
-        exbuild /p:DebugSymbols=False ${METAFILETOBUILD}
-    fi
+	# https://bugzilla.xamarin.com/show_bug.cgi?id=9340
+	if use debug; then
+		exbuild /p:DebugSymbols=True ${METAFILETOBUILD}
+	else
+		exbuild /p:DebugSymbols=False ${METAFILETOBUILD}
+	fi
 }
 
 src_install() {
-    elog "Installing assemblies"
-    insinto /usr/lib/pash/
-    doins ${S}/Source/PashConsole/bin/Release/Pash.exe
-    doins ${S}/Source/PashConsole/bin/Release/*.dll
-    if use debug; then
-        doins ${S}/Source/PashConsole/bin/Release/*.mdb
-    fi
-    make_wrapper pash "mono /usr/lib/pash/Pash.exe"
+	elog "Installing assemblies"
+	insinto /usr/lib/pash/
+	doins "${S}/Source/PashConsole/bin/Release/Pash.exe"
+	doins "${S}/Source/PashConsole/bin/Release/*.dll"
+	if use debug; then
+		doins "${S}/Source/PashConsole/bin/Release/*.mdb"
+	fi
+	make_wrapper pash "mono /usr/lib/pash/Pash.exe"
 }


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] proj/dotnet:master commit in: app-shells/pash/
@ 2015-06-25  7:04 Heather Cynede
  0 siblings, 0 replies; 5+ messages in thread
From: Heather Cynede @ 2015-06-25  7:04 UTC (permalink / raw
  To: gentoo-commits

commit:     26e7ad910fae109a65a00eb97e347ddac78b2423
Author:     layman <-v>
AuthorDate: Sun Jun 21 14:22:11 2015 +0000
Commit:     Heather Cynede <cynede <AT> gentoo <DOT> org>
CommitDate: Sun Jun 21 14:22:11 2015 +0000
URL:        https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=26e7ad91

metadata for debug flag was added

 app-shells/pash/metadata.xml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/app-shells/pash/metadata.xml b/app-shells/pash/metadata.xml
new file mode 100644
index 0000000..6372efe
--- /dev/null
+++ b/app-shells/pash/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>dotnet</herd>
+<use>
+	<flag name='debug'>Create .mdb files for release configuration</flag>
+</use>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] proj/dotnet:master commit in: app-shells/pash/
@ 2017-10-30  6:44 Mikhail Pukhlikov
  0 siblings, 0 replies; 5+ messages in thread
From: Mikhail Pukhlikov @ 2017-10-30  6:44 UTC (permalink / raw
  To: gentoo-commits

commit:     1e7ef9a71421a3a4c85399fa24a34dc980a87374
Author:     ArsenShnurkov <ArsenShnurkov <AT> users <DOT> noreply <DOT> github <DOT> com>
AuthorDate: Fri Oct 13 07:07:46 2017 +0000
Commit:     Mikhail Pukhlikov <cynede <AT> gentoo <DOT> org>
CommitDate: Fri Oct 13 12:19:11 2017 +0000
URL:        https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=1e7ef9a7

initial template and digest

 app-shells/pash/pash-0.0_p2016060606.ebuild | 44 +++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)

diff --git a/app-shells/pash/pash-0.0_p2016060606.ebuild b/app-shells/pash/pash-0.0_p2016060606.ebuild
new file mode 100644
index 0000000..3081245
--- /dev/null
+++ b/app-shells/pash/pash-0.0_p2016060606.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+KEYWORDS="~x86 ~amd64 ~ppc"
+RESTRICT="mirror"
+SLOT="0"
+
+USE_DOTNET="net45"
+IUSE="+${USE_DOTNET}"
+
+inherit msbuild eutils
+
+DESCRIPTION="An Open Source reimplementation of Windows PowerShell"
+
+LICENSE="BSD || ( GPL-2+ )"   # LICENSE syntax is defined in https://wiki.gentoo.org/wiki/GLEP:23
+
+PROJECTNAME="Pash"
+HOMEPAGE="https://github.com/Pash-Project/${PROJECTNAME}"
+EGIT_COMMIT="8d6a48f5ed70d64f9b49e6849b3ee35b887dc254"
+SRC_URI="${HOMEPAGE}/archive/${EGIT_COMMIT}.tar.gz -> ${P}-${PR}.tar.gz"
+S="${WORKDIR}/${PROJECTNAME}-${EGIT_COMMIT}"
+
+CDEPEND="|| ( >=dev-lang/mono-5.4.0.167 <dev-lang/mono-9999 )"
+RDEPEND="${CDEPEND}"
+DEPEND="${CDEPEND}"
+
+
+METAFILETOBUILD=${PROJECTNAME}.proj
+
+src_compile() {
+	emsbuild "${METAFILETOBUILD}"
+}
+
+src_install() {
+	insinto /usr/lib/pash/
+	doins Source/PashConsole/bin/Release/Pash.exe
+	doins Source/PashConsole/bin/Release/*.dll
+	if use developer; then
+		doins Source/PashConsole/bin/Release/*.pdb
+	fi
+	make_wrapper pash "mono /usr/lib/pash/Pash.exe"
+}


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] proj/dotnet:master commit in: app-shells/pash/
@ 2017-10-30  6:44 Mikhail Pukhlikov
  0 siblings, 0 replies; 5+ messages in thread
From: Mikhail Pukhlikov @ 2017-10-30  6:44 UTC (permalink / raw
  To: gentoo-commits

commit:     1f2277fb97e1a9bafedfea24ace3c130f1e99989
Author:     ArsenShnurkov <ArsenShnurkov <AT> users <DOT> noreply <DOT> github <DOT> com>
AuthorDate: Fri Oct 13 12:13:47 2017 +0000
Commit:     Mikhail Pukhlikov <cynede <AT> gentoo <DOT> org>
CommitDate: Fri Oct 13 12:19:11 2017 +0000
URL:        https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=1f2277fb

remove duplicated attributes

 app-shells/pash/pash-0.0_p2016060606.ebuild | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/app-shells/pash/pash-0.0_p2016060606.ebuild b/app-shells/pash/pash-0.0_p2016060606.ebuild
index 0e02efd..2afadef 100644
--- a/app-shells/pash/pash-0.0_p2016060606.ebuild
+++ b/app-shells/pash/pash-0.0_p2016060606.ebuild
@@ -23,7 +23,7 @@ SRC_URI="${HOMEPAGE}/archive/${EGIT_COMMIT}.tar.gz -> ${P}-${PR}.tar.gz"
 S="${WORKDIR}/${PROJECTNAME}-${EGIT_COMMIT}"
 
 CDEPEND="|| ( >=dev-lang/mono-5.4.0.167 <dev-lang/mono-9999 )
-	dev-dotnet/irony-framework
+	dev-dotnet/irony-daxnet
 	"
 
 RDEPEND="${CDEPEND}
@@ -52,6 +52,11 @@ PROJECT5_NAME=PashConsole
 PROJECT5_OUT=PashConsole
 
 src_prepare() {
+	sed -i "/Version/d" "${S}/${PROJECT1_PATH}/Properties/AssemblyInfo.cs" || die
+	sed -i "/Version/d" "${S}/${PROJECT2_PATH}/Properties/AssemblyInfo.cs" || die
+	sed -i "/Version/d" "${S}/${PROJECT3_PATH}/Properties/AssemblyInfo.cs" || die
+	sed -i "/Version/d" "${S}/${PROJECT4_PATH}/Properties/AssemblyInfo.cs" || die
+	sed -i "/Version/d" "${S}/${PROJECT5_PATH}/Properties/AssemblyInfo.cs" || die
 	cp "${FILESDIR}/template.csproj" "${S}/${PROJECT1_PATH}/${PROJECT1_NAME}.csproj" || die
 	cp "${FILESDIR}/template.csproj" "${S}/${PROJECT2_PATH}/${PROJECT2_NAME}.csproj" || die
 	sed -i 's#^.*-- Reference --.*$#&\n<Reference Include="Irony" />#' "${S}/${PROJECT2_PATH}/${PROJECT2_NAME}.csproj" || die


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-10-30  6:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-25  7:04 [gentoo-commits] proj/dotnet:master commit in: app-shells/pash/ Heather Cynede
  -- strict thread matches above, loose matches on Subject: below --
2015-06-25  7:04 Heather Cynede
2015-06-25  7:04 Heather Cynede
2017-10-30  6:44 Mikhail Pukhlikov
2017-10-30  6:44 Mikhail Pukhlikov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox