Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] nushell: update to 0.83.0.
@ 2023-07-27 16:25 icp1994
  2023-07-27 16:47 ` icp1994
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: icp1994 @ 2023-07-27 16:25 UTC (permalink / raw)
  To: ml

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

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

https://github.com/icp1994/void-packages nushell
https://github.com/void-linux/void-packages/pull/45283

nushell: update to 0.83.0.
#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture: **x86_64**

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

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

From a917672fa16951e691a283fed4c76d52cf15901a Mon Sep 17 00:00:00 2001
From: icp <pangolin@vivaldi.net>
Date: Thu, 27 Jul 2023 21:44:45 +0530
Subject: [PATCH] nushell: update to 0.83.0.

---
 .../patches/0001-use-system-libraries.patch      | 16 ++++++++--------
 srcpkgs/nushell/template                         |  8 ++++++--
 2 files changed, 14 insertions(+), 10 deletions(-)

diff --git a/srcpkgs/nushell/patches/0001-use-system-libraries.patch b/srcpkgs/nushell/patches/0001-use-system-libraries.patch
index 5d62245d9ab7e..21b373e9d063d 100644
--- a/srcpkgs/nushell/patches/0001-use-system-libraries.patch
+++ b/srcpkgs/nushell/patches/0001-use-system-libraries.patch
@@ -17,9 +17,9 @@ index d1f11f0..b8e96f7 100644
 @@ -67,7 +67,7 @@ nu-term-grid = { path = "./crates/nu-term-grid", version = "0.82.0" }
  nu-std = { path = "./crates/nu-std", version = "0.82.0" }
  nu-utils = { path = "./crates/nu-utils", version = "0.82.0" }
- nu-ansi-term = "0.47.0"
--reedline = { version = "0.21.0", features = ["bashisms", "sqlite"]}
-+reedline = { version = "0.21.0", features = ["bashisms", "sqlite-dynlib"]}
+ nu-ansi-term = "0.49.0"
+-reedline = { version = "0.22.0", features = ["bashisms", "sqlite"]}
++reedline = { version = "0.22.0", features = ["bashisms", "sqlite-dynlib"]}
  
  mimalloc = { version = "0.1.37", default-features = false, optional = true}
  
@@ -30,12 +30,12 @@ index 841ff85..ea70d4a 100644
 @@ -25,7 +25,7 @@ nu-protocol = { path = "../nu-protocol", version = "0.82.0" }
  nu-utils = { path = "../nu-utils", version = "0.82.0" }
  nu-color-config = { path = "../nu-color-config", version = "0.82.0" }
- nu-ansi-term = "0.47.0"
--reedline = { version = "0.21.0", features = ["bashisms", "sqlite"]}
-+reedline = { version = "0.21.0", features = ["bashisms", "sqlite-dynlib"]}
+ nu-ansi-term = "0.49.0"
+-reedline = { version = "0.22.0", features = ["bashisms", "sqlite"]}
++reedline = { version = "0.22.0", features = ["bashisms", "sqlite-dynlib"]}
  
- atty = "0.2"
  chrono = { default-features = false, features = ["std"], version = "0.4" }
+ crossterm = "0.26"
 diff --git a/a/crates/nu-command/Cargo.toml b/a/crates/nu-command/Cargo.toml
 index 7bb5710..9911440 100644
 --- a/crates/nu-command/Cargo.toml
@@ -46,6 +46,6 @@ index 7bb5710..9911440 100644
  roxmltree = "0.18"
 -rusqlite = { version = "0.29", features = ["bundled"], optional = true }
 +rusqlite = { version = "0.29", optional = true }
- rust-embed = "6.6"
  same-file = "1.0"
  serde = { version = "1.0", features = ["derive"] }
+ serde_json = "1.0"
diff --git a/srcpkgs/nushell/template b/srcpkgs/nushell/template
index 8bcb50e307c86..42fa63e32bb51 100644
--- a/srcpkgs/nushell/template
+++ b/srcpkgs/nushell/template
@@ -1,6 +1,6 @@
 # Template file for 'nushell'
 pkgname=nushell
-version=0.82.0
+version=0.83.0
 revision=1
 build_style=cargo
 configure_args="--features=extra"
@@ -14,11 +14,15 @@ license="MIT"
 homepage="https://www.nushell.sh/"
 changelog="https://www.nushell.sh/blog/"
 distfiles="https://github.com/nushell/nushell/archive/refs/tags/${version}.tar.gz"
-checksum=587847feeb9fc06eb2a9da5ff05ffea5238fe5928ebea944c042838d8ad136e8
+checksum=49be7fdd34512e877ca18345f7be84606db601a657f8235dff670a66fff5b82c
 register_shell="/usr/bin/nu"
 # all tests fail with argument --target
 make_check=no
 
+post_patch() {
+	cargo update --package trash@3.0.5 --precise 3.0.6 # yanked
+}
+
 case "$XBPS_TARGET_MACHINE" in
 i686*)
 	broken='https://build.voidlinux.org/builders/i686_builder/builds/33520/steps/shell_3/logs/stdio'

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

* Re: nushell: update to 0.83.0.
  2023-07-27 16:25 [PR PATCH] nushell: update to 0.83.0 icp1994
@ 2023-07-27 16:47 ` icp1994
  2023-07-30 20:45 ` [PR PATCH] [Updated] " icp1994
  2023-08-06  0:58 ` [PR PATCH] [Merged]: nushell: update to 0.83.1 classabbyamp
  2 siblings, 0 replies; 4+ messages in thread
