commit fd for openSUSE:Factory

2020-08-12 Thread root
Hello community,

here is the log from the commit of package fd for openSUSE:Factory checked in 
at 2020-08-12 10:23:51

Comparing /work/SRC/openSUSE:Factory/fd (Old)
 and  /work/SRC/openSUSE:Factory/.fd.new.3399 (New)


Package is "fd"

Wed Aug 12 10:23:51 2020 rev:7 rq:824132 version:8.1.1

Changes:

--- /work/SRC/openSUSE:Factory/fd/fd.changes2020-06-09 00:03:41.709084394 
+0200
+++ /work/SRC/openSUSE:Factory/.fd.new.3399/fd.changes  2020-08-12 
10:27:58.987941185 +0200
@@ -1,0 +2,9 @@
+Tue Jul 28 09:03:50 UTC 2020 - Martin Rey 
+
+- Update to 8.1.1
+  * Bugfixes
+- Support colored output on older Windows versions if either
+  (1) --color=always is set or
+  (2) the TERM environment variable is set. See #469 
+
+---

Old:

  fd-8.1.0.tar.gz

New:

  fd-8.1.1.tar.gz



Other differences:
--
++ fd.spec ++
--- /var/tmp/diff_new_pack.slADFS/_old  2020-08-12 10:28:04.047945093 +0200
+++ /var/tmp/diff_new_pack.slADFS/_new  2020-08-12 10:28:04.051945096 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   fd
-Version:8.1.0
+Version:8.1.1
 Release:0
 Summary:An alternative to the "find" utility
 License:MIT AND Apache-2.0

++ fd-8.1.0.tar.gz -> fd-8.1.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fd-8.1.0/CHANGELOG.md new/fd-8.1.1/CHANGELOG.md
--- old/fd-8.1.0/CHANGELOG.md   2020-05-19 18:01:51.0 +0200
+++ new/fd-8.1.1/CHANGELOG.md   2020-05-25 15:38:30.0 +0200
@@ -5,6 +5,12 @@
 ## Changes
 ## Other
 
+# v8.1.1
+
+## Bugfixes
+
+- Support colored output on older Windows versions if either (1) 
`--color=always` is set or (2) the `TERM` environment variable is set. See #469
+
 # v8.1.0
 
 ## Features
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fd-8.1.0/Cargo.lock new/fd-8.1.1/Cargo.lock
--- old/fd-8.1.0/Cargo.lock 2020-05-19 18:01:51.0 +0200
+++ new/fd-8.1.1/Cargo.lock 2020-05-25 15:38:30.0 +0200
@@ -158,7 +158,7 @@
 
 [[package]]
 name = "fd-find"
