Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package atuin for openSUSE:Factory checked in at 2022-11-24 12:25:26 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/atuin (Old) and /work/SRC/openSUSE:Factory/.atuin.new.1597 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "atuin" Thu Nov 24 12:25:26 2022 rev:3 rq:1037801 version:12.0.0 Changes: -------- --- /work/SRC/openSUSE:Factory/atuin/atuin.changes 2022-10-12 18:27:26.558053231 +0200 +++ /work/SRC/openSUSE:Factory/.atuin.new.1597/atuin.changes 2022-11-24 12:25:28.110151334 +0100 @@ -1,0 +2,47 @@ +Thu Nov 17 02:16:24 UTC 2022 - Soc Virnyl Estela <[email protected]> + +- Fix installation of shell completions. +- Add extra shell stuff in docs. + +------------------------------------------------------------------- +Sat Nov 12 09:07:21 UTC 2022 - Soc Virnyl Estela <[email protected]> + +- Update to version 12.0.0: + * Allow stateless commands to be run without config/database by @c-14 in #544 + * Clear RBUFFER when accepting output from atuin by @c-14 in #545 + * Add installer support for Termux by @laurentlbm in #540 + * Bump lukemathwalker/cargo-chef from latest-rust-1.63 to latest-rust-1.64.0 by @dependabot in #546 + * Add contributors command by @ellie in #550 + * Add style to config.toml and config.md by @xfzv in #552 + * Fix compatability with fish vi key bindings by @shreve in #541 + * add some error messages by @conradludgate in #510 + * update zh-CN docs by @helbing in #539 + * Bump debian from bullseye-20220822-slim to bullseye-20221004-slim by @dependabot in #551 + * Add automatic update checking by @ellie in #555 + * Bump sqlx from 0.5.13 to 0.6.2 by @dependabot in #536 + * Bump indicatif from 0.16.2 to 0.17.1 by @dependabot in #537 + * Bump rpassword from 6.0.1 to 7.0.0 by @dependabot in #530 + * Bump tui from 0.18.0 to 0.19.0 by @dependabot in #531 + * Bump rmp-serde from 1.1.0 to 1.1.1 by @dependabot in #557 + * Bump unicode-width from 0.1.9 to 0.1.10 by @dependabot in #535 + * rollup of 5 dependency commits by @conradludgate in #562 + * Add message begging for help lol turtle by @ellie in #569 + * upgrade clap by @conradludgate in #568 + * Configure reqwest to use native platform certs by @wpbrz in #574 + * Bump async-trait from 0.1.57 to 0.1.58 by @dependabot in #575 + * Never use HISTFILE for fish shell import by @patricksjackson in #573 + * Respect fish shell's builtin private mode by @patricksjackson in #577 + * Bump clap from 4.0.15 to 4.0.18 by @dependabot in #578 + * docs: add more details about date parsing in the stats command by @bvergnaud in #579 + * Make fuzzy search the default by @ellie in #591 + * Update server.md by @pevogam in #589 + * Exit with return code 1 when no results are found in atuin search command by @TymanWasTaken in #489 + * Update README.md with antigen instruction. by @DanielAtCosmicDNA in #549 + * Build ARM64 releases & update runners by @Absolucy in #593 + * Add local event log storage by @ellie in #390 + * fix #596: Avoid drawing a command section beyond the width of the list by @s0 in #597 + * Add setting for keeping typed query when exiting by @s0 in #451 + * Fix copy/paste artifact by @EricCrosson in #598 + * Release v12 by @ellie in #599 + +------------------------------------------------------------------- Old: ---- atuin-11.0.0.tar.xz vendor.tar.xz New: ---- v12.0.0.tar.gz vendor.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ atuin.spec ++++++ --- /var/tmp/diff_new_pack.tsFqFo/_old 2022-11-24 12:25:29.830162264 +0100 +++ /var/tmp/diff_new_pack.tsFqFo/_new 2022-11-24 12:25:29.834162290 +0100 @@ -17,19 +17,18 @@ Name: atuin -Version: 11.0.0 +Version: 12.0.0 Release: 0 Summary: Magical shell history License: MIT Group: System/Console URL: https://github.com/ellie/atuin -Source0: %{name}-%{version}.tar.xz -Source1: vendor.tar.xz +Source0: %{url}/archive/refs/tags/v%{version}.tar.gz +Source1: vendor.tar.gz Source2: cargo_config BuildRequires: c++_compiler BuildRequires: c_compiler BuildRequires: cargo-packaging -BuildRequires: libgcc_s1 BuildRequires: rust+cargo >= 1.59 %description @@ -69,17 +68,22 @@ cp %{SOURCE2} .cargo/config %build -%{cargo_build} +%{cargo_build} --all-features + +for shell in "zsh" "bash" "fish" +do + ./target/release/%{name} gen-completions --shell "$shell" > target/%{name}."$shell" +done %install %{cargo_install} -install -D -m 0644 "src/shell/%{name}.bash" "%{buildroot}/%{_datadir}/bash-completion/completions/%{name}" -install -D -m 0644 "src/shell/%{name}.fish" "%{buildroot}/%{_datadir}/fish/vendor_completions.d/%{name}.fish" -install -D -m 0644 "src/shell/%{name}.zsh" "%{buildroot}/%{_datadir}/zsh/site-functions/_%{name}" +install -D -m 0644 "target/%{name}.bash" "%{buildroot}/%{_datadir}/bash-completion/completions/%{name}" +install -D -m 0644 "target/%{name}.fish" "%{buildroot}/%{_datadir}/fish/vendor_completions.d/%{name}.fish" +install -D -m 0644 "target/%{name}.zsh" "%{buildroot}/%{_datadir}/zsh/site-functions/_%{name}" %files %license LICENSE -%doc README.md CHANGELOG.md +%doc README.md CHANGELOG.md src/shell %{_bindir}/atuin %files bash-completion ++++++ _service ++++++ --- /var/tmp/diff_new_pack.tsFqFo/_old 2022-11-24 12:25:29.866162493 +0100 +++ /var/tmp/diff_new_pack.tsFqFo/_new 2022-11-24 12:25:29.870162519 +0100 @@ -1,28 +1,11 @@ <services> - <service mode="disabled" name="obs_scm"> - <param name="url">https://github.com/ellie/atuin</param> - <param name="versionformat">@PARENT_TAG@</param> - <param name="scm">git</param> - <param name="revision">41eed3f</param> - <param name="versionrewrite-pattern">v(.*)</param> - <param name="versionrewrite-replacement">\1</param> - <param name="changesgenerate">enable</param> - <param name="changesauthor">[email protected]</param> - </service> - <service mode="disabled" name="tar" /> - <service mode="disabled" name="recompress"> - <param name="file">*.tar</param> - <param name="compression">xz</param> - </service> - <service mode="disabled" name="set_version"/> + <service mode="disabled" name="download_files" /> <service name="cargo_vendor" mode="disabled"> - <param name="srcdir">atuin</param> - <param name="compression">xz</param> + <param name="srctar">v12.0.0.tar.gz</param> + <param name="compression">gz</param> <param name="update">true</param> </service> - <service name="cargo_audit" mode="disabled"> - <param name="srcdir">atuin</param> - </service> + <service name="cargo_audit" mode="disabled" /> </services>
