Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] nushell: update to 0.68.0.
@ 2022-09-07  8:27 jcgruenhage
  2022-09-07 15:56 ` sgn
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: jcgruenhage @ 2022-09-07  8:27 UTC (permalink / raw)
  To: ml

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

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

https://github.com/jcgruenhage/void-packages nushell-0.68.0_1
https://github.com/void-linux/void-packages/pull/39143

nushell: update to 0.68.0.
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From a1fd06aa27a4933277e16866f7c0e3ea012948a3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
 <jan.christian@gruenhage.xyz>
Date: Wed, 7 Sep 2022 10:27:07 +0200
Subject: [PATCH] nushell: update to 0.68.0.

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

diff --git a/srcpkgs/nushell/patches/0001-use-system-libraries.patch b/srcpkgs/nushell/patches/0001-use-system-libraries.patch
index 609f5a66e5e5..3364b10b2306 100644
--- a/srcpkgs/nushell/patches/0001-use-system-libraries.patch
+++ b/srcpkgs/nushell/patches/0001-use-system-libraries.patch
@@ -1,4 +1,4 @@
-From a567591980eeb3bddaac8d13be38baf0ac6e15a7 Mon Sep 17 00:00:00 2001
+From e1041df22d985a5cd35e5247780d279a133d3e8e Mon Sep 17 00:00:00 2001
 From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
  <jan.christian@gruenhage.xyz>
 Date: Wed, 8 Jun 2022 16:15:55 +0200
@@ -6,16 +6,16 @@ Subject: [PATCH] use system libraries
 
 ---
  Cargo.lock                                  | 2 ++
- Cargo.toml                                  | 4 ++++
+ Cargo.toml                                  | 3 +++
  crates/old/nu_plugin_from_sqlite/Cargo.toml | 2 +-
  crates/old/nu_plugin_to_sqlite/Cargo.toml   | 2 +-
- 4 files changed, 8 insertions(+), 2 deletions(-)
+ 4 files changed, 7 insertions(+), 2 deletions(-)
 
 diff --git a/Cargo.lock b/Cargo.lock
-index 7d36ecddf..1360ada48 100644
+index e20624f0c..74d27b4dc 100644
 --- a/Cargo.lock
 +++ b/Cargo.lock
-@@ -2544,6 +2544,7 @@ dependencies = [
+@@ -2614,6 +2614,7 @@ dependencies = [
   "tempfile",
   "time 0.3.13",
   "winres",
@@ -23,29 +23,28 @@ index 7d36ecddf..1360ada48 100644
  ]
  
  [[package]]
-@@ -5679,4 +5680,5 @@ checksum = "9fd07cbbc53846d9145dbffdf6dd09a7a0aa52be46741825f5c97bdd4f73f12b"
+@@ -5907,4 +5908,5 @@ checksum = "9fd07cbbc53846d9145dbffdf6dd09a7a0aa52be46741825f5c97bdd4f73f12b"
  dependencies = [
   "cc",
   "libc",
 + "pkg-config",
  ]
 diff --git a/Cargo.toml b/Cargo.toml
-index 6199fbaa0..5edf138c3 100644
+index 7480b8160..4c806560f 100644
 --- a/Cargo.toml
 +++ b/Cargo.toml
-@@ -121,3 +121,7 @@ debug = false
- [[bin]]
+@@ -122,3 +122,6 @@ debug = false
  name = "nu"
  path = "src/main.rs"
-+
+ 
 +[dependencies.zstd]
 +features = ["pkg-config"]
 +version = ">=0.0.0"
 diff --git a/crates/old/nu_plugin_from_sqlite/Cargo.toml b/crates/old/nu_plugin_from_sqlite/Cargo.toml
-index 151e1e9bb..dea47e809 100644
+index f00892aa0..43c97c5fc 100644
 --- a/crates/old/nu_plugin_from_sqlite/Cargo.toml
 +++ b/crates/old/nu_plugin_from_sqlite/Cargo.toml
-@@ -18,7 +18,7 @@ nu-source = { path="../nu-source", version = "0.67.0" }
+@@ -18,7 +18,7 @@ nu-source = { path="../nu-source", version = "0.68.0" }
  tempfile = "3.2.0"
  
  [dependencies.rusqlite]
@@ -55,10 +54,10 @@ index 151e1e9bb..dea47e809 100644
  
  [build-dependencies]
 diff --git a/crates/old/nu_plugin_to_sqlite/Cargo.toml b/crates/old/nu_plugin_to_sqlite/Cargo.toml
-index 34d93b9cc..e0d778c39 100644
+index 75cf91cbb..9c9ffe988 100644
 --- a/crates/old/nu_plugin_to_sqlite/Cargo.toml
 +++ b/crates/old/nu_plugin_to_sqlite/Cargo.toml
-@@ -18,7 +18,7 @@ nu-source = { path="../nu-source", version = "0.67.0" }
+@@ -18,7 +18,7 @@ nu-source = { path="../nu-source", version = "0.68.0" }
  tempfile = "3.2.0"
  
  [dependencies.rusqlite]
@@ -68,5 +67,5 @@ index 34d93b9cc..e0d778c39 100644
  
  [build-dependencies]
 -- 
-2.37.2
+2.37.3
 
diff --git a/srcpkgs/nushell/template b/srcpkgs/nushell/template
index 31aa8d86b48b..588c545bc926 100644
--- a/srcpkgs/nushell/template
+++ b/srcpkgs/nushell/template
@@ -1,6 +1,6 @@
 # Template file for 'nushell'
 pkgname=nushell
-version=0.67.0
+version=0.68.0
 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=a8c4c092087d035805781dff11000f2b7c4a44ae487b013f9d0a59c4dc610546
+checksum=c170ce2a0fa931194c8169585608747fea0cbf7c957f67c6e2fd54c0c5071c64
 register_shell="/usr/bin/nu"
 # all tests fail with argument --target
 make_check=no

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

end of thread, other threads:[~2022-09-20  8:48 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-07  8:27 [PR PATCH] nushell: update to 0.68.0 jcgruenhage
2022-09-07 15:56 ` sgn
2022-09-08  8:47 ` jcgruenhage
2022-09-08 11:40 ` jcgruenhage
2022-09-08 11:56 ` [PR PATCH] [Updated] " jcgruenhage
2022-09-09 10:17 ` jcgruenhage
2022-09-19 16:45 ` [PR PATCH] [Merged]: " sgn
2022-09-19 16:50 ` sgn
2022-09-20  6:44 ` jcgruenhage
2022-09-20  6:50 ` sgn
2022-09-20  8:48 ` jcgruenhage

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