From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 32E9E15800A for ; Sun, 16 Jul 2023 12:41:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 44044E08AE; Sun, 16 Jul 2023 12:39:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B63BEE08AB for ; Sun, 16 Jul 2023 12:39:56 +0000 (UTC) From: =?UTF-8?q?Maciej=20Bar=C4=87?= To: gentoo-dev@lists.gentoo.org Cc: =?UTF-8?q?Maciej=20Bar=C4=87?= Subject: [gentoo-dev] [PATCH 5/7] app-eselect/eselect-dotnet: new package Date: Sun, 16 Jul 2023 14:38:07 +0200 Message-ID: <20230716123830.78932-5-xgqt@gentoo.org> X-Mailer: git-send-email 2.41.0 In-Reply-To: <20230716123830.78932-1-xgqt@gentoo.org> References: <20230716123830.78932-1-xgqt@gentoo.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Archives-Salt: b27231c4-e968-4c67-aaee-fb4ad0d4483c X-Archives-Hash: da03687b8503b728895b664ea1dc1232 Bug: https://bugs.gentoo.org/900597 Bug: https://github.com/gentoo/gentoo/pull/29309 Signed-off-by: Maciej Barć --- app-eselect/eselect-dotnet/Manifest | 1 + .../eselect-dotnet-0.1.0.ebuild | 25 +++++++++++++++++++ app-eselect/eselect-dotnet/metadata.xml | 9 +++++++ 3 files changed, 35 insertions(+) create mode 100644 app-eselect/eselect-dotnet/Manifest create mode 100644 app-eselect/eselect-dotnet/eselect-dotnet-0.1.0.ebuild create mode 100644 app-eselect/eselect-dotnet/metadata.xml diff --git a/app-eselect/eselect-dotnet/Manifest b/app-eselect/eselect-dotnet/Manifest new file mode 100644 index 0000000000..9cf36cadf1 --- /dev/null +++ b/app-eselect/eselect-dotnet/Manifest @@ -0,0 +1 @@ +DIST eselect-dotnet-0.1.0.tar.bz2 7788 BLAKE2B 141e5a2fc765454682de60a6a337d6634766b4dd76f218606e2f4eb18960fdcf8940b954deda2fb6b0903f72b161513936c1d767210883316c32200704188945 SHA512 879281ffff019d1e4a8a5ee3d3e6b6de3446ba573d253a5b3b0c59aa9faffcd6eb4382066e1752e18cb4e48c3e14340a278b2189c2674b1baa258ceb3980d13a diff --git a/app-eselect/eselect-dotnet/eselect-dotnet-0.1.0.ebuild b/app-eselect/eselect-dotnet/eselect-dotnet-0.1.0.ebuild new file mode 100644 index 0000000000..3923b1a5a3 --- /dev/null +++ b/app-eselect/eselect-dotnet/eselect-dotnet-0.1.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Eselect module for management of multiple dotnet versions" +HOMEPAGE="https://gitlab.gentoo.org/dotnet/eselect-dotnet/" + +if [[ ${PV} == *9999* ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://gitlab.gentoo.org/dotnet/${PN}.git" +else + SRC_URI="https://gitlab.gentoo.org/dotnet/${PN}/-/archive/${PV}/${P}.tar.bz2" + KEYWORDS="~amd64 ~arm ~arm64" +fi + +LICENSE="GPL-2+" +SLOT="0" + +RDEPEND="app-admin/eselect" + +src_install() { + insinto /usr/share/eselect/modules + doins dotnet.eselect +} diff --git a/app-eselect/eselect-dotnet/metadata.xml b/app-eselect/eselect-dotnet/metadata.xml new file mode 100644 index 0000000000..08bae967b8 --- /dev/null +++ b/app-eselect/eselect-dotnet/metadata.xml @@ -0,0 +1,9 @@ + + + + + + dotnet@gentoo.org + Gentoo Dotnet Project + + -- 2.41.0