[gentoo-commits] repo/gentoo:master commit in: app-shells/posh-git/

2024-04-25 Thread Sam James
commit: 5d62460e3cd3351d2f6c57ec2fa22b233e1824c8
Author: Sam James  gentoo  org>
AuthorDate: Thu Apr 25 22:16:58 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Apr 25 22:16:58 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d62460e

app-shells/posh-git: Stabilize 1.1.0 amd64, #930687

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/app-shells/posh-git/posh-git-1.1.0.ebuild 
b/app-shells/posh-git/posh-git-1.1.0.ebuild
index 72a1c2f7cce4..724e3cda7576 100644
--- a/app-shells/posh-git/posh-git-1.1.0.ebuild
+++ b/app-shells/posh-git/posh-git-1.1.0.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
@@ -15,7 +15,7 @@ else
SRC_URI="https://github.com/dahlbyk/${PN}/archive/v${PV}.tar.gz
-> ${P}.tar.gz"
 
-   KEYWORDS="~amd64"
+   KEYWORDS="amd64"
 fi
 
 LICENSE="MIT"



[gentoo-commits] repo/gentoo:master commit in: app-shells/posh-git/

2023-10-07 Thread Maciej Barć
commit: aaec6933c7234940551920c043784409c21bbd84
Author: Maciej Barć  gentoo  org>
AuthorDate: Sat Oct  7 14:15:06 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sat Oct  7 14:57:41 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aaec6933

app-shells/posh-git: new package; add 1.1.0

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

 app-shells/posh-git/Manifest  |  1 +
 app-shells/posh-git/metadata.xml  | 14 
 app-shells/posh-git/posh-git-1.1.0.ebuild | 36 +++
 3 files changed, 51 insertions(+)

diff --git a/app-shells/posh-git/Manifest b/app-shells/posh-git/Manifest
new file mode 100644
index ..c3b38039f241
--- /dev/null
+++ b/app-shells/posh-git/Manifest
@@ -0,0 +1 @@
+DIST posh-git-1.1.0.tar.gz 90089 BLAKE2B 
3759c8382d1e1c48cd5ee40668ae5e3f8edff3ae73861af904a1a4674af52f57e010e2f187813caf728d750b5f492d15860e58a57a24f6e3aa65fa5eb2b7a9cc
 SHA512 
1aa8150c07d212476527c32a8a6acad903811de0068147b43810e3aa897a837c7adf69838195654ca26715ec7e736e56897190b344c6f432374b1d2493e5b891

diff --git a/app-shells/posh-git/metadata.xml b/app-shells/posh-git/metadata.xml
new file mode 100644
index ..b95ffb970544
--- /dev/null
+++ b/app-shells/posh-git/metadata.xml
@@ -0,0 +1,14 @@
+
+https://www.gentoo.org/dtd/metadata.dtd";>
+
+
+  
+dot...@gentoo.org
+Gentoo Dotnet Project
+  
+  
+
https://github.com/dahlbyk/posh-git/blob/master/CHANGELOG.md
+https://gitlab.com/dahlbyk/posh-git/issues/
+dahlbyk/posh-git
+  
+

diff --git a/app-shells/posh-git/posh-git-1.1.0.ebuild 
b/app-shells/posh-git/posh-git-1.1.0.ebuild
new file mode 100644
index ..72a1c2f7cce4
--- /dev/null
+++ b/app-shells/posh-git/posh-git-1.1.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="A PowerShell environment for Git"
+HOMEPAGE="http://dahlbyk.github.io/posh-git/
+   https://github.com/dahlbyk/posh-git/";
+
+if [[ "${PV}" == ** ]] ; then
+   inherit git-r3
+
+   EGIT_REPO_URI="https://github.com/dahlbyk/${PN}.git";
+else
+   SRC_URI="https://github.com/dahlbyk/${PN}/archive/v${PV}.tar.gz
+   -> ${P}.tar.gz"
+
+   KEYWORDS="~amd64"
+fi
+
+LICENSE="MIT"
+SLOT="${PV}"
+
+RDEPEND="
+   virtual/pwsh:*
+   dev-vcs/git
+"
+
+DOCS=( CHANGELOG.md ISSUE_TEMPLATE.md README.md profile.example.ps1 )
+
+src_install() {
+   insinto "/usr/share/GentooPowerShell/Modules/${PN}/${PV}"
+   doins -r src/.
+
+   einstalldocs
+}