summaryrefslogtreecommitdiff
path: root/textproc/ripgrep/files/patch-bytecount
diff options
context:
space:
mode:
authorJan Beich <jbeich@FreeBSD.org>2019-02-28 18:51:45 +0000
committerJan Beich <jbeich@FreeBSD.org>2019-02-28 18:51:45 +0000
commit87378368c4cd9d84e237f7da415b7dac422158ae (patch)
tree692346311e6ea5e3a20aa4de86fc4c034fef9753 /textproc/ripgrep/files/patch-bytecount
parentUSES=cargo to update libc to 0.2.49 for Tier2 (diff)
lang/rust: update to 1.33.0
- www/firefox temporarily loses SIMD in charset conversion, see https://bugzilla.mozilla.org/show_bug.cgi?id=1521249 - Force rebuild all consumers to catch regressions early Changes: https://blog.rust-lang.org/2019/02/28/Rust-1.33.0.html Tested by: Mikaƫl Urankar (aarch64, armv6, armv7, powerpc64), Piotr Kubaj (powerpc64) Approved by: rust (tobik) Differential Revision: https://reviews.freebsd.org/D19354
Notes
Notes: svn path=/head/; revision=494176
Diffstat (limited to 'textproc/ripgrep/files/patch-bytecount')
-rw-r--r--textproc/ripgrep/files/patch-bytecount51
1 files changed, 51 insertions, 0 deletions
diff --git a/textproc/ripgrep/files/patch-bytecount b/textproc/ripgrep/files/patch-bytecount
new file mode 100644
index 000000000000..45c54baf4b30
--- /dev/null
+++ b/textproc/ripgrep/files/patch-bytecount
@@ -0,0 +1,51 @@
+https://github.com/BurntSushi/ripgrep/commit/968491f8e93e
+
+--- Cargo.toml.orig 2018-09-07 18:07:52 UTC
++++ Cargo.toml
+@@ -72,7 +72,6 @@ serde = "1.0.77"
+ serde_derive = "1.0.77"
+
+ [features]
+-avx-accel = ["grep/avx-accel"]
+ simd-accel = ["grep/simd-accel"]
+ pcre2 = ["grep/pcre2"]
+
+--- grep-searcher/Cargo.toml.orig 2018-09-07 18:07:52 UTC
++++ grep-searcher/Cargo.toml
+@@ -13,7 +13,7 @@ keywords = ["regex", "grep", "egrep", "search", "patte
+ license = "Unlicense/MIT"
+
+ [dependencies]
+-bytecount = "0.3.2"
++bytecount = "0.5"
+ encoding_rs = "0.8.6"
+ encoding_rs_io = "0.1.2"
+ grep-matcher = { version = "0.1.1", path = "../grep-matcher" }
+@@ -26,10 +26,8 @@ grep-regex = { version = "0.1.1", path = "../grep-rege
+ regex = "1.0.5"
+
+ [features]
+-avx-accel = [
+- "bytecount/avx-accel",
+-]
+-simd-accel = [
+- "bytecount/simd-accel",
+- "encoding_rs/simd-accel",
+-]
++default = ["bytecount/runtime-dispatch-simd"]
++simd-accel = ["encoding_rs/simd-accel"]
++
++# This feature is DEPRECATED. Runtime dispatch is used for SIMD now.
++avx-accel = []
+--- grep/Cargo.toml.orig 2018-09-07 18:07:52 UTC
++++ grep/Cargo.toml
+@@ -32,6 +32,8 @@ default-features = false
+ features = ["suggestions"]
+
+ [features]
+-avx-accel = ["grep-searcher/avx-accel"]
+ simd-accel = ["grep-searcher/simd-accel"]
+ pcre2 = ["grep-pcre2"]
++
++# This feature is DEPRECATED. Runtime dispatch is used for SIMD now.
++avx-accel = []