csv-fix: remove formula

master
BrewTestBot 2021-12-11 00:13:04 +00:00 committed by Bo Anderson
parent 10ae70efe3
commit 66087860d0
No known key found for this signature in database
GPG Key ID: 3DB94E204E137D65
2 changed files with 0 additions and 33 deletions

View File

@ -1 +0,0 @@
../Formula/csv-fix.rb

View File

@ -1,32 +0,0 @@
class CsvFix < Formula
desc "Tool for manipulating CSV data"
homepage "https://neilb.bitbucket.io/csvfix/"
url "https://bitbucket.org/neilb/csvfix/get/version-1.6.tar.gz"
sha256 "32982aa0daa933140e1ea5a667fb71d8adc731cc96068de3a8e83815be62c52b"
license "MIT"
bottle do
sha256 cellar: :any_skip_relocation, catalina: "3cc10313342650c680f23241e19ff8ec6b64df8fcc2123c5161b15e992c8973b"
sha256 cellar: :any_skip_relocation, mojave: "93a9586c3ef8614be909c0e5ac5bb463536dab6fcbfc00bb1e94fc6affbe7248"
sha256 cellar: :any_skip_relocation, high_sierra: "e02b2cb8929617c91a258c313481097146259a9ed68094bd759c30c3cc75806e"
sha256 cellar: :any_skip_relocation, sierra: "b52224f7cd1dd228ffe751c67993f854a8a59f17d6099d40fca02374f1949d02"
sha256 cellar: :any_skip_relocation, el_capitan: "ba19053a978b57b6b962f8fa24d099d964ceb90cd28304e3a6c2a7fe0d3abc32"
sha256 cellar: :any_skip_relocation, yosemite: "b8dbaf2e14e35cc4c1d7b5d04a5615377f7eeb4d9b1f25fe554b8711511c28f6"
end
disable! date: "2020-12-08", because: :repo_removed
def install
# clang on Mt. Lion will try to build against libstdc++,
# despite -std=gnu++0x
ENV.libcxx
system "make", "lin"
bin.install "csvfix/bin/csvfix"
end
test do
assert_equal '"foo","bar"',
pipe_output("#{bin}/csvfix trim", "foo , bar \n").chomp
end
end