From f90d936e8d2c1565daefb943305c356213689c59 Mon Sep 17 00:00:00 2001 From: Roman Melnikov Date: Fri, 17 Dec 2021 15:11:36 +0300 Subject: [PATCH 1/2] [#205] Dynamically determine architecture for opam Problem: Currently formulae download opam x86_64 binary from the GitHub release, which causes a build failure on machines with M1 CPU. Solution: Determine CPU architecture in runtime and download appropriate opam binary. --- Formula/tezos-accuser-011-PtHangz2.rb | 3 ++- Formula/tezos-admin-client.rb | 3 ++- Formula/tezos-baker-011-PtHangz2.rb | 3 ++- Formula/tezos-client.rb | 5 +++-- Formula/tezos-codec.rb | 3 ++- Formula/tezos-endorser-011-PtHangz2.rb | 3 ++- Formula/tezos-node.rb | 3 ++- Formula/tezos-sandbox.rb | 3 ++- Formula/tezos-signer.rb | 3 ++- 9 files changed, 19 insertions(+), 10 deletions(-) diff --git a/Formula/tezos-accuser-011-PtHangz2.rb b/Formula/tezos-accuser-011-PtHangz2.rb index 429a0b6d3..b2c05f49e 100644 --- a/Formula/tezos-accuser-011-PtHangz2.rb +++ b/Formula/tezos-accuser-011-PtHangz2.rb @@ -35,7 +35,8 @@ def make_deps ENV.deparallelize ENV["CARGO_HOME"]="./.cargo" # Here is the workaround to use opam 2.0 because Tezos is currently not compatible with opam 2.1.0 and newer - system "curl", "-L", "https://github.com/ocaml/opam/releases/download/2.0.9/opam-2.0.9-x86_64-macos", "--create-dirs", "-o", "#{ENV["HOME"]}/.opam-bin/opam" + arch = RUBY_PLATFORM.include?("arm64") ? "arm64" : "x86_64" + system "curl", "-L", "https://github.com/ocaml/opam/releases/download/2.0.9/opam-2.0.9-#{arch}-macos", "--create-dirs", "-o", "#{ENV["HOME"]}/.opam-bin/opam" system "chmod", "+x", "#{ENV["HOME"]}/.opam-bin/opam" ENV["PATH"]="#{ENV["HOME"]}/.opam-bin:#{ENV["PATH"]}" system "rustup-init", "--default-toolchain", "1.52.1", "-y" diff --git a/Formula/tezos-admin-client.rb b/Formula/tezos-admin-client.rb index b2f294b6d..729de3836 100644 --- a/Formula/tezos-admin-client.rb +++ b/Formula/tezos-admin-client.rb @@ -35,7 +35,8 @@ def make_deps ENV.deparallelize ENV["CARGO_HOME"]="./.cargo" # Here is the workaround to use opam 2.0.9 because Tezos is currently not compatible with opam 2.1.0 and newer - system "curl", "-L", "https://github.com/ocaml/opam/releases/download/2.0.9/opam-2.0.9-x86_64-macos", "--create-dirs", "-o", "#{ENV["HOME"]}/.opam-bin/opam" + arch = RUBY_PLATFORM.include?("arm64") ? "arm64" : "x86_64" + system "curl", "-L", "https://github.com/ocaml/opam/releases/download/2.0.9/opam-2.0.9-#{arch}-macos", "--create-dirs", "-o", "#{ENV["HOME"]}/.opam-bin/opam" system "chmod", "+x", "#{ENV["HOME"]}/.opam-bin/opam" ENV["PATH"]="#{ENV["HOME"]}/.opam-bin:#{ENV["PATH"]}" system "rustup-init", "--default-toolchain", "1.52.1", "-y" diff --git a/Formula/tezos-baker-011-PtHangz2.rb b/Formula/tezos-baker-011-PtHangz2.rb index 4afe54a05..0edc257b2 100644 --- a/Formula/tezos-baker-011-PtHangz2.rb +++ b/Formula/tezos-baker-011-PtHangz2.rb @@ -35,7 +35,8 @@ def make_deps ENV.deparallelize ENV["CARGO_HOME"]="./.cargo" # Here is the workaround to use opam 2.0.9 because Tezos is currently not compatible with opam 2.1.0 and newer - system "curl", "-L", "https://github.com/ocaml/opam/releases/download/2.0.9/opam-2.0.9-x86_64-macos", "--create-dirs", "-o", "#{ENV["HOME"]}/.opam-bin/opam" + arch = RUBY_PLATFORM.include?("arm64") ? "arm64" : "x86_64" + system "curl", "-L", "https://github.com/ocaml/opam/releases/download/2.0.9/opam-2.0.9-#{arch}-macos", "--create-dirs", "-o", "#{ENV["HOME"]}/.opam-bin/opam" system "chmod", "+x", "#{ENV["HOME"]}/.opam-bin/opam" ENV["PATH"]="#{ENV["HOME"]}/.opam-bin:#{ENV["PATH"]}" system "rustup-init", "--default-toolchain", "1.52.1", "-y" diff --git a/Formula/tezos-client.rb b/Formula/tezos-client.rb index 42652c2d3..d36effdba 100644 --- a/Formula/tezos-client.rb +++ b/Formula/tezos-client.rb @@ -12,7 +12,7 @@ class << self url "https://gitlab.com/tezos/tezos.git", :tag => "v11.0+no_adx", :shallow => false - version "v11.0+no_adx-1" + version "v11.0+no_adx-2" build_dependencies = %w[pkg-config autoconf rsync wget rustup-init] build_dependencies.each do |dependency| @@ -35,7 +35,8 @@ def make_deps ENV.deparallelize ENV["CARGO_HOME"]="./.cargo" # Here is the workaround to use opam 2.0.9 because Tezos is currently not compatible with opam 2.1.0 and newer - system "curl", "-L", "https://github.com/ocaml/opam/releases/download/2.0.9/opam-2.0.9-x86_64-macos", "--create-dirs", "-o", "#{ENV["HOME"]}/.opam-bin/opam" + arch = RUBY_PLATFORM.include?("arm64") ? "arm64" : "x86_64" + system "curl", "-L", "https://github.com/ocaml/opam/releases/download/2.0.9/opam-2.0.9-#{arch}-macos", "--create-dirs", "-o", "#{ENV["HOME"]}/.opam-bin/opam" system "chmod", "+x", "#{ENV["HOME"]}/.opam-bin/opam" ENV["PATH"]="#{ENV["HOME"]}/.opam-bin:#{ENV["PATH"]}" system "rustup-init", "--default-toolchain", "1.52.1", "-y" diff --git a/Formula/tezos-codec.rb b/Formula/tezos-codec.rb index 28bef0add..7a4872222 100644 --- a/Formula/tezos-codec.rb +++ b/Formula/tezos-codec.rb @@ -35,7 +35,8 @@ def make_deps ENV.deparallelize ENV["CARGO_HOME"]="./.cargo" # Here is the workaround to use opam 2.0.9 because Tezos is currently not compatible with opam 2.1.0 and newer - system "curl", "-L", "https://github.com/ocaml/opam/releases/download/2.0.9/opam-2.0.9-x86_64-macos", "--create-dirs", "-o", "#{ENV["HOME"]}/.opam-bin/opam" + arch = RUBY_PLATFORM.include?("arm64") ? "arm64" : "x86_64" + system "curl", "-L", "https://github.com/ocaml/opam/releases/download/2.0.9/opam-2.0.9-#{arch}-macos", "--create-dirs", "-o", "#{ENV["HOME"]}/.opam-bin/opam" system "chmod", "+x", "#{ENV["HOME"]}/.opam-bin/opam" ENV["PATH"]="#{ENV["HOME"]}/.opam-bin:#{ENV["PATH"]}" system "rustup-init", "--default-toolchain", "1.52.1", "-y" diff --git a/Formula/tezos-endorser-011-PtHangz2.rb b/Formula/tezos-endorser-011-PtHangz2.rb index 25a754b90..f407830dd 100644 --- a/Formula/tezos-endorser-011-PtHangz2.rb +++ b/Formula/tezos-endorser-011-PtHangz2.rb @@ -36,7 +36,8 @@ def make_deps ENV.deparallelize ENV["CARGO_HOME"]="./.cargo" # Here is the workaround to use opam 2.0.9 because Tezos is currently not compatible with opam 2.1.0 and newer - system "curl", "-L", "https://github.com/ocaml/opam/releases/download/2.0.9/opam-2.0.9-x86_64-macos", "--create-dirs", "-o", "#{ENV["HOME"]}/.opam-bin/opam" + arch = RUBY_PLATFORM.include?("arm64") ? "arm64" : "x86_64" + system "curl", "-L", "https://github.com/ocaml/opam/releases/download/2.0.9/opam-2.0.9-#{arch}-macos", "--create-dirs", "-o", "#{ENV["HOME"]}/.opam-bin/opam" system "chmod", "+x", "#{ENV["HOME"]}/.opam-bin/opam" ENV["PATH"]="#{ENV["HOME"]}/.opam-bin:#{ENV["PATH"]}" system "rustup-init", "--default-toolchain", "1.52.1", "-y" diff --git a/Formula/tezos-node.rb b/Formula/tezos-node.rb index 6bd26679a..2025d8c03 100644 --- a/Formula/tezos-node.rb +++ b/Formula/tezos-node.rb @@ -35,7 +35,8 @@ def make_deps ENV.deparallelize ENV["CARGO_HOME"]="./.cargo" # Here is the workaround to use opam 2.0.9 because Tezos is currently not compatible with opam 2.1.0 and newer - system "curl", "-L", "https://github.com/ocaml/opam/releases/download/2.0.9/opam-2.0.9-x86_64-macos", "--create-dirs", "-o", "#{ENV["HOME"]}/.opam-bin/opam" + arch = RUBY_PLATFORM.include?("arm64") ? "arm64" : "x86_64" + system "curl", "-L", "https://github.com/ocaml/opam/releases/download/2.0.9/opam-2.0.9-#{arch}-macos", "--create-dirs", "-o", "#{ENV["HOME"]}/.opam-bin/opam" system "chmod", "+x", "#{ENV["HOME"]}/.opam-bin/opam" ENV["PATH"]="#{ENV["HOME"]}/.opam-bin:#{ENV["PATH"]}" system "rustup-init", "--default-toolchain", "1.52.1", "-y" diff --git a/Formula/tezos-sandbox.rb b/Formula/tezos-sandbox.rb index e2c322d5d..2b1afbfbb 100644 --- a/Formula/tezos-sandbox.rb +++ b/Formula/tezos-sandbox.rb @@ -34,7 +34,8 @@ def make_deps ENV.deparallelize ENV["CARGO_HOME"]="./.cargo" # Here is the workaround to use opam 2.0.9 because Tezos is currently not compatible with opam 2.1.0 and newer - system "curl", "-L", "https://github.com/ocaml/opam/releases/download/2.0.9/opam-2.0.9-x86_64-macos", "--create-dirs", "-o", "#{ENV["HOME"]}/.opam-bin/opam" + arch = RUBY_PLATFORM.include?("arm64") ? "arm64" : "x86_64" + system "curl", "-L", "https://github.com/ocaml/opam/releases/download/2.0.9/opam-2.0.9-#{arch}-macos", "--create-dirs", "-o", "#{ENV["HOME"]}/.opam-bin/opam" system "chmod", "+x", "#{ENV["HOME"]}/.opam-bin/opam" ENV["PATH"]="#{ENV["HOME"]}/.opam-bin:#{ENV["PATH"]}" system "rustup-init", "--default-toolchain", "1.52.1", "-y" diff --git a/Formula/tezos-signer.rb b/Formula/tezos-signer.rb index e6105890a..edd6fc108 100644 --- a/Formula/tezos-signer.rb +++ b/Formula/tezos-signer.rb @@ -35,7 +35,8 @@ def make_deps ENV.deparallelize ENV["CARGO_HOME"]="./.cargo" # Here is the workaround to use opam 2.0.9 because Tezos is currently not compatible with opam 2.1.0 and newer - system "curl", "-L", "https://github.com/ocaml/opam/releases/download/2.0.9/opam-2.0.9-x86_64-macos", "--create-dirs", "-o", "#{ENV["HOME"]}/.opam-bin/opam" + arch = RUBY_PLATFORM.include?("arm64") ? "arm64" : "x86_64" + system "curl", "-L", "https://github.com/ocaml/opam/releases/download/2.0.9/opam-2.0.9-#{arch}-macos", "--create-dirs", "-o", "#{ENV["HOME"]}/.opam-bin/opam" system "chmod", "+x", "#{ENV["HOME"]}/.opam-bin/opam" ENV["PATH"]="#{ENV["HOME"]}/.opam-bin:#{ENV["PATH"]}" system "rustup-init", "--default-toolchain", "1.52.1", "-y" From c468a5a2dca7dfa125fe448e4025a31ce84632bf Mon Sep 17 00:00:00 2001 From: Roman Melnikov Date: Fri, 17 Dec 2021 15:15:09 +0300 Subject: [PATCH 2/2] [#205] Bump formulae version and release number Problem: We want to release new versions of brew formulae that work on M1. Solution: Bump version in formulae and bump release number in meta.json. --- Formula/tezos-accuser-011-PtHangz2.rb | 4 +--- Formula/tezos-admin-client.rb | 4 +--- Formula/tezos-baker-011-PtHangz2.rb | 4 +--- Formula/tezos-client.rb | 2 -- Formula/tezos-codec.rb | 4 +--- Formula/tezos-endorser-011-PtHangz2.rb | 4 +--- Formula/tezos-node-hangzhounet.rb | 2 +- Formula/tezos-node-mainnet.rb | 2 +- Formula/tezos-node.rb | 4 +--- Formula/tezos-sandbox.rb | 3 +-- Formula/tezos-signer-http.rb | 2 +- Formula/tezos-signer-https.rb | 2 +- Formula/tezos-signer-tcp.rb | 2 +- Formula/tezos-signer-unix.rb | 2 +- Formula/tezos-signer.rb | 4 +--- meta.json | 2 +- 16 files changed, 15 insertions(+), 32 deletions(-) diff --git a/Formula/tezos-accuser-011-PtHangz2.rb b/Formula/tezos-accuser-011-PtHangz2.rb index b2c05f49e..92e32e60d 100644 --- a/Formula/tezos-accuser-011-PtHangz2.rb +++ b/Formula/tezos-accuser-011-PtHangz2.rb @@ -12,7 +12,7 @@ class << self url "https://gitlab.com/tezos/tezos.git", :tag => "v11.0+no_adx", :shallow => false - version "v11.0+no_adx-1" + version "v11.0+no_adx-2" build_dependencies = %w[pkg-config autoconf rsync wget rustup-init] build_dependencies.each do |dependency| @@ -27,8 +27,6 @@ class << self bottle do root_url "https://github.com/serokell/tezos-packaging/releases/download/#{TezosAccuser011Pthangz2.version}/" - sha256 cellar: :any, catalina: "85131133994b5e081e1d798bbdc19bea15be1d31244425356bf6a380647947b5" - sha256 cellar: :any, mojave: "34122f13a471f526c8fd080852d408ea2f283ed74739cfa05c1d235bcb0b1f0f" end def make_deps diff --git a/Formula/tezos-admin-client.rb b/Formula/tezos-admin-client.rb index 729de3836..48b220e11 100644 --- a/Formula/tezos-admin-client.rb +++ b/Formula/tezos-admin-client.rb @@ -12,7 +12,7 @@ class << self url "https://gitlab.com/tezos/tezos.git", :tag => "v11.0+no_adx", :shallow => false - version "v11.0+no_adx-1" + version "v11.0+no_adx-2" build_dependencies = %w[pkg-config autoconf rsync wget rustup-init] build_dependencies.each do |dependency| @@ -27,8 +27,6 @@ class << self bottle do root_url "https://github.com/serokell/tezos-packaging/releases/download/#{TezosAdminClient.version}/" - sha256 cellar: :any, catalina: "e52d8309f4949de2ac58dfab3b55bac0affa07454cf925201052c04cf49e8f74" - sha256 cellar: :any, mojave: "3ad9ce649528ed84775acdf3a6dad5cc15e0b2f56d0791d116678a37b5118011" end def make_deps diff --git a/Formula/tezos-baker-011-PtHangz2.rb b/Formula/tezos-baker-011-PtHangz2.rb index 0edc257b2..5b21b3f5b 100644 --- a/Formula/tezos-baker-011-PtHangz2.rb +++ b/Formula/tezos-baker-011-PtHangz2.rb @@ -12,7 +12,7 @@ class << self url "https://gitlab.com/tezos/tezos.git", :tag => "v11.0+no_adx", :shallow => false - version "v11.0+no_adx-1" + version "v11.0+no_adx-2" build_dependencies = %w[pkg-config autoconf rsync wget rustup-init] build_dependencies.each do |dependency| @@ -27,8 +27,6 @@ class << self bottle do root_url "https://github.com/serokell/tezos-packaging/releases/download/#{TezosBaker011Pthangz2.version}/" - sha256 cellar: :any, catalina: "1e4b26e392d46d8d98fbc8f4eb33839f4e0533a4618192c1d3fa5e4934ce3f58" - sha256 cellar: :any, mojave: "ea09f0531dbcfa0741b2475fd529c083878c7e5de8a4383f9535fa0f6698581e" end def make_deps diff --git a/Formula/tezos-client.rb b/Formula/tezos-client.rb index d36effdba..e3e2ace0a 100644 --- a/Formula/tezos-client.rb +++ b/Formula/tezos-client.rb @@ -27,8 +27,6 @@ class << self bottle do root_url "https://github.com/serokell/tezos-packaging/releases/download/#{TezosClient.version}/" - sha256 cellar: :any, catalina: "78f048172a602f00cc863fdd7e92f51ac838f197962f49ea29bcde8c4ca0cb70" - sha256 cellar: :any, mojave: "2ded50c5b7d488d26acb98e02ece948ed1cdba3f1181fbb9613ea74d1c79b6b8" end def make_deps diff --git a/Formula/tezos-codec.rb b/Formula/tezos-codec.rb index 7a4872222..dc276d22d 100644 --- a/Formula/tezos-codec.rb +++ b/Formula/tezos-codec.rb @@ -12,7 +12,7 @@ class << self url "https://gitlab.com/tezos/tezos.git", :tag => "v11.0+no_adx", :shallow => false - version "v11.0+no_adx-1" + version "v11.0+no_adx-2" build_dependencies = %w[pkg-config autoconf rsync wget rustup-init] build_dependencies.each do |dependency| @@ -27,8 +27,6 @@ class << self bottle do root_url "https://github.com/serokell/tezos-packaging/releases/download/#{TezosCodec.version}/" - sha256 cellar: :any, catalina: "f5806d598791141eb6e84f97291fc662660444c670f5b195a7870831360ccab7" - sha256 cellar: :any, mojave: "b896b3ae6492b632cabf757e08e53934cdebbbae58139ef0272aad8313308d6b" end def make_deps diff --git a/Formula/tezos-endorser-011-PtHangz2.rb b/Formula/tezos-endorser-011-PtHangz2.rb index f407830dd..22501ff54 100644 --- a/Formula/tezos-endorser-011-PtHangz2.rb +++ b/Formula/tezos-endorser-011-PtHangz2.rb @@ -12,7 +12,7 @@ class << self url "https://gitlab.com/tezos/tezos.git", :tag => "v11.0+no_adx", :shallow => false - version "v11.0+no_adx-1" + version "v11.0+no_adx-2" build_dependencies = %w[pkg-config autoconf rsync wget rustup-init] build_dependencies.each do |dependency| @@ -28,8 +28,6 @@ class << self bottle do root_url "https://github.com/serokell/tezos-packaging/releases/download/#{TezosEndorser011Pthangz2.version}/" - sha256 cellar: :any, catalina: "08e27735c7b211d01c6d2811d5277f27632d6266ce37f25e4ed8eed195f2c96f" - sha256 cellar: :any, mojave: "775f3c3681ce511effd62146208bb4458f2f2454e9ceb21efb9a4afaad41eb65" end def make_deps diff --git a/Formula/tezos-node-hangzhounet.rb b/Formula/tezos-node-hangzhounet.rb index 4ad946edd..e7fb7670d 100644 --- a/Formula/tezos-node-hangzhounet.rb +++ b/Formula/tezos-node-hangzhounet.rb @@ -4,7 +4,7 @@ class TezosNodeHangzhounet < Formula url "file:///dev/null" - version "v11.0+no_adx-1" + version "v11.0+no_adx-2" bottle :unneeded depends_on "tezos-node" diff --git a/Formula/tezos-node-mainnet.rb b/Formula/tezos-node-mainnet.rb index 1c31f9946..0eeda1e59 100644 --- a/Formula/tezos-node-mainnet.rb +++ b/Formula/tezos-node-mainnet.rb @@ -4,7 +4,7 @@ class TezosNodeMainnet < Formula url "file:///dev/null" - version "v11.0+no_adx-1" + version "v11.0+no_adx-2" bottle :unneeded depends_on "tezos-node" diff --git a/Formula/tezos-node.rb b/Formula/tezos-node.rb index 2025d8c03..9e577b594 100644 --- a/Formula/tezos-node.rb +++ b/Formula/tezos-node.rb @@ -12,7 +12,7 @@ class << self url "https://gitlab.com/tezos/tezos.git", :tag => "v11.0+no_adx", :shallow => false - version "v11.0+no_adx-1" + version "v11.0+no_adx-2" build_dependencies = %w[pkg-config autoconf rsync wget rustup-init] build_dependencies.each do |dependency| @@ -27,8 +27,6 @@ class << self bottle do root_url "https://github.com/serokell/tezos-packaging/releases/download/#{TezosNode.version}/" - sha256 cellar: :any, catalina: "758915ccf47f0393042c2663f170a400597a424bdf00e687613260922724d50b" - sha256 cellar: :any, mojave: "f483696e497991b16a9bc34b417c4b613efeb003dd0753a68ed9c6aa455e1694" end def make_deps diff --git a/Formula/tezos-sandbox.rb b/Formula/tezos-sandbox.rb index 2b1afbfbb..e1a5de03c 100644 --- a/Formula/tezos-sandbox.rb +++ b/Formula/tezos-sandbox.rb @@ -12,7 +12,7 @@ class << self url "https://gitlab.com/tezos/tezos.git", :tag => "v11.0+no_adx", :shallow => false - version "v11.0+no_adx-1" + version "v11.0+no_adx-2" build_dependencies = %w[pkg-config autoconf rsync wget rustup-init] build_dependencies.each do |dependency| @@ -27,7 +27,6 @@ class << self bottle do root_url "https://github.com/serokell/tezos-packaging/releases/download/#{TezosSandbox.version}/" - sha256 cellar: :any, catalina: "fa023385d72c253f5d7cb42376b10416f1cef463d47afbf651138d3bb264709e" end def make_deps diff --git a/Formula/tezos-signer-http.rb b/Formula/tezos-signer-http.rb index 55e5d32ce..42ab70b28 100644 --- a/Formula/tezos-signer-http.rb +++ b/Formula/tezos-signer-http.rb @@ -4,7 +4,7 @@ class TezosSignerHttp < Formula url "file:///dev/null" - version "v11.0+no_adx-1" + version "v11.0+no_adx-2" bottle :unneeded depends_on "tezos-signer" diff --git a/Formula/tezos-signer-https.rb b/Formula/tezos-signer-https.rb index d16bc9c61..ad2c1de8d 100644 --- a/Formula/tezos-signer-https.rb +++ b/Formula/tezos-signer-https.rb @@ -4,7 +4,7 @@ class TezosSignerHttps < Formula url "file:///dev/null" - version "v11.0+no_adx-1" + version "v11.0+no_adx-2" bottle :unneeded depends_on "tezos-signer" diff --git a/Formula/tezos-signer-tcp.rb b/Formula/tezos-signer-tcp.rb index 8e1f1337f..8f7cdab7c 100644 --- a/Formula/tezos-signer-tcp.rb +++ b/Formula/tezos-signer-tcp.rb @@ -4,7 +4,7 @@ class TezosSignerTcp < Formula url "file:///dev/null" - version "v11.0+no_adx-1" + version "v11.0+no_adx-2" bottle :unneeded depends_on "tezos-signer" diff --git a/Formula/tezos-signer-unix.rb b/Formula/tezos-signer-unix.rb index cc1481b91..51207e9c7 100644 --- a/Formula/tezos-signer-unix.rb +++ b/Formula/tezos-signer-unix.rb @@ -4,7 +4,7 @@ class TezosSignerUnix < Formula url "file:///dev/null" - version "v11.0+no_adx-1" + version "v11.0+no_adx-2" bottle :unneeded depends_on "tezos-signer" diff --git a/Formula/tezos-signer.rb b/Formula/tezos-signer.rb index edd6fc108..ee61d81f8 100644 --- a/Formula/tezos-signer.rb +++ b/Formula/tezos-signer.rb @@ -12,7 +12,7 @@ class << self url "https://gitlab.com/tezos/tezos.git", :tag => "v11.0+no_adx", :shallow => false - version "v11.0+no_adx-1" + version "v11.0+no_adx-2" build_dependencies = %w[pkg-config autoconf rsync wget rustup-init] build_dependencies.each do |dependency| @@ -27,8 +27,6 @@ class << self bottle do root_url "https://github.com/serokell/tezos-packaging/releases/download/#{TezosSigner.version}/" - sha256 cellar: :any, catalina: "3759467a866693df55f9b8d056f9d20b919ec1db15ca5501e81963eaf42f0ff1" - sha256 cellar: :any, mojave: "a116fe6a65c0798746b3599be921f16bdf045902cbac1fbe2a0de7ec30beb8c0" end def make_deps diff --git a/meta.json b/meta.json index 2773b2261..17d4a094c 100644 --- a/meta.json +++ b/meta.json @@ -1,4 +1,4 @@ { - "release": "1", + "release": "2", "maintainer": "Serokell " }