Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package zellij for openSUSE:Factory checked in at 2022-11-24 12:25:29 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/zellij (Old) and /work/SRC/openSUSE:Factory/.zellij.new.1597 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "zellij" Thu Nov 24 12:25:29 2022 rev:8 rq:1037802 version:0.33.0 Changes: -------- --- /work/SRC/openSUSE:Factory/zellij/zellij.changes 2022-11-08 10:54:44.689740197 +0100 +++ /work/SRC/openSUSE:Factory/.zellij.new.1597/zellij.changes 2022-11-24 12:25:31.518172990 +0100 @@ -1,0 +2,39 @@ +Thu Nov 17 02:24:51 UTC 2022 - Soc Virnyl Estela <socvirnyl.est...@gmail.com> + +- Update specfile + +------------------------------------------------------------------- +Sun Nov 13 00:10:48 UTC 2022 - Soc Virnyl Estela <socvirnyl.est...@gmail.com> + +- Update to version 0.33.0: + * debugging: improve error handling in `zellij_server::pty` (https://github.com/zellij-org/zellij/pull/1840) + * feat: allow command panes to optionally close on exit (https://github.com/zellij-org/zellij/pull/1869) + * add: everforest-dark, everforest-light themes to the example theme directory (https://github.com/zellij-org/zellij/pull/1873) + * feat: support multiple themes in one file (https://github.com/zellij-org/zellij/pull/1855) + * debugging: Remove calls to unwrap in `zellij_server::ui::*` (https://github.com/zellij-org/zellij/pull/1870) + * debugging: Remove calls to unwrap in `zellij_server::pty_writer` (https://github.com/zellij-org/zellij/pull/1872) + * docs(example): update the format of the themes for the example directory (https://github.com/zellij-org/zellij/pull/1877) + * debugging: Remove calls to unwrap in `zellij_server::terminal_bytes` (https://github.com/zellij-org/zellij/pull/1876) + * debugging: Remove calls to unwrap in `zellij_server::output` (https://github.com/zellij-org/zellij/pull/1878) + * fix: resolve `zellij setup --clean` panic (https://github.com/zellij-org/zellij/pull/1882) + * feat: allow toggling mouse mode at runtime (https://github.com/zellij-org/zellij/pull/1883) + * fix: display status bar properly if limited to only 1 line (https://github.com/zellij-org/zellij/pull/1875) + * feat: allow starting command panes suspended (https://github.com/zellij-org/zellij/pull/1887) + * debugging: Remove calls to unwrap in `zellij_server::os_input_output` (https://github.com/zellij-org/zellij/pull/1895) + * fix: remove space key from shared_except (https://github.com/zellij-org/zellij/pull/1884) + * fix: clear search when sending terminating char (https://github.com/zellij-org/zellij/pull/1853) + * fix: properly convert the backslash key from old YAML config files (https://github.com/zellij-org/zellij/pull/1879) + * fix: clear floating panes indication when closing a floating command pane (https://github.com/zellij-org/zellij/pull/1897) + * Terminal compatibility: do not reset bold when resetting DIM (https://github.com/zellij-org/zellij/pull/1803) + * fix: Do not advertise 24 bit color support unchecked (https://github.com/zellij-org/zellij/pull/1900) + * fix: treat CWD properly when opening your editor through `zellij edit` or `ze` (https://github.com/zellij-org/zellij/pull/1904) + * fix: allow cli actions to be run outside of a tty environment (https://github.com/zellij-org/zellij/pull/1905) + * Terminal compatibility: send focus in/out events to terminal panes (https://github.com/zellij-org/zellij/pull/1908) + * fix: various bugs with no-frames and floating panes (https://github.com/zellij-org/zellij/pull/1909) + * debugging: Improve error logging in server (https://github.com/zellij-org/zellij/pull/1881) + * docs: add kanagawa theme (https://github.com/zellij-org/zellij/pull/1913) + * fix: use 'temp_dir' instead of hard-coded '/tmp/' (https://github.com/zellij-org/zellij/pull/1898) + * debugging: Don't strip debug symbols from release binaries (https://github.com/zellij-org/zellij/pull/1916) + * deps: upgrade termwiz to 0.19.0 and rust MSRV to 1.60.0 (https://github.com/zellij-org/zellij/pull/1896) + +------------------------------------------------------------------- Old: ---- v0.32.0.tar.gz New: ---- v0.33.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ zellij.spec ++++++ --- /var/tmp/diff_new_pack.f7cIOM/_old 2022-11-24 12:25:32.630180057 +0100 +++ /var/tmp/diff_new_pack.f7cIOM/_new 2022-11-24 12:25:32.634180082 +0100 @@ -18,17 +18,16 @@ %bcond_with test Name: zellij -Version: 0.32.0 +Version: 0.33.0 Release: 0 Summary: Terminal workspace with batteries included License: MIT URL: https://github.com/zellij-org/zellij -Source0: https://github.com/zellij-org/zellij/archive/refs/tags/v%{version}.tar.gz +Source0: %{url}/archive/refs/tags/v%{version}.tar.gz Source1: vendor.tar.gz Source2: cargo_config Source3: README.suse-maint.md BuildRequires: cargo-packaging -BuildRequires: libgcc_s1 %if 0%{?suse_version} > 1500 BuildRequires: mandown @@ -106,9 +105,11 @@ # Build zellij proper %{cargo_build} --features unstable -./target/release/zellij setup --generate-completion bash > target/zellij.bash -./target/release/zellij setup --generate-completion fish > target/zellij.fish -./target/release/zellij setup --generate-completion zsh > target/zellij.zsh + +for shell in "zsh" "bash" "fish" +do + ./target/release/%{name} setup --generate-completion "$shell" > target/%{name}."$shell" +done mandown docs/MANPAGE.md > target/zellij.1 %install ++++++ README.suse-maint.md ++++++ --- /var/tmp/diff_new_pack.f7cIOM/_old 2022-11-24 12:25:32.666180286 +0100 +++ /var/tmp/diff_new_pack.f7cIOM/_new 2022-11-24 12:25:32.670180311 +0100 @@ -1,11 +1,6 @@ -1. Install `rpmdevtools` -2. If updating a version, modify the Version string. -3. Run `rpmdev-spectool -g zellij.spec` and remove the previous version tar ball. -4. Edit the service file cargo-vendor to point to the new tar ball. -5. Run `osc service disabledrun` - -Then add version changes with `osc vc` and then `osc ci` - +1. Edit the service file to the corresponding version number of the tarball. +2. Run `osc service disabledrun`. +3. Edit zellij.changes with `osc vc`. ++++++ _service ++++++ --- /var/tmp/diff_new_pack.f7cIOM/_old 2022-11-24 12:25:32.694180464 +0100 +++ /var/tmp/diff_new_pack.f7cIOM/_new 2022-11-24 12:25:32.698180489 +0100 @@ -1,6 +1,7 @@ <services> + <service name="download_files" mode="disabled" /> <service name="cargo_vendor" mode="disabled"> - <param name="srctar">v0.32.0.tar.gz</param> + <param name="srctar">v0.33.0.tar.gz</param> <param name="compression">gz</param> <param name="update">true</param> </service> ++++++ v0.32.0.tar.gz -> v0.33.0.tar.gz ++++++ /work/SRC/openSUSE:Factory/zellij/v0.32.0.tar.gz /work/SRC/openSUSE:Factory/.zellij.new.1597/v0.33.0.tar.gz differ: char 13, line 1 ++++++ vendor.tar.gz ++++++ /work/SRC/openSUSE:Factory/zellij/vendor.tar.gz /work/SRC/openSUSE:Factory/.zellij.new.1597/vendor.tar.gz differ: char 5, line 1