* [gentoo-commits] proj/dotnet:master commit in: dev-dotnet/system-web-mvc/, dev-dotnet/system-web-razor/, ...
@ 2016-09-07 6:13 Mikhail Pukhlikov
0 siblings, 0 replies; 2+ messages in thread
From: Mikhail Pukhlikov @ 2016-09-07 6:13 UTC (permalink / raw
To: gentoo-commits
commit: c43fae8a127e9bde64628a464bde3cef7537f1e8
Author: ArsenShnurkov <Arsen.Shnurkov <AT> gmail <DOT> com>
AuthorDate: Fri Sep 2 07:25:07 2016 +0000
Commit: Mikhail Pukhlikov <cynede <AT> gentoo <DOT> org>
CommitDate: Fri Sep 2 07:25:07 2016 +0000
URL: https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=c43fae8a
add strongsigning AFTER delaysing in build
dev-dotnet/system-web-mvc/system-web-mvc-5.2.3_p2014092400.ebuild | 3 ++-
.../system-web-razor/system-web-razor-3.2.3_p2014092400.ebuild | 6 ++----
.../system-web-webpages-3.2.3_p2014092400.ebuild | 5 ++++-
3 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/dev-dotnet/system-web-mvc/system-web-mvc-5.2.3_p2014092400.ebuild b/dev-dotnet/system-web-mvc/system-web-mvc-5.2.3_p2014092400.ebuild
index 9ad1b47..0ba7b0f 100644
--- a/dev-dotnet/system-web-mvc/system-web-mvc-5.2.3_p2014092400.ebuild
+++ b/dev-dotnet/system-web-mvc/system-web-mvc-5.2.3_p2014092400.ebuild
@@ -72,6 +72,7 @@ patch_nuspec_file()
src_compile() {
exbuild "${METAFILETOBUILD}"
+ sn -R "${DLL_PATH}/${DIR}/${DLL_NAME}.dll" /var/lib/layman/dotnet/eclass/mono.snk || die
einfo nuspec: "${S}/${NUSPEC_ID}.nuspec"
einfo nupkg: "${WORKDIR}/${NUSPEC_ID}.${NUSPEC_VERSION}.nupkg"
@@ -86,7 +87,7 @@ src_install() {
DIR="Release"
fi
-# egacinstall
+ egacinstall "${DLL_PATH}/${DIR}/${DLL_NAME}.dll"
enupkg "${WORKDIR}/${NUSPEC_ID}.${NUSPEC_VERSION}.nupkg"
}
diff --git a/dev-dotnet/system-web-razor/system-web-razor-3.2.3_p2014092400.ebuild b/dev-dotnet/system-web-razor/system-web-razor-3.2.3_p2014092400.ebuild
index e084cf9..969c99c 100644
--- a/dev-dotnet/system-web-razor/system-web-razor-3.2.3_p2014092400.ebuild
+++ b/dev-dotnet/system-web-razor/system-web-razor-3.2.3_p2014092400.ebuild
@@ -70,6 +70,7 @@ patch_nuspec_file()
src_compile() {
exbuild "${METAFILETOBUILD}"
+ sn -R "${DLL_PATH}/${DIR}/${DLL_NAME}.dll" /var/lib/layman/dotnet/eclass/mono.snk || die
einfo nuspec: "${S}/${NUSPEC_ID}.nuspec"
einfo nupkg: "${WORKDIR}/${NUSPEC_ID}.${NUSPEC_VERSION}.nupkg"
@@ -84,10 +85,7 @@ src_install() {
DIR="Release"
fi
-# if use gac; then
-# egacinstall "${S}/build/bin/${DIR}/Mono 4.x/NLog.dll"
-# egacinstall "${S}/build/bin/${DIR}/Mono 4.x/NLog.Extended.dll"
-# fi
+ egacinstall "${DLL_PATH}/${DIR}/${DLL_NAME}.dll"
enupkg "${WORKDIR}/${NUSPEC_ID}.${NUSPEC_VERSION}.nupkg"
}
diff --git a/dev-dotnet/system-web-webpages/system-web-webpages-3.2.3_p2014092400.ebuild b/dev-dotnet/system-web-webpages/system-web-webpages-3.2.3_p2014092400.ebuild
index d340ddd..ae49c59 100644
--- a/dev-dotnet/system-web-webpages/system-web-webpages-3.2.3_p2014092400.ebuild
+++ b/dev-dotnet/system-web-webpages/system-web-webpages-3.2.3_p2014092400.ebuild
@@ -72,6 +72,8 @@ patch_nuspec_file()
src_compile() {
exbuild "${METAFILETOBUILD}"
+ sn -R "${DLL_PATH}/${DIR}/${DLL_NAME}.dll" /var/lib/layman/dotnet/eclass/mono.snk || die
+ sn -R "${DLL_PATH}/${DIR}/System.Web.WebPages.Deployment.dll" /var/lib/layman/dotnet/eclass/mono.snk || die
einfo nuspec: "${S}/${NUSPEC_ID}.nuspec"
einfo nupkg: "${WORKDIR}/${NUSPEC_ID}.${NUSPEC_VERSION}.nupkg"
@@ -86,7 +88,8 @@ src_install() {
DIR="Release"
fi
-# egacinstall
+ egacinstall "${DLL_PATH}/${DIR}/${DLL_NAME}.dll"
+ egacinstall "${DLL_PATH}/${DIR}/System.Web.WebPages.Deployment.dll"
enupkg "${WORKDIR}/${NUSPEC_ID}.${NUSPEC_VERSION}.nupkg"
}
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] proj/dotnet:master commit in: dev-dotnet/system-web-mvc/, dev-dotnet/system-web-razor/, ...
@ 2016-09-07 6:13 Mikhail Pukhlikov
0 siblings, 0 replies; 2+ messages in thread
From: Mikhail Pukhlikov @ 2016-09-07 6:13 UTC (permalink / raw
To: gentoo-commits
commit: 37e7cd5b586b8337955d0c4040956a4c2c6bbf51
Author: ArsenShnurkov <Arsen.Shnurkov <AT> gmail <DOT> com>
AuthorDate: Fri Sep 2 07:36:32 2016 +0000
Commit: Mikhail Pukhlikov <cynede <AT> gentoo <DOT> org>
CommitDate: Fri Sep 2 07:36:32 2016 +0000
URL: https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=37e7cd5b
dependencies was added
dev-dotnet/system-web-mvc/system-web-mvc-5.2.3_p2014092400.ebuild | 1 +
dev-dotnet/system-web-razor/system-web-razor-3.2.3_p2014092400.ebuild | 1 +
.../system-web-webpages/system-web-webpages-3.2.3_p2014092400.ebuild | 1 +
3 files changed, 3 insertions(+)
diff --git a/dev-dotnet/system-web-mvc/system-web-mvc-5.2.3_p2014092400.ebuild b/dev-dotnet/system-web-mvc/system-web-mvc-5.2.3_p2014092400.ebuild
index 0ba7b0f..aa847fb 100644
--- a/dev-dotnet/system-web-mvc/system-web-mvc-5.2.3_p2014092400.ebuild
+++ b/dev-dotnet/system-web-mvc/system-web-mvc-5.2.3_p2014092400.ebuild
@@ -26,6 +26,7 @@ USE_DOTNET="net45"
IUSE="+${USE_DOTNET} developer debug"
COMMON_DEPEND=">=dev-lang/mono-4.0.2.5
+ dev-dotnet/system-web-webpages
"
RDEPEND="${COMMON_DEPEND}
"
diff --git a/dev-dotnet/system-web-razor/system-web-razor-3.2.3_p2014092400.ebuild b/dev-dotnet/system-web-razor/system-web-razor-3.2.3_p2014092400.ebuild
index 969c99c..f1acd16 100644
--- a/dev-dotnet/system-web-razor/system-web-razor-3.2.3_p2014092400.ebuild
+++ b/dev-dotnet/system-web-razor/system-web-razor-3.2.3_p2014092400.ebuild
@@ -26,6 +26,7 @@ USE_DOTNET="net45"
IUSE="+${USE_DOTNET} developer debug"
COMMON_DEPEND=">=dev-lang/mono-4.0.2.5
+ dev-dotnet/microsoft-web-infrastructure
"
RDEPEND="${COMMON_DEPEND}
"
diff --git a/dev-dotnet/system-web-webpages/system-web-webpages-3.2.3_p2014092400.ebuild b/dev-dotnet/system-web-webpages/system-web-webpages-3.2.3_p2014092400.ebuild
index ae49c59..946f16c 100644
--- a/dev-dotnet/system-web-webpages/system-web-webpages-3.2.3_p2014092400.ebuild
+++ b/dev-dotnet/system-web-webpages/system-web-webpages-3.2.3_p2014092400.ebuild
@@ -26,6 +26,7 @@ USE_DOTNET="net45"
IUSE="+${USE_DOTNET} developer debug"
COMMON_DEPEND=">=dev-lang/mono-4.0.2.5
+ dev-dotnet/system-web-razor
"
RDEPEND="${COMMON_DEPEND}
"
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-09-07 6:14 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-07 6:13 [gentoo-commits] proj/dotnet:master commit in: dev-dotnet/system-web-mvc/, dev-dotnet/system-web-razor/, Mikhail Pukhlikov
-- strict thread matches above, loose matches on Subject: below --
2016-09-07 6:13 Mikhail Pukhlikov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox