2019-01-04 08:38:58 +00:00
|
|
|
class Esptool < Formula
|
|
|
|
include Language::Python::Virtualenv
|
|
|
|
|
|
|
|
desc "ESP8266 and ESP32 serial bootloader utility"
|
|
|
|
homepage "https://github.com/espressif/esptool"
|
2019-03-28 17:33:25 +00:00
|
|
|
url "https://github.com/espressif/esptool/archive/v2.6.tar.gz"
|
|
|
|
sha256 "51ebe169cade538c986e92eb65562b8ff3a1293baf14b9ad977df888061ed78e"
|
2019-01-04 08:38:58 +00:00
|
|
|
|
2019-01-04 12:42:03 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any_skip_relocation
|
2019-03-28 17:44:19 +00:00
|
|
|
sha256 "9faa763fa31fb23e398639dc95860598b289b15ff7a8a70a76a66eb1dbf9ca3f" => :mojave
|
|
|
|
sha256 "6a97ebfbddb809ffdd8cfd97337dc313cff99790b2ac52f1e2c8021691bcd58f" => :high_sierra
|
|
|
|
sha256 "e9f9409e0ab29d504a68a61ab7767c58f8f898f317979a67b8e726e366616d87" => :sierra
|
2019-01-04 12:42:03 +00:00
|
|
|
end
|
|
|
|
|
2019-01-04 08:38:58 +00:00
|
|
|
depends_on "python"
|
|
|
|
|
|
|
|
resource "ecdsa" do
|
|
|
|
url "https://files.pythonhosted.org/packages/f9/e5/99ebb176e47f150ac115ffeda5fedb6a3dbb3c00c74a59fd84ddf12f5857/ecdsa-0.13.tar.gz"
|
|
|
|
sha256 "64cf1ee26d1cde3c73c6d7d107f835fed7c6a2904aef9eac223d57ad800c43fa"
|
|
|
|
end
|
|
|
|
|
|
|
|
resource "pyaes" do
|
|
|
|
url "https://files.pythonhosted.org/packages/44/66/2c17bae31c906613795711fc78045c285048168919ace2220daa372c7d72/pyaes-1.6.1.tar.gz"
|
|
|
|
sha256 "02c1b1405c38d3c370b085fb952dd8bea3fadcee6411ad99f312cc129c536d8f"
|
|
|
|
end
|
|
|
|
|
|
|
|
resource "pyserial" do
|
|
|
|
url "https://files.pythonhosted.org/packages/cc/74/11b04703ec416717b247d789103277269d567db575d2fd88f25d9767fe3d/pyserial-3.4.tar.gz"
|
|
|
|
sha256 "6e2d401fdee0eab996cf734e67773a0143b932772ca8b42451440cfed942c627"
|
|
|
|
end
|
|
|
|
|
|
|
|
def install
|
|
|
|
virtualenv_install_with_resources
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
require "base64"
|
|
|
|
|
|
|
|
assert_match(/#{version}/, shell_output("#{bin}/esptool.py version"))
|
|
|
|
assert_match(/#{version}/, shell_output("#{bin}/espefuse.py --help"))
|
|
|
|
assert_match(/#{version}/, shell_output("#{bin}/espsecure.py --help"))
|
|
|
|
|
|
|
|
(testpath/"helloworld-esp8266.bin").write ::Base64.decode64 <<~EOS
|
|
|
|
6QIAICyAEEAAgBBAMAAAAFDDAAAAgP4/zC4AQMwkAEAh/P8SwfAJMQH8/8AAACH5/wH6/8AAAAb//wAABvj/AACA/j8QAAAASGVsbG8gd29ybGQhCgAAAAAAAAAAAAAD
|
|
|
|
EOS
|
|
|
|
|
|
|
|
result = shell_output("#{bin}/esptool.py image_info #{testpath}/helloworld-esp8266.bin")
|
|
|
|
assert_match "4010802c", result
|
|
|
|
end
|
|
|
|
end
|