- Update to version 0.96.1:

* Fix $in in range expressions.
  * IR: fix incorrect capturing of subexpressions.
  * Clean up arguments added to stack after `CallDecl` engine call.
  * Changes to commands:
    - Bug fixes and other changes `keybindings list`.

OBS-URL: https://build.opensuse.org/package/show/shells/nushell?expand=0&rev=64
This commit is contained in:
Dead Mozay 2024-07-30 06:35:12 +00:00 committed by Git OBS Bridge
commit 3c128d38a3
13 changed files with 3130 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

8
_constraints Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0"?>
<constraints>
<hardware>
<physicalmemory>
<size unit="G">12</size>
</physicalmemory>
</hardware>
</constraints>

26
_service Normal file
View File

@ -0,0 +1,26 @@
<?xml version="1.0"?>
<services>
<service name="obs_scm" mode="manual">
<param name="filename">nushell</param>
<param name="url">https://github.com/nushell/nushell.git</param>
<param name="scm">git</param>
<param name="version">git-master</param>
<param name="versionformat">@PARENT_TAG@</param>
<param name="revision">0.96.1</param>
<param name="changesgenerate">disable</param>
<param name="changesauthor">dead_mozay@opensuse.org</param>
</service>
<service mode="manual" name="set_version"/>
<service name="tar" mode="buildtime"/>
<service name="recompress" mode="buildtime">
<param name="compression">xz</param>
<param name="file">*.tar</param>
</service>
<service name="cargo_vendor" mode="manual">
<param name="srcdir">nushell</param>
<param name="compression">zst</param>
</service>
<service name="cargo_audit" mode="manual">
<param name="srcdir">nushell</param>
</service>
</services>

4
_servicedata Normal file
View File

@ -0,0 +1,4 @@
<servicedata>
<service name="tar_scm">
<param name="url">https://github.com/nushell/nushell.git</param>
<param name="changesrevision">bc38a6a795f438ab1465dd987adf92efd9530529</param></service></servicedata>

3
nushell-0.94.2.obscpio Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d582a9e5ab917b2f84560bcfdb1d833f778c184fc952eb99305582b21abdf56a
size 10987533

3
nushell-0.95.0.obscpio Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f11aaf38344d2c058c88df016a21963891434e73ec93bc5b0aed2112abf177e3
size 11129869

3
nushell-0.96.0.obscpio Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7d6062ba3b0798a3514fbee418a3f50c6d90bf6e18dc7f0f8574f621ab595923
size 11637773

3
nushell-0.96.1.obscpio Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:480ea82085f2f63d1675c1d7ad81dd1eebdcb751d20b8f536fc3eb48dd9e5ed9
size 11640333

2994
nushell.changes Normal file

File diff suppressed because it is too large Load Diff

4
nushell.obsinfo Normal file
View File

@ -0,0 +1,4 @@
name: nushell
version: 0.96.1
mtime: 1722295896
commit: f7d6c28a001f94f224e459e21df0da2ab5bdc923

55
nushell.spec Normal file
View File

@ -0,0 +1,55 @@
#
# spec file for package nushell
#
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: nushell
Version: 0.96.1
Release: 0
Summary: A new type of shell
License: MIT
URL: https://www.nushell.sh/
Source0: %{name}-%{version}.tar.xz
Source1: vendor.tar.zst
BuildRequires: cargo-packaging
BuildRequires: git
BuildRequires: zstd
BuildRequires: pkgconfig(libzstd)
BuildRequires: pkgconfig(openssl)
BuildRequires: pkgconfig(x11)
ExclusiveArch: %{rust_tier1_arches}
%description
A modern shell written in Rust.
%prep
%autosetup -a1
%build
%{cargo_build}
%install
%{cargo_install}
install -d %{buildroot}/%{_datadir}/%{name}
cp -r crates/nu-utils/src/sample_config %{buildroot}/%{_datadir}/%{name}
%files
%license LICENSE
%doc README.md
%{_bindir}/nu
%{_datadir}/%{name}/
%changelog

3
vendor.tar.zst Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:eccea61c9508ca1f1c3565f4f851b6b1c028316b562ed75827401d74d15a359c
size 81940561