Accepting request 980643 from home:jbaier_cz:branches:utilities

* Update bat to version 0.21.0
* Bump minimal rust version to 1.60 (weak-dep-features needed)

OBS-URL: https://build.opensuse.org/request/show/980643
OBS-URL: https://build.opensuse.org/package/show/utilities/bat?expand=0&rev=33
This commit is contained in:
Michael Vetter 2022-06-07 14:31:15 +00:00 committed by Git OBS Bridge
parent d82f55fa82
commit 47dc00d092
7 changed files with 67 additions and 9 deletions

View File

@ -4,7 +4,7 @@
<service name="obs_scm" mode="localonly">
<param name="scm">git</param>
<param name="url">https://github.com/sharkdp/bat</param>
<param name="revision">v0.20.0</param>
<param name="revision">v0.21.0</param>
<param name="versionformat">@PARENT_TAG@</param>
<param name="changesgenerate">enable</param>
<param name="versionrewrite-pattern">v(.*)</param>
@ -21,5 +21,7 @@
</service>
<service name="cargo_vendor" mode="localonly">
<param name="srcdir">bat</param>
<param name="compression">xz</param>
<param name="update">true</param>
</service>
</services>

View File

@ -3,4 +3,4 @@
<param name="url">git://github.com/sharkdp/bat</param>
<param name="changesrevision">f3d53b79a2d7a51f470ac8a06b6bdd9a4f225e8f</param></service><service name="tar_scm">
<param name="url">https://github.com/sharkdp/bat</param>
<param name="changesrevision">0655ecf23d778f1455e2d79f37a805a7bcca98d2</param></service></servicedata>
<param name="changesrevision">405e5f74602d8f680168ef52350150921c696d54</param></service></servicedata>

View File

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

3
bat-0.21.0.tar.xz Normal file
View File

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

View File

@ -1,3 +1,57 @@
-------------------------------------------------------------------
Mon May 30 17:48:40 UTC 2022 - Jan Baier <jbaier@suse.com>
- Update to version 0.21.0:
* assets/create.sh
* Bump to v0.21.0
* Make `INI` syntax register as handler of `.inf` files
* release-checklist.md: Don't recommend `--allow-dirty` to cargo publish
* release-checklist.md: Recommend looking at the tip of master for `-h` and `man`
* release-checklist.md: Recommend `--locked` for `cargo install`
* release-checklist.md: Recommend a single git grep command for MSRV
* CHANGELOG.md: Clean up and tweak
* Bump to syntect 5.0.0 to e.g. start lazy-loading syntaxes (#2181)
* Simplify release-checklist.md by printing `-h`, `--help` and `man` in CI (#2183)
* Bump assets/syntaxes/02_Extra/Zig from `87ecbca` to `1a4a384` (#2136)
* Add `--relative` to `batdiff` in README.md (#2172)
* printer.rs: De-duplicate code to highlight long lines
* Limit nix features
* Add a --style=default option (#2119)
* Bump assets/syntaxes/02_Extra/Nginx from `15a1db1` to `65f5a63`
* Skip syntax highlighting for long lines (#2165)
* Add support for BusyBox less as pager (#2162)
* Bump nix from 0.23.1 to 0.24.1
* Bump flate2 from 1.0.22 to 1.0.23
* Bump thiserror from 1.0.30 to 1.0.31
* Run `cargo clippy --fix --all-targets --all-features` with Rust 1.60
* Add mapping for Unix mail spool (#2156)
* Bump assets/syntaxes/02_Extra/Fish from `cd95616` to `98316d4`
* Syntax: add cmd-help (#2148)
* bug_report.md template: Explicitly ask for steps
* bug_report.md template: Mention some already reported bugs
* Print info about custom assets in --diagnostics
* Lock regex crate at min 1.5.5 for CVE-2022-24713
* Allow configuring show_nonprintable from PrettyPrinter
* Bump git2 from 0.14.1 to 0.14.2
* Bump once_cell from 1.9.0 to 1.10.0
* Bump regex from 1.5.4 to 1.5.5
* Bump semver from 1.0.6 to 1.0.7
* Bump assets/syntaxes/02_Extra/Fish from `2c254cc` to `cd95616`
* Syntax: [Log] highlight escape characters in double quoted strings
* Include contents of custom assets `metadata.yaml` in `--diagnostics`
* Bump shell-words from 1.0.0 to 1.1.0
* Bump git2 from 0.13.25 to 0.14.1
* Updated test names
* correctly handle multiple tabs in one line
* add show_all_tabstops_long integration test
* add show_all_tabstops integration test
* Correctly render tab stops
* Syntax: add clang-format (#2076)
* Bump serial_test from 0.5.1 to 0.6.0
* Bump semver from 1.0.4 to 1.0.6
* Bump predicates from 2.1.0 to 2.1.1
* release-checklist: Remind where to push tags in forks
-------------------------------------------------------------------
Mon Apr 18 14:50:14 UTC 2022 - Ferdinand Thiessen <rpm@fthiessen.de>

View File

@ -17,7 +17,7 @@
Name: bat
Version: 0.20.0
Version: 0.21.0
Release: 0
Summary: A cat(1) clone with syntax highlighting and Git integration
License: Apache-2.0 OR MIT
@ -27,7 +27,9 @@ Source0: %{name}-%{version}.tar.xz
Source1: vendor.tar.xz
Source2: cargo_config
BuildRequires: cargo-packaging
BuildRequires: rust >= 1.45
# weak-dep-features introduced in 1.60 and already used by libgit2-sys
# https://github.com/rust-lang/git2-rs/commit/d8ee105a8f3ce4d5c57cd091b67943aab86b176a
BuildRequires: rust >= 1.60
ExclusiveArch: %{rust_arches}
%description

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cef3ff3e605505f99163af880d12c514c0c71dd4d01db96d4fb4fdd67454f4c3
size 11824964
oid sha256:6e0e62731e3087c7bd329fae38420d0510f9a6068d79727663379dcdb2d32473
size 12849728