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 4330315800A for ; Sun, 30 Jul 2023 14:28:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 64377E0C15; Sun, 30 Jul 2023 14:27:23 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 2BA3CE0C12 for ; Sun, 30 Jul 2023 14:27:23 +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, 30 Jul 2023 16:26:42 +0200 Message-ID: <20230730142647.872-5-xgqt@gentoo.org> X-Mailer: git-send-email 2.41.0 In-Reply-To: <20230730142647.872-1-xgqt@gentoo.org> References: <20230730142647.872-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: 56dd6bd0-d43f-47d5-971f-a9ae25f06de5 X-Archives-Hash: 50f8b8ef7fdea3125b387c9e3be211ea 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 000000000..9cf36cadf --- /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 000000000..3923b1a5a --- /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 000000000..08bae967b --- /dev/null +++ b/app-eselect/eselect-dotnet/metadata.xml @@ -0,0 +1,9 @@ + + + + + + dotnet@gentoo.org + Gentoo Dotnet Project + + -- 2.41.0