public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Mikhail Pukhlikov" <cynede@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/dotnet:master commit in: dev-dotnet/dotnetcore-runtime-bin/, dev-dotnet/dotnetcore-sdk-bin/, ...
Date: Tue, 23 Jan 2018 06:42:13 +0000 (UTC)	[thread overview]
Message-ID: <1515372650.486a4d86e40ed3aecd7e7cd7c861e8e3f946b953.cynede@gentoo> (raw)

commit:     486a4d86e40ed3aecd7e7cd7c861e8e3f946b953
Author:     grbd <garlicbready <AT> googlemail <DOT> com>
AuthorDate: Mon Jan  8 00:50:50 2018 +0000
Commit:     Mikhail Pukhlikov <cynede <AT> gentoo <DOT> org>
CommitDate: Mon Jan  8 00:50:50 2018 +0000
URL:        https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=486a4d86

Added initial bin ebuilds for dotnet core

 .../dotnetcore-aspnet-bin-2.0.3.ebuild             | 39 +++++++++++++++++++
 .../dotnetcore-runtime-bin-2.0.4.ebuild            | 43 +++++++++++++++++++++
 .../dotnetcore-sdk-bin-2.1.3.ebuild                | 45 ++++++++++++++++++++++
 3 files changed, 127 insertions(+)

diff --git a/dev-dotnet/dotnetcore-aspnet-bin/dotnetcore-aspnet-bin-2.0.3.ebuild b/dev-dotnet/dotnetcore-aspnet-bin/dotnetcore-aspnet-bin-2.0.3.ebuild
new file mode 100644
index 0000000..5150957
--- /dev/null
+++ b/dev-dotnet/dotnetcore-aspnet-bin/dotnetcore-aspnet-bin-2.0.3.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+inherit eutils
+
+DESCRIPTION=".NET Core ASP.NET Runtime - binary precompiled for glibc"t
+HOMEPAGE="https://www.microsoft.com/net/core"
+LICENSE="MIT"
+
+SRC_URI="https://download.microsoft.com/download/5/C/1/5C190037-632B-443D-842D-39085F02E1E8/aspnetcore-store-${PV}-linux-x64.tar.gz -> aspnetcore-store-${PV}-linux-x64.tar.gz"
+
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+    >=sys-apps/lsb-release-1.4
+    >=sys-devel/llvm-4.0
+    >=dev-util/lldb-4.0
+    >=sys-libs/libunwind-1.1-r1
+    >=dev-libs/icu-57.1
+    >=dev-util/lttng-ust-2.8.1
+    >=dev-libs/openssl-1.0.2h-r2
+    >=net-misc/curl-7.49.0
+    >=app-crypt/mit-krb5-1.14.2
+    >=sys-libs/zlib-1.2.8-r1
+	=dev-dotnet/dotnetcore-runtime-bin-2.0.4"
+
+S=${WORKDIR}
+
+src_install() {
+	local dest="opt/dotnet_core"
+    dodir "${dest}"
+
+    local ddest="${D}${dest}"
+	cp -a ${S}/* "${ddest}/" || die
+}

diff --git a/dev-dotnet/dotnetcore-runtime-bin/dotnetcore-runtime-bin-2.0.4.ebuild b/dev-dotnet/dotnetcore-runtime-bin/dotnetcore-runtime-bin-2.0.4.ebuild
new file mode 100644
index 0000000..9365781
--- /dev/null
+++ b/dev-dotnet/dotnetcore-runtime-bin/dotnetcore-runtime-bin-2.0.4.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+inherit eutils
+
+DESCRIPTION=".NET Core Runtime - binary precompiled for glibc"
+HOMEPAGE="https://www.microsoft.com/net/core"
+LICENSE="MIT"
+
+SRC_URI="https://download.microsoft.com/download/2/B/2/2B2854E7-7EAE-4FE9-85D2-19ACCD716F18/dotnet-runtime-${PV}-linux-x64.tar.gz -> dotnet-runtime-${PV}-linux-x64.tar.gz"
+
+SLOT="0"
+KEYWORDS="~amd64"
+
+# The sdk includes the runtime-bin and aspnet-bin so prevent from installing at the same time
+
+RDEPEND="
+    >=sys-apps/lsb-release-1.4
+    >=sys-devel/llvm-4.0
+    >=dev-util/lldb-4.0
+    >=sys-libs/libunwind-1.1-r1
+    >=dev-libs/icu-57.1
+    >=dev-util/lttng-ust-2.8.1
+    >=dev-libs/openssl-1.0.2h-r2
+    >=net-misc/curl-7.49.0
+    >=app-crypt/mit-krb5-1.14.2
+    >=sys-libs/zlib-1.2.8-r1
+	!dev-dotnet/dotnetcore-sdk
+	!dev-dotnet/dotnetcore-sdk-bin"
+
+S=${WORKDIR}
+
+src_install() {
+	local dest="opt/dotnet_core"
+    dodir "${dest}"
+
+    local ddest="${D}${dest}"
+	cp -a ${S}/* "${ddest}/" || die
+	dosym "/${dest}/dotnet" "/usr/bin/dotnet"
+}

diff --git a/dev-dotnet/dotnetcore-sdk-bin/dotnetcore-sdk-bin-2.1.3.ebuild b/dev-dotnet/dotnetcore-sdk-bin/dotnetcore-sdk-bin-2.1.3.ebuild
new file mode 100644
index 0000000..3b524e6
--- /dev/null
+++ b/dev-dotnet/dotnetcore-sdk-bin/dotnetcore-sdk-bin-2.1.3.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+inherit eutils
+
+DESCRIPTION=".NET Core SDK - binary precompiled for glibc"
+HOMEPAGE="https://www.microsoft.com/net/core"
+LICENSE="MIT"
+
+SRC_URI="https://download.microsoft.com/download/2/9/3/293BC432-348C-4D1C-B628-5AC8AB7FA162/dotnet-sdk-${PV}-linux-x64.tar.gz -> dotnet-sdk-${PV}-linux-x64.tar.gz"
+
+SLOT="0"
+KEYWORDS="~amd64"
+
+# The sdk includes the runtime-bin and aspnet-bin so prevent from installing at the same time
+# dotnetcore-sdk is the source based build
+
+RDEPEND="
+    >=sys-apps/lsb-release-1.4
+    >=sys-devel/llvm-4.0
+    >=dev-util/lldb-4.0
+    >=sys-libs/libunwind-1.1-r1
+    >=dev-libs/icu-57.1
+    >=dev-util/lttng-ust-2.8.1
+    >=dev-libs/openssl-1.0.2h-r2
+    >=net-misc/curl-7.49.0
+    >=app-crypt/mit-krb5-1.14.2
+    >=sys-libs/zlib-1.2.8-r1
+	!dev-dotnet/dotnetcore-sdk
+	!dev-dotnet/dotnetcore-runtime-bin
+	!dev-dotnet/dotnetcore-aspnet-bin"
+
+S=${WORKDIR}
+
+src_install() {
+	local dest="opt/dotnet_core"
+    dodir "${dest}"
+
+    local ddest="${D}${dest}"
+	cp -a ${S}/* "${ddest}/" || die
+	dosym "/${dest}/dotnet" "/usr/bin/dotnet"
+}


                 reply	other threads:[~2018-01-23  6:42 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1515372650.486a4d86e40ed3aecd7e7cd7c861e8e3f946b953.cynede@gentoo \
    --to=cynede@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox