Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] starship: update to 1.13.1
@ 2023-04-02 19:06 cinerea0
  2023-04-02 19:17 ` [PR PATCH] [Updated] " cinerea0
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: cinerea0 @ 2023-04-02 19:06 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 384 bytes --]

There is a new pull request by cinerea0 against master on the void-packages repository

https://github.com/cinerea0/void-packages starship
https://github.com/void-linux/void-packages/pull/43221

starship: update to 1.13.1
#### Testing the changes
- I tested the changes in this PR: **YES**


A patch file from https://github.com/void-linux/void-packages/pull/43221.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-starship-43221.patch --]
[-- Type: text/x-diff, Size: 1650 bytes --]

From 9af91808aa6aedaae924e11ff0a23d82754327ff Mon Sep 17 00:00:00 2001
From: cinerea0 <cinerea0@disroot.org>
Date: Sun, 2 Apr 2023 15:05:11 -0400
Subject: [PATCH] starship: update to 1.13.1

---
 srcpkgs/starship/template | 19 +++++++------------
 1 file changed, 7 insertions(+), 12 deletions(-)

diff --git a/srcpkgs/starship/template b/srcpkgs/starship/template
index 6e8e90c3bfe8..721a0de8f041 100644
--- a/srcpkgs/starship/template
+++ b/srcpkgs/starship/template
@@ -1,6 +1,6 @@
 # Template file for 'starship'
 pkgname=starship
-version=1.12.0
+version=1.13.1
 revision=1
 build_style=cargo
 build_helper=qemu
@@ -13,14 +13,7 @@ license="ISC"
 homepage="https://starship.rs"
 changelog="https://raw.githubusercontent.com/starship/starship/master/CHANGELOG.md"
 distfiles="https://github.com/starship/starship/archive/refs/tags/v${version}.tar.gz"
-checksum=748a0541009b0bee5f51b716d072f244d8d5cb3fb8d768519ed305494ea11e02
-
-post_build() {
-	STARSHIP="target/${RUST_TARGET}/release/starship"
-	vtargetrun ${STARSHIP} completions zsh  >starship.zsh
-	vtargetrun ${STARSHIP} completions bash >starship.bash
-	vtargetrun ${STARSHIP} completions fish >starship.fish
-}
+checksum=6cce984c7fb0067b9dc457274139f277e2ff56488811c96a7ae68102184656f9
 
 do_check() {
 	mkdir -p fake-home
@@ -28,9 +21,11 @@ do_check() {
 }
 
 post_install() {
-	vcompletion starship.bash bash
-	vcompletion starship.fish fish
-	vcompletion starship.zsh zsh
+	STARSHIP="${DESTDIR}/usr/bin/starship"
+	for shell in bash fish zsh; do
+		vtargetrun ${STARSHIP} completions ${shell} > starship.${shell}
+		vcompletion starship.${shell} ${shell}
+	done
 
 	vlicense LICENSE
 }

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

* Re: [PR PATCH] [Updated] starship: update to 1.13.1
  2023-04-02 19:06 [PR PATCH] starship: update to 1.13.1 cinerea0
@ 2023-04-02 19:17 ` cinerea0
  2023-04-04  3:11 ` cinerea0
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: cinerea0 @ 2023-04-02 19:17 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 389 bytes --]

There is an updated pull request by cinerea0 against master on the void-packages repository

https://github.com/cinerea0/void-packages starship
https://github.com/void-linux/void-packages/pull/43221

starship: update to 1.13.1
#### Testing the changes
- I tested the changes in this PR: **YES**


A patch file from https://github.com/void-linux/void-packages/pull/43221.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-starship-43221.patch --]
[-- Type: text/x-diff, Size: 1624 bytes --]

From 0a718c935b283a597aca13d72b4c5b3a8ec086bd Mon Sep 17 00:00:00 2001
From: cinerea0 <cinerea0@disroot.org>
Date: Sun, 2 Apr 2023 15:17:36 -0400
Subject: [PATCH] starship: update to 1.13.1

---
 srcpkgs/starship/template | 18 ++++++------------
 1 file changed, 6 insertions(+), 12 deletions(-)

diff --git a/srcpkgs/starship/template b/srcpkgs/starship/template
index 6e8e90c3bfe8..9491226271fe 100644
--- a/srcpkgs/starship/template
+++ b/srcpkgs/starship/template
@@ -1,6 +1,6 @@
 # Template file for 'starship'
 pkgname=starship
-version=1.12.0
+version=1.13.1
 revision=1
 build_style=cargo
 build_helper=qemu
@@ -13,14 +13,7 @@ license="ISC"
 homepage="https://starship.rs"
 changelog="https://raw.githubusercontent.com/starship/starship/master/CHANGELOG.md"
 distfiles="https://github.com/starship/starship/archive/refs/tags/v${version}.tar.gz"
-checksum=748a0541009b0bee5f51b716d072f244d8d5cb3fb8d768519ed305494ea11e02
-
-post_build() {
-	STARSHIP="target/${RUST_TARGET}/release/starship"
-	vtargetrun ${STARSHIP} completions zsh  >starship.zsh
-	vtargetrun ${STARSHIP} completions bash >starship.bash
-	vtargetrun ${STARSHIP} completions fish >starship.fish
-}
+checksum=6cce984c7fb0067b9dc457274139f277e2ff56488811c96a7ae68102184656f9
 
 do_check() {
 	mkdir -p fake-home
@@ -28,9 +21,10 @@ do_check() {
 }
 
 post_install() {
-	vcompletion starship.bash bash
-	vcompletion starship.fish fish
-	vcompletion starship.zsh zsh
+	for shell in bash fish zsh; do
+		vtargetrun ${DESTDIR}/usr/bin/starship completions ${shell} > starship.${shell}
+		vcompletion starship.${shell} ${shell}
+	done
 
 	vlicense LICENSE
 }

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

* Re: [PR PATCH] [Updated] starship: update to 1.13.1
  2023-04-02 19:06 [PR PATCH] starship: update to 1.13.1 cinerea0
  2023-04-02 19:17 ` [PR PATCH] [Updated] " cinerea0
