summaryrefslogtreecommitdiffstats
path: root/system/ripgrep/ripgrep.SlackBuild
diff options
context:
space:
mode:
author Andrew Clemons2018-02-12 08:44:09 +0100
committer Andrew Clemons2018-02-13 10:06:09 +0100
commitb0747749f1874d24720f12f8f527cd115a5e3194 (patch)
tree02d4b015a86e43d812c3140b5baf43c63716543a /system/ripgrep/ripgrep.SlackBuild
parent3a4d70eeaa2d4576a919185407b2da143d066530 (diff)
downloadslackbuilds-b0747749f1874d24720f12f8f527cd115a5e3194.tar.gz
system/ripgrep: Updated for version 0.8.0.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Diffstat (limited to 'system/ripgrep/ripgrep.SlackBuild')
-rw-r--r--system/ripgrep/ripgrep.SlackBuild78
1 files changed, 39 insertions, 39 deletions
diff --git a/system/ripgrep/ripgrep.SlackBuild b/system/ripgrep/ripgrep.SlackBuild
index 9471207b58..45c7d6d6f4 100644
--- a/system/ripgrep/ripgrep.SlackBuild
+++ b/system/ripgrep/ripgrep.SlackBuild
@@ -2,7 +2,7 @@
# Slackware build script for ripgrep
-# 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=ripgrep
-VERSION=${VERSION:-0.7.1}
+VERSION=${VERSION:-0.8.0}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@@ -85,46 +85,46 @@ mkdir vendor
(
cd vendor
- for dependency in aho-corasick=0.6.3 \
- ansi_term=0.9.0 \
- atty=0.2.3 \
- bitflags=0.9.1 \
- bytecount=0.1.7 \
+ for dependency in aho-corasick=0.6.4 \
+ ansi_term=0.10.2 \
+ atty=0.2.6 \
+ bitflags=1.0.1 \
+ bytecount=0.3.1 \
cfg-if=0.1.2 \
- clap=2.26.2 \
- crossbeam=0.2.10 \
- encoding_rs=0.7.1 \
- env_logger=0.4.3 \
- fnv=1.0.5 \
- fs2=0.4.2 \
- kernel32-sys=0.2.2 \
- lazy_static=0.2.9 \
- libc=0.2.32 \
- log=0.3.8 \
- memchr=1.0.2 \
- memchr=2.0.0 \
- memmap=0.5.2 \
- num_cpus=1.7.0 \
- redox_syscall=0.1.31 \
+ clap=2.29.4 \
+ crossbeam=0.3.2 \
+ encoding_rs=0.7.2 \
+ fnv=1.0.6 \
+ fuchsia-zircon-sys=0.3.3 \
+ fuchsia-zircon=0.3.3 \
+ glob=0.2.11 \
+ lazy_static=1.0.0 \
+ libc=0.2.36 \
+ log=0.4.1 \
+ memchr=2.0.1 \
+ memmap=0.6.2 \
+ num_cpus=1.8.0 \
+ rand=0.3.22 \
+ rand=0.4.2 \
+ redox_syscall=0.1.37 \
redox_termios=0.1.1 \
- regex=0.2.2 \
- regex-syntax=0.4.1 \
- same-file=1.0.0 \
- simd=0.1.1 \
- simd=0.2.0 \
- strsim=0.6.0 \
- term_size=0.3.0 \
+ regex-syntax=0.4.2 \
+ regex=0.2.6 \
+ same-file=1.0.2 \
+ simd=0.2.1 \
+ strsim=0.7.0 \
+ tempdir=0.3.5 \
termion=1.5.1 \
- textwrap=0.8.0 \
- thread_local=0.3.4 \
+ textwrap=0.9.0 \
+ thread_local=0.3.5 \
unicode-width=0.1.4 \
unreachable=1.0.0 \
utf8-ranges=1.0.0 \
- vec_map=0.8.0 \
void=1.0.2 \
- walkdir=2.0.1 \
- winapi=0.2.8 \
- winapi-build=0.1.1; do
+ walkdir=2.1.3 \
+ winapi-i686-pc-windows-gnu=0.4.0 \
+ winapi-x86_64-pc-windows-gnu=0.4.0 \
+ winapi=0.3.4; do
dep="$(echo "$dependency" | cut -d= -f1)"
ver="$(echo "$dependency" | cut -d= -f2)"
@@ -168,13 +168,13 @@ mkdir -p $PKG/usr/bin/
find target -name rg -exec install -m 755 {} $PKG/usr/bin/rg \;
mkdir -p $PKG/usr/share/bash-completion/completions/
-find target/release -name rg.bash-completion -exec install -m644 {} $PKG/usr/share/bash-completion/completions/rg \;
+find target -name rg.bash -exec install -m644 {} $PKG/usr/share/bash-completion/completions/rg \;
mkdir -p $PKG/usr/share/zsh/site-functions/
-find target/release -name _rg.ps1 -exec install -m644 {} $PKG/usr/share/zsh/site-functions/_rg \;
+find target -name _rg.ps1 -exec install -m644 {} $PKG/usr/share/zsh/site-functions/_rg \;
mkdir -p $PKG/usr/man/man1
-install -m644 doc/rg.1 $PKG/usr/man/man1/rg.1
+find target -name rg.1 -exec install -m644 {} $PKG/usr/man/man1/rg.1 \;
find $PKG/usr/man -type f -exec gzip -9 {} \;
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
@@ -183,7 +183,7 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a CHANGELOG.md COPYING LICENSE-MIT README.md UNLICENSE $PKG/usr/doc/$PRGNAM-$VERSION
+cp -a CHANGELOG.md COPYING FAQ.md GUIDE.md ISSUE_TEMPLATE.md LICENSE-MIT README.md UNLICENSE $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install