Skip to content

Commit

Permalink
Merge pull request #203333 from Homebrew/bump-qsv-2.0.0
Browse files Browse the repository at this point in the history
qsv 2.0.0
  • Loading branch information
BrewTestBot authored Jan 6, 2025
2 parents 1533e92 + 954cee5 commit 16c6e53
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions Formula/q/qsv.rb
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
class Qsv < Formula
desc "Ultra-fast CSV data-wrangling toolkit"
homepage "https://github.com/jqnatividad/qsv"
url "https://github.com/jqnatividad/qsv/archive/refs/tags/1.0.0.tar.gz"
sha256 "92ca4fef2c0f58aa5d322a01a70a7e9dd689f8055cdf64aaf1422cb28fe5357b"
homepage "https://github.com/dathere/qsv"
url "https://github.com/dathere/qsv/archive/refs/tags/2.0.0.tar.gz"
sha256 "499820c938e2c9cdb9686cdd02ab7a31e207e9fd803ccc720b5e5ce09dfd7cd6"
license any_of: ["MIT", "Unlicense"]
head "https://github.com/jqnatividad/qsv.git", branch: "master"
head "https://github.com/dathere/qsv.git", branch: "master"

bottle do
sha256 cellar: :any_skip_relocation, arm64_sequoia: "cfd65ae7bec0ad2bc5088fa2ac7013c1eda71326568c6f8b33f6ca596bd08929"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "24d543706a408c2e9c06e3c40b73c164d2ddaa66c8172f1d6141edc7b60875d8"
sha256 cellar: :any_skip_relocation, arm64_ventura: "c7cc215c5b7827df8ed0c672243a7648a4aeda21c1671efc50a8251c8e7f363e"
sha256 cellar: :any_skip_relocation, sonoma: "b43b6d118781cde8ef56cd40b604f91765a0dca12a9fad4c8eaeef6ee9096421"
sha256 cellar: :any_skip_relocation, ventura: "4fd97de6e88658dad19ab38a290d3ec199823da0ed45110edf497b57911447a2"
sha256 cellar: :any_skip_relocation, x86_64_linux: "c3a4fa1ee8e48b4065a9959d5c5b29f6e1db2647d6bab694b7e3de43543dbe36"
sha256 cellar: :any_skip_relocation, arm64_sequoia: "1b0df2442af410b80010ff676dfdfd317f36777d945339fe2852b8d98cbde152"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "ffb0469653d3ceb0c12f45d5289397e6273493b546eeb397f1a943ec1aa11c92"
sha256 cellar: :any_skip_relocation, arm64_ventura: "ac04ae6b7401d0d4dcf0aa97fe334e3344f4eb5fa6c1035121d7fbd5a60efc9e"
sha256 cellar: :any_skip_relocation, sonoma: "be8d55c5997a98f0722dee1b6ae2b3b0ebca6678034588e561207035654d47b8"
sha256 cellar: :any_skip_relocation, ventura: "3ab92df106f5b060116ea094c4575d9752ead76eb030daf4ed250f32471e94f9"
sha256 cellar: :any_skip_relocation, x86_64_linux: "d3bc2cbb9dffec4beacfd8462131a92775ed87025ebd764ffaa928fe26c81f73"
end

depends_on "rust" => :build
Expand All @@ -31,13 +31,13 @@ def install
test do
(testpath/"test.csv").write("first header,second header")
assert_equal <<~EOS, shell_output("#{bin}/qsv stats test.csv")
field,type,is_ascii,sum,min,max,range,sort_order,min_length,max_length,sum_length,avg_length,mean,sem,stddev,variance,cv,nullcount,max_precision,sparsity,qsv__value
first header,NULL,,,,,,,,,,,,,,,,0,,,
second header,NULL,,,,,,,,,,,,,,,,0,,,
qsv__rowcount,,,,,,,,,,,,,,,,,,,,0
qsv__columncount,,,,,,,,,,,,,,,,,,,,2
qsv__filesize_bytes,,,,,,,,,,,,,,,,,,,,26
qsv__fingerprint_hash,,,,,,,,,,,,,,,,,,,,1d0c55659105190da4e4e4d2ff69ae40956634c83dee786393680d9d02006bff
field,type,is_ascii,sum,min,max,range,sort_order,min_length,max_length,sum_length,avg_length,stddev_length,variance_length,cv_length,mean,sem,geometric_mean,harmonic_mean,stddev,variance,cv,nullcount,max_precision,sparsity,qsv__value
first header,NULL,,,,,,,,,,,,,,,,,,,,,0,,,
second header,NULL,,,,,,,,,,,,,,,,,,,,,0,,,
qsv__rowcount,,,,,,,,,,,,,,,,,,,,,,,,,0
qsv__columncount,,,,,,,,,,,,,,,,,,,,,,,,,2
qsv__filesize_bytes,,,,,,,,,,,,,,,,,,,,,,,,,26
qsv__fingerprint_hash,,,,,,,,,,,,,,,,,,,,,,,,,b818de06455146a422a60ade18c7e4ee5872089c79c32fd8a87a0f05e79564ed
EOS
end
end

0 comments on commit 16c6e53

Please sign in to comment.