commit eza for openSUSE:Factory
Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package eza for openSUSE:Factory checked in at 2024-08-05 17:21:59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/eza (Old) and /work/SRC/openSUSE:Factory/.eza.new.7232 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "eza" Mon Aug 5 17:21:59 2024 rev:43 rq:1191589 version:0.18.24+0 Changes: -------- --- /work/SRC/openSUSE:Factory/eza/eza.changes 2024-07-25 16:22:11.395052927 +0200 +++ /work/SRC/openSUSE:Factory/.eza.new.7232/eza.changes 2024-08-05 17:22:58.515304091 +0200 @@ -1,0 +2,6 @@ +Mon Aug 5 05:48:51 UTC 2024 - Michael Vetter <mvetter@suse.com> + +- Update to 0.18.24: + * Fix 1.80 breakage from time crate + +------------------------------------------------------------------- Old: ---- eza-0.18.23+0.obscpio New: ---- eza-0.18.24+0.obscpio ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ eza.spec ++++++ --- /var/tmp/diff_new_pack.nQ5rQw/_old 2024-08-05 17:22:59.687352154 +0200 +++ /var/tmp/diff_new_pack.nQ5rQw/_new 2024-08-05 17:22:59.687352154 +0200 @@ -17,7 +17,7 @@ Name: eza -Version: 0.18.23+0 +Version: 0.18.24+0 Release: 0 Summary: Replacement for ls written in Rust License: MIT ++++++ _service ++++++ --- /var/tmp/diff_new_pack.nQ5rQw/_old 2024-08-05 17:22:59.723353630 +0200 +++ /var/tmp/diff_new_pack.nQ5rQw/_new 2024-08-05 17:22:59.727353794 +0200 @@ -3,7 +3,7 @@ <param name="url">https://github.com/eza-community/eza.git</param> <param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@</param> <param name="scm">git</param> - <param name="revision">v0.18.23</param> + <param name="revision">v0.18.24</param> <param name="match-tag">*</param> <param name="versionrewrite-pattern">v(\d+\.\d+\.\d+)</param> <param name="versionrewrite-replacement">\1</param> ++++++ eza-0.18.23+0.obscpio -> eza-0.18.24+0.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/eza-0.18.23+0/CHANGELOG.md new/eza-0.18.24+0/CHANGELOG.md --- old/eza-0.18.23+0/CHANGELOG.md 2024-07-25 11:22:37.000000000 +0200 +++ new/eza-0.18.24+0/CHANGELOG.md 2024-08-03 18:01:28.000000000 +0200 @@ -1,5 +1,15 @@ # Changelog +## [0.18.24] - 2024-08-03 + +### Bug Fixes + +- 1.80 breakage from time crate + +### Build + +- Bump time dependency + ## [0.18.23] - 2024-07-25 ### Bug Fixes @@ -10,6 +20,10 @@ - Clear up confusion around ls +### Miscellaneous Tasks + +- Release eza v0.18.23 + ### Build - Bump log from 0.4.21 to 0.4.22 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/eza-0.18.23+0/Cargo.lock new/eza-0.18.24+0/Cargo.lock --- old/eza-0.18.23+0/Cargo.lock 2024-07-25 11:22:37.000000000 +0200 +++ new/eza-0.18.24+0/Cargo.lock 2024-08-03 18:01:28.000000000 +0200 @@ -387,7 +387,7 @@ [[package]] name = "eza" -version = "0.18.23" +version = "0.18.24" dependencies = [ "ansi-width", "chrono", @@ -689,6 +689,12 @@ ] [[package]] +name = "num-conv" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" + +[[package]] name = "num-traits" version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1180,12 +1186,13 @@ [[package]] name = "time" -version = "0.3.30" +version = "0.3.36" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4a34ab300f2dee6e562c10a046fc05e358b29f9bf92277f30c3c8d82275f6f5" +checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" dependencies = [ "deranged", "itoa", + "num-conv", "powerfmt", "serde", "time-core", @@ -1200,10 +1207,11 @@ [[package]] name = "time-macros" -version = "0.2.15" +version = "0.2.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20" +checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" dependencies = [ + "num-conv", "time-core", ] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/eza-0.18.23+0/Cargo.toml new/eza-0.18.24+0/Cargo.toml --- old/eza-0.18.23+0/Cargo.toml 2024-07-25 11:22:37.000000000 +0200 +++ new/eza-0.18.24+0/Cargo.toml 2024-08-03 18:01:28.000000000 +0200 @@ -16,7 +16,7 @@ homepage = "https://github.com/eza-community/eza" license = "MIT" repository = "https://github.com/eza-community/eza" -version = "0.18.23" +version = "0.18.24" [package.metadata.deb] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/eza-0.18.23+0/deny.toml new/eza-0.18.24+0/deny.toml --- old/eza-0.18.23+0/deny.toml 2024-07-25 11:22:37.000000000 +0200 +++ new/eza-0.18.24+0/deny.toml 2024-08-03 18:01:28.000000000 +0200 @@ -1,3 +1,4 @@ +[graph] # This template contains all of the possible sections and their default values # Note that all fields that take a lint level have these possible values: @@ -43,6 +44,8 @@ # If true, metadata will be collected with `--no-default-features`. The same # caveat with `all-features` applies no-default-features = false + +[output] # If set, these feature will be enabled when collecting metadata. If `--features` # is specified on the cmd line they will take precedence over this option. #features = [] @@ -57,20 +60,13 @@ # More documentation for the advisories section can be found here: # https://embarkstudios.github.io/cargo-deny/checks/advisories/cfg.html [advisories] +version = 2 # The path where the advisory database is cloned/fetched into db-path = "~/.cargo/advisory-db" # The url(s) of the advisory databases to use db-urls = ["https://github.com/rustsec/advisory-db"] -# The lint level for security vulnerabilities -vulnerability = "deny" -# The lint level for unmaintained crates -unmaintained = "warn" # The lint level for crates that have been yanked from their source registry yanked = "warn" -# The lint level for crates with security notices. Note that as of -# 2019-12-17 there are no security notice advisories in -# https://github.com/rustsec/advisory-db -notice = "warn" # A list of advisory IDs to ignore. Note that ignored advisories will still # output a note when they are encountered. ignore = [ @@ -96,8 +92,7 @@ # More documentation for the licenses section can be found here: # https://embarkstudios.github.io/cargo-deny/checks/licenses/cfg.html [licenses] -# The lint level for crates which do not have a detectable license -unlicensed = "deny" +version = 2 # List of explicitly allowed licenses # See https://spdx.org/licenses/ for list of possible licenses # [possible values: any SPDX 3.11 short identifier (+ optional exception)]. @@ -107,28 +102,6 @@ "Apache-2.0", #"Apache-2.0 WITH LLVM-exception", ] -# List of explicitly disallowed licenses -# See https://spdx.org/licenses/ for list of possible licenses -# [possible values: any SPDX 3.11 short identifier (+ optional exception)]. -deny = [ - #"Nokia", -] -# Lint level for licenses considered copyleft -copyleft = "warn" -# Blanket approval or denial for OSI-approved or FSF Free/Libre licenses -# * both - The license will be approved if it is both OSI-approved *AND* FSF -# * either - The license will be approved if it is either OSI-approved *OR* FSF -# * osi - The license will be approved if it is OSI approved -# * fsf - The license will be approved if it is FSF Free -# * osi-only - The license will be approved if it is OSI-approved *AND NOT* FSF -# * fsf-only - The license will be approved if it is FSF *AND NOT* OSI-approved -# * neither - This predicate is ignored and the default lint level is used -allow-osi-fsf-free = "neither" -# Lint level used when no other predicates are matched -# 1. License isn't in the allow or deny lists -# 2. License isn't copyleft -# 3. License isn't OSI/FSF, or allow-osi-fsf-free = "neither" -default = "deny" # The confidence threshold for detecting a license from license text. # The higher the value, the more closely the license text must be to the # canonical license text of a valid SPDX license file. ++++++ eza.obsinfo ++++++ --- /var/tmp/diff_new_pack.nQ5rQw/_old 2024-08-05 17:23:00.103369213 +0200 +++ /var/tmp/diff_new_pack.nQ5rQw/_new 2024-08-05 17:23:00.107369377 +0200 @@ -1,5 +1,5 @@ name: eza -version: 0.18.23+0 -mtime: 1721899357 -commit: 65a08a672ad9fe92cf12f508c0ea8b38e82ccf11 +version: 0.18.24+0 +mtime: 1722700888 +commit: 6cbb5ba981fc2583328f39e8b0c55caec10b5c8e ++++++ vendor.tar.zst ++++++ /work/SRC/openSUSE:Factory/eza/vendor.tar.zst /work/SRC/openSUSE:Factory/.eza.new.7232/vendor.tar.zst differ: char 170135, line 721
participants (1)
-
Source-Sync