public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-shells/posh-dotnet/
@ 2023-10-07 14:57 Maciej Barć
  0 siblings, 0 replies; 2+ messages in thread
From: Maciej Barć @ 2023-10-07 14:57 UTC (permalink / raw
  To: gentoo-commits

commit:     f032399d2703c2c708d886c6ada3a070da36e538
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sat Oct  7 14:11:28 2023 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sat Oct  7 14:57:41 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f032399d

app-shells/posh-dotnet: new package; add 1.2.3

Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 app-shells/posh-dotnet/Manifest                 |  1 +
 app-shells/posh-dotnet/metadata.xml             | 13 +++++++++
 app-shells/posh-dotnet/posh-dotnet-1.2.3.ebuild | 39 +++++++++++++++++++++++++
 3 files changed, 53 insertions(+)

diff --git a/app-shells/posh-dotnet/Manifest b/app-shells/posh-dotnet/Manifest
new file mode 100644
index 000000000000..1dff1b35e6e3
--- /dev/null
+++ b/app-shells/posh-dotnet/Manifest
@@ -0,0 +1 @@
+DIST posh-dotnet-1.2.3.tar.gz 27996 BLAKE2B 88c6c771c5a8df6dc98785d11a586347b2ca167fd2353d373e371c40fa8b9f8385c6706ac9d9473a8a5d07a432a60e72644e69d806c298a9369dd2dc4e778266 SHA512 020d039ba3818cdc4861132514a2182f8093230be9647d1c18a015f095201d1df91b8622e5275db19b0ca5483357854ea5ecb840f2fdcf5a24a358705a3a5751

diff --git a/app-shells/posh-dotnet/metadata.xml b/app-shells/posh-dotnet/metadata.xml
new file mode 100644
index 000000000000..c5df59d0fe3b
--- /dev/null
+++ b/app-shells/posh-dotnet/metadata.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+
+<pkgmetadata>
+  <maintainer type="project">
+    <email>dotnet@gentoo.org</email>
+    <name>Gentoo Dotnet Project</name>
+  </maintainer>
+  <upstream>
+    <bugs-to>https://gitlab.com/bergmeister/posh-dotnet/issues/</bugs-to>
+    <remote-id type="github">bergmeister/posh-dotnet</remote-id>
+  </upstream>
+</pkgmetadata>

diff --git a/app-shells/posh-dotnet/posh-dotnet-1.2.3.ebuild b/app-shells/posh-dotnet/posh-dotnet-1.2.3.ebuild
new file mode 100644
index 000000000000..f0151f7e8666
--- /dev/null
+++ b/app-shells/posh-dotnet/posh-dotnet-1.2.3.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="PowerShell tab completion and tooltip support for the dotnet CLI"
+HOMEPAGE="https://github.com/bergmeister/posh-dotnet/"
+
+if [[ "${PV}" == *9999* ]] ; then
+	inherit git-r3
+
+	EGIT_REPO_URI="https://github.com/bergmeister/${PN}.git"
+else
+	if [[ "${PV}" == 1.2.3 ]] ; then
+		COMMIT="c017886cbad9c4f6ce1fbaa38ebbbcada664655b"
+
+		SRC_URI="https://github.com/bergmeister/${PN}/archive/${COMMIT}.tar.gz
+			-> ${P}.tar.gz"
+		S="${WORKDIR}"/${PN}-${COMMIT}
+	else
+		SRC_URI="https://github.com/bergmeister/${PN}/archive/${PV}.tar.gz
+			-> ${P}.tar.gz"
+	fi
+
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-3+"
+SLOT="${PV}"
+RESTRICT="test"  # Tests fail.
+
+RDEPEND="virtual/pwsh:*"
+
+src_install() {
+	insinto "/usr/share/GentooPowerShell/Modules/${PN}/${PV}"
+	doins "${PN}.psd1" "${PN}.psm1"
+
+	einstalldocs
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-shells/posh-dotnet/
@ 2024-04-25 22:18 Sam James
  0 siblings, 0 replies; 2+ messages in thread
From: Sam James @ 2024-04-25 22:18 UTC (permalink / raw
  To: gentoo-commits

commit:     19f1c10f93b37dbd135df471fb6d321dc9577c90
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 25 22:16:57 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Apr 25 22:16:57 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19f1c10f

app-shells/posh-dotnet: Stabilize 1.2.3 amd64, #930687

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-shells/posh-dotnet/posh-dotnet-1.2.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-shells/posh-dotnet/posh-dotnet-1.2.3.ebuild b/app-shells/posh-dotnet/posh-dotnet-1.2.3.ebuild
index f0151f7e8666..24b8af8302f2 100644
--- a/app-shells/posh-dotnet/posh-dotnet-1.2.3.ebuild
+++ b/app-shells/posh-dotnet/posh-dotnet-1.2.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -22,7 +22,7 @@ else
 			-> ${P}.tar.gz"
 	fi
 
-	KEYWORDS="~amd64"
+	KEYWORDS="amd64"
 fi
 
 LICENSE="GPL-3+"


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

end of thread, other threads:[~2024-04-25 22:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-07 14:57 [gentoo-commits] repo/gentoo:master commit in: app-shells/posh-dotnet/ Maciej Barć
  -- strict thread matches above, loose matches on Subject: below --
2024-04-25 22:18 Sam James

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