diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2018-01-05 12:48:20 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2018-01-06 06:55:30 +0700 |
commit | dea7405cc1b6e1c1f0fc7700369e6e60bbf24cf0 (patch) | |
tree | 6abe5114a1e93dc72823abb3c31a99f7d45d7962 /system/fd/fd.SlackBuild | |
parent | 82b4a756c03a1bb405c7c61039778d55d3ae11cd (diff) | |
download | slackbuilds-dea7405cc1b6e1c1f0fc7700369e6e60bbf24cf0.tar.gz |
system/fd: Updated for version 6.2.0.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'system/fd/fd.SlackBuild')
-rw-r--r-- | system/fd/fd.SlackBuild | 31 |
1 files changed, 18 insertions, 13 deletions
diff --git a/system/fd/fd.SlackBuild b/system/fd/fd.SlackBuild index 685a38c1f0..5e2e05be0c 100644 --- a/system/fd/fd.SlackBuild +++ b/system/fd/fd.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for fd -# Copyright 2017 Andrew Clemons, Wellington New Zealand +# Copyright 2017-2018 Andrew Clemons, Wellington New Zealand # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=fd -VERSION=${VERSION:-6.1.0} +VERSION=${VERSION:-6.2.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -86,9 +86,9 @@ mkdir vendor cd vendor for dependency in aho-corasick=0.6.4 \ - ansi_term=0.9.0 \ ansi_term=0.10.2 \ - atty=0.2.3 \ + ansi_term=0.9.0 \ + atty=0.2.6 \ bitflags=0.7.0 \ bitflags=1.0.1 \ cfg-if=0.1.2 \ @@ -97,27 +97,29 @@ mkdir vendor ctrlc=3.0.3 \ diff=0.1.11 \ fnv=1.0.6 \ - fuchsia-zircon=0.2.1 \ - fuchsia-zircon-sys=0.2.0 \ + fuchsia-zircon-sys=0.3.2 \ + fuchsia-zircon=0.3.2 \ globset=0.2.1 \ ignore=0.2.2 \ kernel32-sys=0.2.2 \ lazy_static=0.2.11 \ lazy_static=1.0.0 \ libc=0.2.34 \ - log=0.3.8 \ + log=0.3.9 \ + log=0.4.1 \ memchr=1.0.2 \ memchr=2.0.1 \ nix=0.8.1 \ - num_cpus=1.7.0 \ - rand=0.3.18 \ - redox_syscall=0.1.32 \ + num_cpus=1.8.0 \ + rand=0.3.19 \ + redox_syscall=0.1.33 \ redox_termios=0.1.1 \ - regex=0.2.3 \ - regex-syntax=0.4.1 \ + regex-syntax=0.4.2 \ + regex=0.2.5 \ same-file=0.1.3 \ strsim=0.6.0 \ tempdir=0.3.5 \ + term_size=0.3.1 \ termion=1.5.1 \ textwrap=0.9.0 \ thread_local=0.3.5 \ @@ -128,8 +130,11 @@ mkdir vendor version_check=0.1.3 \ void=1.0.2 \ walkdir=1.0.7 \ + winapi-build=0.1.1 \ + winapi-i686-pc-windows-gnu=0.3.2 \ + winapi-x86_64-pc-windows-gnu=0.3.2 \ winapi=0.2.8 \ - winapi-build=0.1.1; do + winapi=0.3.2 ; do dep="$(echo "$dependency" | cut -d= -f1)" ver="$(echo "$dependency" | cut -d= -f2)" |