[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2020-09-04 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, September 4, 2020 @ 12:30:19
  Author: svenstaro
Revision: 698496

Use more precise way of getting completions dir

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |   14 --
 1 file changed, 8 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-09-04 12:12:23 UTC (rev 698495)
+++ PKGBUILD2020-09-04 12:30:19 UTC (rev 698496)
@@ -3,13 +3,13 @@
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
 pkgver=12.1.1
-pkgrel=1
+pkgrel=2
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('x86_64')
 url="https://github.com/BurntSushi/ripgrep";
 license=('MIT' 'custom')
 depends=('gcc-libs' 'pcre2')
-makedepends=('cargo' 'asciidoctor')
+makedepends=('cargo' 'asciidoctor' 'jq')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
 
sha512sums=('9e2a16043be6c7727d49a44f6db7fdb41413efc869139186729985ff86dee5c6531c663352f4019b730eb3a6c46f26d46df3738d4a0cbbc39ab773f320eb9e59')
 
@@ -28,14 +28,16 @@
 package() {
   cd "$pkgname-$pkgver"
 
+  OUT_DIR="$(cargo build --release --locked 
--message-format=json-render-diagnostics | \
+  jq -r 'select(.out_dir) | select(.package_id | startswith("ripgrep ")) | 
.out_dir')"
+
   install -Dm755 "target/release/rg" "$pkgdir/usr/bin/rg"
 
   install -Dm644 "complete/_rg" "$pkgdir/usr/share/zsh/site-functions/_rg"
-  local target_dir=$(ls target/release/build/ripgrep-*/out/rg.bash | head -n1 
| xargs dirname)
-  install -Dm644 "$target_dir"/rg.bash 
"$pkgdir/usr/share/bash-completion/completions/rg"
+  install -Dm644 "$OUT_DIR"/rg.bash 
"$pkgdir/usr/share/bash-completion/completions/rg"
   # NOTE: Fish completions will be removed in v13
-  install -Dm644 "$target_dir"/rg.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/rg.fish"
-  install -Dm644 "$target_dir"/rg.1 "$pkgdir/usr/share/man/man1/rg.1"
+  install -Dm644 "$OUT_DIR"/rg.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/rg.fish"
+  install -Dm644 "$OUT_DIR"/rg.1 "$pkgdir/usr/share/man/man1/rg.1"
 
   install -Dm644 "README.md" "$pkgdir/usr/share/doc/${pkgname}/README.md"
   install -Dm644 "COPYING" "$pkgdir/usr/share/licenses/${pkgname}/COPYING"


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2020-06-01 Thread Maxim Baz via arch-commits
Date: Monday, June 1, 2020 @ 11:07:01
  Author: maximbaz
Revision: 637813

upgpkg: ripgrep 12.1.1-1

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-06-01 10:58:08 UTC (rev 637812)
+++ PKGBUILD2020-06-01 11:07:01 UTC (rev 637813)
@@ -2,7 +2,7 @@
 # Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
-pkgver=12.1.0
+pkgver=12.1.1
 pkgrel=1
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('gcc-libs' 'pcre2')
 makedepends=('cargo' 'asciidoctor')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
-sha512sums=('083603f4d65ab83d541eeac3573b400b4009bb1ec04e2bbfe4c6b6172c251cd43418f9ab73d0f0fdaf32c813ba7ba9f89cfd5f51e1b2907c2f63fbf9531b031b')
+sha512sums=('9e2a16043be6c7727d49a44f6db7fdb41413efc869139186729985ff86dee5c6531c663352f4019b730eb3a6c46f26d46df3738d4a0cbbc39ab773f320eb9e59')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2020-05-09 Thread Maxim Baz via arch-commits
Date: Saturday, May 9, 2020 @ 17:02:51
  Author: maximbaz
Revision: 626017

ripgrep: prepare for v13 per release notice

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-09 16:59:46 UTC (rev 626016)
+++ PKGBUILD2020-05-09 17:02:51 UTC (rev 626017)
@@ -9,7 +9,7 @@
 url="https://github.com/BurntSushi/ripgrep";
 license=('MIT' 'custom')
 depends=('gcc-libs' 'pcre2')
-makedepends=('cargo' 'asciidoc')
+makedepends=('cargo' 'asciidoctor')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
 
sha512sums=('083603f4d65ab83d541eeac3573b400b4009bb1ec04e2bbfe4c6b6172c251cd43418f9ab73d0f0fdaf32c813ba7ba9f89cfd5f51e1b2907c2f63fbf9531b031b')
 
@@ -33,6 +33,7 @@
   install -Dm644 "complete/_rg" "$pkgdir/usr/share/zsh/site-functions/_rg"
   local target_dir=$(ls target/release/build/ripgrep-*/out/rg.bash | head -n1 
| xargs dirname)
   install -Dm644 "$target_dir"/rg.bash 
"$pkgdir/usr/share/bash-completion/completions/rg"
+  # NOTE: Fish completions will be removed in v13
   install -Dm644 "$target_dir"/rg.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/rg.fish"
   install -Dm644 "$target_dir"/rg.1 "$pkgdir/usr/share/man/man1/rg.1"
 


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2020-05-09 Thread Maxim Baz via arch-commits
Date: Saturday, May 9, 2020 @ 16:55:22
  Author: maximbaz
Revision: 626010

upgpkg: ripgrep 12.1.0-1

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-09 16:55:19 UTC (rev 626009)
+++ PKGBUILD2020-05-09 16:55:22 UTC (rev 626010)
@@ -1,7 +1,8 @@
 # Maintainer: Sven-Hendrik Haase 
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
-pkgver=12.0.1
+pkgver=12.1.0
 pkgrel=1
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('x86_64')
@@ -10,7 +11,7 @@
 depends=('gcc-libs' 'pcre2')
 makedepends=('cargo' 'asciidoc')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
-sha512sums=('2f05a60585e522ac900103c31990032429c6652647efc022ee0ff401019a4dc75614b6e0ac0779736398fe067bc326b3ec97e166fb5a58d09765f9b145414b4b')
+sha512sums=('083603f4d65ab83d541eeac3573b400b4009bb1ec04e2bbfe4c6b6172c251cd43418f9ab73d0f0fdaf32c813ba7ba9f89cfd5f51e1b2907c2f63fbf9531b031b')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2020-03-30 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, March 30, 2020 @ 07:46:12
  Author: svenstaro
Revision: 606706

upgpkg: ripgrep 12.0.1-1

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-03-30 02:37:39 UTC (rev 606705)
+++ PKGBUILD2020-03-30 07:46:12 UTC (rev 606706)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
-pkgver=12.0.0
+pkgver=12.0.1
 pkgrel=1
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('x86_64')
@@ -10,7 +10,7 @@
 depends=('gcc-libs' 'pcre2')
 makedepends=('cargo' 'asciidoc')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
-sha512sums=('8c663ac328c528916e46f7c94a6b248c5f572feb2d7d012692b5640f2b5931b8a2d44e3638ea2a1ac9f48f7ec8154b4329fd96218ff84c178705a2c46c04458d')
+sha512sums=('2f05a60585e522ac900103c31990032429c6652647efc022ee0ff401019a4dc75614b6e0ac0779736398fe067bc326b3ec97e166fb5a58d09765f9b145414b4b')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2020-03-16 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, March 16, 2020 @ 13:28:51
  Author: svenstaro
Revision: 599719

upgpkg: ripgrep 12.0.0-1

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |   18 --
 1 file changed, 12 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-03-16 13:19:16 UTC (rev 599718)
+++ PKGBUILD2020-03-16 13:28:51 UTC (rev 599719)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
-pkgver=11.0.2
+pkgver=12.0.0
 pkgrel=1
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('x86_64')
@@ -10,7 +10,7 @@
 depends=('gcc-libs' 'pcre2')
 makedepends=('cargo' 'asciidoc')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
-sha512sums=('62b5bcceac2ca4899e797799e67a8e45730f1bcb5115b48e9ebfe12d3b0e43921020f368e4328b0f5060ccdf0dedb8935857ece7126e05d9cbcca535cee68a92')
+sha512sums=('8c663ac328c528916e46f7c94a6b248c5f572feb2d7d012692b5640f2b5931b8a2d44e3638ea2a1ac9f48f7ec8154b4329fd96218ff84c178705a2c46c04458d')
 
 build() {
   cd "$pkgname-$pkgver"
@@ -18,6 +18,12 @@
   cargo build --release --locked --features 'pcre2'
 }
 
+check() {
+  cd "$pkgname-$pkgver"
+
+  cargo test --release --locked --features 'pcre2'
+}
+
 package() {
   cd "$pkgname-$pkgver"
 
@@ -24,12 +30,12 @@
   install -Dm755 "target/release/rg" "$pkgdir/usr/bin/rg"
 
   install -Dm644 "complete/_rg" "$pkgdir/usr/share/zsh/site-functions/_rg"
-  install -Dm644 "target/release/build/ripgrep-"*/out/rg.bash 
"$pkgdir/usr/share/bash-completion/completions/rg"
-  install -Dm644 "target/release/build/ripgrep-"*/out/rg.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/rg.fish"
+  local target_dir=$(ls target/release/build/ripgrep-*/out/rg.bash | head -n1 
| xargs dirname)
+  install -Dm644 "$target_dir"/rg.bash 
"$pkgdir/usr/share/bash-completion/completions/rg"
+  install -Dm644 "$target_dir"/rg.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/rg.fish"
+  install -Dm644 "$target_dir"/rg.1 "$pkgdir/usr/share/man/man1/rg.1"
 
-  install -Dm644 "target/release/build/ripgrep-"*/out/rg.1 
"$pkgdir/usr/share/man/man1/rg.1"
   install -Dm644 "README.md" "$pkgdir/usr/share/doc/${pkgname}/README.md"
-
   install -Dm644 "COPYING" "$pkgdir/usr/share/licenses/${pkgname}/COPYING"
   install -Dm644 "LICENSE-MIT" 
"$pkgdir/usr/share/licenses/${pkgname}/LICENSE-MIT"
   install -Dm644 "UNLICENSE" "$pkgdir/usr/share/licenses/${pkgname}/UNLICENSE"


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2019-08-02 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, August 2, 2019 @ 11:51:02
  Author: svenstaro
Revision: 497035

upgpkg: ripgrep 11.0.2-1

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-02 11:50:56 UTC (rev 497034)
+++ PKGBUILD2019-08-02 11:51:02 UTC (rev 497035)
@@ -1,8 +1,8 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
-pkgver=11.0.1
-pkgrel=2
+pkgver=11.0.2
+pkgrel=1
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('x86_64')
 url="https://github.com/BurntSushi/ripgrep";
@@ -10,7 +10,7 @@
 depends=('gcc-libs' 'pcre2')
 makedepends=('cargo' 'asciidoc')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
-sha512sums=('73d3bf0c18d5a1289f31e3b330a9980d05f7e692a354d8ae1657d1636cfa49c4b76370f15f6df6e5f38e83ee9b3d49507f9da5439af545652fe276096a92a83f')
+sha512sums=('62b5bcceac2ca4899e797799e67a8e45730f1bcb5115b48e9ebfe12d3b0e43921020f368e4328b0f5060ccdf0dedb8935857ece7126e05d9cbcca535cee68a92')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2019-06-17 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, June 17, 2019 @ 22:42:21
  Author: svenstaro
Revision: 482041

upgpkg: ripgrep 11.0.1-2

Install fish completions to proper path and compile with --locked

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 22:25:26 UTC (rev 482040)
+++ PKGBUILD2019-06-17 22:42:21 UTC (rev 482041)
@@ -1,8 +1,8 @@
-# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Sven-Hendrik Haase 
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
 pkgver=11.0.1
-pkgrel=1
+pkgrel=2
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('x86_64')
 url="https://github.com/BurntSushi/ripgrep";
@@ -15,7 +15,7 @@
 build() {
   cd "$pkgname-$pkgver"
 
-  cargo build --release --features 'pcre2'
+  cargo build --release --locked --features 'pcre2'
 }
 
 package() {
@@ -25,7 +25,7 @@
 
   install -Dm644 "complete/_rg" "$pkgdir/usr/share/zsh/site-functions/_rg"
   install -Dm644 "target/release/build/ripgrep-"*/out/rg.bash 
"$pkgdir/usr/share/bash-completion/completions/rg"
-  install -Dm644 "target/release/build/ripgrep-"*/out/rg.fish 
"$pkgdir/usr/share/fish/completions/rg.fish"
+  install -Dm644 "target/release/build/ripgrep-"*/out/rg.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/rg.fish"
 
   install -Dm644 "target/release/build/ripgrep-"*/out/rg.1 
"$pkgdir/usr/share/man/man1/rg.1"
   install -Dm644 "README.md" "$pkgdir/usr/share/doc/${pkgname}/README.md"


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2019-04-16 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, April 16, 2019 @ 21:46:18
  Author: svenstaro
Revision: 451839

upgpkg: ripgrep 11.0.1-1

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-16 21:40:14 UTC (rev 451838)
+++ PKGBUILD2019-04-16 21:46:18 UTC (rev 451839)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
-pkgver=11.0.0
+pkgver=11.0.1
 pkgrel=1
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('x86_64')
@@ -10,7 +10,7 @@
 depends=('gcc-libs' 'pcre2')
 makedepends=('cargo' 'asciidoc')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
-sha512sums=('eac60b34f8b352bdadee2add697a2f1049894bae258cec71289c828fdd2f58ec1ea91b0e08c92b35702ac730b74fed97ed10e4f4f76a93fe64867688f14d11f4')
+sha512sums=('73d3bf0c18d5a1289f31e3b330a9980d05f7e692a354d8ae1657d1636cfa49c4b76370f15f6df6e5f38e83ee9b3d49507f9da5439af545652fe276096a92a83f')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2019-04-16 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, April 16, 2019 @ 16:25:26
  Author: svenstaro
Revision: 451823

upgpkg: ripgrep 11.0.0-1

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-16 16:25:18 UTC (rev 451822)
+++ PKGBUILD2019-04-16 16:25:26 UTC (rev 451823)
@@ -1,8 +1,8 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
-pkgver=0.10.0
-pkgrel=2
+pkgver=11.0.0
+pkgrel=1
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('x86_64')
 url="https://github.com/BurntSushi/ripgrep";
@@ -10,7 +10,7 @@
 depends=('gcc-libs' 'pcre2')
 makedepends=('cargo' 'asciidoc')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
-sha512sums=('bc193d269131823076fdb857f69a95c165e88848896379039218139136028e3705e09f1b9be33903e060c8cc37ad5b992ea70a05f6f01c6210bef535a35570c0')
+sha512sums=('eac60b34f8b352bdadee2add697a2f1049894bae258cec71289c828fdd2f58ec1ea91b0e08c92b35702ac730b74fed97ed10e4f4f76a93fe64867688f14d11f4')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2018-09-12 Thread Jan Steffens via arch-commits
Date: Wednesday, September 12, 2018 @ 21:35:08
  Author: heftig
Revision: 380037

0.10.0-2: add pcre2

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-09-12 21:33:36 UTC (rev 380036)
+++ PKGBUILD2018-09-12 21:35:08 UTC (rev 380037)
@@ -2,20 +2,20 @@
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
 pkgver=0.10.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('x86_64')
 url="https://github.com/BurntSushi/ripgrep";
 license=('MIT' 'custom')
-depends=('gcc-libs')
+depends=('gcc-libs' 'pcre2')
 makedepends=('cargo' 'asciidoc')
-source=("https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
 
sha512sums=('bc193d269131823076fdb857f69a95c165e88848896379039218139136028e3705e09f1b9be33903e060c8cc37ad5b992ea70a05f6f01c6210bef535a35570c0')
 
 build() {
   cd "$pkgname-$pkgver"
 
-  cargo build --release
+  cargo build --release --features 'pcre2'
 }
 
 package() {


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2018-09-07 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, September 7, 2018 @ 20:07:49
  Author: svenstaro
Revision: 378660

upgpkg: ripgrep 0.10.0-1

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-09-07 20:04:58 UTC (rev 378659)
+++ PKGBUILD2018-09-07 20:07:49 UTC (rev 378660)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
-pkgver=0.9.0
+pkgver=0.10.0
 pkgrel=1
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('x86_64')
@@ -10,7 +10,7 @@
 depends=('gcc-libs')
 makedepends=('cargo' 'asciidoc')
 source=("https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
-sha512sums=('0cf151ce4750e1d5fea0a00ec9a63ec344e670de80c624e1b58e9033173452e0759b16ab36fce4dc32d4c76cce8475e64b974dc5309e18771c0548732126a482')
+sha512sums=('bc193d269131823076fdb857f69a95c165e88848896379039218139136028e3705e09f1b9be33903e060c8cc37ad5b992ea70a05f6f01c6210bef535a35570c0')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2018-08-05 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, August 6, 2018 @ 01:46:20
  Author: svenstaro
Revision: 368439

upgpkg: ripgrep 0.9.0-1

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-08-06 01:38:24 UTC (rev 368438)
+++ PKGBUILD2018-08-06 01:46:20 UTC (rev 368439)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
-pkgver=0.8.1
+pkgver=0.9.0
 pkgrel=1
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('x86_64')
@@ -10,14 +10,12 @@
 depends=('gcc-libs')
 makedepends=('cargo' 'asciidoc')
 source=("https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
-sha512sums=('4554f1744c6f8dec9ca8efa80320b69cacc03c52dfa36014994dc7217ed109863798e6c89e80e05926fc3288e4afc44b94e7cb810b1046bb24507f39827a5f95')
+sha512sums=('0cf151ce4750e1d5fea0a00ec9a63ec344e670de80c624e1b58e9033173452e0759b16ab36fce4dc32d4c76cce8475e64b974dc5309e18771c0548732126a482')
 
 build() {
   cd "$pkgname-$pkgver"
 
   cargo build --release
-  # Use these flags once stable rust gets SIMD suport.
-  # RUSTFLAGS="-C target-feature=+ssse3" cargo build --release --features 
simd-accel
 }
 
 package() {


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2018-02-21 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, February 21, 2018 @ 16:24:06
  Author: svenstaro
Revision: 296703

upgpkg: ripgrep 0.8.1-1

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-02-21 16:22:24 UTC (rev 296702)
+++ PKGBUILD2018-02-21 16:24:06 UTC (rev 296703)
@@ -1,16 +1,16 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
-pkgver=0.8.0
+pkgver=0.8.1
 pkgrel=1
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('x86_64')
 url="https://github.com/BurntSushi/ripgrep";
-license=('MIT' 'UNLICENSE')
+license=('MIT' 'custom')
 depends=('gcc-libs')
 makedepends=('cargo' 'asciidoc')
 source=("https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
-sha512sums=('e377701557a890ab6951e73cb5d0ece45c71ba63e5f7614371c1de2d2057ca86110c9fd0d4bc9e6f4b809c71ba5fb3970547ee0cf283fa6c1944914f8728255c')
+sha512sums=('4554f1744c6f8dec9ca8efa80320b69cacc03c52dfa36014994dc7217ed109863798e6c89e80e05926fc3288e4afc44b94e7cb810b1046bb24507f39827a5f95')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2018-02-12 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, February 12, 2018 @ 12:50:57
  Author: svenstaro
Revision: 293132

upgpkg: ripgrep 0.8.0-1

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-02-12 12:48:17 UTC (rev 293131)
+++ PKGBUILD2018-02-12 12:50:57 UTC (rev 293132)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
-pkgver=0.7.1
+pkgver=0.8.0
 pkgrel=1
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('x86_64')
@@ -8,9 +8,9 @@
 url="https://github.com/BurntSushi/ripgrep";
 license=('MIT' 'UNLICENSE')
 depends=('gcc-libs')
-makedepends=('cargo')
+makedepends=('cargo' 'asciidoc')
 source=("https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
-sha512sums=('1d2c5b1085ebc6b2b0d1cd330583f8d09bae0789590ff3a8bbb7f79c36b106b9f4fb3c880a225fa4f8565cee55e38514db0e7751f1d14a76005ebfa7c7127e5f')
+sha512sums=('e377701557a890ab6951e73cb5d0ece45c71ba63e5f7614371c1de2d2057ca86110c9fd0d4bc9e6f4b809c71ba5fb3970547ee0cf283fa6c1944914f8728255c')
 
 build() {
   cd "$pkgname-$pkgver"
@@ -26,10 +26,10 @@
   install -Dm755 "target/release/rg" "$pkgdir/usr/bin/rg"
 
   install -Dm644 "complete/_rg" "$pkgdir/usr/share/zsh/site-functions/_rg"
-  install -Dm644 "target/release/build/ripgrep-"*/out/rg.bash-completion 
"$pkgdir/usr/share/bash-completion/completions/rg"
+  install -Dm644 "target/release/build/ripgrep-"*/out/rg.bash 
"$pkgdir/usr/share/bash-completion/completions/rg"
   install -Dm644 "target/release/build/ripgrep-"*/out/rg.fish 
"$pkgdir/usr/share/fish/completions/rg.fish"
 
-  install -Dm644 "doc/rg.1" "$pkgdir/usr/share/man/man1/rg.1"
+  install -Dm644 "target/release/build/ripgrep-"*/out/rg.1 
"$pkgdir/usr/share/man/man1/rg.1"
   install -Dm644 "README.md" "$pkgdir/usr/share/doc/${pkgname}/README.md"
 
   install -Dm644 "COPYING" "$pkgdir/usr/share/licenses/${pkgname}/COPYING"


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2017-10-23 Thread Sven-Hendrik Haase
Date: Monday, October 23, 2017 @ 18:24:45
  Author: svenstaro
Revision: 264073

upgpkg: ripgrep 0.7.1-1

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-10-23 17:54:19 UTC (rev 264072)
+++ PKGBUILD2017-10-23 18:24:45 UTC (rev 264073)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
-pkgver=0.7.0
+pkgver=0.7.1
 pkgrel=1
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 depends=('gcc-libs')
 makedepends=('cargo')
 source=("https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
-sha512sums=('339abff8c6a273b9b18af37f30a37a7fc102ede2cbf3d7ba03c87738fb76891975ea8e1c2ff848ca4ea92f46c84041af1e35fb1b163c5c7a192a904d164075cc')
+sha512sums=('1d2c5b1085ebc6b2b0d1cd330583f8d09bae0789590ff3a8bbb7f79c36b106b9f4fb3c880a225fa4f8565cee55e38514db0e7751f1d14a76005ebfa7c7127e5f')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2017-10-22 Thread Sven-Hendrik Haase
Date: Sunday, October 22, 2017 @ 22:30:46
  Author: svenstaro
Revision: 264008

upgpkg: ripgrep 0.7.0-1

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-10-22 22:16:26 UTC (rev 264007)
+++ PKGBUILD2017-10-22 22:30:46 UTC (rev 264008)
@@ -1,8 +1,8 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
-pkgver=0.6.0
-pkgrel=2
+pkgver=0.7.0
+pkgrel=1
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('i686' 'x86_64')
 url="https://github.com/BurntSushi/ripgrep";
@@ -10,7 +10,7 @@
 depends=('gcc-libs')
 makedepends=('cargo')
 source=("https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
-sha512sums=('219ec95598c080ddeee65233d1abf58320662ef28681a25cdf9fb63fd38bdb149c75471625545188dcd1deedf05fd58fc32e25cf39fd63943f765c57394ede23')
+sha512sums=('339abff8c6a273b9b18af37f30a37a7fc102ede2cbf3d7ba03c87738fb76891975ea8e1c2ff848ca4ea92f46c84041af1e35fb1b163c5c7a192a904d164075cc')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2017-08-30 Thread Sven-Hendrik Haase
Date: Thursday, August 31, 2017 @ 04:32:34
  Author: svenstaro
Revision: 255030

upgpkg: ripgrep 0.6.0-2

Use actual architectures

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-08-31 03:49:05 UTC (rev 255029)
+++ PKGBUILD2017-08-31 04:32:34 UTC (rev 255030)
@@ -2,7 +2,7 @@
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
 pkgver=0.6.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('i686' 'x86_64')
 url="https://github.com/BurntSushi/ripgrep";
@@ -14,7 +14,10 @@
 
 build() {
   cd "$pkgname-$pkgver"
+
   cargo build --release
+  # Use these flags once stable rust gets SIMD suport.
+  # RUSTFLAGS="-C target-feature=+ssse3" cargo build --release --features 
simd-accel
 }
 
 package() {
@@ -22,8 +25,8 @@
 
   install -Dm755 "target/release/rg" "$pkgdir/usr/bin/rg"
 
+  install -Dm644 "complete/_rg" "$pkgdir/usr/share/zsh/site-functions/_rg"
   install -Dm644 "target/release/build/ripgrep-"*/out/rg.bash-completion 
"$pkgdir/usr/share/bash-completion/completions/rg"
-  install -Dm644 "target/release/build/ripgrep-"*/out/_rg.ps1 
"$pkgdir/usr/share/zsh/site-functions/_rg"
   install -Dm644 "target/release/build/ripgrep-"*/out/rg.fish 
"$pkgdir/usr/share/fish/completions/rg.fish"
 
   install -Dm644 "doc/rg.1" "$pkgdir/usr/share/man/man1/rg.1"


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2017-08-23 Thread Sven-Hendrik Haase
Date: Thursday, August 24, 2017 @ 04:57:14
  Author: svenstaro
Revision: 253119

upgpkg: ripgrep 0.6.0-1

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-08-24 04:57:09 UTC (rev 253118)
+++ PKGBUILD2017-08-24 04:57:14 UTC (rev 253119)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
-pkgver=0.5.2
+pkgver=0.6.0
 pkgrel=1
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 depends=('gcc-libs')
 makedepends=('cargo')
 source=("https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
-sha512sums=('3945560f26d920a11cef9a82ebe777e8bd1fe0761b1c62bfaddaa6628f6b66f7b33253442f8f444e3f6d36847202e6c19dd082e98ce56f41e3aa27bd48d8')
+sha512sums=('219ec95598c080ddeee65233d1abf58320662ef28681a25cdf9fb63fd38bdb149c75471625545188dcd1deedf05fd58fc32e25cf39fd63943f765c57394ede23')
 
 build() {
   cd "$pkgname-$pkgver"
@@ -23,7 +23,7 @@
   install -Dm755 "target/release/rg" "$pkgdir/usr/bin/rg"
 
   install -Dm644 "target/release/build/ripgrep-"*/out/rg.bash-completion 
"$pkgdir/usr/share/bash-completion/completions/rg"
-  install -Dm644 "target/release/build/ripgrep-"*/out/_rg 
"$pkgdir/usr/share/zsh/site-functions/_rg"
+  install -Dm644 "target/release/build/ripgrep-"*/out/_rg.ps1 
"$pkgdir/usr/share/zsh/site-functions/_rg"
   install -Dm644 "target/release/build/ripgrep-"*/out/rg.fish 
"$pkgdir/usr/share/fish/completions/rg.fish"
 
   install -Dm644 "doc/rg.1" "$pkgdir/usr/share/man/man1/rg.1"


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2017-05-15 Thread Sven-Hendrik Haase
Date: Monday, May 15, 2017 @ 15:36:20
  Author: svenstaro
Revision: 228121

upgpkg: ripgrep 0.5.2-1

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-15 15:30:35 UTC (rev 228120)
+++ PKGBUILD2017-05-15 15:36:20 UTC (rev 228121)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
-pkgver=0.5.1
+pkgver=0.5.2
 pkgrel=1
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 depends=('gcc-libs')
 makedepends=('cargo')
 source=("https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
-sha512sums=('20efefbf0e5c5ae95434cdf2dc0e0d45956291a9705614e02cee4e316c1e1e2394dd81ba46f7eff5e67f4447c86f935006f42ff55a2ddc60ef095a10a77184a3')
+sha512sums=('3945560f26d920a11cef9a82ebe777e8bd1fe0761b1c62bfaddaa6628f6b66f7b33253442f8f444e3f6d36847202e6c19dd082e98ce56f41e3aa27bd48d8')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2017-04-10 Thread Sven-Hendrik Haase
Date: Monday, April 10, 2017 @ 18:36:40
  Author: svenstaro
Revision: 221879

upgpkg: ripgrep 0.5.1-1

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-04-10 18:35:16 UTC (rev 221878)
+++ PKGBUILD2017-04-10 18:36:40 UTC (rev 221879)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
-pkgver=0.5.0
+pkgver=0.5.1
 pkgrel=1
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 depends=('gcc-libs')
 makedepends=('cargo')
 source=("https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
-sha512sums=('924e7907daf719732f888c296ea8b110db77e144cd3f7858070aca44fba93d09731d9097dd7201a851f0581ced0f0d58a7ffef6aa7c998298834170661d80256')
+sha512sums=('20efefbf0e5c5ae95434cdf2dc0e0d45956291a9705614e02cee4e316c1e1e2394dd81ba46f7eff5e67f4447c86f935006f42ff55a2ddc60ef095a10a77184a3')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2017-03-13 Thread Sven-Hendrik Haase
Date: Monday, March 13, 2017 @ 13:19:01
  Author: svenstaro
Revision: 216084

upgpkg: ripgrep 0.5.0-1

upstream release 0.5.0

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-13 13:13:56 UTC (rev 216083)
+++ PKGBUILD2017-03-13 13:19:01 UTC (rev 216084)
@@ -1,8 +1,8 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
-pkgver=0.4.0
-pkgrel=2
+pkgver=0.5.0
+pkgrel=1
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('i686' 'x86_64')
 url="https://github.com/BurntSushi/ripgrep";
@@ -10,7 +10,7 @@
 depends=('gcc-libs')
 makedepends=('cargo')
 source=("https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
-sha512sums=('86178144f14042a9b68e515ee31ada9aa24ae633f9529cf710458bcfc8f02f0670845188f29543a9ac2155c1afd107e395e57b948703ad369194783f49b18a0f')
+sha512sums=('924e7907daf719732f888c296ea8b110db77e144cd3f7858070aca44fba93d09731d9097dd7201a851f0581ced0f0d58a7ffef6aa7c998298834170661d80256')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2017-03-02 Thread Sven-Hendrik Haase
Date: Friday, March 3, 2017 @ 07:51:19
  Author: svenstaro
Revision: 214623

upgpkg: ripgrep 0.4.0-2

Add shell completions

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-03 07:42:56 UTC (rev 214622)
+++ PKGBUILD2017-03-03 07:51:19 UTC (rev 214623)
@@ -2,7 +2,7 @@
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
 pkgver=0.4.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('i686' 'x86_64')
 url="https://github.com/BurntSushi/ripgrep";
@@ -22,6 +22,10 @@
 
   install -Dm755 "target/release/rg" "$pkgdir/usr/bin/rg"
 
+  install -Dm644 "target/release/build/ripgrep-"*/out/rg.bash-completion 
"$pkgdir/usr/share/bash-completion/completions/rg"
+  install -Dm644 "target/release/build/ripgrep-"*/out/_rg 
"$pkgdir/usr/share/zsh/site-functions/_rg"
+  install -Dm644 "target/release/build/ripgrep-"*/out/rg.fish 
"$pkgdir/usr/share/fish/completions/rg.fish"
+
   install -Dm644 "doc/rg.1" "$pkgdir/usr/share/man/man1/rg.1"
   install -Dm644 "README.md" "$pkgdir/usr/share/doc/${pkgname}/README.md"
 


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2017-01-15 Thread Sven-Hendrik Haase
Date: Sunday, January 15, 2017 @ 22:18:59
  Author: svenstaro
Revision: 207508

upgpkg: ripgrep 0.4.0-1

upstream release 0.4.0

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-15 22:18:22 UTC (rev 207507)
+++ PKGBUILD2017-01-15 22:18:59 UTC (rev 207508)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
-pkgver=0.3.2
+pkgver=0.4.0
 pkgrel=1
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 depends=('gcc-libs')
 makedepends=('cargo')
 source=("https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
-sha256sums=('aea775c9ead5ee2b10b7cdebdb9387f5d6a400b96e5bfe26ccec7e44dd17')
+sha512sums=('86178144f14042a9b68e515ee31ada9aa24ae633f9529cf710458bcfc8f02f0670845188f29543a9ac2155c1afd107e395e57b948703ad369194783f49b18a0f')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2016-12-07 Thread Sven-Hendrik Haase
Date: Thursday, December 8, 2016 @ 04:08:39
  Author: svenstaro
Revision: 198439

upgpkg: ripgrep 0.3.2-1

upstream release 0.3.2

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 21:32:33 UTC (rev 198438)
+++ PKGBUILD2016-12-08 04:08:39 UTC (rev 198439)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
-pkgver=0.3.1
+pkgver=0.3.2
 pkgrel=1
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 depends=('gcc-libs')
 makedepends=('cargo')
 source=("https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
-sha256sums=('08618425de89bdcd84f17a3bbf71a2d00a787de1f196e048059c01969065154e')
+sha256sums=('aea775c9ead5ee2b10b7cdebdb9387f5d6a400b96e5bfe26ccec7e44dd17')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2016-11-22 Thread Sven-Hendrik Haase
Date: Tuesday, November 22, 2016 @ 08:52:56
  Author: svenstaro
Revision: 196499

upgpkg: ripgrep 0.3.1-1

upstream release 0.3.1

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-11-22 07:32:45 UTC (rev 196498)
+++ PKGBUILD2016-11-22 08:52:56 UTC (rev 196499)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
-pkgver=0.3.0
+pkgver=0.3.1
 pkgrel=1
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 depends=('gcc-libs')
 makedepends=('cargo')
 source=("https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
-sha256sums=('f86c91d555b6f2084d66b964a61f731ea6f0fa3a33ea58ed9e389056b78706ae')
+sha256sums=('08618425de89bdcd84f17a3bbf71a2d00a787de1f196e048059c01969065154e')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2016-11-20 Thread Sven-Hendrik Haase
Date: Monday, November 21, 2016 @ 07:35:57
  Author: svenstaro
Revision: 196413

upgpkg: ripgrep 0.3.0-1

upstream release 0.3.0

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-11-21 07:34:06 UTC (rev 196412)
+++ PKGBUILD2016-11-21 07:35:57 UTC (rev 196413)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
-pkgver=0.2.9
+pkgver=0.3.0
 pkgrel=1
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 depends=('gcc-libs')
 makedepends=('cargo')
 source=("https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
-sha256sums=('508d6cab8e08bc8728f8674bae0266bc236b16933edb3559ac746b3b9af9d638')
+sha256sums=('f86c91d555b6f2084d66b964a61f731ea6f0fa3a33ea58ed9e389056b78706ae')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2016-11-11 Thread Sven-Hendrik Haase
Date: Friday, November 11, 2016 @ 17:13:42
  Author: svenstaro
Revision: 195374

upgpkg: ripgrep 0.2.9-1

upstream release 0.2.9

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-11-11 16:32:59 UTC (rev 195373)
+++ PKGBUILD2016-11-11 17:13:42 UTC (rev 195374)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
-pkgver=0.2.6
+pkgver=0.2.9
 pkgrel=1
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 depends=('gcc-libs')
 makedepends=('cargo')
 source=("https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
-sha256sums=('6170e5866b49759401e912bd59ffe5a764ee501a6056396f7a3c9f131a75af65')
+sha256sums=('508d6cab8e08bc8728f8674bae0266bc236b16933edb3559ac746b3b9af9d638')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2016-11-04 Thread Sven-Hendrik Haase
Date: Saturday, November 5, 2016 @ 05:54:16
  Author: svenstaro
Revision: 194679

upgpkg: ripgrep 0.2.6-1

upstream release 0.2.6

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-11-05 05:49:09 UTC (rev 194678)
+++ PKGBUILD2016-11-05 05:54:16 UTC (rev 194679)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
-pkgver=0.2.5
+pkgver=0.2.6
 pkgrel=1
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 depends=('gcc-libs')
 makedepends=('cargo')
 source=("https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
-sha256sums=('2e535701ed4c36875a29041b4a47629af514182177b82d681a8e4d0fed4a9767')
+sha256sums=('6170e5866b49759401e912bd59ffe5a764ee501a6056396f7a3c9f131a75af65')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2016-10-31 Thread Sven-Hendrik Haase
Date: Monday, October 31, 2016 @ 16:30:18
  Author: svenstaro
Revision: 194153

upgpkg: ripgrep 0.2.5-1

upstream release 0.2.5

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-10-31 13:48:24 UTC (rev 194152)
+++ PKGBUILD2016-10-31 16:30:18 UTC (rev 194153)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
-pkgver=0.2.3
+pkgver=0.2.5
 pkgrel=1
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 depends=('gcc-libs')
 makedepends=('cargo')
 source=("https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
-sha256sums=('a88531558d2023df76190ea2e52bee50d739eabece8a57df29abbad0c6bdb917')
+sha256sums=('2e535701ed4c36875a29041b4a47629af514182177b82d681a8e4d0fed4a9767')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2016-10-13 Thread Sven-Hendrik Haase
Date: Thursday, October 13, 2016 @ 15:08:01
  Author: svenstaro
Revision: 192184

upgpkg: ripgrep 0.2.3-1

upstream release 0.2.3

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-10-13 15:05:35 UTC (rev 192183)
+++ PKGBUILD2016-10-13 15:08:01 UTC (rev 192184)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
-pkgver=0.2.2
+pkgver=0.2.3
 pkgrel=1
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 depends=('gcc-libs')
 makedepends=('cargo')
 source=("https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
-sha256sums=('a1282a022bbe217dfc274ffafee2f50298fec641239dd954b0f7f5767b56916b')
+sha256sums=('a88531558d2023df76190ea2e52bee50d739eabece8a57df29abbad0c6bdb917')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2016-10-11 Thread Sven-Hendrik Haase
Date: Tuesday, October 11, 2016 @ 21:05:51
  Author: svenstaro
Revision: 191962

upgpkg: ripgrep 0.2.2-1

upstream release 0.2.2

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-10-11 18:22:10 UTC (rev 191961)
+++ PKGBUILD2016-10-11 21:05:51 UTC (rev 191962)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
-pkgver=0.2.1
+pkgver=0.2.2
 pkgrel=1
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 depends=('gcc-libs')
 makedepends=('cargo')
 source=("https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
-sha256sums=('372ccd0a93c98e9f3cc51644a9c52d1d8437ecb8b0e2908b33df9a46ca7b9ee2')
+sha256sums=('a1282a022bbe217dfc274ffafee2f50298fec641239dd954b0f7f5767b56916b')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2016-09-26 Thread Sven-Hendrik Haase
Date: Tuesday, September 27, 2016 @ 02:17:48
  Author: svenstaro
Revision: 190634

upgpkg: ripgrep 0.2.1-1

upstream release 0.2.1

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-09-26 22:29:44 UTC (rev 190633)
+++ PKGBUILD2016-09-27 02:17:48 UTC (rev 190634)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
-pkgver=0.2.0
+pkgver=0.2.1
 pkgrel=1
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 depends=('gcc-libs')
 makedepends=('cargo')
 source=("https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
-sha256sums=('919ce5641432ce26d05b3925a9b43ea8cd91ca3da560ae2e2e62862e6a41845f')
+sha256sums=('372ccd0a93c98e9f3cc51644a9c52d1d8437ecb8b0e2908b33df9a46ca7b9ee2')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2016-09-25 Thread Sven-Hendrik Haase
Date: Monday, September 26, 2016 @ 04:55:19
  Author: svenstaro
Revision: 190572

upgpkg: ripgrep 0.2.0-1

upstream release 0.2.0

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-09-26 02:47:40 UTC (rev 190571)
+++ PKGBUILD2016-09-26 04:55:19 UTC (rev 190572)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
-pkgver=0.1.17
+pkgver=0.2.0
 pkgrel=1
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 depends=('gcc-libs')
 makedepends=('cargo')
 source=("https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
-sha256sums=('b558b6650bfa9cf0fd0fa58a8617cafc7c819ee25a26d15ca2ce39979dd18a18')
+sha256sums=('919ce5641432ce26d05b3925a9b43ea8cd91ca3da560ae2e2e62862e6a41845f')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in ripgrep/trunk (PKGBUILD)

2016-09-24 Thread Sven-Hendrik Haase
Date: Saturday, September 24, 2016 @ 20:37:06
  Author: svenstaro
Revision: 190458

upgpkg: ripgrep 0.1.17-1

push ripgrep

Modified:
  ripgrep/trunk/PKGBUILD

--+
 PKGBUILD |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 20:12:05 UTC (rev 190457)
+++ PKGBUILD2016-09-24 20:37:06 UTC (rev 190458)
@@ -7,9 +7,10 @@
 arch=('i686' 'x86_64')
 url="https://github.com/BurntSushi/ripgrep";
 license=('MIT' 'UNLICENSE')
+depends=('gcc-libs')
 makedepends=('cargo')
 source=("https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
-sha256sums=('ced856378c4ca625e4798ccae85418badd22e099fc324bcb162df51824808622')
+sha256sums=('b558b6650bfa9cf0fd0fa58a8617cafc7c819ee25a26d15ca2ce39979dd18a18')
 
 build() {
   cd "$pkgname-$pkgver"
@@ -22,7 +23,7 @@
   install -Dm755 "target/release/rg" "$pkgdir/usr/bin/rg"
 
   install -Dm644 "doc/rg.1" "$pkgdir/usr/share/man/man1/rg.1"
-  install -Dm644 "README-NEW.md" "$pkgdir/usr/share/doc/${pkgname}/README.md"
+  install -Dm644 "README.md" "$pkgdir/usr/share/doc/${pkgname}/README.md"
 
   install -Dm644 "COPYING" "$pkgdir/usr/share/licenses/${pkgname}/COPYING"
   install -Dm644 "LICENSE-MIT" 
"$pkgdir/usr/share/licenses/${pkgname}/LICENSE-MIT"