-version = "8.1.0"
+version = "8.1.1"
 dependencies = [
  "ansi_term 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)",
  "anyhow 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fd-8.1.0/Cargo.toml new/fd-8.1.1/Cargo.toml
--- old/fd-8.1.0/Cargo.toml 2020-05-19 18:01:51.0 +0200
+++ new/fd-8.1.1/Cargo.toml 2020-05-25 15:38:30.0 +0200
@@ -16,7 +16,7 @@
 name = "fd-find"
 readme = "README.md"
 repository = "https://github.com/sharkdp/fd;
-version = "8.1.0"
+version = "8.1.1"
 edition= "2018"
 
 [badges.appveyor]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fd-8.1.0/README.md new/fd-8.1.1/README.md
--- old/fd-8.1.0/README.md  2020-05-19 18:01:51.0 +0200
+++ new/fd-8.1.1/README.md  2020-05-25 15:38:30.0 +0200
@@ -130,11 +130,6 @@
 
 ## Installation
 
-[![Packaging 
status](https://repology.org/badge/vertical-allrepos/fd.svg)](https://repology.org/project/fd/versions)
-
-[![Packaging 
status](https://repology.org/badge/vertical-allrepos/rust:fd-find.svg)](https://repology.org/project/rust:fd-find/versions)
-
-
 [![Packaging 
status](https://repology.org/badge/vertical-allrepos/fd-find.svg)](https://repology.org/project/fd-find/versions)
 
 ### On Ubuntu
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fd-8.1.0/src/main.rs new/fd-8.1.1/src/main.rs
--- old/fd-8.1.0/src/main.rs2020-05-19 18:01:51.0 +0200
+++ new/fd-8.1.1/src/main.rs2020-05-25 15:38:30.0 +0200
@@ -148,18 +148,22 @@
 let case_sensitive = !matches.is_present("ignore-case")
 && (matches.is_present("case-sensitive") || 
pattern_has_uppercase_char(_regex));
 
+#[cfg(windows)]
+let ansi_colors_support =
+ansi_term::enable_ansi_support().is_ok() || 
std::env::var_os("TERM").is_some();
+
+#[cfg(not(windows))]
+let ansi_colors_support = true;
+
 let interactive_terminal = atty::is(Stream::Stdout);
 let colored_output = match matches.value_of("color") {
 Some("always") => true,
 Some("never") => false,
-_ => env::var_os("NO_COLOR").is_none() && interactive_terminal,
+_ => ansi_colors_support && env::var_os("NO_COLOR").is_none() && 
interactive_terminal,
 };
 
 let path_separator = matches.value_of("path-separator").map(|str| 
str.to_owned());
 
-#[cfg(windows)]
-let colored_output = colored_output && 

commit fd for openSUSE:Factory

2020-06-08 Thread root
Hello community,

here is the log from the commit of package fd for openSUSE:Factory checked in 
at 2020-06-08 23:59:45

Comparing /work/SRC/openSUSE:Factory/fd (Old)
 and  /work/SRC/openSUSE:Factory/.fd.new.3606 (New)


Package is "fd"

Mon Jun  8 23:59:45 2020 rev:6 rq:808146 version:8.1.0

Changes:

--- /work/SRC/openSUSE:Factory/fd/fd.changes2020-04-22 20:53:40.631472680 
+0200
+++ /work/SRC/openSUSE:Factory/.fd.new.3606/fd.changes  2020-06-09 
00:03:41.709084394 +0200
@@ -1,0 +2,14 @@
+Wed May 20 09:51:47 UTC 2020 - Paolo Stivanin 
+
+- Update to 8.1.0
+  * Features
+- Add new --owner [user][:group] command-line option
+- Add support for a global ignore file (~/.config/fd/ignore on Unix)
+- Do not exit immediately if one of the search paths is missing
+  * Bugfixes
+- Reverted a change from fd 8.0 that enabled colors on all
+  Windows terminals (see below) in order to support
+  older Windows versions again
+- Fix --glob behavior with empty pattern
+
+---

Old:

  fd-8.0.0.tar.gz

New:

  fd-8.1.0.tar.gz



Other differences:
--
++ fd.spec ++
--- /var/tmp/diff_new_pack.g4sVDP/_old  2020-06-09 00:03:53.569126469 +0200
+++ /var/tmp/diff_new_pack.g4sVDP/_new  2020-06-09 00:03:53.573126483 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   fd
-Version:8.0.0
+Version:8.1.0
 Release:0
 Summary:An alternative to the "find" utility
 License:MIT AND Apache-2.0

++ fd-8.0.0.tar.gz -> fd-8.1.0.tar.gz ++
 1601 lines of diff (skipped)

++ vendor.tar.xz ++
/work/SRC/openSUSE:Factory/fd/vendor.tar.xz 
/work/SRC/openSUSE:Factory/.fd.new.3606/vendor.tar.xz differ: char 1, line 1




commit fd for openSUSE:Factory

2020-04-22 Thread root
Hello community,

here is the log from the commit of package fd for openSUSE:Factory checked in 
at 2020-04-22 20:53:37

Comparing /work/SRC/openSUSE:Factory/fd (Old)
 and  /work/SRC/openSUSE:Factory/.fd.new.2738 (New)


Package is "fd"

Wed Apr 22 20:53:37 2020 rev:5 rq:795676 version:8.0.0

Changes:

--- /work/SRC/openSUSE:Factory/fd/fd.changes2020-03-23 12:52:39.428035411 
+0100
+++ /work/SRC/openSUSE:Factory/.fd.new.2738/fd.changes  2020-04-22 
20:53:40.631472680 +0200
@@ -1,0 +2,60 @@
+Thu Apr 16 10:56:42 UTC 2020 - Martin Rey 
+
+- Update to 8.0.0
+  * Features
+- Add a new -l/--list-details option to show more details about
+  the search results.
+- Add a new --max-results= option to limit the number of
+  search results, see #472, #476 and #555
+- Add the alias -1 for --max-results=1, see #561.
+- Add new --type socket and --type pipe filters, see #511.
+- Add new --min-depth  and --exact-depth  options
+  in addition to the existing option to limit the maximum
+  depth. See #404.
+- Support additional ANSI font styles in LS_COLORS: faint, slow
+  blink, rapid blink, dimmed, hidden and strikethrough.
+  * Bugfixes
+- Preserve non-UTF8 filenames: invalid UTF-8 filenames are now
+  properly passed to child-processes when using --exec,
+  --exec-batch or --list-details. In fd's output, we replace
+  non-UTF-8 sequences with the "�" character. However, if the
+  output of fd goes to another process, we print the actual
+  bytes of the filename. For more details, see #558 and #295.
+- LS_COLORS entries with unsupported font styles are not
+  completely ignored, see #552
+  * Changes
+- When using --glob in combination with --full-path, a *
+  character does not match a path separation character (/ or
+  \\) anymore. You can use ** for that. This allows things like
+  fd -p -g '/some/base/path/*/*/*.txt' which would previously
+  match to arbitrary depths (instead of exactly two folders
+  below /some/base/path. See #404.
+- "Legacy" support to use fd -exec (with a single dash) has
+  been removed. Use fd -x or fd --exec instead.
+- Overall improved error handling and error messages.
+  * Other
+- Korean translation of the README, see: 한국어
+
+- Changes from 7.5.0
+  * Features
+- Added --one-file-system (aliases: --mount, --xdev) to not
+  cross file system boundaries on Unix and Windows, see #507
+- Added --base-directory to change the working directory in
+  which fd is run, see #509 and #475
+- fd will not use colored output if the NO_COLOR environment
+  variable is set, see #550 and #551
+- fd --exec will return exit code 1 if one of the executed
+  commands fails, see #526 and #531
+  * Bug Fixes
+- Fixed 'command not found' error when using zsh completion,
+  see #487
+- fd -L should include broken symlinks, see #357 and #497
+- Display directories even if we don't have permission to
+  enter, see #437
+  * Changes
+- A flag can now be passed multiple times without producing an
+  error, see #488 and #496
+- Search results are sorted when using the -X option to match
+  the behaviour of piping to xargs, see #441 and #524
+
+---

Old:

  fd-7.4.0.tar.gz

New:

  fd-8.0.0.tar.gz



Other differences:
--
++ fd.spec ++
--- /var/tmp/diff_new_pack.qeMBCC/_old  2020-04-22 20:53:43.655478601 +0200
+++ /var/tmp/diff_new_pack.qeMBCC/_new  2020-04-22 20:53:43.655478601 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   fd
-Version:7.4.0
+Version:8.0.0
 Release:0
 Summary:An alternative to the "find" utility
 License:MIT AND Apache-2.0

++ fd-7.4.0.tar.gz -> fd-8.0.0.tar.gz ++
 5660 lines of diff (skipped)

++ vendor.tar.xz ++
/work/SRC/openSUSE:Factory/fd/vendor.tar.xz 
/work/SRC/openSUSE:Factory/.fd.new.2738/vendor.tar.xz differ: char 1, line 1




commit fd for openSUSE:Factory

2020-03-23 Thread root
Hello community,

here is the log from the commit of package fd for openSUSE:Factory checked in 
at 2020-03-23 12:51:08

Comparing /work/SRC/openSUSE:Factory/fd (Old)
 and  /work/SRC/openSUSE:Factory/.fd.new.3160 (New)


Package is "fd"

Mon Mar 23 12:51:08 2020 rev:4 rq:787316 version:7.4.0

Changes:

--- /work/SRC/openSUSE:Factory/fd/fd.changes2018-09-17 14:27:36.159722525 
+0200
+++ /work/SRC/openSUSE:Factory/.fd.new.3160/fd.changes  2020-03-23 
12:52:39.428035411 +0100
@@ -1,0 +2,23 @@
+Sun Mar 15 08:47:52 UTC 2020 - Paolo Stivanin 
+
+- Update to 7.4.0
+  * Added a new --path-separator  option
+  * When fd is run with the --exec-batch/-X option, it now exposes
+the exit status of the command that was run
+  * Added a new -g/--glob option to switch to glob-based searches 
+  * Use jemalloc by default, improving the performance for almost all searches
+  * Reduce number of stat syscalls, improving the performance for searches
+where file metadata is required
+  * Added support for filtering by file modification time by adding
+two new options --changed-before  and --changed-within <..>.
+For more details, see the --help text, the man page,
+the relevant issue #165 and the PR #339 (@kimsnj)
+  * Added --show-errors option to enable the display of filesystem error 
messages
+such as "permission denied", see #311 (@psinghal20 and @majecty)
+  * Added --maxdepth as a (hidden) alias for --max-depth, see #323 (@mqudsi)
+  * Added --search-path option which can be supplied to replace
+the positional path argument at any position.
+  * New --exec-batch /-X  option for batch execution of commands
+  * Support for 24-bit color codes
+
+---

Old:

  fd-7.1.0.tar.gz

New:

  fd-7.4.0.tar.gz



Other differences:
--
++ fd.spec ++
--- /var/tmp/diff_new_pack.Sxj3No/_old  2020-03-23 12:52:50.844042580 +0100
+++ /var/tmp/diff_new_pack.Sxj3No/_new  2020-03-23 12:52:50.844042580 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package fd
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   fd
-Version:7.1.0
+Version:7.4.0
 Release:0
 Summary:An alternative to the "find" utility
 License:MIT AND Apache-2.0
@@ -44,7 +44,7 @@
 Summary:Bash Completion for %{name}
 Group:  System/Shells
 Requires:   bash-completion
-Supplements:packageand(%{name}:bash)
+Supplements:(%{name} and bash)
 BuildArch:  noarch
 
 %description bash-completion
@@ -53,7 +53,7 @@
 %package zsh-completion
 Summary:ZSH Completion for %{name}
 Group:  System/Shells
-Supplements:packageand(%{name}:zsh)
+Supplements:(%{name} and zsh)
 BuildArch:  noarch
 
 %description zsh-completion
@@ -62,7 +62,7 @@
 %package fish-completion
 Summary:Fish Completion for %{name}
 Group:  System/Shells
-Supplements:packageand(%{name}:fish)
+Supplements:(%{name} and fish)
 BuildArch:  noarch
 
 %description fish-completion
@@ -86,10 +86,9 @@
 
 %install
 export CARGO_HOME=$PWD/cargo-home
-cargo install --root=%{buildroot}%{_prefix}
-
-# remove residue crate file
-rm %{buildroot}%{_prefix}/.crates.toml
+cargo install --path . --root=build
+mkdir -p %{buildroot}%{_bindir}
+install -Dm0755 build/bin/fd %{buildroot}%{_bindir}/fd
 
 # install man page and completions
 install -Dm644 target/release/build/fd-find-*/out/fd.bash 
%{buildroot}%{_datadir}/bash-completion/completions/fd

++ fd-7.1.0.tar.gz -> fd-7.4.0.tar.gz ++
 5000 lines of diff (skipped)

++ vendor.tar.xz ++
/work/SRC/openSUSE:Factory/fd/vendor.tar.xz 
/work/SRC/openSUSE:Factory/.fd.new.3160/vendor.tar.xz differ: char 1, line 1




commit fd for openSUSE:Factory

2018-09-17 Thread root
Hello community,

here is the log from the commit of package fd for openSUSE:Factory checked in 
at 2018-09-17 14:27:20

Comparing /work/SRC/openSUSE:Factory/fd (Old)
 and  /work/SRC/openSUSE:Factory/.fd.new (New)


Package is "fd"

Mon Sep 17 14:27:20 2018 rev:3 rq:635954 version:7.1.0

Changes:

--- /work/SRC/openSUSE:Factory/fd/fd.changes2018-05-29 10:43:22.571910739 
+0200
+++ /work/SRC/openSUSE:Factory/.fd.new/fd.changes   2018-09-17 
14:27:36.159722525 +0200
@@ -1,0 +2,12 @@
+Sun Sep 16 18:11:33 UTC 2018 - Avindra Goolcharan 
+
+- Update to version 7.1.0
+Features
+  * Added --size filter option
+  * Added --type empty (or -t e) to search for empty files and/or directories
+Changes
+  * .gitignore files will only be respected in Git repositories, not outside.
+  * A few performance improvements for --type searches
+- cleanup with spec-cleaner 
+
+---

Old:

  fd-7.0.0.tar.gz

New:

  fd-7.1.0.tar.gz



Other differences:
--
++ fd.spec ++
--- /var/tmp/diff_new_pack.YEHq4o/_old  2018-09-17 14:27:38.467720543 +0200
+++ /var/tmp/diff_new_pack.YEHq4o/_new  2018-09-17 14:27:38.471720539 +0200
@@ -12,17 +12,17 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 Name:   fd
-Version:7.0.0
+Version:7.1.0
 Release:0
 Summary:An alternative to the "find" utility
 License:MIT AND Apache-2.0
 Group:  Productivity/File utilities
-Url:https://github.com/sharkdp/fd
+URL:https://github.com/sharkdp/fd
 Source: 
https://github.com/sharkdp/fd/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
 Source1:vendor.tar.xz
 BuildRequires:  cargo

++ fd-7.0.0.tar.gz -> fd-7.1.0.tar.gz ++
 1850 lines of diff (skipped)

++ vendor.tar.xz ++
/work/SRC/openSUSE:Factory/fd/vendor.tar.xz 
/work/SRC/openSUSE:Factory/.fd.new/vendor.tar.xz differ: char 27, line 1




commit fd for openSUSE:Factory

2018-05-29 Thread root
Hello community,

here is the log from the commit of package fd for openSUSE:Factory checked in 
at 2018-05-29 10:43:21

Comparing /work/SRC/openSUSE:Factory/fd (Old)
 and  /work/SRC/openSUSE:Factory/.fd.new (New)


Package is "fd"

Tue May 29 10:43:21 2018 rev:2 rq:611908 version:7.0.0

Changes:

--- /work/SRC/openSUSE:Factory/fd/fd.changes2018-03-22 12:08:46.921791769 
+0100
+++ /work/SRC/openSUSE:Factory/.fd.new/fd.changes   2018-05-29 
10:43:22.571910739 +0200
@@ -1,0 +2,21 @@
+Mon Mar 26 10:30:09 UTC 2018 - avin...@opensuse.org
+
+- Update to version 7.0.0
+Features
+  * Added --type executable (or -t x) to search for executable
+files only
+  * Added support for .fdignore files
+  * Added --ignore-file option to add custom ignore files
+  * Suggest --fixed-strings on invalid regular expressions
+  * Detect when user supplied path instead of pattern
+Changes
+  * .ignore and .rgignore files are not parsed anymore. Use
+.fdignore files
+  * or add custom files via --ignore-file instead.
+Bugfixes
+  * Properly normalize absolute paths
+  * Invalid utf8 filenames displayed when -e is used
+  * If --type is used, fifos/sockets/etc. are always shown
+- cleanup with spec-cleaner
+
+---

Old:

  fd-6.3.0.tar.gz

New:

  fd-7.0.0.tar.gz



Other differences:
--
++ fd.spec ++
--- /var/tmp/diff_new_pack.muYfoL/_old  2018-05-29 10:43:25.123816557 +0200
+++ /var/tmp/diff_new_pack.muYfoL/_new  2018-05-29 10:43:25.127816409 +0200
@@ -17,12 +17,12 @@
 
 
 Name:   fd
-Version:6.3.0
+Version:7.0.0
 Release:0
 Summary:An alternative to the "find" utility
 License:MIT AND Apache-2.0
 Group:  Productivity/File utilities
-URL:https://github.com/sharkdp/fd
+Url:https://github.com/sharkdp/fd
 Source: 
https://github.com/sharkdp/fd/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
 Source1:vendor.tar.xz
 BuildRequires:  cargo
@@ -30,7 +30,7 @@
 BuildRequires:  rust-std
 
 %description
-fd is an alternative to /usr/bin/find. It features:
+fd is an alternative to GNU find. It features:
 
 * Colorized terminal output (similar to ls).
 * The search is case-insensitive by default. It switches to
@@ -42,8 +42,8 @@
 
 %package bash-completion
 Summary:Bash Completion for %{name}
-Requires:   bash-completion
 Group:  System/Shells
+Requires:   bash-completion
 Supplements:packageand(%{name}:bash)
 BuildArch:  noarch
 
@@ -52,8 +52,8 @@
 
 %package zsh-completion
 Summary:ZSH Completion for %{name}
-Supplements:packageand(%{name}:zsh)
 Group:  System/Shells
+Supplements:packageand(%{name}:zsh)
 BuildArch:  noarch
 
 %description zsh-completion
@@ -61,8 +61,8 @@
 
 %package fish-completion
 Summary:Fish Completion for %{name}
-Supplements:packageand(%{name}:fish)
 Group:  System/Shells
+Supplements:packageand(%{name}:fish)
 BuildArch:  noarch
 
 %description fish-completion

++ fd-6.3.0.tar.gz -> fd-7.0.0.tar.gz ++
 1672 lines of diff (skipped)

++ vendor.tar.xz ++
 94738 lines of diff (skipped)