@ 2023-04-04  3:11 ` cinerea0
  2023-04-07  1:37 ` cinerea0
  2023-04-07 10:14 ` [PR PATCH] [Merged]: " paper42
  3 siblings, 0 replies; 5+ messages in thread
From: cinerea0 @ 2023-04-04  3:11 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 389 bytes --]

There is an updated pull request by cinerea0 against master on the void-packages repository

https://github.com/cinerea0/void-packages starship
https://github.com/void-linux/void-packages/pull/43221

starship: update to 1.13.1
#### Testing the changes
- I tested the changes in this PR: **YES**


A patch file from https://github.com/void-linux/void-packages/pull/43221.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-starship-43221.patch --]
[-- Type: text/x-diff, Size: 1624 bytes --]

From 1e80a7c325d446278eab46ffb08b734d7643f0e1 Mon Sep 17 00:00:00 2001
From: cinerea0 <cinerea0@disroot.org>
Date: Mon, 3 Apr 2023 23:10:40 -0400
Subject: [PATCH] starship: update to 1.13.1

---
 srcpkgs/starship/template | 18 ++++++------------
 1 file changed, 6 insertions(+), 12 deletions(-)

diff --git a/srcpkgs/starship/template b/srcpkgs/starship/template
index 6e8e90c3bfe8..9491226271fe 100644
--- a/srcpkgs/starship/template
+++ b/srcpkgs/starship/template
@@ -1,6 +1,6 @@
 # Template file for 'starship'
 pkgname=starship
-version=1.12.0
+version=1.13.1
 revision=1
 build_style=cargo
 build_helper=qemu
@@ -13,14 +13,7 @@ license="ISC"
 homepage="https://starship.rs"
 changelog="https://raw.githubusercontent.com/starship/starship/master/CHANGELOG.md"
 distfiles="https://github.com/starship/starship/archive/refs/tags/v${version}.tar.gz"
-checksum=748a0541009b0bee5f51b716d072f244d8d5cb3fb8d768519ed305494ea11e02
-
-post_build() {
-	STARSHIP="target/${RUST_TARGET}/release/starship"
-	vtargetrun ${STARSHIP} completions zsh  >starship.zsh
-	vtargetrun ${STARSHIP} completions bash >starship.bash
-	vtargetrun ${STARSHIP} completions fish >starship.fish
-}
+checksum=6cce984c7fb0067b9dc457274139f277e2ff56488811c96a7ae68102184656f9
 
 do_check() {
 	mkdir -p fake-home
@@ -28,9 +21,10 @@ do_check() {
 }
 
 post_install() {
-	vcompletion starship.bash bash
-	vcompletion starship.fish fish
-	vcompletion starship.zsh zsh
+	for shell in bash fish zsh; do
+		vtargetrun ${DESTDIR}/usr/bin/starship completions ${shell} > starship.${shell}
+		vcompletion starship.${shell} ${shell}
+	done
 
 	vlicense LICENSE
 }

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

* Re: [PR PATCH] [Updated] starship: update to 1.13.1
  2023-04-02 19:06 [PR PATCH] starship: update to 1.13.1 cinerea0
  2023-04-02 19:17 ` [PR PATCH] [Updated] " cinerea0
  2023-04-04  3:11 ` cinerea0
@ 2023-04-07  1:37 ` cinerea0
  2023-04-07 10:14 ` [PR PATCH] [Merged]: " paper42
  3 siblings, 0 replies; 5+ messages in thread
From: cinerea0 @ 2023-04-07  1:37 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 389 bytes --]

There is an updated pull request by cinerea0 against master on the void-packages repository

https://github.com/cinerea0/void-packages starship
https://github.com/void-linux/void-packages/pull/43221

starship: update to 1.13.1
#### Testing the changes
- I tested the changes in this PR: **YES**


A patch file from https://github.com/void-linux/void-packages/pull/43221.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-starship-43221.patch --]
[-- Type: text/x-diff, Size: 1685 bytes --]

From 28721a7b57986b07ac09ecc16b87a6af985a9a66 Mon Sep 17 00:00:00 2001
From: cinerea0 <cinerea0@disroot.org>
Date: Thu, 6 Apr 2023 21:37:20 -0400
Subject: [PATCH] starship: update to 1.13.1

---
 srcpkgs/starship/template | 19 +++++++------------
 1 file changed, 7 insertions(+), 12 deletions(-)

diff --git a/srcpkgs/starship/template b/srcpkgs/starship/template
index 6e8e90c3bfe8..2bfb37ec89b4 100644
--- a/srcpkgs/starship/template
+++ b/srcpkgs/starship/template
@@ -1,6 +1,6 @@
 # Template file for 'starship'
 pkgname=starship
-version=1.12.0
+version=1.13.1
 revision=1
 build_style=cargo
 build_helper=qemu
@@ -13,14 +13,8 @@ license="ISC"
 homepage="https://starship.rs"
 changelog="https://raw.githubusercontent.com/starship/starship/master/CHANGELOG.md"
 distfiles="https://github.com/starship/starship/archive/refs/tags/v${version}.tar.gz"
-checksum=748a0541009b0bee5f51b716d072f244d8d5cb3fb8d768519ed305494ea11e02
-
-post_build() {
-	STARSHIP="target/${RUST_TARGET}/release/starship"
-	vtargetrun ${STARSHIP} completions zsh  >starship.zsh
-	vtargetrun ${STARSHIP} completions bash >starship.bash
-	vtargetrun ${STARSHIP} completions fish >starship.fish
-}
+checksum=6cce984c7fb0067b9dc457274139f277e2ff56488811c96a7ae68102184656f9
+make_check=no  # tests fail on i686 due to bug in gitoxide
 
 do_check() {
 	mkdir -p fake-home
@@ -28,9 +22,10 @@ do_check() {
 }
 
 post_install() {
-	vcompletion starship.bash bash
-	vcompletion starship.fish fish
-	vcompletion starship.zsh zsh
+	for shell in bash fish zsh; do
+		vtargetrun ${DESTDIR}/usr/bin/starship completions ${shell} > starship.${shell}
+		vcompletion starship.${shell} ${shell}
+	done
 
 	vlicense LICENSE
 }

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

* Re: [PR PATCH] [Merged]: starship: update to 1.13.1
  2023-04-02 19:06 [PR PATCH] starship: update to 1.13.1 cinerea0
                   ` (2 preceding siblings ...)
  2023-04-07  1:37 ` cinerea0
@ 2023-04-07 10:14 ` paper42
  3 siblings, 0 replies; 5+ messages in thread
From: paper42 @ 2023-04-07 10:14 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 230 bytes --]

There's a merged pull request on the void-packages repository

starship: update to 1.13.1
https://github.com/void-linux/void-packages/pull/43221

Description:
#### Testing the changes
- I tested the changes in this PR: **YES**


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

end of thread, other threads:[~2023-04-07 10:14 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-02 19:06 [PR PATCH] starship: update to 1.13.1 cinerea0
2023-04-02 19:17 ` [PR PATCH] [Updated] " cinerea0
2023-04-04  3:11 ` cinerea0
2023-04-07  1:37 ` cinerea0
2023-04-07 10:14 ` [PR PATCH] [Merged]: " paper42

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).