From: icp1994 @ 2023-07-27 16:47 UTC (permalink / raw)
  To: ml

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

New comment by icp1994 on void-packages repository

https://github.com/void-linux/void-packages/pull/45283#issuecomment-1653985748

Comment:
cc @jcgruenhage 

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

* Re: [PR PATCH] [Updated] nushell: update to 0.83.0.
  2023-07-27 16:25 [PR PATCH] nushell: update to 0.83.0 icp1994
  2023-07-27 16:47 ` icp1994
@ 2023-07-30 20:45 ` icp1994
  2023-08-06  0:58 ` [PR PATCH] [Merged]: nushell: update to 0.83.1 classabbyamp
  2 siblings, 0 replies; 4+ messages in thread
From: icp1994 @ 2023-07-30 20:45 UTC (permalink / raw)
  To: ml

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

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

https://github.com/icp1994/void-packages nushell
https://github.com/void-linux/void-packages/pull/45283

nushell: update to 0.83.0.
#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture: **x86_64**

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

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

From 9d2bdbb94a8de00642d43779d545ea52419d56e2 Mon Sep 17 00:00:00 2001
From: icp <pangolin@vivaldi.net>
Date: Thu, 27 Jul 2023 21:44:45 +0530
Subject: [PATCH] nushell: update to 0.83.1.

---
 .../patches/0001-use-system-libraries.patch      | 16 ++++++++--------
 srcpkgs/nushell/template                         |  4 ++--
 2 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/srcpkgs/nushell/patches/0001-use-system-libraries.patch b/srcpkgs/nushell/patches/0001-use-system-libraries.patch
index 5d62245d9ab7e..21b373e9d063d 100644
--- a/srcpkgs/nushell/patches/0001-use-system-libraries.patch
+++ b/srcpkgs/nushell/patches/0001-use-system-libraries.patch
@@ -17,9 +17,9 @@ index d1f11f0..b8e96f7 100644
 @@ -67,7 +67,7 @@ nu-term-grid = { path = "./crates/nu-term-grid", version = "0.82.0" }
  nu-std = { path = "./crates/nu-std", version = "0.82.0" }
  nu-utils = { path = "./crates/nu-utils", version = "0.82.0" }
- nu-ansi-term = "0.47.0"
--reedline = { version = "0.21.0", features = ["bashisms", "sqlite"]}
-+reedline = { version = "0.21.0", features = ["bashisms", "sqlite-dynlib"]}
+ nu-ansi-term = "0.49.0"
+-reedline = { version = "0.22.0", features = ["bashisms", "sqlite"]}
++reedline = { version = "0.22.0", features = ["bashisms", "sqlite-dynlib"]}
  
  mimalloc = { version = "0.1.37", default-features = false, optional = true}
  
@@ -30,12 +30,12 @@ index 841ff85..ea70d4a 100644
 @@ -25,7 +25,7 @@ nu-protocol = { path = "../nu-protocol", version = "0.82.0" }
  nu-utils = { path = "../nu-utils", version = "0.82.0" }
  nu-color-config = { path = "../nu-color-config", version = "0.82.0" }
- nu-ansi-term = "0.47.0"
--reedline = { version = "0.21.0", features = ["bashisms", "sqlite"]}
-+reedline = { version = "0.21.0", features = ["bashisms", "sqlite-dynlib"]}
+ nu-ansi-term = "0.49.0"
+-reedline = { version = "0.22.0", features = ["bashisms", "sqlite"]}
++reedline = { version = "0.22.0", features = ["bashisms", "sqlite-dynlib"]}
  
- atty = "0.2"
  chrono = { default-features = false, features = ["std"], version = "0.4" }
+ crossterm = "0.26"
 diff --git a/a/crates/nu-command/Cargo.toml b/a/crates/nu-command/Cargo.toml
 index 7bb5710..9911440 100644
 --- a/crates/nu-command/Cargo.toml
@@ -46,6 +46,6 @@ index 7bb5710..9911440 100644
  roxmltree = "0.18"
 -rusqlite = { version = "0.29", features = ["bundled"], optional = true }
 +rusqlite = { version = "0.29", optional = true }
- rust-embed = "6.6"
  same-file = "1.0"
  serde = { version = "1.0", features = ["derive"] }
+ serde_json = "1.0"
diff --git a/srcpkgs/nushell/template b/srcpkgs/nushell/template
index 8bcb50e307c86..4b7df936a62b0 100644
--- a/srcpkgs/nushell/template
+++ b/srcpkgs/nushell/template
@@ -1,6 +1,6 @@
 # Template file for 'nushell'
 pkgname=nushell
-version=0.82.0
+version=0.83.1
 revision=1
 build_style=cargo
 configure_args="--features=extra"
@@ -14,7 +14,7 @@ license="MIT"
 homepage="https://www.nushell.sh/"
 changelog="https://www.nushell.sh/blog/"
 distfiles="https://github.com/nushell/nushell/archive/refs/tags/${version}.tar.gz"
-checksum=587847feeb9fc06eb2a9da5ff05ffea5238fe5928ebea944c042838d8ad136e8
+checksum=a08baef4e487cf200b14cd4a8555110106a947ac439ad8e2759f5ec52c8f9656
 register_shell="/usr/bin/nu"
 # all tests fail with argument --target
 make_check=no

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

* Re: [PR PATCH] [Merged]: nushell: update to 0.83.1.
  2023-07-27 16:25 [PR PATCH] nushell: update to 0.83.0 icp1994
  2023-07-27 16:47 ` icp1994
  2023-07-30 20:45 ` [PR PATCH] [Updated] " icp1994
@ 2023-08-06  0:58 ` classabbyamp
  2 siblings, 0 replies; 4+ messages in thread
From: classabbyamp @ 2023-08-06  0:58 UTC (permalink / raw)
  To: ml

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

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

nushell: update to 0.83.1.
https://github.com/void-linux/void-packages/pull/45283

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

#### Local build testing
- I built this PR locally for my native architecture: **x86_64**

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

end of thread, other threads:[~2023-08-06  0:58 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-27 16:25 [PR PATCH] nushell: update to 0.83.0 icp1994
2023-07-27 16:47 ` icp1994
2023-07-30 20:45 ` [PR PATCH] [Updated] " icp1994
2023-08-06  0:58 ` [PR PATCH] [Merged]: nushell: update to 0.83.1 classabbyamp

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).