From 99bce657971828689b7eeb580e1a58dca43fa5e4 Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Sun, 24 Mar 2019 18:48:45 +0000 Subject: [PATCH] Remove cpp-ethereum (and leave deprecation notice) --- cpp-ethereum.rb | 21 ++------------------- 1 file changed, 2 insertions(+), 19 deletions(-) diff --git a/cpp-ethereum.rb b/cpp-ethereum.rb index 2a5a4db2..eb9deeee 100644 --- a/cpp-ethereum.rb +++ b/cpp-ethereum.rb @@ -17,24 +17,7 @@ class CppEthereum < Formula desc "Ethereum C++ client" homepage "http://cpp-ethereum.org" - url "https://github.com/ethereum/aleth.git", :tag => "v1.5.2" - version "1.5.2" + url "https://github.com/ethereum/aleth.git" - devel do - url "https://github.com/ethereum/aleth.git", :branch => "master" - version "development" - end - - depends_on "cmake" => :build - depends_on "leveldb" - - def install - system "cmake", ".", *std_cmake_args, "-DVMTRACE=ON" - system "make" - system "make", "install" - end - - test do - system "#{bin}/aleth", "--version" - end + odie "cpp-ethereum has been removed from Homebrew. Please install binary release from https://github.com/ethereum/aleth/relases" end