forked from pool/zoxide
Compare commits
4 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| f8c36c6a9e | |||
|
|
13e8913080 | ||
| 3b2e71dbb4 | |||
|
|
3165ddd7bd |
5
_service
5
_service
@@ -3,7 +3,7 @@
|
||||
<param name="url">https://github.com/ajeetdsouza/zoxide</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="exclude">.git</param>
|
||||
<param name="revision">v0.9.4</param>
|
||||
<param name="revision">v0.9.6</param>
|
||||
<param name="versionformat">@PARENT_TAG@</param>
|
||||
<param name="versionrewrite-pattern">v(.*)</param>
|
||||
</service>
|
||||
@@ -18,7 +18,4 @@
|
||||
<param name="srcdir">zoxide</param>
|
||||
<param name="compression">xz</param>
|
||||
</service>
|
||||
<service name="cargo_audit" mode="disabled">
|
||||
<param name="srcdir">zoxide</param>
|
||||
</service>
|
||||
</services>
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
[source.crates-io]
|
||||
replace-with = "vendored-sources"
|
||||
|
||||
[source.vendored-sources]
|
||||
directory = "vendor"
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9422cc00c34ffb13b4caff64ae9ec91193ca3bcc4912b1ca32ebb2db878958d7
|
||||
size 12724572
|
||||
oid sha256:2ae9d50c7ec8ae8857b391fb72b7e45bde654c8cda823a2ba3d1b87683c24bd0
|
||||
size 15844080
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4e6b7c8e9cac03fa3b03130613b7a304137e0df42bcd9e1a471f5ac338438aaf
|
||||
size 974549
|
||||
3
zoxide-0.9.6.tar.gz
Normal file
3
zoxide-0.9.6.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1ebb9917ab0378b855bac2ca5c97aa3ca8030fef28f3b48898c0f5fdae5c44c0
|
||||
size 978617
|
||||
@@ -1,3 +1,40 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 19 13:15:08 UTC 2024 - Michael Vetter <mvetter@suse.com>
|
||||
|
||||
- Update to 0.9.6:
|
||||
* Fish: builtin abbr doesn't work on older versions.
|
||||
* Zsh: make __zoxide_z_complete available with --no-cmd.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 13 02:44:11 UTC 2024 - pallas wept <pallaswept@proton.me>
|
||||
|
||||
- Update to 0.9.5:
|
||||
Added:
|
||||
* zsh: improved cd completions.
|
||||
* Lazily delete excluded directories from the database.
|
||||
* fish: detect infinite loop when using alias cd=z.
|
||||
* Installer: added flags for --bin-dir, --man-dir, --arch, and --sudo.
|
||||
* Nushell: support for v0.94.0+.
|
||||
* bash/fish/zsh: support for z -- dir style queries.
|
||||
* fish: improved Space-Tab completions.
|
||||
* ksh: added support for the Korn shell.
|
||||
Changed:
|
||||
* fzf: removed --select-1 from default options. The interactive selector will
|
||||
now open up even if there is only one match.
|
||||
* Enforce that $_ZO_DATA_DIR is an absolute path.
|
||||
Fixed:
|
||||
* zsh: Space-Tab completion repeating output multiple times when matching single
|
||||
directory
|
||||
* fish / Nushell / PowerShell: handle queries that look like args (e.g. z -x).
|
||||
* elvish: z - now works as expected.
|
||||
* fish: generated shell code avoids using aliased builtins.
|
||||
* fish: cd command is now copied directly from
|
||||
$__fish_data_dir/functions/cd.fish. This should minimize the chances of an
|
||||
infinite loop when aliasing cd=z.
|
||||
* Symlinks not getting added to the database when $_ZO_RESOLVE_SYMLINKS=0.
|
||||
* Symlinked database files getting replaced instead of the actual files.
|
||||
- Use new cargo service features for package
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 21 06:24:35 UTC 2024 - Michael Vetter <mvetter@suse.com>
|
||||
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
%global rustflags '-Clink-arg=-Wl,-z,relro,-z,now'
|
||||
|
||||
Name: zoxide
|
||||
Version: 0.9.4
|
||||
Version: 0.9.6
|
||||
Release: 0
|
||||
Summary: A smarter cd command
|
||||
License: MIT
|
||||
@@ -27,7 +27,6 @@ Group: System/Console
|
||||
URL: https://github.com/ajeetdsouza/zoxide
|
||||
Source0: %{name}-%{version}.tar.gz
|
||||
Source1: vendor.tar.xz
|
||||
Source2: cargo_config
|
||||
BuildRequires: cargo
|
||||
BuildRequires: rust >= 1.31
|
||||
|
||||
@@ -39,9 +38,6 @@ just a few keystrokes.
|
||||
%prep
|
||||
%autosetup -p1 -a1
|
||||
|
||||
install -d -m 0755 .cargo
|
||||
cp %{SOURCE2} .cargo/config
|
||||
|
||||
%build
|
||||
export RUSTFLAGS=%{rustflags}
|
||||
cargo build --release %{?_smp_mflags}
|
||||
|
||||
Reference in New Issue
Block a user