From 8fa215823556c24b787490e0c6e6d3e47b9b17de Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:20 +0000 Subject: [PATCH 001/133] acmetool: remove formula --- Formula/acmetool.rb | 64 --------------------------------------------- 1 file changed, 64 deletions(-) delete mode 100644 Formula/acmetool.rb diff --git a/Formula/acmetool.rb b/Formula/acmetool.rb deleted file mode 100644 index 8631ee2d875c1b..00000000000000 --- a/Formula/acmetool.rb +++ /dev/null @@ -1,64 +0,0 @@ -class Acmetool < Formula - desc "Automatic certificate acquisition tool for ACME (Let's Encrypt)" - homepage "https://github.com/hlandau/acmetool" - url "https://github.com/hlandau/acmetool.git", - tag: "v0.0.67", - revision: "221ea15246f0bbcf254b350bee272d43a1820285" - license "MIT" - revision 1 - - bottle do - sha256 cellar: :any_skip_relocation, arm64_monterey: "f3a7ca3981353a8c1ce7b022a1734184ca4cb288d8f4dac69af498a5aead925d" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "aa25f92bd3b37f0413f0d372d789c3bc4f611ec04b03a666ed9beb1aea9b2bc4" - sha256 cellar: :any_skip_relocation, monterey: "c1f9358896f0c4c6bbfa649c6d7da8601778e78a83f3c5d94ee21b0f0685848e" - sha256 cellar: :any_skip_relocation, big_sur: "5f80a75c9eb23177bb4dba1321ec84cee4ebd7a639fb7945c490f85502adfd18" - sha256 cellar: :any_skip_relocation, catalina: "91cc3e92638a60e46cc4f003330acea39eb78fe66e5a813e86b96a2b2d43e1e1" - sha256 cellar: :any_skip_relocation, mojave: "150d06d622b88104ac60f6eaf914e9c250cc42916e61c94378e1bea58da406bf" - sha256 cellar: :any_skip_relocation, high_sierra: "60e99c7778fae7fff51852ade8fb55d679eef47198eb891d59f07a4ccb3e171f" - end - - # See: https://community.letsencrypt.org/t/end-of-life-plan-for-acmev1/88430 - disable! date: "2022-07-31", because: :deprecated_upstream - - depends_on "go" => :build - uses_from_macos "libpcap" - - patch do - url "https://raw.githubusercontent.com/Homebrew/formula-patches/f782e15/acmetool/stable-gomod.diff" - sha256 "1cd4871cbb885abd360f9060dd660f8e678d1143a182f3bb63bddba84f6ec982" - end - - def install - # https://github.com/hlandau/acmetool/blob/221ea15246f0bbcf254b350bee272d43a1820285/_doc/PACKAGING-PATHS.md - buildinfo = Utils.safe_popen_read("(echo acmetool Homebrew version #{version} \\($(uname -mrs)\\); - go list -m all | sed '1d') | base64 | tr -d '\\n'") - ldflags = %W[ - -X github.com/hlandau/acme/storage.RecommendedPath=#{var}/lib/acmetool - -X github.com/hlandau/acme/hooks.DefaultPath=#{lib}/hooks - -X github.com/hlandau/acme/responder.StandardWebrootPath=#{var}/run/acmetool/acme-challenge - -X github.com/hlandau/buildinfo.RawBuildInfo=#{buildinfo} - ].join(" ") - - system "go", "build", "-ldflags", ldflags, "-trimpath", "-o", bin/"acmetool", buildpath/"cmd/acmetool" - - (man8/"acmetool.8").write Utils.safe_popen_read(bin/"acmetool", "--help-man") - - doc.install Dir["_doc/*"] - end - - def post_install - (var/"lib/acmetool").mkpath - (var/"run/acmetool").mkpath - end - - def caveats - <<~EOS - This version is deprecated and will stop working by June 2021. For details, see: - https://github.com/hlandau/acmetool/issues/322 - EOS - end - - test do - assert_match version.to_s, shell_output("#{bin}/acmetool --version", 2) - end -end From 13af18a7c2e105b62bc2ed7fcf3425383931eb90 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:21 +0000 Subject: [PATCH 002/133] akka: remove formula --- Formula/akka.rb | 105 ------------------------------------------------ 1 file changed, 105 deletions(-) delete mode 100644 Formula/akka.rb diff --git a/Formula/akka.rb b/Formula/akka.rb deleted file mode 100644 index 63ffffe5c9df6a..00000000000000 --- a/Formula/akka.rb +++ /dev/null @@ -1,105 +0,0 @@ -class Akka < Formula - desc "Toolkit for building concurrent, distributed, and fault tolerant apps" - homepage "https://github.com/akka/akka" - url "https://downloads.typesafe.com/akka/akka_2.11-2.4.20.zip" - sha256 "6f6af368672640512f8e0099a5d88277f4ac64de7d4edd151411e6a80cc78d0f" - license "Apache-2.0" - revision 1 - - bottle do - sha256 cellar: :any_skip_relocation, all: "a1b321e709c3c0165d5254fa009f2c8596e7803cf1c0fb8e9753562910c34239" - end - - # https://github.com/akka/akka/issues/25046 - disable! date: "2022-07-31", because: "is recommended to use Akka with a build tool" - - depends_on "openjdk" - - def install - # Remove Windows files - rm "bin/akka.bat" - - chmod 0755, "bin/akka" - chmod 0755, "bin/akka-cluster" - - inreplace ["bin/akka", "bin/akka-cluster"] do |s| - # Translate akka script - s.gsub!(/^declare AKKA_HOME=.*$/, "declare AKKA_HOME=#{libexec}") - # dos to unix (bug fix for version 2.3.11) - s.gsub!(/\r?/, "") - end - - libexec.install Dir["*"] - bin.install Dir["#{libexec}/bin/*"] - bin.env_script_all_files libexec/"bin", JAVA_HOME: Formula["openjdk"].opt_prefix - end - - test do - (testpath/"src/main/java/sample/hello/HelloWorld.java").write <<~EOS - package sample.hello; - - import akka.actor.Props; - import akka.actor.UntypedActor; - import akka.actor.ActorRef; - - public class HelloWorld extends UntypedActor { - - @Override - public void preStart() { - // create the greeter actor - final ActorRef greeter = getContext().actorOf(Props.create(Greeter.class), "greeter"); - // tell it to perform the greeting - greeter.tell(Greeter.Msg.GREET, getSelf()); - } - - @Override - public void onReceive(Object msg) { - if (msg == Greeter.Msg.DONE) { - // when the greeter is done, stop this actor and with it the application - getContext().stop(getSelf()); - } else - unhandled(msg); - } - } - EOS - (testpath/"src/main/java/sample/hello/Greeter.java").write <<~EOS - package sample.hello; - - import akka.actor.UntypedActor; - - public class Greeter extends UntypedActor { - - public static enum Msg { - GREET, DONE; - } - - @Override - public void onReceive(Object msg) { - if (msg == Msg.GREET) { - System.out.println("Hello World!"); - getSender().tell(Msg.DONE, getSelf()); - } else - unhandled(msg); - } - - } - EOS - (testpath/"src/main/java/sample/hello/Main.java").write <<~EOS - package sample.hello; - - public class Main { - - public static void main(String[] args) { - akka.Main.main(new String[] { HelloWorld.class.getName() }); - } - } - EOS - system "#{Formula["openjdk"].bin}/javac", "-classpath", Dir[libexec/"lib/**/*.jar"].join(":"), - testpath/"src/main/java/sample/hello/HelloWorld.java", - testpath/"src/main/java/sample/hello/Greeter.java", - testpath/"src/main/java/sample/hello/Main.java" - system "#{Formula["openjdk"].bin}/java", - "-classpath", (Dir[libexec/"lib/**/*.jar"] + [testpath/"src/main/java"]).join(":"), - "akka.Main", "sample.hello.HelloWorld" - end -end From 730b3aa5ab82dd550fb2aed2aca990dbcbedcf5a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:21 +0000 Subject: [PATCH 003/133] ansible@2.8: remove formula --- Formula/ansible@2.8.rb | 637 ----------------------------------------- 1 file changed, 637 deletions(-) delete mode 100644 Formula/ansible@2.8.rb diff --git a/Formula/ansible@2.8.rb b/Formula/ansible@2.8.rb deleted file mode 100644 index bba915eff470f8..00000000000000 --- a/Formula/ansible@2.8.rb +++ /dev/null @@ -1,637 +0,0 @@ -class AnsibleAT28 < Formula - include Language::Python::Virtualenv - - desc "Automate deployment, configuration, and upgrading" - homepage "https://www.ansible.com/" - url "https://files.pythonhosted.org/packages/e6/a3/d68781949f0b6d261ef8f17a4d1c6ee75df261ff168f4ead585604899e26/ansible-2.8.20.tar.gz" - sha256 "f0672d138cf79cd39197952df0f8c761aac27c639a8ff7bdbd62cf463a7edaea" - license "GPL-3.0-or-later" - revision 2 - - bottle do - sha256 cellar: :any, monterey: "32ad0d9b268cc30e130b80338f832f1f0f78839be71f4504262f4ebb8794dec3" - sha256 cellar: :any, big_sur: "3d3c4a7c3b54b3ab76ec1aeb78e1faf00dec6b775d912262ea9228e1beae7734" - sha256 cellar: :any, catalina: "49f5e63f3f67588d6b71b79702a84eac580b54f905a111ced3a3386c81975888" - sha256 cellar: :any_skip_relocation, x86_64_linux: "ce97b8ec3ea2d975c27f6018231261cddc8fb750be7067b630746a0b7296ad9b" - end - - keg_only :versioned_formula - - disable! date: "2022-07-31", because: :versioned_formula - - depends_on "pkg-config" => :build - depends_on "rust" => :build - depends_on "libyaml" - depends_on "openssl@1.1" - depends_on "python@3.7" - # Ansible 2.8 would probably never work with Python > 3.7 - # https://github.com/ansible/ansible/issues/63973 - - uses_from_macos "krb5" - uses_from_macos "libffi" - uses_from_macos "libxslt" - - # Collect requirements from: - # ansible - # docker-py - # python-neutronclient (OpenStack) - # shade (OpenStack) - # pywinrm (Windows) - # kerberos (Windows) - # xmltodict (Windows) - # boto (AWS) - # boto3 (AWS) - # botocore (AWS) - # apache-libcloud (Google GCE) - # python-keyczar (Accelerated Mode) - # passlib (htpasswd core module) - # zabbix-api (Zabbix extras module) - # junos-eznc (Juniper device support) - # jxmlease (Juniper device support) - # dnspython (DNS Lookup - dig) - # pysphere (VMware vSphere support) - # python-consul (Consul support) - # requests-credssp (CredSSP support for windows hosts) - # openshift (k8s module support) - - ### setup_requires dependencies - resource "pbr" do - url "https://files.pythonhosted.org/packages/65/e2/8cb5e718a3a63e8c22677fde5e3d8d18d12a551a1bbd4557217e38a97ad0/pbr-5.5.1.tar.gz" - sha256 "5fad80b613c402d5b7df7bd84812548b2a61e9977387a80a5fc5c396492b13c9" - end - - resource "pytz" do - url "https://files.pythonhosted.org/packages/b0/61/eddc6eb2c682ea6fd97a7e1018a6294be80dba08fa28e7a3570148b4612d/pytz-2021.1.tar.gz" - sha256 "83a4a90894bf38e243cf052c8b58f381bfe9a7a483f6a9cab140bc7f702ac4da" - end - ### end - - ### extras for requests[security] - resource "cryptography" do - url "https://files.pythonhosted.org/packages/cc/98/8a258ab4787e6f835d350639792527d2eb7946ff9fc0caca9c3f4cf5dcfe/cryptography-3.4.8.tar.gz" - sha256 "94cc5ed4ceaefcbe5bf38c8fba6a21fc1d365bb8fb826ea1688e3370b2e24a1c" - end - - resource "idna" do - url "https://files.pythonhosted.org/packages/ea/b7/e0e3c1c467636186c39925827be42f16fee389dc404ac29e930e9136be70/idna-2.10.tar.gz" - sha256 "b307872f855b18632ce0c21c5e45be78c0ea7ae4c15c828c20788b26921eb3f6" - end - - resource "pyOpenSSL" do - url "https://files.pythonhosted.org/packages/98/cd/cbc9c152daba9b5de6094a185c66f1c6eb91c507f378bb7cad83d623ea88/pyOpenSSL-20.0.1.tar.gz" - sha256 "4c231c759543ba02560fcd2480c48dcec4dae34c9da7d3747c508227e0624b51" - end - ### end - - # The rest of this list should always be sorted by: - # pip install homebrew-pypi-poet && poet_lint $(brew formula ansible) - resource "Babel" do - url "https://files.pythonhosted.org/packages/34/18/8706cfa5b2c73f5a549fdc0ef2e24db71812a2685959cff31cbdfc010136/Babel-2.8.0.tar.gz" - sha256 "1aac2ae2d0d8ea368fa90906567f5c08463d98ade155c0c4bfedd6a0f7160e38" - end - - resource "Jinja2" do - url "https://files.pythonhosted.org/packages/4f/e7/65300e6b32e69768ded990494809106f87da1d436418d5f1367ed3966fd7/Jinja2-2.11.3.tar.gz" - sha256 "a6d58433de0ae800347cab1fa3043cebbabe8baa9d29e668f1c768cb87a333c6" - end - - resource "MarkupSafe" do - url "https://files.pythonhosted.org/packages/b9/2e/64db92e53b86efccfaea71321f597fa2e1b2bd3853d8ce658568f7a13094/MarkupSafe-1.1.1.tar.gz" - sha256 "29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b" - end - - resource "PrettyTable" do - url "https://files.pythonhosted.org/packages/ef/30/4b0746848746ed5941f052479e7c23d2b56d174b82f4fd34a25e389831f5/prettytable-0.7.2.tar.bz2" - sha256 "853c116513625c738dc3ce1aee148b5b5757a86727e67eff6502c7ca59d43c36" - end - - resource "PyNaCl" do - url "https://files.pythonhosted.org/packages/61/ab/2ac6dea8489fa713e2b4c6c5b549cc962dd4a842b5998d9e80cf8440b7cd/PyNaCl-1.3.0.tar.gz" - sha256 "0c6100edd16fefd1557da078c7a31e7b7d7a52ce39fdca2bec29d4f7b6e7600c" - end - - resource "PyYAML" do - url "https://files.pythonhosted.org/packages/a0/a4/d63f2d7597e1a4b55aa3b4d6c5b029991d3b824b5bd331af8d4ab1ed687d/PyYAML-5.4.1.tar.gz" - sha256 "607774cbba28732bfa802b54baa7484215f530991055bb562efbed5b2f20a45e" - end - - resource "apache-libcloud" do - url "https://files.pythonhosted.org/packages/15/f0/dcb99cba726642d38884973efdfe7071ccc06919fac034a8925bb4e0c16f/apache-libcloud-3.0.0.tar.gz" - sha256 "b9eef1a61383fd401a537cf0796a1067a265288b7ab89be93f5571961a8a2902" - end - - resource "appdirs" do - url "https://files.pythonhosted.org/packages/48/69/d87c60746b393309ca30761f8e2b49473d43450b150cb08f3c6df5c11be5/appdirs-1.4.3.tar.gz" - sha256 "9e5896d1372858f8dd3344faf4e5014d21849c756c8d5701f78f8a103b372d92" - end - - resource "asn1crypto" do - url "https://files.pythonhosted.org/packages/9f/3d/8beae739ed8c1c8f00ceac0ab6b0e97299b42da869e24cf82851b27a9123/asn1crypto-1.3.0.tar.gz" - sha256 "5a215cb8dc12f892244e3a113fe05397ee23c5c4ca7a69cd6e69811755efc42d" - end - - resource "backports.ssl_match_hostname" do - url "https://files.pythonhosted.org/packages/ff/2b/8265224812912bc5b7a607c44bf7b027554e1b9775e9ee0de8032e3de4b2/backports.ssl_match_hostname-3.7.0.1.tar.gz" - sha256 "bb82e60f9fbf4c080eabd957c39f0641f0fc247d9a16e31e26d594d8f42b9fd2" - end - - resource "bcrypt" do - url "https://files.pythonhosted.org/packages/fa/aa/025a3ab62469b5167bc397837c9ffc486c42a97ef12ceaa6699d8f5a5416/bcrypt-3.1.7.tar.gz" - sha256 "0b0069c752ec14172c5f78208f1863d7ad6755a6fae6fe76ec2c80d13be41e42" - end - - resource "boto" do - url "https://files.pythonhosted.org/packages/c8/af/54a920ff4255664f5d238b5aebd8eedf7a07c7a5e71e27afcfe840b82f51/boto-2.49.0.tar.gz" - sha256 "ea0d3b40a2d852767be77ca343b58a9e3a4b00d9db440efb8da74b4e58025e5a" - end - - resource "boto3" do - url "https://files.pythonhosted.org/packages/0e/1c/c0cdc12631144f4b3dded59d5506eaeff1ff318a4e0abb1d3fd9367885c7/boto3-1.12.48.tar.gz" - sha256 "39ef75f1351d9dce9542c71602bbe4dbae001df1aa5c75bdacea933d60cc1e7f" - end - - resource "botocore" do - url "https://files.pythonhosted.org/packages/20/3b/b436f8510e2a815cd2009964e7142611e0edb4e953f7dfee3921fc41a8c2/botocore-1.15.48.tar.gz" - sha256 "ef4fa3055421cb95a7bf559e715f8c5f656aca30fafef070eca21b13ca3f0f81" - end - - resource "cachetools" do - url "https://files.pythonhosted.org/packages/30/62/88fda08df9053141647b6941141b71b4c2a23d0fabab485feb917428ab46/cachetools-4.1.0.tar.gz" - sha256 "1d057645db16ca7fe1f3bd953558897603d6f0b9c51ed9d11eb4d071ec4e2aab" - end - - resource "certifi" do - url "https://files.pythonhosted.org/packages/b8/e2/a3a86a67c3fc8249ed305fc7b7d290ebe5e4d46ad45573884761ef4dea7b/certifi-2020.4.5.1.tar.gz" - sha256 "51fcb31174be6e6664c5f69e3e1691a2d72a1a12e90f872cbdb1567eb47b6519" - end - - resource "cffi" do - url "https://files.pythonhosted.org/packages/a8/20/025f59f929bbcaa579704f443a438135918484fffaacfaddba776b374563/cffi-1.14.5.tar.gz" - sha256 "fd78e5fee591709f32ef6edb9a015b4aa1a5022598e36227500c8f4e02328d9c" - end - - resource "chardet" do - url "https://files.pythonhosted.org/packages/fc/bb/a5768c230f9ddb03acc9ef3f0d4a3cf93462473795d18e9535498c8f929d/chardet-3.0.4.tar.gz" - sha256 "84ab92ed1c4d4f16916e05906b6b75a6c0fb5db821cc65e70cbd64a3e2a5eaae" - end - - resource "cliff" do - url "https://files.pythonhosted.org/packages/21/4e/0edfaf74a40cffe66de8ae8b9704420696ed37238dd57ce0935c9a341077/cliff-3.1.0.tar.gz" - sha256 "529b0ee0d2d38c7cbbababbbe3472b43b667a5c36025ef1b6cd00851c4313849" - end - - resource "cmd2" do - url "https://files.pythonhosted.org/packages/ba/b4/95e99237786d15572c9f80a279799964c5e910fc8c7d40c82dd5b4053108/cmd2-1.0.2.tar.gz" - sha256 "42ebf468bd457d99b8d2fd9573a8fba8519f625ca20d2d8185dbfbc416bd28b8" - end - - resource "contextlib2" do - url "https://files.pythonhosted.org/packages/02/54/669207eb72e3d8ae8b38aa1f0703ee87a0e9f88f30d3c0a47bebdb6de242/contextlib2-0.6.0.post1.tar.gz" - sha256 "01f490098c18b19d2bd5bb5dc445b2054d2fa97f09a4280ba2c5f3c394c8162e" - end - - resource "debtcollector" do - url "https://files.pythonhosted.org/packages/19/65/837ebcd2a157c62b0708cfcbebbfbf1018fa477f8013d1b0055ff609f403/debtcollector-2.0.1.tar.gz" - sha256 "36dfe3e691e7e66f650273ae3bd1670b4c1668a10b16e118b2e6ec9ad3a74309" - end - - resource "decorator" do - url "https://files.pythonhosted.org/packages/da/93/84fa12f2dc341f8cf5f022ee09e109961055749df2d0c75c5f98746cfe6c/decorator-4.4.2.tar.gz" - sha256 "e3a62f0520172440ca0dcc823749319382e377f37f140a0b99ef45fecb84bfe7" - end - - resource "deprecation" do - url "https://files.pythonhosted.org/packages/5a/d3/8ae2869247df154b64c1884d7346d412fed0c49df84db635aab2d1c40e62/deprecation-2.1.0.tar.gz" - sha256 "72b3bde64e5d778694b0cf68178aed03d15e15477116add3fb773e581f9518ff" - end - - resource "dictdiffer" do - url "https://files.pythonhosted.org/packages/08/bf/9e878ffc50cbe57b63b46dee9f7689c8e1d6fa1c6b65f18a582c3e1a5ebd/dictdiffer-0.8.1.tar.gz" - sha256 "1adec0d67cdf6166bda96ae2934ddb5e54433998ceab63c984574d187cc563d2" - end - - resource "dnspython" do - url "https://files.pythonhosted.org/packages/ec/c5/14bcd63cb6d06092a004793399ec395405edf97c2301dfdc146dfbd5beed/dnspython-1.16.0.zip" - sha256 "36c5e8e38d4369a08b6780b7f27d790a292b2b08eea01607865bf0936c558e01" - end - - resource "docker-py" do - url "https://files.pythonhosted.org/packages/fa/2d/906afc44a833901fc6fed1a89c228e5c88fbfc6bd2f3d2f0497fdfb9c525/docker-py-1.10.6.tar.gz" - sha256 "4c2a75875764d38d67f87bc7d03f7443a3895704efc57962bdf6500b8d4bc415" - end - - resource "docker-pycreds" do - url "https://files.pythonhosted.org/packages/c5/e6/d1f6c00b7221e2d7c4b470132c931325c8b22c51ca62417e300f5ce16009/docker-pycreds-0.4.0.tar.gz" - sha256 "6ce3270bcaf404cc4c3e27e4b6c70d3521deae82fb508767870fdbf772d584d4" - end - - resource "docutils" do - url "https://files.pythonhosted.org/packages/2f/e0/3d435b34abd2d62e8206171892f174b180cd37b09d57b924ca5c2ef2219d/docutils-0.16.tar.gz" - sha256 "c2de3a60e9e7d07be26b7f2b00ca0309c207e06c100f9cc2a94931fc75a478fc" - end - - resource "dogpile.cache" do - url "https://files.pythonhosted.org/packages/e6/65/fa4a947926034cb4af5f469c376a21728b7fd8de4668fed757c3586f0eef/dogpile.cache-0.9.1.tar.gz" - sha256 "a9822f466ec740ed8945ed561a138441d54018f0667aa19df6d1c8f54086b32e" - end - - resource "funcsigs" do - url "https://files.pythonhosted.org/packages/94/4a/db842e7a0545de1cdb0439bb80e6e42dfe82aaeaadd4072f2263a4fbed23/funcsigs-1.0.2.tar.gz" - sha256 "a7bb0f2cf3a3fd1ab2732cb49eba4252c2af4240442415b4abce3b87022a8f50" - end - - resource "google-auth" do - url "https://files.pythonhosted.org/packages/d8/47/0b6f9d832fe0699c8daf8b645408752e995f5afbb466cfa76d9954fcf8e1/google-auth-1.14.1.tar.gz" - sha256 "e63b2210e03c4ed829063b72c4af0c4b867c2788efb3210b6b9439b488bd3afd" - end - - resource "ipaddress" do - url "https://files.pythonhosted.org/packages/b9/9a/3e9da40ea28b8210dd6504d3fe9fe7e013b62bf45902b458d1cdc3c34ed9/ipaddress-1.0.23.tar.gz" - sha256 "b7f8e0369580bb4a24d5ba1d7cc29660a4a6987763faf1d8a8046830e020e7e2" - end - - resource "iso8601" do - url "https://files.pythonhosted.org/packages/45/13/3db24895497345fb44c4248c08b16da34a9eb02643cea2754b21b5ed08b0/iso8601-0.1.12.tar.gz" - sha256 "49c4b20e1f38aa5cf109ddcd39647ac419f928512c869dc01d5c7098eddede82" - end - - resource "jmespath" do - url "https://files.pythonhosted.org/packages/5c/40/3bed01fc17e2bb1b02633efc29878dfa25da479ad19a69cfb11d2b88ea8e/jmespath-0.9.5.tar.gz" - sha256 "cca55c8d153173e21baa59983015ad0daf603f9cb799904ff057bfb8ff8dc2d9" - end - - resource "jsonpatch" do - url "https://files.pythonhosted.org/packages/70/9f/6f0bfbb4cc1401ce994d336bcb4ed2aa924f395e7fd1926511c04a52eee1/jsonpatch-1.25.tar.gz" - sha256 "ddc0f7628b8bfdd62e3cbfbc24ca6671b0b6265b50d186c2cf3659dc0f78fd6a" - end - - resource "jsonpointer" do - url "https://files.pythonhosted.org/packages/52/e7/246d9ef2366d430f0ce7bdc494ea2df8b49d7a2a41ba51f5655f68cfe85f/jsonpointer-2.0.tar.gz" - sha256 "c192ba86648e05fdae4f08a17ec25180a9aef5008d973407b581798a83975362" - end - - resource "junos-eznc" do - url "https://files.pythonhosted.org/packages/a6/96/16230c56d98c9c6cc1df0151ac32b1f90c0115d7ebf5403f1029d3a4663f/junos-eznc-2.4.1.tar.gz" - sha256 "8f3ecf06ab4d630f27e7ed7a7b605122ee5c5e5386b1f5186f6cb52810750b18" - end - - resource "jxmlease" do - url "https://files.pythonhosted.org/packages/80/b3/a1ffc5ea763c84780a9acfaa4f69a98f6c974eaf297e20d9d3648ef7d95b/jxmlease-1.0.1.tar.gz" - sha256 "fb04cfd54d8d7e4cc533108750047e9ccf43139c3c0220f8a082274b19564e98" - end - - resource "kerberos" do - url "https://files.pythonhosted.org/packages/39/cd/f98699a6e806b9d974ea1d3376b91f09edcb90415adbf31e3b56ee99ba64/kerberos-1.3.1.tar.gz" - sha256 "cdd046142a4e0060f96a00eb13d82a5d9ebc0f2d7934393ed559bac773460a2c" - end - - resource "keystoneauth1" do - url "https://files.pythonhosted.org/packages/ba/b4/f9d85343fb7b268048bba893c20b9eaddcfe57b230a8169505cbe48107e9/keystoneauth1-4.0.0.tar.gz" - sha256 "02b283a662552cba65c1e6b5e89c06acfa242ff96355f59ab7def861e765a695" - end - - resource "kubernetes" do - url "https://files.pythonhosted.org/packages/60/3f/2fef94fb65e8f94d768356e5fb9be222d18027e6167ccc65e2090917a771/kubernetes-11.0.0.tar.gz" - sha256 "1a2472f8b01bc6aa87e3a34781f859bded5a5c8ff791a53d889a8bd6cc550430" - end - - resource "lxml" do - url "https://files.pythonhosted.org/packages/3b/94/e2b1b3bad91d15526c7e38918795883cee18b93f6785ea8ecf13f8ffa01e/lxml-4.8.0.tar.gz" - sha256 "f63f62fc60e6228a4ca9abae28228f35e1bd3ce675013d1dfb828688d50c6e23" - end - - resource "monotonic" do - url "https://files.pythonhosted.org/packages/19/c1/27f722aaaaf98786a1b338b78cf60960d9fe4849825b071f4e300da29589/monotonic-1.5.tar.gz" - sha256 "23953d55076df038541e648a53676fb24980f7a1be290cdda21300b3bc21dfb0" - end - - resource "msgpack" do - url "https://files.pythonhosted.org/packages/e4/4f/057549afbd12fdd5d9aae9df19a6773a3d91988afe7be45b277e8cee2f4d/msgpack-1.0.0.tar.gz" - sha256 "9534d5cc480d4aff720233411a1f765be90885750b07df772380b34c10ecb5c0" - end - - resource "munch" do - url "https://files.pythonhosted.org/packages/43/a1/ec48010724eedfe2add68eb7592a0d238590e14e08b95a4ffb3c7b2f0808/munch-2.5.0.tar.gz" - sha256 "2d735f6f24d4dba3417fa448cae40c6e896ec1fdab6cdb5e6510999758a4dbd2" - end - - resource "ncclient" do - url "https://files.pythonhosted.org/packages/dd/7f/700ffea36c4c1c72d7581ef3dc3f40ec9756fd161816cd258cd303cd9f39/ncclient-0.6.7.tar.gz" - sha256 "efdf3c868cd9f104d4e9fe4c233df78bfbbed4b3d78ba19dc27cec3cf6a63680" - end - - resource "netaddr" do - url "https://files.pythonhosted.org/packages/0c/13/7cbb180b52201c07c796243eeff4c256b053656da5cfe3916c3f5b57b3a0/netaddr-0.7.19.tar.gz" - sha256 "38aeec7cdd035081d3a4c306394b19d677623bf76fa0913f6695127c7753aefd" - end - - resource "netifaces" do - url "https://files.pythonhosted.org/packages/0d/18/fd6e9c71a35b67a73160ec80a49da63d1eed2d2055054cc2995714949132/netifaces-0.10.9.tar.gz" - sha256 "2dee9ffdd16292878336a58d04a20f0ffe95555465fee7c9bd23b3490ef2abf3" - end - - resource "ntlm-auth" do - url "https://files.pythonhosted.org/packages/12/8c/b7b286360a0876c1a4d0a1651eb3c57f471661e126f5c5f097fbad735f40/ntlm-auth-1.4.0.tar.gz" - sha256 "350f2389c8ee5517f47db55a36ac2f8efc9742a60a678d6e2caa92385bdcaa9a" - end - - resource "oauthlib" do - url "https://files.pythonhosted.org/packages/fc/c7/829c73c64d3749da7811c06319458e47f3461944da9d98bb4df1cb1598c2/oauthlib-3.1.0.tar.gz" - sha256 "bee41cc35fcca6e988463cacc3bcb8a96224f470ca547e697b604cc697b2f889" - end - - resource "openshift" do - url "https://files.pythonhosted.org/packages/d7/d2/5a01233200669465800dba3599af34f1611d20b5d5da0859670ac5c63675/openshift-0.11.0.tar.gz" - sha256 "bfc398aac8ad9d903b520e473290ebc35d9c9a739c8e083fde55d93288c7f67d" - end - - resource "openstacksdk" do - url "https://files.pythonhosted.org/packages/90/99/3f72e506b12ae63e3a6e12eb320247783c95a93d0ab4751b42c160fadf1a/openstacksdk-0.46.0.tar.gz" - sha256 "a1617f00810a0ec1353e66e7da9fe9b4f926a830bb14b48643b6461b8808ef29" - end - - resource "os-client-config" do - url "https://files.pythonhosted.org/packages/58/be/ba2e4d71dd57653c8fefe8577ade06bf5f87826e835b3c7d5bb513225227/os-client-config-2.1.0.tar.gz" - sha256 "abc38a351f8c006d34f7ee5f3f648de5e3ecf6455cc5d76cfd889d291cdf3f4e" - end - - resource "os-service-types" do - url "https://files.pythonhosted.org/packages/58/3f/09e93eb484b69d2a0d31361962fb667591a850630c8ce47bb177324910ec/os-service-types-1.7.0.tar.gz" - sha256 "31800299a82239363995b91f1ebf9106ac7758542a1e4ef6dc737a5932878c6c" - end - - resource "osc-lib" do - url "https://files.pythonhosted.org/packages/a7/d3/00d5b716ca5e5de8ef43a9eb78e8a9793e8497545e6ab9788e5817dfb8a7/osc-lib-2.0.0.tar.gz" - sha256 "b1cd4467b72a73f7a4de51789581f63de6b93f0e0d15e916191aa26234b01ffa" - end - - resource "oslo.config" do - url "https://files.pythonhosted.org/packages/bb/57/8d3a644582d20a3f8e9963bf7a45514fe90210ee23457ea7d8c7c0ceff0e/oslo.config-8.0.2.tar.gz" - sha256 "44452960969a526c1d6ea8d36bafcbe137fbf6c3101bc41d5804814c9190dd22" - end - - resource "oslo.context" do - url "https://files.pythonhosted.org/packages/61/4b/601417c286d0a93c509035772025b20e226a3c7a857b98fed141233d5920/oslo.context-3.0.2.tar.gz" - sha256 "ee05a37829ec797e371a4a25cfebbce42c2ec1bb63ed40028761ff7b83958627" - end - - resource "oslo.i18n" do - url "https://files.pythonhosted.org/packages/45/03/1414ca24321408483b6bb2cbd916e08fac2bda2edc28b56b80e133e76f9c/oslo.i18n-4.0.1.tar.gz" - sha256 "d0f1116399079e8f20e5017e6ea911881f78b12ef858abe65f2b5974b5a7f1ac" - end - - resource "oslo.log" do - url "https://files.pythonhosted.org/packages/90/47/2afbaa179b1ce562a7e11f63924ebc1ba11f6c61fd3f330b8d5e06d01354/oslo.log-4.1.1.tar.gz" - sha256 "22bf26492222de2a2ee346ab62701fd12cd01bba733fb14e6c070300c3f96da8" - end - - resource "oslo.serialization" do - url "https://files.pythonhosted.org/packages/76/f5/972f45dc3365a98b5d9d1e1982e82e8eb8305d5fbd02f5217d5e1d97aafc/oslo.serialization-3.1.1.tar.gz" - sha256 "146470f7b079930d7a15ac47463c12cee61a03a77050ed46b3ffc142753ecca1" - end - - resource "oslo.utils" do - url "https://files.pythonhosted.org/packages/b1/1a/bd6f4abec402bd5d77899bd0f19a36a977c56c1b8a1a5b64f7d85c430a1a/oslo.utils-4.1.1.tar.gz" - sha256 "a272f4a665dac902a3f6ca8b2962302648a4e0e2193b47a57a22416b906d3c0b" - end - - resource "packaging" do - url "https://files.pythonhosted.org/packages/65/37/83e3f492eb52d771e2820e88105f605335553fe10422cba9d256faeb1702/packaging-20.3.tar.gz" - sha256 "3c292b474fda1671ec57d46d739d072bfd495a4f51ad01a055121d81e952b7a3" - end - - resource "paramiko" do - url "https://files.pythonhosted.org/packages/ac/15/4351003352e11300b9f44a13576bff52dcdc6e4a911129c07447bda0a358/paramiko-2.7.1.tar.gz" - sha256 "920492895db8013f6cc0179293147f830b8c7b21fdfc839b6bad760c27459d9f" - end - - resource "passlib" do - url "https://files.pythonhosted.org/packages/6d/6b/4bfca0c13506535289b58f9c9761d20f56ed89439bfe6b8e07416ce58ee1/passlib-1.7.2.tar.gz" - sha256 "8d666cef936198bc2ab47ee9b0410c94adf2ba798e5a84bf220be079ae7ab6a8" - end - - resource "pyasn1" do - url "https://files.pythonhosted.org/packages/a4/db/fffec68299e6d7bad3d504147f9094830b704527a7fc098b721d38cc7fa7/pyasn1-0.4.8.tar.gz" - sha256 "aef77c9fb94a3ac588e87841208bdec464471d9871bd5050a287cc9a475cd0ba" - end - - resource "pyasn1-modules" do - url "https://files.pythonhosted.org/packages/88/87/72eb9ccf8a58021c542de2588a867dbefc7556e14b2866d1e40e9e2b587e/pyasn1-modules-0.2.8.tar.gz" - sha256 "905f84c712230b2c592c19470d3ca8d552de726050d1d1716282a1f6146be65e" - end - - resource "pycparser" do - url "https://files.pythonhosted.org/packages/0f/86/e19659527668d70be91d0369aeaa055b4eb396b0f387a4f92293a20035bd/pycparser-2.20.tar.gz" - sha256 "2d475327684562c3a96cc71adf7dc8c4f0565175cf86b6d7a404ff4c771f15f0" - end - - resource "pycrypto" do - url "https://files.pythonhosted.org/packages/60/db/645aa9af249f059cc3a368b118de33889219e0362141e75d4eaf6f80f163/pycrypto-2.6.1.tar.gz" - sha256 "f2ce1e989b272cfcb677616763e0a2e7ec659effa67a88aa92b3a65528f60a3c" - end - - resource "pyparsing" do - url "https://files.pythonhosted.org/packages/c1/47/dfc9c342c9842bbe0036c7f763d2d6686bcf5eb1808ba3e170afdb282210/pyparsing-2.4.7.tar.gz" - sha256 "c203ec8783bf771a155b207279b9bccb8dea02d8f0c9e5f8ead507bc3246ecc1" - end - - resource "pyperclip" do - url "https://files.pythonhosted.org/packages/f6/5b/55866e1cde0f86f5eec59dab5de8a66628cb0d53da74b8dbc15ad8dabda3/pyperclip-1.8.0.tar.gz" - sha256 "b75b975160428d84608c26edba2dec146e7799566aea42c1fe1b32e72b6028f2" - end - - resource "pyserial" do - url "https://files.pythonhosted.org/packages/cc/74/11b04703ec416717b247d789103277269d567db575d2fd88f25d9767fe3d/pyserial-3.4.tar.gz" - sha256 "6e2d401fdee0eab996cf734e67773a0143b932772ca8b42451440cfed942c627" - end - - resource "pysphere" do - url "https://files.pythonhosted.org/packages/a3/53/582ad19aae059b777f1105e6c7f6fa96f2ab6e7f018d94497fbe1518548d/pysphere-0.1.7.zip" - sha256 "cef3cb3a6836f1cf092caf4613123d084f36b0e96fa48a27708c0e868df8a1ea" - end - - resource "python-consul" do - url "https://files.pythonhosted.org/packages/7f/06/c12ff73cb1059c453603ba5378521e079c3f0ab0f0660c410627daca64b7/python-consul-1.1.0.tar.gz" - sha256 "168f1fa53948047effe4f14d53fc1dab50192e2a2cf7855703f126f469ea11f4" - end - - resource "python-dateutil" do - url "https://files.pythonhosted.org/packages/be/ed/5bbc91f03fa4c839c4c7360375da77f9659af5f7086b7a7bdda65771c8e0/python-dateutil-2.8.1.tar.gz" - sha256 "73ebfe9dbf22e832286dafa60473e4cd239f8592f699aa5adaf10050e6e1823c" - end - - resource "python-keyczar" do - url "https://files.pythonhosted.org/packages/c8/14/3ffb68671fef927fa5b60f21c43a04a4a007acbe939a26ba08b197fea6b3/python-keyczar-0.716.tar.gz" - sha256 "f9b614112dc8248af3d03b989da4aeca70e747d32fe7e6fce9512945365e3f83" - end - - resource "python-keystoneclient" do - url "https://files.pythonhosted.org/packages/c9/ec/5cce3af48ac2bd891e1ff7dcaffa2d7322b4438f2324fc3c1d0125c6cd10/python-keystoneclient-4.0.0.tar.gz" - sha256 "6d93efd494b43d8b4cd8a62281c82d3f02aa531c5523e6bbe7d696e37bc77ba8" - end - - resource "python-neutronclient" do - url "https://files.pythonhosted.org/packages/c8/cb/5ac3d57e9f482dd7372c1126f973344854a7295b52ecc40c2363fdc4e7ca/python-neutronclient-7.1.1.tar.gz" - sha256 "48c14576c907e7aca111e3354798ed1a169016fddfdbab9e68243fb75a04b22c" - end - - resource "python-string-utils" do - url "https://files.pythonhosted.org/packages/10/91/8c883b83c7d039ca7e6c8f8a7e154a27fdeddd98d14c10c5ee8fe425b6c0/python-string-utils-1.0.0.tar.gz" - sha256 "dcf9060b03f07647c0a603408dc8b03f807f3b54a05c6e19eb14460256fac0cb" - end - - resource "pywinrm" do - url "https://files.pythonhosted.org/packages/fc/88/be0ea1af44c3bcc54e4c41e4056986743551693c77dfe50b48a3f4ba1bf7/pywinrm-0.4.1.tar.gz" - sha256 "4ede5c6c85b53780ad0dbf9abef2fa2ea58f44c82256a84a63eae5f1205cea81" - end - - resource "requests" do - url "https://files.pythonhosted.org/packages/f5/4f/280162d4bd4d8aad241a21aecff7a6e46891b905a4341e7ab549ebaf7915/requests-2.23.0.tar.gz" - sha256 "b3f43d496c6daba4493e7c431722aeb7dbc6288f52a6e04e7b6023b0247817e6" - end - - resource "requests-credssp" do - url "https://files.pythonhosted.org/packages/d3/19/3f8cd9319717d66a0147185bd750fe25f7d85cb669f0316a44f26e071eab/requests-credssp-1.1.1.tar.gz" - sha256 "39910218561df398adca166e2f145ba6cb4a21450009cad96d1afb1c7e1741c3" - end - - resource "requests-oauthlib" do - url "https://files.pythonhosted.org/packages/23/eb/68fc8fa86e0f5789832f275c8289257d8dc44dbe93fce7ff819112b9df8f/requests-oauthlib-1.3.0.tar.gz" - sha256 "b4261601a71fd721a8bd6d7aa1cc1d6a8a93b4a9f5e96626f8e4d91e8beeaa6a" - end - - resource "requests_ntlm" do - url "https://files.pythonhosted.org/packages/3e/02/6b31dfc8334caeea446a2ac3aea5b8e197710e0b8ad3c3035f7c79e792a8/requests_ntlm-1.1.0.tar.gz" - sha256 "9189c92e8c61ae91402a64b972c4802b2457ce6a799d658256ebf084d5c7eb71" - end - - resource "requestsexceptions" do - url "https://files.pythonhosted.org/packages/82/ed/61b9652d3256503c99b0b8f145d9c8aa24c514caff6efc229989505937c1/requestsexceptions-1.4.0.tar.gz" - sha256 "b095cbc77618f066d459a02b137b020c37da9f46d9b057704019c9f77dba3065" - end - - resource "rfc3986" do - url "https://files.pythonhosted.org/packages/70/e2/1344681ad04a0971e8884b9a9856e5a13cc4824d15c047f8b0bbcc0b2029/rfc3986-1.4.0.tar.gz" - sha256 "112398da31a3344dc25dbf477d8df6cb34f9278a94fee2625d89e4514be8bb9d" - end - - resource "rsa" do - url "https://files.pythonhosted.org/packages/cb/d0/8f99b91432a60ca4b1cd478fd0bdf28c1901c58e3a9f14f4ba3dba86b57f/rsa-4.0.tar.gz" - sha256 "1a836406405730121ae9823e19c6e806c62bbad73f890574fff50efa4122c487" - end - - resource "ruamel.yaml" do - url "https://files.pythonhosted.org/packages/16/8b/54a26c1031595e5edd0e616028b922d78d8ffba8bc775f0a4faeada846cc/ruamel.yaml-0.16.10.tar.gz" - sha256 "099c644a778bf72ffa00524f78dd0b6476bca94a1da344130f4bf3381ce5b954" - end - - resource "ruamel.yaml.clib" do - url "https://files.pythonhosted.org/packages/92/28/612085de3fae9f82d62d80255d9f4cf05b1b341db1e180adcf28c1bf748d/ruamel.yaml.clib-0.2.0.tar.gz" - sha256 "b66832ea8077d9b3f6e311c4a53d06273db5dc2db6e8a908550f3c14d67e718c" - end - - resource "s3transfer" do - url "https://files.pythonhosted.org/packages/50/de/2b688c062107942486c81a739383b1432a72717d9a85a6a1a692f003c70c/s3transfer-0.3.3.tar.gz" - sha256 "921a37e2aefc64145e7b73d50c71bb4f26f46e4c9f414dc648c6245ff92cf7db" - end - - resource "scp" do - url "https://files.pythonhosted.org/packages/05/e0/ac4169e773e12a08d941ca3c006cb8c91bee9d6d80328a15af850b5e7480/scp-0.13.2.tar.gz" - sha256 "ef9d6e67c0331485d3db146bf9ee9baff8a48f3eb0e6c08276a8584b13bf34b3" - end - - resource "shade" do - url "https://files.pythonhosted.org/packages/b0/a6/a83f14eca6f7223319d9d564030bd322ca52c910c34943f38a59ad2a6549/shade-1.33.0.tar.gz" - sha256 "36f6936da93723f34bf99d00bae24aa4cc36125d597392ead8319720035d21e8" - end - - resource "simplejson" do - url "https://files.pythonhosted.org/packages/98/87/a7b98aa9256c8843f92878966dc3d8d914c14aad97e2c5ce4798d5743e07/simplejson-3.17.0.tar.gz" - sha256 "2b4b2b738b3b99819a17feaf118265d0753d5536049ea570b3c43b51c4701e81" - end - - resource "six" do - url "https://files.pythonhosted.org/packages/21/9f/b251f7f8a76dec1d6651be194dfba8fb8d7781d10ab3987190de8391d08e/six-1.14.0.tar.gz" - sha256 "236bdbdce46e6e6a3d61a337c0f8b763ca1e8717c03b369e87a7ec7ce1319c0a" - end - - resource "stevedore" do - url "https://files.pythonhosted.org/packages/be/19/83fd12828f879f53b85fe820925776aecda710944279e47a2dac53444adc/stevedore-1.32.0.tar.gz" - sha256 "18afaf1d623af5950cc0f7e75e70f917784c73b652a34a12d90b309451b5500b" - end - - resource "subprocess32" do - url "https://files.pythonhosted.org/packages/32/c8/564be4d12629b912ea431f1a50eb8b3b9d00f1a0b1ceff17f266be190007/subprocess32-3.5.4.tar.gz" - sha256 "eb2937c80497978d181efa1b839ec2d9622cf9600a039a79d0e108d1f9aec79d" - end - - resource "unicodecsv" do - url "https://files.pythonhosted.org/packages/6f/a4/691ab63b17505a26096608cc309960b5a6bdf39e4ba1a793d5f9b1a53270/unicodecsv-0.14.1.tar.gz" - sha256 "018c08037d48649a0412063ff4eda26eaa81eff1546dbffa51fa5293276ff7fc" - end - - resource "urllib3" do - url "https://files.pythonhosted.org/packages/05/8c/40cd6949373e23081b3ea20d5594ae523e681b6f472e600fbc95ed046a36/urllib3-1.25.9.tar.gz" - sha256 "3018294ebefce6572a474f0604c2021e33b3fd8006ecd11d62107a5d2a963527" - end - - resource "wcwidth" do - url "https://files.pythonhosted.org/packages/25/9d/0acbed6e4a4be4fc99148f275488580968f44ddb5e69b8ceb53fc9df55a0/wcwidth-0.1.9.tar.gz" - sha256 "ee73862862a156bf77ff92b09034fc4825dd3af9cf81bc5b360668d425f3c5f1" - end - - resource "websocket_client" do - url "https://files.pythonhosted.org/packages/8b/0f/52de51b9b450ed52694208ab952d5af6ebbcbce7f166a48784095d930d8c/websocket_client-0.57.0.tar.gz" - sha256 "d735b91d6d1692a6a181f2a8c9e0238e5f6373356f561bb9dc4c7af36f452010" - end - - resource "wrapt" do - url "https://files.pythonhosted.org/packages/82/f7/e43cefbe88c5fd371f4cf0cf5eb3feccd07515af9fd6cf7dbf1d1793a797/wrapt-1.12.1.tar.gz" - sha256 "b62ffa81fb85f4332a4f609cab4ac40709470da05643a082ec1eb88e6d9b97d7" - end - - resource "xmltodict" do - url "https://files.pythonhosted.org/packages/58/40/0d783e14112e064127063fbf5d1fe1351723e5dfe9d6daad346a305f6c49/xmltodict-0.12.0.tar.gz" - sha256 "50d8c638ed7ecb88d90561beedbf720c9b4e851a9fa6c47ebd64e99d166d8a21" - end - - resource "zabbix-api" do - url "https://files.pythonhosted.org/packages/e3/ed/2092731880f0de5b07067fc446dc0fc5166f2ee98018b6d524cd3e28a69d/zabbix-api-0.5.4.tar.gz" - sha256 "2d6c62001cb79a7de6fe286424967276edaca09d3833b72fb04f7863f29fce4b" - end - - def install - ENV.prepend_path "PATH", Formula["python@3.7"].opt_libexec/"bin" - - virtualenv_install_with_resources - - # prettytable 0.7.2 has file permissions 600 for some files. - # We need to add read permissions in order to be able to use it as a - # different user than the one installing it. - # See: https://github.com/Homebrew/homebrew-core/issues/6975 - # Also: https://github.com/Homebrew/brew/pull/1709 - Pathname.glob(libexec/"lib/python*/site-packages/prettytable-0.7.2-py*.egg-info").each do |prettytable_path| - chmod_R("a+r", prettytable_path) - end - - man1.install Dir["docs/man/man1/*.1"] - end - - test do - ENV["ANSIBLE_REMOTE_TEMP"] = testpath/"tmp" - (testpath/"playbook.yml").write <<~EOS - --- - - hosts: all - gather_facts: False - tasks: - - name: ping - ping: - EOS - (testpath/"hosts.ini").write "localhost ansible_connection=local\n" - system bin/"ansible-playbook", testpath/"playbook.yml", "-i", testpath/"hosts.ini" - - # Ensure requests[security] is activated - script = "import requests as r; r.get('https://mozilla-modern.badssl.com')" - system libexec/"bin/python3", "-c", script - end -end From 0fd78cd96ade042b8e2cc0b26daf27360d45e891 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:21 +0000 Subject: [PATCH 004/133] apache-forrest: remove formula --- Formula/apache-forrest.rb | 58 --------------------------------------- 1 file changed, 58 deletions(-) delete mode 100644 Formula/apache-forrest.rb diff --git a/Formula/apache-forrest.rb b/Formula/apache-forrest.rb deleted file mode 100644 index 1a33f7bcbcfa03..00000000000000 --- a/Formula/apache-forrest.rb +++ /dev/null @@ -1,58 +0,0 @@ -class ApacheForrest < Formula - desc "Publishing framework providing multiple output formats" - homepage "https://forrest.apache.org/" - url "https://web.archive.org/web/20130606174723/archive.apache.org/dist/forrest/apache-forrest-0.9-sources.tar.gz" - mirror "https://archive.apache.org/dist/forrest/apache-forrest-0.9-sources.tar.gz" - sha256 "c6ac758db2eb0d4d91bd1733bbbc2dec4fdb33603895c464bcb47a34490fb64d" - license "Apache-2.0" - revision 1 - - bottle do - rebuild 1 - sha256 cellar: :any_skip_relocation, arm64_monterey: "83d565eb783378de1f2650fbd678d197ee0538eac17d186c22c0e8cb4957d230" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "141e43e9268d661881cd2873e71bfce3e7c0e95b92cb6f5786ef0905d0dbb03f" - sha256 cellar: :any_skip_relocation, monterey: "16673b394f80d82e534384ddeca8323087f7abf37954e635150f92a6c5f0f0eb" - sha256 cellar: :any_skip_relocation, big_sur: "2767298b0c6c15419a22f4a9ed56e0eaf8b0f466a23a7edbaf4db0ae7e179871" - sha256 cellar: :any_skip_relocation, catalina: "53aed268e732c00ae5d57d4b98287c59f12c124f5a1b925d02aefacdc6dc5132" - sha256 cellar: :any_skip_relocation, mojave: "53aed268e732c00ae5d57d4b98287c59f12c124f5a1b925d02aefacdc6dc5132" - sha256 cellar: :any_skip_relocation, high_sierra: "53aed268e732c00ae5d57d4b98287c59f12c124f5a1b925d02aefacdc6dc5132" - sha256 cellar: :any_skip_relocation, x86_64_linux: "83d565eb783378de1f2650fbd678d197ee0538eac17d186c22c0e8cb4957d230" - end - - disable! date: "2022-07-31", because: :unmaintained - - depends_on "openjdk" - - resource "deps" do - url "https://web.archive.org/web/20161221052851/archive.apache.org/dist/forrest/apache-forrest-0.9-dependencies.tar.gz" - mirror "https://archive.apache.org/dist/forrest/apache-forrest-0.9-dependencies.tar.gz" - sha256 "33146b4e64933691d3b779421b35da08062a704618518d561281d3b43917ccf1" - end - - def install - libexec.install Dir["*"] - (bin/"forrest").write_env_script libexec/"bin/forrest", JAVA_HOME: Formula["openjdk"].opt_prefix - - resource("deps").stage do - # To avoid conflicts with directory names already installed from the - # main tarball, surgically install contents of dependency tarball - deps_to_install = [ - "lib", - "main/webapp/resources/schema/relaxng", - "main/webapp/resources/stylesheets", - "plugins/org.apache.forrest.plugin.output.pdf/", - "tools/ant", - "tools/forrestbot/lib", - "tools/forrestbot/webapp/lib", - "tools/jetty", - ] - deps_to_install.each do |dep| - (libexec/dep).install Dir["#{dep}/*"] - end - end - end - - test do - system "#{bin}/forrest", "-projecthelp" - end -end From 8f82f51475d6f8df519b2f3125ad16126bc3f764 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:22 +0000 Subject: [PATCH 005/133] app-engine-java: remove formula --- Formula/app-engine-java.rb | 41 -------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 Formula/app-engine-java.rb diff --git a/Formula/app-engine-java.rb b/Formula/app-engine-java.rb deleted file mode 100644 index 4f8ea1fe50bd56..00000000000000 --- a/Formula/app-engine-java.rb +++ /dev/null @@ -1,41 +0,0 @@ -class AppEngineJava < Formula - desc "Google App Engine for Java" - homepage "https://cloud.google.com/appengine/docs/java/" - url "https://storage.googleapis.com/appengine-sdks/featured/appengine-java-sdk-1.9.83.zip" - sha256 "1d585a36303c14f4fa44790bba97d5d8b75a889ad48ffce8187333488511e43e" - - bottle do - sha256 cellar: :any, all: "6c906b7bc3896476230775f5b32b4864576768a2a3d5e3b160db0fd7b31ce346" - end - - # https://cloud.google.com/appengine/docs/standard/java/sdk-gcloud-migration - disable! date: "2022-07-31", because: :deprecated_upstream - - depends_on "openjdk@8" - - def install - rm Dir["bin/*.cmd"] - libexec.install Dir["*"] - - %w[appcfg.sh dev_appserver.sh endpoints.sh run_java.sh].each do |f| - bin.install libexec/"bin/#{f}" - end - - bin.env_script_all_files(libexec/"bin", JAVA_HOME: Formula["openjdk@8"].opt_prefix) - end - - test do - (testpath/"WEB-INF/web.xml").write "" - (testpath/"WEB-INF/appengine-web.xml").write \ - "true" - Process.setsid - IO.popen("#{bin}/dev_appserver.sh . 2>&1") do |io| - until $LAST_READ_LINE == "INFO: Dev App Server is now running\n" - refute_nil io.gets, "Dev App Server terminated prematurely" - end - Signal.trap "INT", "IGNORE" - Process.kill "INT", 0 - end - assert_equal(130, $CHILD_STATUS.exitstatus, "Dev App Server exited with unexpected status code") - end -end From 84c9daaee421ce7d9afa40c1c298f489e0d910dd Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:22 +0000 Subject: [PATCH 006/133] archey: remove formula --- Formula/archey.rb | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 Formula/archey.rb diff --git a/Formula/archey.rb b/Formula/archey.rb deleted file mode 100644 index 48a73a0f654ea4..00000000000000 --- a/Formula/archey.rb +++ /dev/null @@ -1,42 +0,0 @@ -class Archey < Formula - desc "Graphical system information display for macOS" - homepage "https://obihann.github.io/archey-osx/" - license "GPL-2.0-or-later" - revision 1 - head "https://github.com/obihann/archey-osx.git", branch: "master" - - stable do - url "https://github.com/obihann/archey-osx/archive/1.6.0.tar.gz" - sha256 "0f0ffcf8c5f07610b98f0351dcb38bb8419001f40906d5dc4bfd28ef12dbd0f8" - - # Fix double percent sign in battery output - patch do - url "https://github.com/obihann/archey-osx/commit/cd125547d0936f066b64616553269bf647348e53.patch?full_index=1" - sha256 "a8039ace9b282bcce7b63b2d5ef2a3faf19a9826c0eb92cccbea0ce723907fbf" - end - end - - bottle do - sha256 cellar: :any_skip_relocation, arm64_monterey: "652777f045fb4491d98b7c27b28d05b84ef1184fa0216ca9428ba0ac172baff2" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "f34208326a88d41a2da5abefe270f45294f40b35982f6dfb86c5b908fa447837" - sha256 cellar: :any_skip_relocation, monterey: "72bf6698b463589cb2a2575dd4fb75f5ea0f0aab579300e7912a7cc1a8e445bf" - sha256 cellar: :any_skip_relocation, big_sur: "909d885f7b4b146ba77be86f58edb4e98fceb41e41dce9447490a2ab0a08410c" - sha256 cellar: :any_skip_relocation, catalina: "909d885f7b4b146ba77be86f58edb4e98fceb41e41dce9447490a2ab0a08410c" - sha256 cellar: :any_skip_relocation, mojave: "909d885f7b4b146ba77be86f58edb4e98fceb41e41dce9447490a2ab0a08410c" - sha256 cellar: :any_skip_relocation, x86_64_linux: "f34208326a88d41a2da5abefe270f45294f40b35982f6dfb86c5b908fa447837" - end - - disable! date: "2022-07-31", because: :repo_archived - - depends_on :macos - - conflicts_with "archey4", because: "both install `archey` binaries" - - def install - bin.install "bin/archey" - end - - test do - assert_match "Archey OS X 1", shell_output("#{bin}/archey --help") - end -end From acf3328eabba191989a420259d662959406527f9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:23 +0000 Subject: [PATCH 007/133] atdtool: remove formula --- Formula/atdtool.rb | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 Formula/atdtool.rb diff --git a/Formula/atdtool.rb b/Formula/atdtool.rb deleted file mode 100644 index b5450ccaea577e..00000000000000 --- a/Formula/atdtool.rb +++ /dev/null @@ -1,32 +0,0 @@ -class Atdtool < Formula - include Language::Python::Virtualenv - - desc "Command-line interface for After the Deadline language checker" - homepage "https://github.com/lpenz/atdtool" - url "https://files.pythonhosted.org/packages/83/d1/55150f2dd9afda92e2f0dcb697d6f555f8b1f578f1df4d685371e8b81089/atdtool-1.3.3.tar.gz" - sha256 "a83f50e7705c65e7ba5bc339f1a0624151bba9f7cdec7fb1460bb23e9a02dab9" - license "BSD-3-Clause" - revision 5 - - bottle do - sha256 cellar: :any_skip_relocation, arm64_monterey: "00860b394d9167bc00b8a31a3edf07aa02ecca3434ad379d2b48e1914f0be191" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "00860b394d9167bc00b8a31a3edf07aa02ecca3434ad379d2b48e1914f0be191" - sha256 cellar: :any_skip_relocation, monterey: "32171ec53c6f52a2e877ba0b1506be093e42f4d594418a2727675a327daef1c7" - sha256 cellar: :any_skip_relocation, big_sur: "32171ec53c6f52a2e877ba0b1506be093e42f4d594418a2727675a327daef1c7" - sha256 cellar: :any_skip_relocation, catalina: "32171ec53c6f52a2e877ba0b1506be093e42f4d594418a2727675a327daef1c7" - sha256 cellar: :any_skip_relocation, mojave: "32171ec53c6f52a2e877ba0b1506be093e42f4d594418a2727675a327daef1c7" - sha256 cellar: :any_skip_relocation, x86_64_linux: "e982a3e891104e18964da29892efef84c79da560c3c2525467fcaa48bb28819f" - end - - disable! date: "2022-07-31", because: :repo_archived - - depends_on "python@3.10" - - def install - virtualenv_install_with_resources - end - - test do - system "#{bin}/atdtool", "--help" - end -end From fe93a99ec7b7465f9a3210f17e430d020ec0776c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:23 +0000 Subject: [PATCH 008/133] awf: remove formula --- Formula/awf.rb | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 Formula/awf.rb diff --git a/Formula/awf.rb b/Formula/awf.rb deleted file mode 100644 index 8f45ba9816e51d..00000000000000 --- a/Formula/awf.rb +++ /dev/null @@ -1,46 +0,0 @@ -class Awf < Formula - desc "'A Widget Factory' is a theme preview application for gtk2 and gtk3" - homepage "https://github.com/valr/awf" - url "https://github.com/valr/awf/archive/v1.4.0.tar.gz" - sha256 "bb14517ea3eed050b3fec37783b79c515a0f03268a55dfd0b96a594b5b655c78" - license "GPL-3.0" - revision 2 - head "https://github.com/valr/awf.git", branch: "master" - - bottle do - sha256 cellar: :any, arm64_monterey: "8dd0d72c50563b5651018456a9de4a274152e44627a531056eb5bf4be8bdad08" - sha256 cellar: :any, arm64_big_sur: "60373a676e554ca3b82465ff01d7bfbde233fad9e7d1ec115656903c90336a29" - sha256 cellar: :any, monterey: "1d3ff7a870c9be4280285609178cb6a9a310bd80ba76ac88efe68f2f8815917c" - sha256 cellar: :any, big_sur: "a272cb4694d49e897a17250d13b9f534bb9020189711bd982f34392e666c9b9e" - sha256 cellar: :any, catalina: "cb84883afc611eacadc474b10407dee6b7177758054fbc2eaa65f21ba7d96f9f" - sha256 cellar: :any, mojave: "b0290ffc5c750f924cbf96a2a5398215a41137a69211d262387789e399aba9d8" - sha256 cellar: :any, high_sierra: "090ec40bbd96bea15714d411b9c89e6b06ca9723050252f00623b49c61da1497" - sha256 cellar: :any, sierra: "417806f1ab0aa5d1c2e2e0302dd2c3c4cdaaf2957ac18fbfe1f9a2ced72947bd" - sha256 cellar: :any_skip_relocation, x86_64_linux: "201df4351ed6f6f8dd3da0f2ca51ca64b494ded6aac9a96489e0c41361e480fd" - end - - disable! date: "2022-07-31", because: :repo_archived - - depends_on "autoconf" => :build - depends_on "automake" => :build - depends_on "libtool" => :build - depends_on "pkg-config" => :build - depends_on "gtk+" - depends_on "gtk+3" - - def install - inreplace "src/awf.c", "/usr/share/themes", "#{HOMEBREW_PREFIX}/share/themes" - system "./autogen.sh" - rm "README.md" # let's not have two copies of README - system "./configure", "--disable-dependency-tracking", - "--disable-silent-rules", - "--prefix=#{prefix}" - system "make" - system "make", "install" - end - - test do - assert_predicate bin/"awf-gtk2", :exist? - assert_predicate bin/"awf-gtk3", :exist? - end -end From 50da347ea6de8bb7c43e93d18d3cb91b686dbbba Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:23 +0000 Subject: [PATCH 009/133] aws-okta: remove formula --- Formula/aws-okta.rb | 56 --------------------------------------------- 1 file changed, 56 deletions(-) delete mode 100644 Formula/aws-okta.rb diff --git a/Formula/aws-okta.rb b/Formula/aws-okta.rb deleted file mode 100644 index cc69cef6e41bcb..00000000000000 --- a/Formula/aws-okta.rb +++ /dev/null @@ -1,56 +0,0 @@ -class AwsOkta < Formula - desc "Authenticate with AWS using your Okta credentials" - homepage "https://github.com/segmentio/aws-okta" - url "https://github.com/segmentio/aws-okta/archive/v1.0.11.tar.gz" - sha256 "444a84cd9c81097a7c462f806605193c5676879133255cfa0f610b7d14756b65" - license "MIT" - - bottle do - sha256 cellar: :any_skip_relocation, arm64_monterey: "52451bf142c4c9253a88a93c599e894299d6d2e1c4c0fae07c92cfb16eab1ac7" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "6de4fd8fa42cddba3a914ed99123469230646bc2ac2598ff40fd0d0c9bf51efe" - sha256 cellar: :any_skip_relocation, monterey: "af6cea2f20202c5b10749615f86847d0c3c82d812b7559948d0ab6b886a0f2fd" - sha256 cellar: :any_skip_relocation, big_sur: "178f359eaabc71c8a677f89e1acb35fe73ae35ba4010a06876bdb630b66878b2" - sha256 cellar: :any_skip_relocation, catalina: "2edc4ebb817ff4f0a3188a0c0eea6416ce2a83a6d9b5cc5b3969034ee65e27ca" - sha256 cellar: :any_skip_relocation, mojave: "910418c2dd89b78a7d665cdd8082d9941de433c6c8db800ce0515dfb6c1eb25b" - sha256 cellar: :any_skip_relocation, x86_64_linux: "108a796410008799835a58ab990dca87d12e602bff10a47f49b6b126f223b36c" - end - - # See https://github.com/segmentio/aws-okta/issues/278 - disable! date: "2022-07-31", because: :deprecated_upstream - - depends_on "go" => :build - - on_linux do - depends_on "pkg-config" => :build - depends_on "libusb" - end - - def install - system "go", "build", *std_go_args(ldflags: "-s -w -X main.Version=#{version}") - end - - test do - require "pty" - - PTY.spawn("#{bin}/aws-okta --backend file add") do |input, output, _pid| - output.puts "organization\n" - input.gets - output.puts "us\n" - input.gets - output.puts "fakedomain.okta.com\n" - input.gets - output.puts "username\n" - input.gets - output.puts "password\n" - input.gets - input.gets - input.gets - input.gets - input.gets - input.gets - input.gets - assert_match "Failed to validate credentials", input.gets.chomp - input.close - end - end -end From 9512d876e3c453f8391d818d2462bd3e7c0c918b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:24 +0000 Subject: [PATCH 010/133] bwctl: remove formula --- Formula/bwctl.rb | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 Formula/bwctl.rb diff --git a/Formula/bwctl.rb b/Formula/bwctl.rb deleted file mode 100644 index 01c4e0e13130bc..00000000000000 --- a/Formula/bwctl.rb +++ /dev/null @@ -1,43 +0,0 @@ -class Bwctl < Formula - desc "Command-line tool and daemon for network measuring tools" - homepage "https://software.internet2.edu/bwctl/" - url "https://software.internet2.edu/sources/bwctl/bwctl-1.5.4.tar.gz" - sha256 "e6dca6ca30c8ef4d68e6b34b011a9ff7eff3aba4a84efc19d96e3675182e40ef" - license "Apache-2.0" - - bottle do - rebuild 1 - sha256 cellar: :any_skip_relocation, arm64_monterey: "313b7d87f7a08e81d8c3522c3d4f5e5281ff21767b290b2bfe51ae7538e32011" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "d2e2238ee21630377e6ebc42ed442f21fd0ab3a6cffab36bb15c0a522b293c35" - sha256 cellar: :any_skip_relocation, monterey: "b25e1e3d6c070f43f85eda5263ba25d051a8e491235cf724d166d7d5ca3f2eb1" - sha256 cellar: :any_skip_relocation, big_sur: "57c336c55eb4ec62d4b2f6da7c5f44e47bd6ed20bbb63605639e3725a9cb4284" - sha256 cellar: :any_skip_relocation, catalina: "125c3592d5a34d3913dde26356ee894136716f6b224ab1d8bc14ab487fbd2633" - sha256 cellar: :any_skip_relocation, mojave: "b4e91dbfca063d51a0280dffde519e9d4e5d66d0e0a301936dbbe86239e295a3" - sha256 cellar: :any_skip_relocation, high_sierra: "2d326aaaa5c9031fd668569cbd68627d84884389b4883282d82259af152b12c3" - sha256 cellar: :any_skip_relocation, x86_64_linux: "f1baa7c580ca0122ac344d60c8884083c0b87ed3efb0b82b6e4af10c5c08257e" - end - - # https://software.internet2.edu/bwctl/ - # The use of BWCTL became deprecated with the release of pScheduler in perfSONAR 4.0 in April, 2017. - disable! date: "2022-07-31", because: :deprecated_upstream - - depends_on "i2util" => :build - - def install - # configure misset CFLAGS for I2util - # https://lists.internet2.edu/sympa/arc/perfsonar-user/2015-04/msg00016.html - # https://github.com/Homebrew/homebrew/pull/38212 - inreplace "configure", 'CFLAGS="-I$I2util_dir/include $CFLAGS"', 'CFLAGS="-I$with_I2util/include $CFLAGS"' - - system "./configure", "--disable-debug", - "--disable-dependency-tracking", - "--prefix=#{prefix}", - "--mandir=#{man}", - "--with-I2util=#{Formula["i2util"].opt_prefix}" - system "make", "install" - end - - test do - system "#{bin}/bwctl", "-V" - end -end From 02e3a552cf8226ce55179f9d2f5837e95572868b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:24 +0000 Subject: [PATCH 011/133] c14-cli: remove formula --- Formula/c14-cli.rb | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 Formula/c14-cli.rb diff --git a/Formula/c14-cli.rb b/Formula/c14-cli.rb deleted file mode 100644 index 351f15c639675c..00000000000000 --- a/Formula/c14-cli.rb +++ /dev/null @@ -1,35 +0,0 @@ -class C14Cli < Formula - desc "Manage your Online C14 archives from the command-line" - homepage "https://github.com/scaleway/c14-cli" - url "https://github.com/scaleway/c14-cli/archive/v0.5.0.tar.gz" - sha256 "b93960ee3ba516a91df9f81cf9b258858f8b5da6238d44a339966a5636643cb2" - license "MIT" - head "https://github.com/scaleway/c14-cli.git", branch: "master" - - bottle do - sha256 cellar: :any_skip_relocation, arm64_monterey: "be959caf78dfb802e870bf852573fc68a6059acf8c9126abe0c4ff3056d10124" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "46d65ade1ad6406be53f136729cbeca6892dd53f6958dfd7417e3773ac9d2041" - sha256 cellar: :any_skip_relocation, monterey: "0afdbb28cf73d92ce3d609f52705c34d71a8a6d0b27a5a088f135da0f8f6938f" - sha256 cellar: :any_skip_relocation, big_sur: "ad34da8ecf1f0563fb208247b904bc64c11ff98c681dc87744ea32e9093b5d19" - sha256 cellar: :any_skip_relocation, catalina: "137f585fd6aef342e9ac97ce6ffe819d30641727e7f9d621fa6d0124afeb46f5" - sha256 cellar: :any_skip_relocation, mojave: "245dc470e7883100e9b8d3dd229a5fbf2e0960993c7432be11e31ba7ef887f71" - sha256 cellar: :any_skip_relocation, high_sierra: "6b3262c0d209f01dd93a491c541ee7f9fedca9f6ff03203487394e0e4f5cdecf" - sha256 cellar: :any_skip_relocation, x86_64_linux: "a98a3f97b5f0d1429be76532f76c3a27b2d5c9d70330f8dd15320ea39ae480ba" - end - - # "C14 Classic has been discontinued" - disable! date: "2022-07-31", because: :repo_archived - - depends_on "go" => :build - - def install - system "go", "build", "-trimpath", "-o", bin/"c14", - "-ldflags", "-X github.com/online-net/c14-cli/pkg/version.GITCOMMIT=homebrew", - "./cmd/c14/" - end - - test do - output = shell_output(bin/"c14 help") - assert_match "Interact with C14 from the command line.", output - end -end From accde70b41442bbc4b10a2642d4b1ac388ee5940 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:25 +0000 Subject: [PATCH 012/133] cash-cli: remove formula --- Formula/cash-cli.rb | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 Formula/cash-cli.rb diff --git a/Formula/cash-cli.rb b/Formula/cash-cli.rb deleted file mode 100644 index 39d3fb1cc3c7b5..00000000000000 --- a/Formula/cash-cli.rb +++ /dev/null @@ -1,33 +0,0 @@ -require "language/node" - -class CashCli < Formula - desc "Convert currency rates directly from your terminal" - homepage "https://github.com/xxczaki/cash-cli" - url "https://registry.npmjs.org/cash-cli/-/cash-cli-4.2.1.tgz" - sha256 "593e2b02aab0e4369225a2c78a895d511ee491a1708e44d7aba63d9a897b000e" - license "MIT" - - bottle do - sha256 cellar: :any_skip_relocation, arm64_big_sur: "11e8b5cf3e977adc9dde41f31173b5a1403d72da4dcdefc277e31ea22cf30612" - sha256 cellar: :any_skip_relocation, big_sur: "17d36688d320b64dd29f64127d3c05e2cb03de8a3a4e45d4a18016ae58abc675" - sha256 cellar: :any_skip_relocation, catalina: "f22f6404f47adb8a6c0253362d61fb529da4d6a71045a2902407ed112329310d" - sha256 cellar: :any_skip_relocation, mojave: "7aa6e66eef5defae364924b00859ad4d884a15563c52488462ab489676f02141" - sha256 cellar: :any_skip_relocation, high_sierra: "903fde1135bcc71b70d74b852084897a2708f1d87ad00c200c793600472c42aa" - sha256 cellar: :any_skip_relocation, x86_64_linux: "e25e658a1049c359059b393257727a0ef80487633e0994a1451eb38e1f448955" - sha256 cellar: :any_skip_relocation, all: "71505f2abc52d632bcdf71e08c4fcebad55506a9f9b547c81a8dae39cac15a5b" - end - - disable! date: "2022-07-31", because: :unmaintained - - depends_on "node" - - def install - system "npm", "install", *Language::Node.std_npm_install_args(libexec) - bin.install_symlink Dir["#{libexec}/bin/*"] - end - - # Test is no longer fully accurate - test do - assert_match "Something went wrong :(", shell_output("#{bin}/cash 100 USD PLN CHF 2>&1", 1) - end -end From cee873df64ba200b7d78f9cf465b884024ae92af Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:25 +0000 Subject: [PATCH 013/133] ccze: remove formula --- Formula/ccze.rb | 45 --------------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 Formula/ccze.rb diff --git a/Formula/ccze.rb b/Formula/ccze.rb deleted file mode 100644 index c5fb61f00b033c..00000000000000 --- a/Formula/ccze.rb +++ /dev/null @@ -1,45 +0,0 @@ -class Ccze < Formula - desc "Robust and modular log colorizer" - homepage "https://packages.debian.org/wheezy/ccze" - url "https://deb.debian.org/debian/pool/main/c/ccze/ccze_0.2.1.orig.tar.gz" - sha256 "8263a11183fd356a033b6572958d5a6bb56bfd2dba801ed0bff276cfae528aa3" - license "GPL-2.0" - revision 1 - - bottle do - rebuild 2 - sha256 cellar: :any, arm64_monterey: "3f243fe0619da9ccf67d6b9546c93167e0993315fd9f280657b252be707b8fbc" - sha256 cellar: :any, arm64_big_sur: "b518785dfd98c9b08ae78f31fb72047d2fd26a8c3e96ceccdceaf6ba27dab97c" - sha256 cellar: :any, monterey: "4b65eb547ec1ad843ffddebbb23769f80f43258522e145b99803309871c568ae" - sha256 cellar: :any, big_sur: "c371f991787765a9ac035987d594b478a4a4bfcd1a1581990c3a86edfcdb5067" - sha256 cellar: :any, catalina: "1d7fe7ec73840e77d3f76f6f9d38757e4ab62d9d6a951e6d9ccf83782f73a29a" - sha256 cellar: :any, mojave: "f748556612ca69454aec71083d8cedbb3def5091c9663c7df046c597fe26048f" - sha256 cellar: :any, high_sierra: "fdc8abe565f7cec57dd3461d6840e2676c556fa54eaccada60df4958310ff8a7" - end - - # query via the last repo status change `https://api.github.com/repos/madhouse/ccze` - disable! date: "2022-07-31", because: :repo_archived - - depends_on "pcre" - - uses_from_macos "ncurses" - - def install - # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=823334 - inreplace "src/ccze-compat.c", "#if HAVE_SUBOPTARg", "#if HAVE_SUBOPTARG" - # Allegedly from Debian & fixes compiler errors on old OS X releases. - # https://github.com/Homebrew/legacy-homebrew/pull/20636 - inreplace "src/Makefile.in", "-Wreturn-type -Wswitch -Wmulticharacter", - "-Wreturn-type -Wswitch" - - system "./configure", "--prefix=#{prefix}", - "--with-builtins=all" - system "make", "install" - # Strange but true: using --mandir above causes the build to fail! - share.install prefix/"man" - end - - test do - system "#{bin}/ccze", "--help" - end -end From c2d9ea8699987ad90275a13307d26fe1c8bb8e0e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:25 +0000 Subject: [PATCH 014/133] codemod: remove formula --- Formula/codemod.rb | 49 ---------------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 Formula/codemod.rb diff --git a/Formula/codemod.rb b/Formula/codemod.rb deleted file mode 100644 index d1aae0db0883fb..00000000000000 --- a/Formula/codemod.rb +++ /dev/null @@ -1,49 +0,0 @@ -class Codemod < Formula - include Language::Python::Virtualenv - - desc "Large-scale codebase refactors assistant tool" - homepage "https://github.com/facebook/codemod" - url "https://files.pythonhosted.org/packages/9b/e3/cb31bfcf14f976060ea7b7f34135ebc796cde65eba923f6a0c4b71f15cc2/codemod-1.0.0.tar.gz" - sha256 "06e8c75f2b45210dd8270e30a6a88ae464b39abd6d0cab58a3d7bfd1c094e588" - license "Apache-2.0" - revision 5 - version_scheme 1 - head "https://github.com/facebook/codemod.git", branch: "master" - - bottle do - sha256 cellar: :any_skip_relocation, arm64_monterey: "fcf3de80ebdad83809c2f691f5fdcf8f07a395c55cee6fa9cc332a0847eead33" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "fcf3de80ebdad83809c2f691f5fdcf8f07a395c55cee6fa9cc332a0847eead33" - sha256 cellar: :any_skip_relocation, monterey: "b23035b282c74a9394e85d9a0223b1ddb677151c134da0468ad0713ab3658e7e" - sha256 cellar: :any_skip_relocation, big_sur: "b23035b282c74a9394e85d9a0223b1ddb677151c134da0468ad0713ab3658e7e" - sha256 cellar: :any_skip_relocation, catalina: "b23035b282c74a9394e85d9a0223b1ddb677151c134da0468ad0713ab3658e7e" - sha256 cellar: :any_skip_relocation, mojave: "b23035b282c74a9394e85d9a0223b1ddb677151c134da0468ad0713ab3658e7e" - sha256 cellar: :any_skip_relocation, x86_64_linux: "cf1dd93571d01049de387a06571f81968d273c3028f96888e76121c87b8d6dd7" - end - - disable! date: "2022-07-31", because: :repo_archived - - depends_on "python@3.10" - - def install - virtualenv_install_with_resources - end - - test do - # work around some codemod terminal bugs - ENV["TERM"] = "xterm" - ENV["LINES"] = "25" - ENV["COLUMNS"] = "80" - (testpath/"file1").write <<~EOS - foo - bar - potato - baz - EOS - (testpath/"file2").write <<~EOS - eeny potato meeny miny moe - EOS - system bin/"codemod", "--include-extensionless", "--accept-all", "potato", "pineapple" - assert_equal %w[foo bar pineapple baz], File.read("file1").lines.map(&:strip) - assert_equal ["eeny pineapple meeny miny moe"], File.read("file2").lines.map(&:strip) - end -end From 1bfd8620fb8863cfe3f3fd76eae17c449eeb21b8 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:26 +0000 Subject: [PATCH 015/133] conjure-up: remove formula --- Formula/conjure-up.rb | 294 ------------------------------------------ 1 file changed, 294 deletions(-) delete mode 100644 Formula/conjure-up.rb diff --git a/Formula/conjure-up.rb b/Formula/conjure-up.rb deleted file mode 100644 index 1eddbaeefacf19..00000000000000 --- a/Formula/conjure-up.rb +++ /dev/null @@ -1,294 +0,0 @@ -class ConjureUp < Formula - include Language::Python::Virtualenv - - desc "Big software deployments so easy it's almost magical" - homepage "https://conjure-up.io/" - url "https://github.com/conjure-up/conjure-up/archive/2.6.14.tar.gz" - sha256 "c9f115229a305ff40eae051f40db2ca18a3dc2bd377397e22786bba032feb79a" - license "MIT" - revision 4 - - bottle do - sha256 cellar: :any, arm64_monterey: "e4da8a68d5c475d4432d9706c22b5d8ab8b69cf20e7ced2c26d7686c273d2682" - sha256 cellar: :any, arm64_big_sur: "0d392e7fe4c46dcb50da2344dec0a11dc2141bca36c7342b311e813bbd021b03" - sha256 cellar: :any, monterey: "178493694c306b5aed3aa4f816fd94f82a90d0f28795c3f28497a5e9b4f97501" - sha256 cellar: :any, big_sur: "4aa49ccf202ed4bf0ecbb987b04fa30ee28bdc3e4c4bf37c396668269b23537e" - sha256 cellar: :any, catalina: "b9c8766c411e1d736d52714678420065071866d795360a5a8e21045d559714f7" - sha256 cellar: :any, mojave: "1e8d73fbff45339f18bb6fbbc1b00bd7bba4590feeb6a2980b8c68ddefb56c98" - sha256 cellar: :any_skip_relocation, x86_64_linux: "941ffccefb435bdb64de4f993b6c946383ef5fb79b399deae3ea76038fb027f7" - end - - disable! date: "2022-07-31", because: :repo_archived - - depends_on "awscli" - depends_on "jq" - depends_on "juju" - depends_on "juju-wait" - depends_on "libyaml" - depends_on "pwgen" - depends_on "python@3.10" - depends_on "redis" - - uses_from_macos "libffi" - - on_linux do - depends_on "pkg-config" => :build - end - - # list generated from the 'requirements.txt' file in the repository root - resource "aiofiles" do - url "https://files.pythonhosted.org/packages/94/c2/e3cb60c1b7d9478203d4514e2d33ea424ad9bb98e45b21d6225db93f25c9/aiofiles-0.4.0.tar.gz" - sha256 "021ea0ba314a86027c166ecc4b4c07f2d40fc0f4b3a950d1868a0f2571c2bbee" - end - - resource "asn1crypto" do - url "https://files.pythonhosted.org/packages/9f/3d/8beae739ed8c1c8f00ceac0ab6b0e97299b42da869e24cf82851b27a9123/asn1crypto-1.3.0.tar.gz" - sha256 "5a215cb8dc12f892244e3a113fe05397ee23c5c4ca7a69cd6e69811755efc42d" - end - - resource "bcrypt" do - url "https://files.pythonhosted.org/packages/fa/aa/025a3ab62469b5167bc397837c9ffc486c42a97ef12ceaa6699d8f5a5416/bcrypt-3.1.7.tar.gz" - sha256 "0b0069c752ec14172c5f78208f1863d7ad6755a6fae6fe76ec2c80d13be41e42" - end - - resource "certifi" do - url "https://files.pythonhosted.org/packages/62/85/7585750fd65599e88df0fed59c74f5075d4ea2fe611deceb95dd1c2fb25b/certifi-2019.9.11.tar.gz" - sha256 "e4f3620cfea4f83eedc95b24abd9cd56f3c4b146dd0177e83a21b4eb49e21e50" - end - - resource "cffi" do - url "https://files.pythonhosted.org/packages/66/6a/98e023b3d11537a5521902ac6b50db470c826c682be6a8c661549cb7717a/cffi-1.14.4.tar.gz" - sha256 "1a465cbe98a7fd391d47dce4b8f7e5b921e6cd805ef421d04f5f66ba8f06086c" - end - - resource "chardet" do - url "https://files.pythonhosted.org/packages/fc/bb/a5768c230f9ddb03acc9ef3f0d4a3cf93462473795d18e9535498c8f929d/chardet-3.0.4.tar.gz" - sha256 "84ab92ed1c4d4f16916e05906b6b75a6c0fb5db821cc65e70cbd64a3e2a5eaae" - end - - resource "cryptography" do - url "https://files.pythonhosted.org/packages/be/60/da377e1bed002716fb2d5d1d1cab720f298cb33ecff7bf7adea72788e4e4/cryptography-2.8.tar.gz" - sha256 "3cda1f0ed8747339bbdf71b9f38ca74c7b592f24f65cdb3ab3765e4b02871651" - end - - resource "env" do - url "https://github.com/battlemidget/env/archive/1.0.0.tar.gz" - sha256 "a26b5c973df792ecfc1fc6b18cf696ccaf4c02c918b2878e81c6d495debaa340" - end - - resource "idna" do - url "https://files.pythonhosted.org/packages/ad/13/eb56951b6f7950cadb579ca166e448ba77f9d24efc03edd7e55fa57d04b7/idna-2.8.tar.gz" - sha256 "c357b3f628cf53ae2c4c05627ecc484553142ca23264e593d327bcde5e9c3407" - end - - resource "Jinja2" do - url "https://files.pythonhosted.org/packages/93/ea/d884a06f8c7f9b7afbc8138b762e80479fb17aedbbe2b06515a12de9378d/Jinja2-2.10.1.tar.gz" - sha256 "065c4f02ebe7f7cf559e49ee5a95fb800a9e4528727aec6f24402a5374c65013" - end - - resource "juju" do - url "https://files.pythonhosted.org/packages/18/f2/714e253e7a8a0c697b2ccd11bc42622cf4aca69eaa599e00e8aa976cb540/juju-2.6.3.tar.gz" - sha256 "cbf0ed3c317dc98b307f74ff1cb99978857c008aeb05d8206c7313a28fdc207e" - end - - resource "juju-wait" do - url "https://files.pythonhosted.org/packages/d6/01/381cc24aabf820ff306b738a01b11aed5ac365a6438d46792f9fee2fe5f8/juju-wait-2.7.0.tar.gz" - sha256 "1e00cb75934defa50a2cc404574d4b633049f1fa011a197dfac33e3071840e98" - end - - resource "jujubundlelib" do - url "https://files.pythonhosted.org/packages/fe/6c/a70cd143c77c3a5d6935e6b9e46261e8cab4db7911691650d0bbde8a1a78/jujubundlelib-0.5.6.tar.gz" - sha256 "80e4fbc2b8593082f57de03703df8c5ba69ed1cf73519d499f5d49c51ec91949" - end - - resource "kv" do - url "https://files.pythonhosted.org/packages/c7/02/69ad28c7669bb1cebc0ca1bb92eaf07f6b3b67c4f79cf1dcc5082f18d7a4/kv-0.3.tar.gz" - sha256 "d40755e7358e2b2a624feb9e442b06168b04cf14abf4d7aa749725dfbc5034e5" - end - - resource "macaroonbakery" do - url "https://files.pythonhosted.org/packages/d0/22/ca60ef57ad0ea904292daaa1cb0f1e991303667f70794a97674f4a3695fa/macaroonbakery-1.2.3.tar.gz" - sha256 "bd27e7d2d98cb3dc1973d7b67b2a0c475fb005c0f9c35c04dbf9b272e98939ec" - - # Python 3.9 compatibility platform.linux_distribution - # Remove in next release - patch do - url "https://github.com/go-macaroon-bakery/py-macaroon-bakery/commit/78daf9d233e33da3f4bd2c34553843f82c09b21e.patch?full_index=1" - sha256 "70b36abee3f9d93afee7fb4d4cb9018370aad83f16a2ab7c5b5770aa1178be86" - end - end - - resource "MarkupSafe" do - url "https://files.pythonhosted.org/packages/b9/2e/64db92e53b86efccfaea71321f597fa2e1b2bd3853d8ce658568f7a13094/MarkupSafe-1.1.1.tar.gz" - sha256 "29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b" - end - - resource "melddict" do - url "https://files.pythonhosted.org/packages/89/99/c2dd9897264764544cb02de5fe0ffc277c091e973908b0894abe8900be7a/melddict-1.0.1.tar.gz" - sha256 "70ad91f4a7fb7ee32498e828604fe10c6ceb68a5779ca9d41e5469a6c24826ea" - end - - resource "oauthlib" do - url "https://files.pythonhosted.org/packages/fc/c7/829c73c64d3749da7811c06319458e47f3461944da9d98bb4df1cb1598c2/oauthlib-3.1.0.tar.gz" - sha256 "bee41cc35fcca6e988463cacc3bcb8a96224f470ca547e697b604cc697b2f889" - end - - resource "paramiko" do - url "https://files.pythonhosted.org/packages/54/68/dde7919279d4ecdd1607a7eb425a2874ccd49a73a5a71f8aa4f0102d3eb8/paramiko-2.6.0.tar.gz" - sha256 "f4b2edfa0d226b70bd4ca31ea7e389325990283da23465d572ed1f70a7583041" - end - - resource "PrettyTable" do - url "https://files.pythonhosted.org/packages/ef/30/4b0746848746ed5941f052479e7c23d2b56d174b82f4fd34a25e389831f5/prettytable-0.7.2.tar.bz2" - sha256 "853c116513625c738dc3ce1aee148b5b5757a86727e67eff6502c7ca59d43c36" - end - - resource "progressbar2" do - url "https://files.pythonhosted.org/packages/d1/5f/a370a1e05589665bcdb98ea3b270eed99d7c4c6d8ff56438ef1e564b3057/progressbar2-3.47.0.tar.gz" - sha256 "7538d02045a1fd3aa2b2834bfda463da8755bd3ff050edc6c5ddff3bc616215f" - end - - resource "protobuf" do - url "https://files.pythonhosted.org/packages/7d/d0/473a91ac2c59639b9fe2f3248d98b4d6084d4be8254a7b83f010feac8de9/protobuf-3.9.2.tar.gz" - sha256 "843f498e98ad1469ad54ecb4a7ccf48605a1c5d2bd26ae799c7a2cddab4a37ec" - end - - resource "psutil" do - url "https://files.pythonhosted.org/packages/1c/ca/5b8c1fe032a458c2c4bcbe509d1401dca9dda35c7fc46b36bb81c2834740/psutil-5.6.3.tar.gz" - sha256 "863a85c1c0a5103a12c05a35e59d336e1d665747e531256e061213e2e90f63f3" - end - - resource "pyasn1" do - url "https://files.pythonhosted.org/packages/ca/f8/2a60a2c88a97558bdd289b6dc9eb75b00bd90ff34155d681ba6dbbcb46b2/pyasn1-0.4.7.tar.gz" - sha256 "a9495356ca1d66ed197a0f72b41eb1823cf7ea8b5bd07191673e8147aecf8604" - end - - resource "pycparser" do - url "https://files.pythonhosted.org/packages/68/9e/49196946aee219aead1290e00d1e7fdeab8567783e83e1b9ab5585e6206a/pycparser-2.19.tar.gz" - sha256 "a988718abfad80b6b157acce7bf130a30876d27603738ac39f140993246b25b3" - end - - resource "pymacaroons" do - url "https://files.pythonhosted.org/packages/37/b4/52ff00b59e91c4817ca60210c33caf11e85a7f68f7b361748ca2eb50923e/pymacaroons-0.13.0.tar.gz" - sha256 "1e6bba42a5f66c245adf38a5a4006a99dcc06a0703786ea636098667d42903b8" - end - - resource "PyNaCl" do - url "https://files.pythonhosted.org/packages/61/ab/2ac6dea8489fa713e2b4c6c5b549cc962dd4a842b5998d9e80cf8440b7cd/PyNaCl-1.3.0.tar.gz" - sha256 "0c6100edd16fefd1557da078c7a31e7b7d7a52ce39fdca2bec29d4f7b6e7600c" - end - - resource "pyRFC3339" do - url "https://files.pythonhosted.org/packages/00/52/75ea0ae249ba885c9429e421b4f94bc154df68484847f1ac164287d978d7/pyRFC3339-1.1.tar.gz" - sha256 "81b8cbe1519cdb79bed04910dd6fa4e181faf8c88dff1e1b987b5f7ab23a5b1a" - end - - resource "python-utils" do - url "https://files.pythonhosted.org/packages/30/95/d01fbd09ced38a16b7357a1d6cefe1327b9273885bffd6371cbec3e23af7/python-utils-2.3.0.tar.gz" - sha256 "34aaf26b39b0b86628008f2ae0ac001b30e7986a8d303b61e1357dfcdad4f6d3" - end - - resource "pytz" do - url "https://files.pythonhosted.org/packages/27/c0/fbd352ca76050952a03db776d241959d5a2ee1abddfeb9e2a53fdb489be4/pytz-2019.2.tar.gz" - sha256 "26c0b32e437e54a18161324a2fca3c4b9846b74a8dccddd843113109e1116b32" - end - - resource "pyvmomi" do - url "https://files.pythonhosted.org/packages/eb/87/ebf153a3aafdac7c54c5578b6240d7930a8c0a1a21bdd98d271fd131673c/pyvmomi-6.7.3.tar.gz" - sha256 "d639d09eb3c7b118bc83b48472c27a4567dcc128dac0ac25ee2c03ed6afbe584" - end - - resource "PyYAML" do - url "https://files.pythonhosted.org/packages/e3/e8/b3212641ee2718d556df0f23f78de8303f068fe29cdaa7a91018849582fe/PyYAML-5.1.2.tar.gz" - sha256 "01adf0b6c6f61bd11af6e10ca52b7d4057dd0be0343eb9283c878cf3af56aee4" - end - - resource "raven" do - url "https://files.pythonhosted.org/packages/79/57/b74a86d74f96b224a477316d418389af9738ba7a63c829477e7a86dd6f47/raven-6.10.0.tar.gz" - sha256 "3fa6de6efa2493a7c827472e984ce9b020797d0da16f1db67197bcc23c8fae54" - end - - resource "requests" do - url "https://files.pythonhosted.org/packages/01/62/ddcf76d1d19885e8579acb1b1df26a852b03472c0e46d2b959a714c90608/requests-2.22.0.tar.gz" - sha256 "11e007a8a2aa0323f5a921e9e6a2d7e4e67d9877e85773fba9ba6419025cbeb4" - end - - resource "requests-oauthlib" do - url "https://files.pythonhosted.org/packages/de/a2/f55312dfe2f7a344d0d4044fdfae12ac8a24169dc668bd55f72b27090c32/requests-oauthlib-1.2.0.tar.gz" - sha256 "bd6533330e8748e94bf0b214775fed487d309b8b8fe823dc45641ebcd9a32f57" - end - - resource "sh" do - url "https://files.pythonhosted.org/packages/7c/71/199d27d3e7e78bf448bcecae0105a1d5b29173ffd2bbadaa95a74c156770/sh-1.12.14.tar.gz" - sha256 "b52bf5833ed01c7b5c5fb73a7f71b3d98d48e9b9b8764236237bdc7ecae850fc" - end - - resource "six" do - url "https://files.pythonhosted.org/packages/dd/bf/4138e7bfb757de47d1f4b6994648ec67a51efe58fa907c1e11e350cddfca/six-1.12.0.tar.gz" - sha256 "d16a0141ec1a18405cd4ce8b4613101da75da0e9a7aec5bdd4fa804d0e0eba73" - end - - resource "termcolor" do - url "https://files.pythonhosted.org/packages/8a/48/a76be51647d0eb9f10e2a4511bf3ffb8cc1e6b14e9e4fab46173aa79f981/termcolor-1.1.0.tar.gz" - sha256 "1d6d69ce66211143803fbc56652b41d73b4a400a2891d7bf7a1cdf4c02de613b" - end - - resource "theblues" do - url "https://files.pythonhosted.org/packages/53/8b/fe35c9ffa939db896aaad229e42376fd203d44a86329e8bf4af736aa9982/theblues-0.5.1.tar.gz" - sha256 "908b4c478fa4907a5e40512a0e78a646792a219ac3343e6cdb412cf29f6be58e" - end - - resource "toposort" do - url "https://files.pythonhosted.org/packages/e5/d8/9bc1598ddf74410beba243ffeaee8d0b3ca7e9ac5cefe77367da497433e1/toposort-1.5.tar.gz" - sha256 "dba5ae845296e3bf37b042c640870ffebcdeb8cd4df45adaa01d8c5476c557dd" - end - - resource "ubuntui" do - url "https://files.pythonhosted.org/packages/e8/18/a8cf8f69de1b5bfc135bec5f46a14832e3f9eae3abf7b7978602dc49ed4b/ubuntui-0.1.9.tar.gz" - sha256 "7249c2bfbdfe5bc4f86ac7a94fe606064f8f068f1436de35cca71b6cd6f57c78" - end - - resource "urllib3" do - url "https://files.pythonhosted.org/packages/ff/44/29655168da441dff66de03952880c6e2d17b252836ff1aa4421fba556424/urllib3-1.25.6.tar.gz" - sha256 "9a107b99a5393caf59c7aa3c1249c16e6879447533d0887f4336dde834c7be86" - end - - resource "urwid" do - url "https://files.pythonhosted.org/packages/c7/90/415728875c230fafd13d118512bde3184d810d7bf798a631abc05fac09d0/urwid-2.0.1.tar.gz" - sha256 "644d3e3900867161a2fc9287a9762753d66bd194754679adb26aede559bcccbc" - end - - resource "websockets" do - url "https://files.pythonhosted.org/packages/ba/60/59844a5cef2428cb752bd4f446b72095b1edee404a58c27e87cd12a141e2/websockets-7.0.tar.gz" - sha256 "08e3c3e0535befa4f0c4443824496c03ecc25062debbcf895874f8a0b4c97c9f" - end - - # See https://github.com/conjure-up/conjure-up/pull/1655 - patch do - url "https://github.com/conjure-up/conjure-up/commit/d2bf8ab8e71ff01321d0e691a8d3e3833a047678.patch?full_index=1" - sha256 "a2bc3249200c1a809c18ffea69c9292a937902dfe2c8b7ee10da4c7aa319469c" - end - - def install - # See https://github.com/conjure-up/conjure-up/pull/1655 - inreplace "conjureup/juju.py", "os.environ['JUJU']", "\"#{Formula["juju"].opt_bin}/juju\"" - inreplace "conjureup/juju.py", "os.environ['JUJU_WAIT']", "\"#{Formula["juju-wait"].opt_bin}/juju-wait\"" - - venv = virtualenv_create(libexec, "python3.10") - venv.pip_install resource("cffi") # needs to be installed prior to bcrypt - res = resources.to_set(&:name) - ["cffi"] - - res.each do |r| - venv.pip_install resource(r) - end - venv.pip_install_and_link buildpath - bin.install_symlink "#{libexec}/bin/kv-cli" - end - - test do - assert_match "conjure-up #{version}", shell_output("#{bin}/conjure-up --version") - system bin/"conjure-up", "openstack-base", "metal", "--show-env" - assert_predicate testpath/".cache/conjure-up-spells/spells-index.yaml", - :exist? - end -end From 5a265d305dda460da1c4025d5156dbea14af7d89 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:26 +0000 Subject: [PATCH 016/133] corectl: remove formula --- Formula/corectl.rb | 65 ---------------------------------------------- 1 file changed, 65 deletions(-) delete mode 100644 Formula/corectl.rb diff --git a/Formula/corectl.rb b/Formula/corectl.rb deleted file mode 100644 index e948bc4dd584ce..00000000000000 --- a/Formula/corectl.rb +++ /dev/null @@ -1,65 +0,0 @@ -class Corectl < Formula - desc "CoreOS over macOS made very simple" - homepage "https://github.com/TheNewNormal/corectl" - url "https://github.com/TheNewNormal/corectl/archive/v0.7.18.tar.gz" - sha256 "9bdf7bc8c6a7bd861e2b723c0566d0a093ed5d5caf370a065a1708132b4ab98a" - license "Apache-2.0" - revision 2 - head "https://github.com/TheNewNormal/corectl.git", branch: "golang" - - bottle do - sha256 cellar: :any, mojave: "b3d030cf97c738ef427b24cd492a7b746b738be84f234f5904eedbff14661570" - sha256 cellar: :any, high_sierra: "74527235d27b207a4b4331f16cfbb4f5b72b1dac36f9c9a4470626c32e882d5f" - sha256 cellar: :any, sierra: "89e963f61102d26d5fe756b06f50aa73bf9f827f81f92cefa2da6c195b7865da" - end - - disable! date: "2022-07-31", because: :unmaintained - - depends_on "aspcud" => :build - depends_on "go" => :build - depends_on "ocaml" => :build - depends_on "opam" => :build - depends_on "libev" - - def install - ENV["GOPATH"] = buildpath - - path = buildpath/"src/github.com/TheNewNormal/#{name}" - path.install Dir["*"] - - opamroot = path/"opamroot" - opamroot.mkpath - ENV["OPAMROOT"] = opamroot - ENV["OPAMYES"] = "1" - - args = [] - args << "VERSION=#{version}" if build.stable? - - cd path do - system "opam", "init", "--no-setup", "--disable-sandboxing" - system "opam", "switch", "create", "ocaml-base-compiler.4.05.0" - system "opam", "config", "exec", "--", "opam", "install", "uri.2.2.0", - "ocamlfind.1.8.0", "qcow-format.0.5.0", "conf-libev.4-11", "io-page.1.6.1", - "mirage-block-unix.2.4.0", "lwt.3.0.0" - (opamroot/"system/bin").install_symlink opamroot/"ocaml-base-compiler.4.05.0/bin/qcow-tool" - system "opam", "config", "exec", "--", "make", "tarball", *args - - bin.install Dir["bin/*"] - - prefix.install_metafiles - man1.install Dir["documentation/man/*.1"] - pkgshare.install "examples" - end - end - - def caveats - <<~EOS - Start the server daemon with: - corectld start - EOS - end - - test do - assert_match version.to_s, shell_output("#{bin}/corectl version") - end -end From 301fada289c064b131bd32428ee7aa267b6ff23e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:26 +0000 Subject: [PATCH 017/133] cquery: remove formula --- Formula/cquery.rb | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 Formula/cquery.rb diff --git a/Formula/cquery.rb b/Formula/cquery.rb deleted file mode 100644 index 1fe6403a26b3c7..00000000000000 --- a/Formula/cquery.rb +++ /dev/null @@ -1,37 +0,0 @@ -class Cquery < Formula - desc "C/C++ language server" - homepage "https://github.com/cquery-project/cquery" - # pull from git tag to get submodules - url "https://github.com/cquery-project/cquery.git", - tag: "v20180718", - revision: "b523aa928acf8ffb3de6b22c79db7366a9672489" - license "MIT" - head "https://github.com/cquery-project/cquery.git", branch: "master" - - bottle do - rebuild 1 - sha256 monterey: "325a5c3bfe7522d659813c0a3ced06aef240dae2876d815bf8f1341d08a69342" - sha256 big_sur: "92e25635f16f15c7c34222616b2c4f33ba5605e16c010fb3ee9be24a7c8adab9" - sha256 catalina: "fc7c73b7d9132c879399fc65a3556d9382d9617dd5e59bc10a51eaed228be5f8" - sha256 mojave: "89a896183bd8e6635146263dc09c0f26464845f91637e5ca9557558aaa034139" - sha256 high_sierra: "555804325cb45d5450c0d8b47096b71b8445af5370a9fc1e71acb1a6e86d3398" - sha256 x86_64_linux: "96e88524a7f8a2e63b5e8bc825e3ec59a052a0577a6b4b4b91943cf16ec160ae" - end - - disable! date: "2022-07-31", because: :repo_archived - - depends_on "cmake" => :build - depends_on "llvm" - - # error: 'shared_timed_mutex' is unavailable: introduced in macOS 10.12 - depends_on macos: :sierra - - def install - system "cmake", ".", "-DSYSTEM_CLANG=ON", *std_cmake_args - system "make", "install" - end - - test do - system bin/"cquery", "--test-unit" - end -end From e495331c5c93934d9b4d65b3b97f26b1fd7df32c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:27 +0000 Subject: [PATCH 018/133] cssembed: remove formula --- Formula/cssembed.rb | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 Formula/cssembed.rb diff --git a/Formula/cssembed.rb b/Formula/cssembed.rb deleted file mode 100644 index ec03b167aadffc..00000000000000 --- a/Formula/cssembed.rb +++ /dev/null @@ -1,18 +0,0 @@ -class Cssembed < Formula - desc "Automatic data URI embedding in CSS files" - homepage "https://www.nczonline.net/blog/2009/11/03/automatic-data-uri-embedding-in-css-files/" - url "https://github.com/downloads/nzakas/cssembed/cssembed-0.4.5.jar" - sha256 "8955016c0d32de8755d9ee33d365d1ad658a596aba48537a810ce62f3d32a1af" - license "MIT" - - bottle do - sha256 cellar: :any_skip_relocation, all: "bc0fbbbe0f39970282d0bbc7a3ec27abcff377cf6a4772948415ee9e018d509a" - end - - disable! date: "2022-07-31", because: :repo_archived - - def install - libexec.install "cssembed-#{version}.jar" - bin.write_jar_script libexec/"cssembed-#{version}.jar", "cssembed" - end -end From 2e0dde292847813fd96b720cedaf903207fc8990 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:27 +0000 Subject: [PATCH 019/133] cvsps: remove formula --- Formula/cvsps.rb | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 Formula/cvsps.rb diff --git a/Formula/cvsps.rb b/Formula/cvsps.rb deleted file mode 100644 index ebb7a10eb4459e..00000000000000 --- a/Formula/cvsps.rb +++ /dev/null @@ -1,33 +0,0 @@ -class Cvsps < Formula - desc "Create patchset information from CVS" - homepage "http://www.catb.org/~esr/cvsps/" - url "http://www.catb.org/~esr/cvsps/cvsps-3.13.tar.gz" - sha256 "5f078a6e02c394f663893751f128caf643fe00a30b559e87db6f45190c623799" - license "GPL-2.0-only" - - bottle do - rebuild 1 - sha256 cellar: :any_skip_relocation, arm64_monterey: "4652158b96a3e898c7bdaa6fed360ebe8b2f2c5f63ad8d81c412743c5d6c8b68" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "6ae50a7bef6cc5545507ef050848d0a9d487dc9b91ff324695c78bdfeb1eee36" - sha256 cellar: :any_skip_relocation, monterey: "90f1a9930e27e3779c7a9154798a7db931cc6aac3e2327f15283a0034d98f7fe" - sha256 cellar: :any_skip_relocation, big_sur: "e7e61acca8f1ee7d1489615e38299d49fafad781a0efabc45a60a35482deef9a" - sha256 cellar: :any_skip_relocation, catalina: "98ee59741e5e48ef4ca18f5b0b08cfc8eab19d8e96cebcb75e989334add7411f" - sha256 cellar: :any_skip_relocation, mojave: "8901d9d03137e3ebc2dfa52eeec1b6fb5278aa21fcd2075302ea9c9e20ff1db5" - sha256 cellar: :any_skip_relocation, high_sierra: "d67b00e52b9688d1249d996eaf94a728691f0b171b1708e83bba07508939d376" - end - - # http://www.catb.org/~esr/cvsps/ - # Deprecation warning: this code has been end-of-lifed by its maintainer. Use cvs-fast-export instead. - disable! date: "2022-07-31", because: :deprecated_upstream - - depends_on "asciidoc" - depends_on "docbook" - - def install - # otherwise asciidoc will fail to find docbook - ENV["XML_CATALOG_FILES"] = etc/"xml/catalog" - - system "make", "all", "cvsps.1" - system "make", "install", "prefix=#{prefix}" - end -end From b1a6d6da1a895a3cafcfb7569ece0781cb332cc6 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:28 +0000 Subject: [PATCH 020/133] cwlogs: remove formula --- Formula/cwlogs.rb | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 Formula/cwlogs.rb diff --git a/Formula/cwlogs.rb b/Formula/cwlogs.rb deleted file mode 100644 index 7440d5c15e0ca5..00000000000000 --- a/Formula/cwlogs.rb +++ /dev/null @@ -1,43 +0,0 @@ -class Cwlogs < Formula - desc "CLI tool for reading logs from Cloudwatch Logs" - homepage "https://github.com/segmentio/cwlogs" - url "https://github.com/segmentio/cwlogs/archive/v1.2.0.tar.gz" - sha256 "3f7b56b49c42c1de0e697fc391abad07b03434cff36b153249dd2af3107e064e" - license "MIT" - - bottle do - rebuild 1 - sha256 cellar: :any_skip_relocation, arm64_monterey: "8af6a596d63797973d316cd0d6b8151f939209506242af66fbab37b7a12c2c3c" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "8af6a596d63797973d316cd0d6b8151f939209506242af66fbab37b7a12c2c3c" - sha256 cellar: :any_skip_relocation, monterey: "8768f31395820e0c298fd54ba9889e157c8107bfa0d094fa77bf84de660c9d9e" - sha256 cellar: :any_skip_relocation, big_sur: "40fdfc79d6533963798aed789fe8026f30d44e87c3e6e9ecd602d531ed1fb7c2" - sha256 cellar: :any_skip_relocation, catalina: "975da66abe1ce9ff42eb63453c52acc31aeeffff435a2c0aab9d1bd3008be280" - sha256 cellar: :any_skip_relocation, mojave: "d0e1bda71db260a905c5f88da3fce0074ab59576ef6c12948eeae2ae5faf6435" - sha256 cellar: :any_skip_relocation, x86_64_linux: "30b6f2f4d84caf8e71cfb50c710030af0321585ef3de7ba3e3055381f16b7a6e" - end - - # https://github.com/segmentio/cwlogs/issues/37 - disable! date: "2022-07-31", because: :unmaintained - - depends_on "go" => :build - depends_on "govendor" => :build - - def install - ENV["GOPATH"] = buildpath - ENV["CGO_ENABLED"] = "0" - ENV["GO111MODULE"] = "auto" - - path = buildpath/"src/github.com/segmentio/cwlogs" - path.install Dir["{*,.git}"] - - cd "src/github.com/segmentio/cwlogs" do - system "govendor", "sync" - system "go", "build", *std_go_args(ldflags: "-X main.Version=#{version}") - end - end - - test do - output = shell_output("#{bin}/cwlogs help") - assert_match "cloudwatch logs", output - end -end From dfa6ea47b2f8cfd20cefccfbc1c9150a5d66ec08 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:28 +0000 Subject: [PATCH 021/133] dgraph: remove formula --- Formula/dgraph.rb | 78 ----------------------------------------------- 1 file changed, 78 deletions(-) delete mode 100644 Formula/dgraph.rb diff --git a/Formula/dgraph.rb b/Formula/dgraph.rb deleted file mode 100644 index 4428e04062c97e..00000000000000 --- a/Formula/dgraph.rb +++ /dev/null @@ -1,78 +0,0 @@ -class Dgraph < Formula - desc "Fast, Distributed Graph DB" - homepage "https://dgraph.io" - url "https://github.com/dgraph-io/dgraph/archive/v20.11.3.tar.gz" - sha256 "cf0ed5d61dff1d0438dc5b211972d8f64b40dcadebf35355060918c3cf0a6e62" - # Source code in this repository is variously licensed under the Apache Public License 2.0 (APL) - # and the Dgraph Community License (DCL). A copy of each license can be found in the licenses directory. - license "Apache-2.0" - head "https://github.com/dgraph-io/dgraph.git", branch: "master" - - bottle do - sha256 cellar: :any_skip_relocation, arm64_monterey: "88693da8a26b8104d2362cc17f6f4311de51d96d1e0bd608e9042f77cdd6bf15" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "28d00b7cc12ab6eb34da4240b7075ee322ff51cd94223d7a8892c823f91bf5cc" - sha256 cellar: :any_skip_relocation, monterey: "e9e8e32d5a6def3565d2d5f68dd1b6cf2a5d40f768fad0862213d24d1493a03b" - sha256 cellar: :any_skip_relocation, big_sur: "9e2da2c025d3b8f89d4716be724942f7c284c9d0ac70c77fed7c287a31abdb56" - sha256 cellar: :any_skip_relocation, catalina: "9d2545b3b0e293d8e48b4c23887bef147f1f1444735dacbf70eb9585bd25502e" - sha256 cellar: :any_skip_relocation, mojave: "57fa2f974e4e0313fb58f7e35e2d9547a4d43319af7e84a4fc6619238e862885" - end - - disable! date: "2022-07-31", because: :unsupported - - depends_on "go" => :build - depends_on "jemalloc" - - def install - ENV["GOBIN"] = bin - system "make", "HAS_JEMALLOC=jemalloc", "oss_install" - end - - test do - fork do - exec bin/"dgraph", "zero" - end - fork do - exec bin/"dgraph", "alpha", "--lru_mb=1024" - end - sleep 10 - - (testpath/"mutate.json").write <<~EOS - { - "set": [ - { - "name": "Karthic", - "age": 28, - "follows": { - "name": "Jessica", - "age": 31 - } - } - ] - } - EOS - - (testpath/"query.graphql").write <<~EOS - { - people(func: has(name), orderasc: name) { - name - age - } - } - EOS - - system "curl", "-s", "-H", "Content-Type: application/json", - "-XPOST", "--data-binary", "@#{testpath}/mutate.json", - "http://localhost:8080/mutate?commitNow=true" - - command = %W[ - curl -s -H "Content-Type: application/graphql+-" - -XPOST --data-binary @#{testpath}/query.graphql - http://localhost:8080/query - ] - response = JSON.parse(shell_output(command.join(" "))) - expected = [{ "name" => "Jessica", "age" => 31 }, { "name" => "Karthic", "age" => 28 }] - assert_equal response["data"]["people"], expected - ensure - system "pkill", "-9", "-f", "dgraph" - end -end From c0b5b6b38fb2b15a826467134a6a2e4ab83a9adb Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:28 +0000 Subject: [PATCH 022/133] dnsprobe: remove formula --- Formula/dnsprobe.rb | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 Formula/dnsprobe.rb diff --git a/Formula/dnsprobe.rb b/Formula/dnsprobe.rb deleted file mode 100644 index 8786ca733f2c31..00000000000000 --- a/Formula/dnsprobe.rb +++ /dev/null @@ -1,34 +0,0 @@ -class Dnsprobe < Formula - desc "DNS query and resolution tool" - homepage "https://github.com/projectdiscovery/dnsprobe" - url "https://github.com/projectdiscovery/dnsprobe/archive/v1.0.3.tar.gz" - sha256 "ab57f348177594018cc5b5b5e808710c88e597888c6d504cb10554d60627eae1" - license "MIT" - head "https://github.com/projectdiscovery/dnsprobe.git", branch: "master" - - bottle do - sha256 cellar: :any_skip_relocation, arm64_monterey: "8a164e0990055bf9c9a0007ad586e2fe71da6123ce295f9a28380dca030694fd" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "740bcb0256a1da0e2d89d8a61e82e30eaecef7ac9766ab69b48cc2d5b678858e" - sha256 cellar: :any_skip_relocation, monterey: "24250ee959e96336d7f4100605345459abfbaddb1c0483c50e17a793c8259507" - sha256 cellar: :any_skip_relocation, big_sur: "4753d6e37449dcf0f823edd0b557526ca8bf9c65da3359d73fef9307e774e6b2" - sha256 cellar: :any_skip_relocation, catalina: "e2980ba58e116e7c9029c9255451dd97b65da09a885373afe86c9e860d493650" - sha256 cellar: :any_skip_relocation, mojave: "3cf8604d9869f22c722dfa8f0742f12124ba84a160579f0e7964ff7e697631f0" - sha256 cellar: :any_skip_relocation, high_sierra: "f6c2b6edb0f8c482488b325400f1d712687a369c8b8fd7fb9e0d0cba1def2273" - sha256 cellar: :any_skip_relocation, x86_64_linux: "badafaac8f8da8392fc966e9339ef5989e851bef8901655705de1cdd4e45e740" - end - - # repo deprecated in favor of `projectdiscovery/dnsx` - disable! date: "2022-07-31", because: :repo_archived - - depends_on "go" => :build - - def install - system "go", "build", *std_go_args - end - - test do - (testpath/"domains.txt").write "docs.brew.sh" - assert_match "docs.brew.sh homebrew.github.io.", - shell_output("#{bin}/dnsprobe -l domains.txt -r CNAME") - end -end From 84c79a5933728880e0750a47a65c7d3109bc803a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:29 +0000 Subject: [PATCH 023/133] docker-machine-driver-xhyve: remove formula --- Formula/docker-machine-driver-xhyve.rb | 61 -------------------------- 1 file changed, 61 deletions(-) delete mode 100644 Formula/docker-machine-driver-xhyve.rb diff --git a/Formula/docker-machine-driver-xhyve.rb b/Formula/docker-machine-driver-xhyve.rb deleted file mode 100644 index 632ed417312565..00000000000000 --- a/Formula/docker-machine-driver-xhyve.rb +++ /dev/null @@ -1,61 +0,0 @@ -class DockerMachineDriverXhyve < Formula - desc "Docker Machine driver for xhyve" - homepage "https://github.com/machine-drivers/docker-machine-driver-xhyve" - url "https://github.com/machine-drivers/docker-machine-driver-xhyve.git", - tag: "v0.4.0", - revision: "829c0968dac18547636f3ad6aa5ef83677f48267" - license "BSD-3-Clause" - head "https://github.com/machine-drivers/docker-machine-driver-xhyve.git", branch: "master" - - bottle do - rebuild 1 - sha256 cellar: :any_skip_relocation, catalina: "5c0cf9c40831d43e094ec493d9c4598019f7c9a9b3daabce0369777fa17f77aa" - sha256 cellar: :any_skip_relocation, mojave: "b7e9879c8c5c734da5bd83ae00496dc26dcf8133e354662e7b6a8846bfbfc989" - sha256 cellar: :any_skip_relocation, high_sierra: "282868271a1e504ca8643bb6507eb2f99f8f8703d64050886e00175182b35668" - end - - # xhyve is no longer used by Docker, replaced by hyperkit - disable! date: "2022-07-31", because: :does_not_build - - depends_on "go" => :build - depends_on "docker-machine" - - def install - (buildpath/"gopath/src/github.com/zchee/docker-machine-driver-xhyve").install( - Dir["{*,.git,.gitignore,.gitmodules}"], - ) - - ENV["GOPATH"] = "#{buildpath}/gopath" - build_root = buildpath/"gopath/src/github.com/zchee/docker-machine-driver-xhyve" - build_tags = "lib9p" - - cd build_root do - git_hash = Utils.git_short_head - git_hash = "HEAD-#{git_hash}" if build.head? - - go_ldflags = "-w -s -X 'github.com/zchee/docker-machine-driver-xhyve/xhyve.GitCommit=Homebrew#{git_hash}'" - ENV["GO_LDFLAGS"] = go_ldflags - ENV["GO_BUILD_TAGS"] = build_tags - - system "make", "build", "CC=#{ENV.cc}" - - bin.install "bin/docker-machine-driver-xhyve" - prefix.install_metafiles - end - end - - def caveats - <<~EOS - This driver requires superuser privileges to access the hypervisor. To - enable, execute - sudo chown root:wheel #{opt_prefix}/bin/docker-machine-driver-xhyve - sudo chmod u+s #{opt_prefix}/bin/docker-machine-driver-xhyve - EOS - end - - test do - assert_match "xhyve-memory-size", shell_output( - "#{Formula["docker-machine"].bin}/docker-machine create --driver xhyve -h", - ) - end -end From ec2da645bb7ba9f9fedb9558afbd3125536e0161 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:29 +0000 Subject: [PATCH 024/133] docker-swarm: remove formula --- Formula/docker-swarm.rb | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 Formula/docker-swarm.rb diff --git a/Formula/docker-swarm.rb b/Formula/docker-swarm.rb deleted file mode 100644 index c57f70e3a27006..00000000000000 --- a/Formula/docker-swarm.rb +++ /dev/null @@ -1,40 +0,0 @@ -class DockerSwarm < Formula - desc "Turn a pool of Docker hosts into a single, virtual host" - homepage "https://github.com/docker/classicswarm" - url "https://github.com/docker/classicswarm/archive/v1.2.9.tar.gz" - sha256 "13d0d39dbd2bccb32016e6aa782da67b6207f203e253e06b0f6eb4f25da85474" - license "Apache-2.0" - head "https://github.com/docker/classicswarm.git", branch: "master" - - bottle do - rebuild 1 - sha256 cellar: :any_skip_relocation, arm64_monterey: "6e5d1386efa30e9116f4f4d18be99f48d0953f45ae1b1e0c2634f7592b8e125d" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "63847c7c545c26275220e214dbf7af426ddd5ac11aaeabd9586b70d22768d764" - sha256 cellar: :any_skip_relocation, monterey: "16b940f3f84c2edb617fd758284cf953c0903c0eb713b631922de2e0efcb4fc1" - sha256 cellar: :any_skip_relocation, catalina: "e2d8d18ea613fd94a32e0918f29238836b89dd32464e8f6e1145e744348ab0cd" - sha256 cellar: :any_skip_relocation, mojave: "d3cc672187adb5d73dfb2b6a90326de6ad228ccf48141ef3242447ca0416aee3" - sha256 cellar: :any_skip_relocation, high_sierra: "29e47d799c8e2d2977dd58444095a51c9ac7f261f56eeb5d5b6f71ed299e7533" - sha256 cellar: :any_skip_relocation, x86_64_linux: "352ec826e8b8f007c10cc3db1a5a10fd85a7994936b5e2abc190e64912bcc51c" - end - - # "Classic Swarm has been archived and is no longer actively developed. You - # may want to use the Swarm mode built into the Docker Engine instead, or - # another orchestration system." - disable! date: "2022-07-31", because: :repo_archived - - depends_on "go" => :build - - def install - ENV["GOPATH"] = buildpath - ENV["GO111MODULE"] = "auto" - (buildpath/"src/github.com/docker/swarm").install buildpath.children - cd "src/github.com/docker/swarm" do - system "go", "build", "-o", bin/"docker-swarm" - prefix.install_metafiles - end - end - - test do - assert_match version.to_s, shell_output("#{bin}/docker-swarm --version") - end -end From 31ba58944be3c2f34e4ff3aaf7631a26aa87acc1 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:29 +0000 Subject: [PATCH 025/133] docker2aci: remove formula --- Formula/docker2aci.rb | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 Formula/docker2aci.rb diff --git a/Formula/docker2aci.rb b/Formula/docker2aci.rb deleted file mode 100644 index 2056ee998995b3..00000000000000 --- a/Formula/docker2aci.rb +++ /dev/null @@ -1,34 +0,0 @@ -class Docker2aci < Formula - desc "Library and CLI tool to convert Docker images to ACIs" - homepage "https://github.com/appc/docker2aci" - url "https://github.com/appc/docker2aci/archive/v0.17.2.tar.gz" - sha256 "43cb18a3647ca8bae48a283fa3359e9555ab7a366c7ee9ef8a561797cebe2593" - license "Apache-2.0" - - bottle do - sha256 cellar: :any_skip_relocation, catalina: "88e274de48f853b78bf647cf5860f74cb99ef4ca3a99c9cbb8500318e20952bc" - sha256 cellar: :any_skip_relocation, mojave: "38c55da3d7dae54ac615b1ef70d3b793ace880a3df8324c94586cbdcb0069a47" - sha256 cellar: :any_skip_relocation, high_sierra: "786e30d746607eea372c8eaa2705f850320dd74e28385fd3b75946e6e8c8e52d" - sha256 cellar: :any_skip_relocation, sierra: "6cfeb751ff7db4e703938e2bfc4e28d4ec9a30e59261e75aa5adf690d0f33061" - sha256 cellar: :any_skip_relocation, el_capitan: "b1a61fc4d329ef1e3ad97ea701e2c0be392f29e8d4a8bd2f1934bf7bac620121" - end - - # See https://github.com/rkt/rkt/issues/4024 - disable! date: "2022-07-31", because: :repo_archived - - depends_on "go" => :build - - def install - ENV["GOPATH"] = buildpath - (buildpath/"src/github.com/appc").mkpath - ln_s buildpath, buildpath/"src/github.com/appc/docker2aci" - system "go", "build", "-o", bin/"docker2aci", "-ldflags", - "-X github.com/appc/docker2aci/lib.Version=#{version}", - "github.com/appc/docker2aci" - end - - test do - assert_match version.to_s, shell_output("#{bin}/docker2aci -version") - system "#{bin}/docker2aci", "docker://busybox" - end -end From 80ee1a6e45af2a6c2a350eb5d68d67d952f87e03 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:30 +0000 Subject: [PATCH 026/133] ec2-api-tools: remove formula --- Formula/ec2-api-tools.rb | 51 ---------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 Formula/ec2-api-tools.rb diff --git a/Formula/ec2-api-tools.rb b/Formula/ec2-api-tools.rb deleted file mode 100644 index 1a90c59c48f3e7..00000000000000 --- a/Formula/ec2-api-tools.rb +++ /dev/null @@ -1,51 +0,0 @@ -class Ec2ApiTools < Formula - desc "Client interface to the Amazon EC2 web service" - homepage "https://aws.amazon.com/developertools/351" - url "https://ec2-downloads.s3.amazonaws.com/ec2-api-tools-1.7.5.1.zip" - sha256 "851abe30403ee1c86a3ebdddf5b4bffd7ef4b587110530feadf00954d9ae2f3a" - revision 1 - - bottle do - sha256 cellar: :any_skip_relocation, arm64_monterey: "2d0cd307194a156731087035900c915777ac2e6068c879088fe41b754a260766" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "2d0cd307194a156731087035900c915777ac2e6068c879088fe41b754a260766" - sha256 cellar: :any_skip_relocation, monterey: "b7cf3620699017c6f0b7ba925511319037313fa447361cb04d3add6d15de3c27" - sha256 cellar: :any_skip_relocation, big_sur: "b7cf3620699017c6f0b7ba925511319037313fa447361cb04d3add6d15de3c27" - sha256 cellar: :any_skip_relocation, catalina: "b7cf3620699017c6f0b7ba925511319037313fa447361cb04d3add6d15de3c27" - sha256 cellar: :any_skip_relocation, mojave: "b7cf3620699017c6f0b7ba925511319037313fa447361cb04d3add6d15de3c27" - sha256 cellar: :any_skip_relocation, x86_64_linux: "2d0cd307194a156731087035900c915777ac2e6068c879088fe41b754a260766" - end - - # Deprecated upstream somewhere between 2017-12-24 and 2018-09-09 here: - # https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Welcome.html - # The current version (1.7.5.1) is from 2015-09-08. - disable! date: "2022-07-31", because: :deprecated_upstream - - depends_on "openjdk" - - def install - env = { JAVA_HOME: Formula["openjdk"].opt_prefix, EC2_HOME: libexec } - rm Dir["bin/*.cmd"] # Remove Windows versions - libexec.install Dir["*"] - Pathname.glob("#{libexec}/bin/*") do |file| - next if file.directory? - - basename = file.basename - next if basename.to_s == "service" - - (bin/basename).write_env_script file, env - end - end - - def caveats - <<~EOS - Before you can use these tools you must export some variables to your $SHELL. - export AWS_ACCESS_KEY="" - export AWS_SECRET_KEY="" - export AWS_CREDENTIAL_FILE="" - EOS - end - - test do - assert_match version.to_s, shell_output("#{bin}/ec2-version") - end -end From bacdde7bd15705258eb3602696d4b4283dbdcc88 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:30 +0000 Subject: [PATCH 027/133] echoprint-codegen: remove formula --- Formula/echoprint-codegen.rb | 37 ------------------------------------ 1 file changed, 37 deletions(-) delete mode 100644 Formula/echoprint-codegen.rb diff --git a/Formula/echoprint-codegen.rb b/Formula/echoprint-codegen.rb deleted file mode 100644 index 64080e73dcb5b3..00000000000000 --- a/Formula/echoprint-codegen.rb +++ /dev/null @@ -1,37 +0,0 @@ -class EchoprintCodegen < Formula - desc "Codegen for Echoprint" - homepage "https://github.com/spotify/echoprint-codegen" - url "https://github.com/echonest/echoprint-codegen/archive/v4.12.tar.gz" - sha256 "dc80133839195838975757c5f6cada01d8e09d0aac622a8a4aa23755a5a9ae6d" - license "MIT" - revision 2 - head "https://github.com/echonest/echoprint-codegen.git", branch: "master" - - bottle do - rebuild 2 - sha256 cellar: :any, arm64_big_sur: "45bd6c87a9d59b80d5912ea79dd62ea7f6367419529f2f4c93713ddc385a4b3b" - sha256 cellar: :any, big_sur: "de3efebbd14d58d2d98757f76e0a2f96f2fe9c29ee486f15aeaf0eac6a835a13" - sha256 cellar: :any, catalina: "5772abd774aa57f8584a46f0aad46d51f31196ff32e6e5e2601e4129002a40bc" - sha256 cellar: :any, mojave: "6c7203190f4d0a0e9d62a376fe60daa02ab17b7f0523db26979802719dae3ba7" - sha256 cellar: :any_skip_relocation, x86_64_linux: "0ede691a8c9591206e178e97174fe8e647d428d6a6f208233396ec1a6c06ff41" - end - - disable! date: "2022-07-31", because: :unmaintained - - depends_on "boost" - depends_on "ffmpeg" - depends_on "taglib" - - # Removes unnecessary -framework vecLib; can be removed in the next release - patch do - url "https://github.com/echonest/echoprint-codegen/commit/5ac72c40ae920f507f3f4da8b8875533bccf5e02.patch?full_index=1" - sha256 "1c7ffdfa498bde0da8b1b20ace5c67238338648175a067f1b129d2c726ab0fd1" - end - - def install - # Further Makefile fixes for https://github.com/spotify/echoprint-codegen/issues/97#issuecomment-776068938 - inreplace "src/Makefile", "-lSystem", "" - inreplace "src/Makefile", "-framework Accelerate", "" - system "make", "-C", "src", "install", "PREFIX=#{prefix}" - end -end From dc5210dada9f60a48a0c185206adaa3768ff4cf3 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:31 +0000 Subject: [PATCH 028/133] elasticsearch: remove formula --- Formula/elasticsearch.rb | 133 --------------------------------------- 1 file changed, 133 deletions(-) delete mode 100644 Formula/elasticsearch.rb diff --git a/Formula/elasticsearch.rb b/Formula/elasticsearch.rb deleted file mode 100644 index 0c784dd8f3c91d..00000000000000 --- a/Formula/elasticsearch.rb +++ /dev/null @@ -1,133 +0,0 @@ -class Elasticsearch < Formula - desc "Distributed search & analytics engine" - homepage "https://www.elastic.co/products/elasticsearch" - # NOTE: Do not bump version to one with a non-open-source license - url "https://github.com/elastic/elasticsearch/archive/v7.10.2.tar.gz" - sha256 "bdb7811882a0d9436ac202a947061b565aa71983c72e1c191e7373119a1cdd1c" - license "Apache-2.0" - - bottle do - sha256 cellar: :any_skip_relocation, big_sur: "e199fbcb913252e2f60134de2dfff98bff9ae3f1a28f30f3f44c8b0174e189fb" - sha256 cellar: :any_skip_relocation, catalina: "6bb47c36590116e78d14b1d3bdce0aa091867f5a30007018b9fcac14ca0c3d8b" - sha256 cellar: :any_skip_relocation, mojave: "dbc33bf97783ffae45b4438219a8e4586b82f9939d7c9cdb2398bace6f8ade8b" - sha256 cellar: :any_skip_relocation, x86_64_linux: "4a493d6580c9e3c652ea498b26ca795db6ab56dfeedab8660aa26dd4474feca1" - end - - # elasticsearch will be relicensed before v7.11. - # https://www.elastic.co/blog/licensing-change - disable! date: "2022-07-31", because: "is switching to an incompatible license. Check out `opensearch` instead" - - depends_on "gradle@6" => :build - depends_on "openjdk" - - def cluster_name - "elasticsearch_#{ENV["USER"]}" - end - - def install - os = OS.kernel_name.downcase - system "gradle", ":distribution:archives:oss-no-jdk-#{os}-tar:assemble" - - mkdir "tar" do - # Extract the package to the tar directory - system "tar", "--strip-components=1", "-xf", - Dir["../distribution/archives/oss-no-jdk-#{os}-tar/build/distributions/elasticsearch-oss-*.tar.gz"].first - - # Install into package directory - libexec.install "bin", "lib", "modules" - - # Set up Elasticsearch for local development: - inreplace "config/elasticsearch.yml" do |s| - # 1. Give the cluster a unique name - s.gsub!(/#\s*cluster\.name: .*/, "cluster.name: #{cluster_name}") - - # 2. Configure paths - s.sub!(%r{#\s*path\.data: /path/to.+$}, "path.data: #{var}/lib/elasticsearch/") - s.sub!(%r{#\s*path\.logs: /path/to.+$}, "path.logs: #{var}/log/elasticsearch/") - end - - inreplace "config/jvm.options", %r{logs/gc.log}, "#{var}/log/elasticsearch/gc.log" - - # Move config files into etc - (etc/"elasticsearch").install Dir["config/*"] - end - - inreplace libexec/"bin/elasticsearch-env", - "if [ -z \"$ES_PATH_CONF\" ]; then ES_PATH_CONF=\"$ES_HOME\"/config; fi", - "if [ -z \"$ES_PATH_CONF\" ]; then ES_PATH_CONF=\"#{etc}/elasticsearch\"; fi" - - bin.install libexec/"bin/elasticsearch", - libexec/"bin/elasticsearch-keystore", - libexec/"bin/elasticsearch-plugin", - libexec/"bin/elasticsearch-shard" - bin.env_script_all_files libexec/"bin", Language::Java.overridable_java_home_env - end - - def post_install - # Make sure runtime directories exist - (var/"lib/elasticsearch").mkpath - (var/"log/elasticsearch").mkpath - ln_s etc/"elasticsearch", libexec/"config" unless (libexec/"config").exist? - (var/"elasticsearch/plugins").mkpath - ln_s var/"elasticsearch/plugins", libexec/"plugins" unless (libexec/"plugins").exist? - # fix test not being able to create keystore because of sandbox permissions - system bin/"elasticsearch-keystore", "create" unless (etc/"elasticsearch/elasticsearch.keystore").exist? - end - - def caveats - <<~EOS - Data: #{var}/lib/elasticsearch/ - Logs: #{var}/log/elasticsearch/#{cluster_name}.log - Plugins: #{var}/elasticsearch/plugins/ - Config: #{etc}/elasticsearch/ - EOS - end - - plist_options manual: "elasticsearch" - - def plist - <<~EOS - - - - - KeepAlive - - Label - #{plist_name} - ProgramArguments - - #{opt_bin}/elasticsearch - - EnvironmentVariables - - - RunAtLoad - - WorkingDirectory - #{var} - StandardErrorPath - #{var}/log/elasticsearch.log - StandardOutPath - #{var}/log/elasticsearch.log - - - EOS - end - - test do - port = free_port - (testpath/"data").mkdir - (testpath/"logs").mkdir - fork do - exec bin/"elasticsearch", "-Ehttp.port=#{port}", - "-Epath.data=#{testpath}/data", - "-Epath.logs=#{testpath}/logs" - end - sleep 20 - output = shell_output("curl -s -XGET localhost:#{port}/") - assert_equal "oss", JSON.parse(output)["version"]["build_flavor"] - - system "#{bin}/elasticsearch-plugin", "list" - end -end From ed5745262d53072d212e859301006d4ca012def9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:31 +0000 Subject: [PATCH 029/133] fbi-servefiles: remove formula --- Formula/fbi-servefiles.rb | 62 --------------------------------------- 1 file changed, 62 deletions(-) delete mode 100644 Formula/fbi-servefiles.rb diff --git a/Formula/fbi-servefiles.rb b/Formula/fbi-servefiles.rb deleted file mode 100644 index 2277c1ba4fe2bd..00000000000000 --- a/Formula/fbi-servefiles.rb +++ /dev/null @@ -1,62 +0,0 @@ -class FbiServefiles < Formula - include Language::Python::Virtualenv - - desc "Serve local files to Nintendo 3DS via FBI remote installer" - homepage "https://github.com/Steveice10/FBI" - url "https://github.com/Steveice10/FBI/archive/2.6.0.tar.gz" - sha256 "4948d4c53d754cc411b51edbf35c609ba514ae21d9d0e8f4b66a26d5c666be68" - license "MIT" - revision 3 - - bottle do - sha256 cellar: :any_skip_relocation, arm64_big_sur: "82a491cce1b13428f44e1bd6984195dc565b654983376327e0fdbdd28985fd02" - sha256 cellar: :any_skip_relocation, big_sur: "54051b80718b8f581397ea1e58b76161dfabafc6de4a113dd715d422a2a12c02" - sha256 cellar: :any_skip_relocation, catalina: "54051b80718b8f581397ea1e58b76161dfabafc6de4a113dd715d422a2a12c02" - sha256 cellar: :any_skip_relocation, mojave: "54051b80718b8f581397ea1e58b76161dfabafc6de4a113dd715d422a2a12c02" - sha256 cellar: :any_skip_relocation, x86_64_linux: "093d05e4e564d7dbc6bc426f573389b5ee9d20312f6be354e5dc27f1d9be08bc" - end - - disable! date: "2022-07-31", because: :repo_archived - - depends_on "python@3.10" - - def install - venv = virtualenv_create(libexec, "python3.10") - venv.pip_install_and_link buildpath/"servefiles" - end - - def test_socket - server = TCPServer.new(5000) - client = server.accept - client.puts "\n" - client_response = client.gets - client.close - server.close - client_response - end - - test do - require "socket" - - begin - pid = fork do - system "#{bin}/sendurls.py", "127.0.0.1", "https://github.com" - end - assert_match "https://github.com", test_socket - ensure - Process.kill("TERM", pid) - Process.wait(pid) - end - - begin - touch "test.cia" - pid = fork do - system "#{bin}/servefiles.py", "127.0.0.1", "test.cia", "127.0.0.1", "8080" - end - assert_match "127.0.0.1:8080/test.cia", test_socket - ensure - Process.kill("TERM", pid) - Process.wait(pid) - end - end -end From c06d229d194115933ec8ce90254d5a638d76338d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:31 +0000 Subject: [PATCH 030/133] fleetctl: remove formula --- Formula/fleetctl.rb | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 Formula/fleetctl.rb diff --git a/Formula/fleetctl.rb b/Formula/fleetctl.rb deleted file mode 100644 index e390aa1634d1f3..00000000000000 --- a/Formula/fleetctl.rb +++ /dev/null @@ -1,38 +0,0 @@ -class Fleetctl < Formula - desc "Distributed init system" - homepage "https://github.com/coreos/fleet" - url "https://github.com/coreos/fleet.git", - tag: "v1.0.0", - revision: "b8127afc06e3e41089a7fc9c3d7d80c9925f4dab" - license "Apache-2.0" - head "https://github.com/coreos/fleet.git", branch: "master" - - bottle do - rebuild 1 - sha256 cellar: :any_skip_relocation, arm64_monterey: "c6d95d7c2a535214d3e02819916101e64fd1ecfd17a09a33fcc270696e08766d" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "8bb493ec565f24cc16ae33f23f860cb179047a4d379474c2c1e1730fd2b07ae7" - sha256 cellar: :any_skip_relocation, monterey: "e77b6b66846ae13494dd3f8a950b8650c3ae0847b1f3e439ce216c8aab3275a5" - sha256 cellar: :any_skip_relocation, big_sur: "db133bc31ff2a813dfaf6b5faa7d41c892dd91803f5612540a09b58c7c81d783" - sha256 cellar: :any_skip_relocation, catalina: "69f1d75544203e04ea3fba75c639ebbdfa564f0cbdea53f62bfb2f8f253bdf60" - sha256 cellar: :any_skip_relocation, mojave: "a8fa7b4e9479073b568a5e1325d7d56708e28cbc921df09698cc671dc939b258" - sha256 cellar: :any_skip_relocation, high_sierra: "578bc15de6d87d53165ff70805388b41388f01d10a7c5d809fafd46c4d9040aa" - sha256 cellar: :any_skip_relocation, x86_64_linux: "5572247273e727544512f619016572c64f0694328b20f94d00897824512809f4" - end - - # "CoreOS recommends Kubernetes for all clustering needs": - # https://coreos.com/blog/migrating-from-fleet-to-kubernetes.html - disable! date: "2022-07-31", because: :repo_archived - - depends_on "go" => :build - - def install - ENV["GOPATH"] = buildpath - ENV["GO111MODULE"] = "auto" - system "./build" - bin.install "bin/fleetctl" - end - - test do - assert_match version.to_s, shell_output("#{bin}/fleetctl --version") - end -end From 3e1cf309216bbba417d8bbaf7cc8b30bd4336c16 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:32 +0000 Subject: [PATCH 031/133] gcc@4.9: remove formula --- Formula/gcc@4.9.rb | 251 --------------------------------------------- 1 file changed, 251 deletions(-) delete mode 100644 Formula/gcc@4.9.rb diff --git a/Formula/gcc@4.9.rb b/Formula/gcc@4.9.rb deleted file mode 100644 index f9f1cface82df0..00000000000000 --- a/Formula/gcc@4.9.rb +++ /dev/null @@ -1,251 +0,0 @@ -class GccAT49 < Formula - desc "GNU Compiler Collection" - homepage "https://gcc.gnu.org/" - url "https://ftp.gnu.org/gnu/gcc/gcc-4.9.4/gcc-4.9.4.tar.bz2" - mirror "https://ftpmirror.gnu.org/gcc/gcc-4.9.4/gcc-4.9.4.tar.bz2" - sha256 "6c11d292cd01b294f9f84c9a59c230d80e9e4a47e5c6355f046bb36d4f358092" - revision 2 - - bottle do - rebuild 1 - sha256 x86_64_linux: "e4feb69ec4ab2d7bd847206e6cb419154f7a61a478f0bf7a631a82e9896981e8" - end - - # The bottles are built on systems with the CLT installed, and do not work - # out of the box on Xcode-only systems due to an incorrect sysroot. - pour_bottle? only_if: :clt_installed - - # https://gcc.gnu.org/gcc-4.9/ - disable! date: "2022-07-31", because: :deprecated_upstream - - depends_on maximum_macos: [:high_sierra, :build] - - uses_from_macos "zlib" - - on_linux do - depends_on "binutils" - end - - # GCC bootstraps itself, so it is OK to have an incompatible C++ stdlib - cxxstdlib_check :skip - - resource "gmp" do - url "https://ftp.gnu.org/gnu/gmp/gmp-4.3.2.tar.bz2" - mirror "https://ftpmirror.gnu.org/gmp/gmp-4.3.2.tar.bz2" - sha256 "936162c0312886c21581002b79932829aa048cfaf9937c6265aeaa14f1cd1775" - - # Upstream patch to fix gmp.h header use in C++ compilation with libc++ - # https://gmplib.org/repo/gmp/rev/6cd3658f5621 - patch do - url "https://raw.githubusercontent.com/Homebrew/formula-patches/010a4dc3/gmp%404/4.3.2.patch" - sha256 "7865e09e154d4696e850779403e6c75be323f069356dedb7751cf1575db3a148" - end - end - - resource "mpfr" do - url "https://gcc.gnu.org/pub/gcc/infrastructure/mpfr-2.4.2.tar.bz2" - mirror "https://mirrorservice.org/sites/sourceware.org/pub/gcc/infrastructure/mpfr-2.4.2.tar.bz2" - sha256 "c7e75a08a8d49d2082e4caee1591a05d11b9d5627514e678f02d66a124bcf2ba" - end - - resource "mpc" do - url "https://gcc.gnu.org/pub/gcc/infrastructure/mpc-0.8.1.tar.gz" - sha256 "e664603757251fd8a352848276497a4c79b7f8b21fd8aedd5cc0598a38fee3e4" - end - - resource "isl" do - url "https://gcc.gnu.org/pub/gcc/infrastructure/isl-0.12.2.tar.bz2" - mirror "https://mirrorservice.org/sites/distfiles.macports.org/isl/isl-0.12.2.tar.bz2" - sha256 "f4b3dbee9712850006e44f0db2103441ab3d13b406f77996d1df19ee89d11fb4" - end - - resource "cloog" do - url "http://www.bastoul.net/cloog/pages/download/count.php3?url=./cloog-0.18.4.tar.gz" - mirror "https://mirrorservice.org/sites/archive.ubuntu.com/ubuntu/pool/main/c/cloog/cloog_0.18.4.orig.tar.gz" - sha256 "325adf3710ce2229b7eeb9e84d3b539556d093ae860027185e7af8a8b00a750e" - end - - def version_suffix - version.major_minor.to_s - end - - # Fix build with Xcode 9 - # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82091 - if DevelopmentTools.clang_build_version >= 900 - patch do - url "https://raw.githubusercontent.com/Homebrew/formula-patches/c2dae73416/gcc%404.9/xcode9.patch" - sha256 "92c13867afe18ccb813526c3b3c19d95a2dd00973f9939cf56ab7698bdd38108" - end - end - - # Fix issues with macOS 10.13 headers and parallel build on APFS - patch do - on_high_sierra do - url "https://raw.githubusercontent.com/Homebrew/formula-patches/b7c7883d/gcc%404.9/high_sierra_2.patch" - sha256 "c7bcad4657292f6939b7322eb5e821c4a110c4f326fd5844890f0e9a85da8cae" - end - end - - def install - # GCC will suffer build errors if forced to use a particular linker. - ENV.delete "LD" - - # Build dependencies in-tree, to avoid having versioned formulas - resources.each { |r| r.stage(buildpath/r.name) } - - args = [ - "--prefix=#{prefix}", - "--libdir=#{lib}/gcc/#{version_suffix}", - "--enable-languages=c,c++,fortran,objc,obj-c++", - # Make most executables versioned to avoid conflicts. - "--program-suffix=-#{version_suffix}", - "--enable-libstdcxx-time=yes", - "--enable-stage1-checking", - "--enable-checking=release", - "--enable-lto", - "--enable-plugin", - # Use 'bootstrap-debug' build configuration to force stripping of object - # files prior to comparison during bootstrap (broken by Xcode 6.3). - "--with-build-config=bootstrap-debug", - # A no-op unless --HEAD is built because in head warnings will - # raise errors. But still a good idea to include. - "--disable-werror", - "--with-pkgversion=Homebrew GCC #{pkg_version} #{build.used_options*" "}".strip, - "--with-bugurl=#{tap.issues_url}", - # Even when suffixes are appended, the info pages conflict when - # install-info is run. - "MAKEINFO=missing", - "--disable-nls", - "--enable-multilib", - ] - - if OS.mac? - args << "--build=x86_64-apple-darwin#{OS.kernel_version}" - args << "--with-system-zlib" - - # System headers may not be in /usr/include - sdk = MacOS.sdk_path_if_needed - if sdk - args << "--with-native-system-header-dir=/usr/include" - args << "--with-sysroot=#{sdk}" - end - - # Ensure correct install names when linking against libgcc_s; - # see discussion in https://github.com/Homebrew/homebrew/pull/34303 - inreplace "libgcc/config/t-slibgcc-darwin", "@shlib_slibdir@", "#{HOMEBREW_PREFIX}/lib/gcc/#{version_suffix}" - else - args << "--disable-multilib" - - # Change the default directory name for 64-bit libraries to `lib` - # https://www.linuxfromscratch.org/lfs/view/development/chapter06/gcc-pass2.html - inreplace "gcc/config/i386/t-linux64", "m64=../lib64", "m64=." - end - - mkdir "build" do - system "../configure", *args - system "make", "bootstrap" - - # At this point `make check` could be invoked to run the testsuite. The - # deja-gnu and autogen formulae must be installed in order to do this. - system "make", "install" - end - - # Handle conflicts between GCC formulae. - # Rename man7. - Dir.glob(man7/"*.7") { |file| add_suffix file, version_suffix } - # Even when we disable building info pages some are still installed. - info.rmtree - end - - def add_suffix(file, suffix) - dir = File.dirname(file) - ext = File.extname(file) - base = File.basename(file, ext) - File.rename file, "#{dir}/#{base}-#{suffix}#{ext}" - end - - def post_install - if OS.linux? - gcc = bin/"gcc-#{version_suffix}" - libgcc = Pathname.new(Utils.safe_popen_read(gcc, "-print-libgcc-file-name")).parent - raise "command failed: #{gcc} -print-libgcc-file-name" if $CHILD_STATUS.exitstatus.nonzero? - - glibc = Formula["glibc"] - glibc_installed = glibc.any_version_installed? - - # Symlink crt1.o and friends where gcc can find it. - crtdir = if glibc_installed - glibc.opt_lib - else - Pathname.new(Utils.safe_popen_read("/usr/bin/cc", "-print-file-name=crti.o")).parent - end - ln_sf Dir[crtdir/"*crt?.o"], libgcc - - # Create the GCC specs file - # See https://gcc.gnu.org/onlinedocs/gcc/Spec-Files.html - - # Locate the specs file - specs = libgcc/"specs" - ohai "Creating the GCC specs file: #{specs}" - specs_orig = Pathname.new("#{specs}.orig") - rm_f [specs_orig, specs] - - system_header_dirs = ["#{HOMEBREW_PREFIX}/include"] - - # Locate the native system header dirs if user uses system glibc - unless glibc_installed - target = Utils.safe_popen_read(gcc, "-print-multiarch").chomp - raise "command failed: #{gcc} -print-multiarch" if $CHILD_STATUS.exitstatus.nonzero? - - system_header_dirs += ["/usr/include/#{target}", "/usr/include"] - end - - # Save a backup of the default specs file - specs_string = Utils.safe_popen_read(gcc, "-dumpspecs") - raise "command failed: #{gcc} -dumpspecs" if $CHILD_STATUS.exitstatus.nonzero? - - specs_orig.write specs_string - - # Set the library search path - # For include path: - # * `-isysroot #{HOMEBREW_PREFIX}/nonexistent` prevents gcc searching built-in - # system header files. - # * `-idirafter ` instructs gcc to search system header - # files after gcc internal header files. - # For libraries: - # * `-nostdlib -L#{libgcc}` instructs gcc to use brewed glibc - # if applied. - # * `-L#{libdir}` instructs gcc to find the corresponding gcc - # libraries. It is essential if there are multiple brewed gcc - # with different versions installed. - # Noted that it should only be passed for the `gcc@*` formulae. - # * `-L#{HOMEBREW_PREFIX}/lib` instructs gcc to find the rest - # brew libraries. - libdir = HOMEBREW_PREFIX/"lib/gcc/#{version_suffix}" - specs.write specs_string + <<~EOS - *cpp_unique_options: - + -isysroot #{HOMEBREW_PREFIX}/nonexistent #{system_header_dirs.map { |p| "-idirafter #{p}" }.join(" ")} - - *link_libgcc: - #{glibc_installed ? "-nostdlib -L#{libgcc}" : "+"} -L#{libdir} -L#{HOMEBREW_PREFIX}/lib - - *link: - + --dynamic-linker #{HOMEBREW_PREFIX}/lib/ld.so -rpath #{libdir} -rpath #{HOMEBREW_PREFIX}/lib - - EOS - end - end - - test do - (testpath/"hello-c.c").write <<~EOS - #include - int main() - { - puts("Hello, world!"); - return 0; - } - EOS - system bin/"gcc-#{version.major_minor}", "-o", "hello-c", "hello-c.c" - assert_equal "Hello, world!\n", `./hello-c` - end -end From a26bff1e82c2a78962e2790f42ee71458c9ec008 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:32 +0000 Subject: [PATCH 032/133] gdub: remove formula --- Formula/gdub.rb | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 Formula/gdub.rb diff --git a/Formula/gdub.rb b/Formula/gdub.rb deleted file mode 100644 index 81d5a0e172eba2..00000000000000 --- a/Formula/gdub.rb +++ /dev/null @@ -1,23 +0,0 @@ -class Gdub < Formula - desc "Gradlew/gradle wrapper" - homepage "https://www.gdub.rocks/" - url "https://github.com/dougborg/gdub/archive/v0.2.0.tar.gz" - sha256 "aa3da76752b597e60094a67971f35dfe20377390d21b3ae3b45b7b7040e9a268" - license "MIT" - - bottle do - sha256 cellar: :any_skip_relocation, all: "b2381d533ecbab2d5c7e984f2b8a59601a1a50c0fd16de0942de59613f423a3e" - end - - # "This project is obsolete. Please use 'gng' instead.": - # https://github.com/gdubw/gng - disable! date: "2022-07-31", because: :repo_archived - - def install - bin.install "bin/gw" - end - - test do - assert_match "No gradlew set up for this project", pipe_output("#{bin}/gw 2>&1") - end -end From 4983b6b0f8bdcc9902d24caccfb47047e03b1ce3 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:33 +0000 Subject: [PATCH 033/133] genstats: remove formula --- Formula/genstats.rb | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 Formula/genstats.rb diff --git a/Formula/genstats.rb b/Formula/genstats.rb deleted file mode 100644 index eb3f412b803144..00000000000000 --- a/Formula/genstats.rb +++ /dev/null @@ -1,35 +0,0 @@ -class Genstats < Formula - desc "Generate statistics about stdin or textfiles" - homepage "https://web.archive.org/web/20180831170016/www.vanheusden.com/genstats/" - url "https://web.archive.org/web/20150331055106if_/vanheusden.com/genstats/genstats-1.2.tgz" - sha256 "9988264357211a24f7024db05e24ed88db58227a626330114309147eb7078f6e" - license "GPL-2.0" - - bottle do - sha256 cellar: :any_skip_relocation, arm64_big_sur: "d60b585ddff616135b75457e8f51cc3d8b1cfc9a03fded05df23fde64a74cddb" - sha256 cellar: :any_skip_relocation, big_sur: "0ade68d6af3fe20c73c8e5baf05138c4d7e4f774acda2ed8b2a51aa18bbde0e4" - sha256 cellar: :any_skip_relocation, catalina: "8201a8f52e58a092d639023f9232079d7f88f5f5d221947b15c867417537274b" - sha256 cellar: :any_skip_relocation, mojave: "821568c68faf33aa9045ccdcc6975d0f24f4faef8fc747275c5d8f8320d9ad55" - sha256 cellar: :any_skip_relocation, high_sierra: "7bea82f0ca1047f295bfd0f6ca348f0c07cd33b165bb5a9042c77f9cdc97907f" - sha256 cellar: :any_skip_relocation, sierra: "051dbb7c4f653b615b606d1fce15df9336a086e38428fcfdb2aee9f0057d8990" - sha256 cellar: :any_skip_relocation, el_capitan: "44502f7a2dfcb1355336db69267d6363d6e8b8767b47628b0d3099743513ed5f" - end - disable! date: "2022-07-31", because: "Upstream site gone; archive.org URLs provided for 'brew extract' usage" - - def install - # Tried to make this a patch. Applying the patch hunk would - # fail, even though I used "git diff | pbcopy". Tried messing - # with whitespace, # lines, etc. Ugh. - inreplace "br.cpp", /if \(_XOPEN_VERSION >= 600\)/, - "if (_XOPEN_VERSION >= 600) && !__APPLE__" - - system "make" - bin.install "genstats" - man.install "genstats.1" - end - - test do - output = shell_output("#{bin}/genstats -h", 1) - assert_match "folkert@vanheusden.com", output - end -end From c69aa509c62298b6fa60696240225e946b1f73e5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:33 +0000 Subject: [PATCH 034/133] geph2: remove formula --- Formula/geph2.rb | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 Formula/geph2.rb diff --git a/Formula/geph2.rb b/Formula/geph2.rb deleted file mode 100644 index 390141f31edc8b..00000000000000 --- a/Formula/geph2.rb +++ /dev/null @@ -1,36 +0,0 @@ -class Geph2 < Formula - desc "Modular Internet censorship circumvention system" - homepage "https://geph.io" - url "https://github.com/geph-official/geph2/archive/v0.22.5.tar.gz" - sha256 "4afca74d97c890061d34c8885258d6f4a48c63e69c7e8b56719fdae68c4f306b" - license "GPL-3.0-only" - - bottle do - sha256 cellar: :any_skip_relocation, arm64_monterey: "d18b805c6d02c073780a49837ec72db79fd6fd310df826197036d684c727df1e" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "b3b6f54e3938d4362d85d4dda831ffce4ada5635433d490e1fb762fae70fce42" - sha256 cellar: :any_skip_relocation, monterey: "5576fc9fa6870e5b33cdf3dd448b067533d6806993a597e2f65c2c9a4d70feea" - sha256 cellar: :any_skip_relocation, big_sur: "7d6622ad8567fda7a73bd85ae3ca5229bd83c6289d3e56aa2b7c6aa67eb0c621" - sha256 cellar: :any_skip_relocation, catalina: "c289cb8558247b38814c51298da6ba86ed16ab0f9ee49eeb097464aee5702189" - sha256 cellar: :any_skip_relocation, mojave: "8133f7174bdd1218ad3799543b85d2e932ffab60b89181ce209b314c57847c9d" - sha256 cellar: :any_skip_relocation, high_sierra: "392a4199771a8ff4c5aa1c45bd3225640d9949aa1e2a9af915e488093fe84ff9" - end - - # Geph has been rewritten in Rust: https://github.com/geph-official/geph4 - disable! date: "2022-07-31", because: :repo_archived - - depends_on "go" => :build - - def install - bin_path = buildpath/"src/github.com/geph-official/geph2" - bin_path.install Dir["*"] - cd bin_path/"cmd/geph-client" do - ENV["CGO_ENABLED"] = "0" - system "go", "build", "-o", - bin/"geph-client", "-v", "-trimpath" - end - end - - test do - assert_match "username = homebrew", shell_output("#{bin}/geph-client -username homebrew -dumpflags") - end -end From 92ad13dec683a02b368809bdd4ca637afd8c14b8 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:33 +0000 Subject: [PATCH 035/133] giflossy: remove formula --- Formula/giflossy.rb | 46 --------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 Formula/giflossy.rb diff --git a/Formula/giflossy.rb b/Formula/giflossy.rb deleted file mode 100644 index 97916c85232601..00000000000000 --- a/Formula/giflossy.rb +++ /dev/null @@ -1,46 +0,0 @@ -class Giflossy < Formula - desc "Lossy LZW compression, reduces GIF file sizes by 30-50%" - homepage "https://pornel.net/lossygif" - url "https://github.com/kornelski/giflossy/archive/1.91.tar.gz" - sha256 "b97f6aadf163ff5dd96ad1695738ad3d5aa7f1658baed8665c42882f11d9ab22" - license "GPL-2.0-only" - head "https://github.com/kornelski/giflossy.git", branch: "master" - - bottle do - rebuild 2 - sha256 cellar: :any_skip_relocation, arm64_monterey: "866787f4509dc13bfaf1a8d7b1bea9932d67ce1ca0251c066d16e49025d37e69" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "860d0bb8cd391ad3d2309613c18a5f4f80d1b12e1156a28eb81c2bf7a0f460b8" - sha256 cellar: :any_skip_relocation, monterey: "5cf0e6039d9f2465c29eb32077dd9314207a768f6bf085d91511d4a21dff4758" - sha256 cellar: :any_skip_relocation, big_sur: "ad63a534a7e83c162d536cb43c421a78b089ca9921e89ed598c8ae13fe7adb1f" - sha256 cellar: :any_skip_relocation, catalina: "de5ae53cff723bbb5cbe11028d088f028053ebc70a14b6497dd7f5f9ca9651b4" - sha256 cellar: :any_skip_relocation, mojave: "02eeb9a6b44178fdf1df803346dceedda853c7245cd51a1a6166290a73fb51f4" - sha256 cellar: :any_skip_relocation, x86_64_linux: "34ab9b407a91767e47baf6c4a9a3ab6087ca82858ad46ad2db16ab6ef18cae3d" - end - - # "This project has now been officially merged upstream into Gifsicle, so - # please use that": https://github.com/kohler/gifsicle - disable! date: "2022-07-31", because: :repo_archived - - depends_on "autoconf" => :build - depends_on "automake" => :build - - conflicts_with "gifsicle", - because: "both install an `gifsicle` binary" - - def install - args = %W[ - --disable-dependency-tracking - --prefix=#{prefix} - --disable-gifview - ] - - system "autoreconf", "-fvi" - system "./configure", *args - system "make", "install" - end - - test do - system bin/"gifsicle", "-O3", "--lossy=80", "-o", - "out.gif", test_fixtures("test.gif") - end -end From fc5d111d7cd7b15c636b836ef9b840dba4b4a03f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:34 +0000 Subject: [PATCH 036/133] git-credential-manager: remove formula --- Formula/git-credential-manager.rb | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 Formula/git-credential-manager.rb diff --git a/Formula/git-credential-manager.rb b/Formula/git-credential-manager.rb deleted file mode 100644 index 4910913fe96761..00000000000000 --- a/Formula/git-credential-manager.rb +++ /dev/null @@ -1,27 +0,0 @@ -class GitCredentialManager < Formula - desc "Stores Git credentials for Visual Studio Team Services" - homepage "https://docs.microsoft.com/vsts/git/set-up-credential-managers" - url "https://github.com/Microsoft/Git-Credential-Manager-for-Mac-and-Linux/releases/download/git-credential-manager-2.0.4/git-credential-manager-2.0.4.jar" - sha256 "fb8536aac9b00cdf6bdeb0dd152bb1306d88cd3fdb7a958ac9a144bf4017cad7" - license "MIT" - revision 2 - - bottle do - sha256 cellar: :any_skip_relocation, all: "f978fdd8c281d14ff2b28c380079db4b7927b585bc77432ac81339adc2d332c1" - end - - # "This project has been superseded by Git Credential Manager Core": - # https://github.com/microsoft/Git-Credential-Manager-Core - disable! date: "2022-07-31", because: :repo_archived - - depends_on "openjdk" - - def install - libexec.install "git-credential-manager-#{version}.jar" - bin.write_jar_script libexec/"git-credential-manager-#{version}.jar", "git-credential-manager" - end - - test do - system "#{bin}/git-credential-manager", "version" - end -end From 2c6f7b0c16ad5a986f2beefbd99a7bb8231bc600 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:34 +0000 Subject: [PATCH 037/133] git-tf: remove formula --- Formula/git-tf.rb | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 Formula/git-tf.rb diff --git a/Formula/git-tf.rb b/Formula/git-tf.rb deleted file mode 100644 index 3e42d519d03c9c..00000000000000 --- a/Formula/git-tf.rb +++ /dev/null @@ -1,34 +0,0 @@ -class GitTf < Formula - desc "Share changes between TFS and git" - homepage "https://archive.codeplex.com/?p=gittf" - url "https://download.microsoft.com/download/A/E/2/AE23B059-5727-445B-91CC-15B7A078A7F4/git-tf-2.0.3.20131219.zip" - sha256 "91fd12e7db19600cc908e59b82104dbfbb0dbfba6fd698804a8330d6103aae74" - license "MIT" - - bottle do - sha256 cellar: :any_skip_relocation, all: "ecaa47f7c8b3e5290ac04f79391446a2e15ec19f9b4e25326d2d2f702f5c7df8" - end - - disable! date: "2022-07-31", because: :unsupported - - depends_on "openjdk" - - def install - libexec.install "git-tf" - libexec.install "lib" - (libexec/"native").install "native/macosx" - - (bin/"git-tf").write_env_script libexec/"git-tf", Language::Java.overridable_java_home_env - doc.install Dir["Git-TF_*", "ThirdPartyNotices*"] - end - - def caveats - <<~EOS - This release removes support for TFS 2005 and 2008. Use a previous version if needed. - EOS - end - - test do - system "#{bin}/git-tf" - end -end From be28a967c4153e3eacf1edea80096ba89a94bcad Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:34 +0000 Subject: [PATCH 038/133] gmt@5: remove formula --- Formula/gmt@5.rb | 107 ----------------------------------------------- 1 file changed, 107 deletions(-) delete mode 100644 Formula/gmt@5.rb diff --git a/Formula/gmt@5.rb b/Formula/gmt@5.rb deleted file mode 100644 index 9cb38fb3b4b382..00000000000000 --- a/Formula/gmt@5.rb +++ /dev/null @@ -1,107 +0,0 @@ -class GmtAT5 < Formula - desc "Tools for manipulating and plotting geographic and Cartesian data" - homepage "https://www.generic-mapping-tools.org/" - url "https://github.com/GenericMappingTools/gmt/releases/download/5.4.5/gmt-5.4.5-src.tar.gz" - mirror "https://mirrors.ustc.edu.cn/gmt/gmt-5.4.5-src.tar.gz" - mirror "https://fossies.org/linux/misc/GMT/gmt-5.4.5-src.tar.gz" - sha256 "225629c7869e204d5f9f1a384c4ada43e243f83e1ed28bdca4f7c2896bf39ef6" - license "LGPL-3.0-or-later" - revision 13 - - bottle do - sha256 monterey: "be46e95fb3bb1cb83195f10338e991c3dcff7ffe68b9dfdaf0daa7c3777cb2c2" - sha256 big_sur: "67c2cbd893bdb2d5e36aa034964df1d626547634608dc4b6385e0f64fe06163f" - sha256 catalina: "8c1f9855d6f7b0636b7bec1a2c6349a5cb1d6665598369f921b7b50b3c24b9d3" - end - - keg_only :versioned_formula - - disable! date: "2022-07-31", because: :unmaintained - - depends_on "cmake" => :build - depends_on "fftw" - depends_on "gdal" - depends_on "netcdf" - depends_on "pcre2" - - resource "gshhg" do - url "https://github.com/GenericMappingTools/gshhg-gmt/releases/download/2.3.7/gshhg-gmt-2.3.7.tar.gz" - mirror "https://mirrors.ustc.edu.cn/gmt/gshhg-gmt-2.3.7.tar.gz" - mirror "https://fossies.org/linux/misc/GMT/gshhg-gmt-2.3.7.tar.gz" - sha256 "9bb1a956fca0718c083bef842e625797535a00ce81f175df08b042c2a92cfe7f" - end - - resource "dcw" do - url "https://github.com/GenericMappingTools/dcw-gmt/releases/download/1.1.4/dcw-gmt-1.1.4.tar.gz" - mirror "https://mirrors.ustc.edu.cn/gmt/dcw-gmt-1.1.4.tar.gz" - mirror "https://fossies.org/linux/misc/GMT/dcw-gmt-1.1.4.tar.gz" - sha256 "8d47402abcd7f54a0f711365cd022e4eaea7da324edac83611ca035ea443aad3" - end - - # netcdf 4.7.4 compatibility - patch do - url "https://raw.githubusercontent.com/Homebrew/formula-patches/cdbf0de198531528db908a5d827f3d2e5b9618cc/gmt%405/netcdf-4.7.4.patch" - sha256 "d894869830f6e57b0670dc31df6b5c684e079418f8bf5c0cd0f7014b65c1981f" - end - - # This patch is required because of incorrect usage of the `date` command in - # cmake/modules/ConfigCMake.cmake; this arises because SOURCE_DATE_EPOCH is - # set for builds. - patch :DATA - - def install - (buildpath/"gshhg").install resource("gshhg") - (buildpath/"dcw").install resource("dcw") - - args = std_cmake_args + %W[ - -DCMAKE_INSTALL_PREFIX=#{prefix} - -DGMT_DOCDIR=#{share}/doc/gmt - -DGMT_MANDIR=#{man} - -DGSHHG_ROOT=#{buildpath}/gshhg - -DCOPY_GSHHG:BOOL=TRUE - -DDCW_ROOT=#{buildpath}/dcw - -DCOPY_DCW:BOOL=TRUE - -DFFTW3_ROOT=#{Formula["fftw"].opt_prefix} - -DGDAL_ROOT=#{Formula["gdal"].opt_prefix} - -DNETCDF_ROOT=#{Formula["netcdf"].opt_prefix} - -DPCRE2_ROOT=#{Formula["pcre2"].opt_prefix} - -DGMT_EXCLUDE_PCRE:BOOL=TRUE - -DFLOCK:BOOL=TRUE - -DGMT_INSTALL_MODULE_LINKS:BOOL=TRUE - -DGMT_INSTALL_TRADITIONAL_FOLDERNAMES:BOOL=FALSE - -DLICENSE_RESTRICTED:BOOL=FALSE - ] - - mkdir "build" do - system "cmake", "..", *args - system "make", "install" - end - end - - def caveats - <<~EOS - GMT needs Ghostscript for the 'psconvert' command to convert PostScript files - to other formats. To use 'psconvert', please 'brew install ghostscript'. - EOS - end - - test do - system "#{bin}/pscoast -R0/360/-70/70 -Jm1.2e-2i -Ba60f30/a30f15 -Dc -G240 -W1/0 -P > test.ps" - assert_predicate testpath/"test.ps", :exist? - end -end - -__END__ -diff --git a/cmake/modules/ConfigCMake.cmake b/cmake/modules/ConfigCMake.cmake -index 3579171..cbe75d6 100644 ---- a/cmake/modules/ConfigCMake.cmake -+++ b/cmake/modules/ConfigCMake.cmake -@@ -79,7 +79,7 @@ set (GMT_LONG_VERSION_STRING "${GMT_PACKAGE_NAME} - ${GMT_PACKAGE_DESCRIPTION_SU - # Get date - if(DEFINED ENV{SOURCE_DATE_EPOCH}) - EXECUTE_PROCESS( -- COMMAND "date" "-u" "-d" "@$ENV{SOURCE_DATE_EPOCH}" "+%Y;%m;%d;%B" -+ COMMAND "date" "-u" "-j" "-f" "%s" "@$ENV{SOURCE_DATE_EPOCH}" "+%Y;%m;%d;%B" - OUTPUT_VARIABLE _today - OUTPUT_STRIP_TRAILING_WHITESPACE) - else(DEFINED ENV{SOURCE_DATE_EPOCH}) From 772bbeb3cc0f89811b0c6fc88006c7a1669008ac Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:35 +0000 Subject: [PATCH 039/133] go@1.13: remove formula --- Formula/go@1.13.rb | 92 ---------------------------------------------- 1 file changed, 92 deletions(-) delete mode 100644 Formula/go@1.13.rb diff --git a/Formula/go@1.13.rb b/Formula/go@1.13.rb deleted file mode 100644 index 632061fe26c070..00000000000000 --- a/Formula/go@1.13.rb +++ /dev/null @@ -1,92 +0,0 @@ -class GoAT113 < Formula - desc "Go programming environment (1.13)" - homepage "https://golang.org" - url "https://golang.org/dl/go1.13.15.src.tar.gz" - mirror "https://fossies.org/linux/misc/go1.13.15.src.tar.gz" - sha256 "5fb43171046cf8784325e67913d55f88a683435071eef8e9da1aa8a1588fcf5d" - license "BSD-3-Clause" - - bottle do - rebuild 1 - sha256 big_sur: "264e7eece63bd0c7934feb322e8b42d3ee2707003eb49ab2d243038a35582bee" - sha256 catalina: "4c728bf1466cdd0d9fa6f9ed3a565e4a2203717730603189d8b5f2675a008c88" - sha256 mojave: "d994ff2b27c191bb74dd44a373e254ef92472c1cb13e381cf6bf9d3d118bdaef" - sha256 high_sierra: "4c62c487e96657aabebc01f662c2506724e123a08bdf3ead0715945c9838429c" - sha256 x86_64_linux: "f28b974155b8174bddf012622a17772bb72d56fac35d35a1ccef7564dc476675" - end - - keg_only :versioned_formula - - disable! date: "2022-07-31", because: :unsupported - - depends_on arch: :x86_64 - - resource "gotools" do - url "https://go.googlesource.com/tools.git", - branch: "release-branch.go1.13" - end - - # Don't update this unless this version cannot bootstrap the new version. - resource "gobootstrap" do - on_macos do - url "https://storage.googleapis.com/golang/go1.7.darwin-amd64.tar.gz" - sha256 "51d905e0b43b3d0ed41aaf23e19001ab4bc3f96c3ca134b48f7892485fc52961" - end - - on_linux do - url "https://storage.googleapis.com/golang/go1.7.linux-amd64.tar.gz" - sha256 "702ad90f705365227e902b42d91dd1a40e48ca7f67a2f4b2fd052aaa4295cd95" - end - end - - def install - (buildpath/"gobootstrap").install resource("gobootstrap") - ENV["GOROOT_BOOTSTRAP"] = buildpath/"gobootstrap" - - cd "src" do - ENV["GOROOT_FINAL"] = libexec - system "./make.bash", "--no-clean" - end - - (buildpath/"pkg/obj").rmtree - rm_rf "gobootstrap" # Bootstrap not required beyond compile. - libexec.install Dir["*"] - bin.install_symlink Dir[libexec/"bin/go*"] - - system bin/"go", "install", "-race", "std" - - # Build and install godoc - ENV.prepend_path "PATH", bin - ENV["GOPATH"] = buildpath - (buildpath/"src/golang.org/x/tools").install resource("gotools") - cd "src/golang.org/x/tools/cmd/godoc/" do - system "go", "build" - (libexec/"bin").install "godoc" - end - bin.install_symlink libexec/"bin/godoc" - end - - test do - (testpath/"hello.go").write <<~EOS - package main - - import "fmt" - - func main() { - fmt.Println("Hello World") - } - EOS - # Run go fmt check for no errors then run the program. - # This is a a bare minimum of go working as it uses fmt, build, and run. - system bin/"go", "fmt", "hello.go" - assert_equal "Hello World\n", shell_output("#{bin}/go run hello.go") - - # godoc was installed - assert_predicate libexec/"bin/godoc", :exist? - assert_predicate libexec/"bin/godoc", :executable? - - ENV["GOOS"] = "freebsd" - ENV["GOARCH"] = "amd64" - system bin/"go", "build", "hello.go" - end -end From be741d4fc5d312dd99268d2f5fdfa1c09d9d6299 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:35 +0000 Subject: [PATCH 040/133] go@1.14: remove formula --- Formula/go@1.14.rb | 90 ---------------------------------------------- 1 file changed, 90 deletions(-) delete mode 100644 Formula/go@1.14.rb diff --git a/Formula/go@1.14.rb b/Formula/go@1.14.rb deleted file mode 100644 index 10006441d6e89c..00000000000000 --- a/Formula/go@1.14.rb +++ /dev/null @@ -1,90 +0,0 @@ -class GoAT114 < Formula - desc "Go programming environment (1.14)" - homepage "https://golang.org" - url "https://golang.org/dl/go1.14.15.src.tar.gz" - mirror "https://fossies.org/linux/misc/go1.14.15.src.tar.gz" - sha256 "7ed13b2209e54a451835997f78035530b331c5b6943cdcd68a3d815fdc009149" - license "BSD-3-Clause" - - bottle do - sha256 big_sur: "faf9dc9e47037a6676239fe00904c43822c622f40f0a7e6d524b1a6b770292b8" - sha256 catalina: "896c37117ef621d065878a9a97f20ebc5ad5485188cff533db398edf744fb59a" - sha256 mojave: "e019d7cb4097d0e7bcfa3ad7df15eb5030a01255fdf52fbbb956bbdc3f424f8c" - sha256 x86_64_linux: "5aff0b2ef09ce98fbf0b9a2d80679dbbe88a39b214236bcd67667f017b53fc58" - end - - keg_only :versioned_formula - - disable! date: "2022-07-31", because: :unsupported - - depends_on arch: :x86_64 - - resource "gotools" do - url "https://go.googlesource.com/tools.git", - branch: "release-branch.go1.14" - end - - # Don't update this unless this version cannot bootstrap the new version. - resource "gobootstrap" do - on_macos do - url "https://storage.googleapis.com/golang/go1.7.darwin-amd64.tar.gz" - sha256 "51d905e0b43b3d0ed41aaf23e19001ab4bc3f96c3ca134b48f7892485fc52961" - end - - on_linux do - url "https://storage.googleapis.com/golang/go1.7.linux-amd64.tar.gz" - sha256 "702ad90f705365227e902b42d91dd1a40e48ca7f67a2f4b2fd052aaa4295cd95" - end - end - - def install - (buildpath/"gobootstrap").install resource("gobootstrap") - ENV["GOROOT_BOOTSTRAP"] = buildpath/"gobootstrap" - - cd "src" do - ENV["GOROOT_FINAL"] = libexec - system "./make.bash", "--no-clean" - end - - (buildpath/"pkg/obj").rmtree - rm_rf "gobootstrap" # Bootstrap not required beyond compile. - libexec.install Dir["*"] - bin.install_symlink Dir[libexec/"bin/go*"] - - system bin/"go", "install", "-race", "std" - - # Build and install godoc - ENV.prepend_path "PATH", bin - ENV["GOPATH"] = buildpath - (buildpath/"src/golang.org/x/tools").install resource("gotools") - cd "src/golang.org/x/tools/cmd/godoc/" do - system "go", "build" - (libexec/"bin").install "godoc" - end - bin.install_symlink libexec/"bin/godoc" - end - - test do - (testpath/"hello.go").write <<~EOS - package main - - import "fmt" - - func main() { - fmt.Println("Hello World") - } - EOS - # Run go fmt check for no errors then run the program. - # This is a a bare minimum of go working as it uses fmt, build, and run. - system bin/"go", "fmt", "hello.go" - assert_equal "Hello World\n", shell_output("#{bin}/go run hello.go") - - # godoc was installed - assert_predicate libexec/"bin/godoc", :exist? - assert_predicate libexec/"bin/godoc", :executable? - - ENV["GOOS"] = "freebsd" - ENV["GOARCH"] = "amd64" - system bin/"go", "build", "hello.go" - end -end From fc33b41c52d209f2568882ce79b8fb06da440fe5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:36 +0000 Subject: [PATCH 041/133] goad: remove formula --- Formula/goad.rb | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 Formula/goad.rb diff --git a/Formula/goad.rb b/Formula/goad.rb deleted file mode 100644 index 5eba4cd1e4f51f..00000000000000 --- a/Formula/goad.rb +++ /dev/null @@ -1,43 +0,0 @@ -class Goad < Formula - desc "AWS Lambda powered, highly distributed, load testing tool built in Go" - homepage "https://goad.io/" - url "https://github.com/goadapp/goad.git", - tag: "2.0.4", - revision: "e015a55faa940cde2bc7b38af65709d52235eaca" - license "MIT" - - bottle do - rebuild 2 - sha256 cellar: :any_skip_relocation, arm64_monterey: "70ad5b476c921a644756f5cdcad35654e6cbfda98761c1492db552cfb5c83119" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "37172967c61a7722ba51110498e5cfeb04a3fa6b7b7f9c45ea97021095558b0c" - sha256 cellar: :any_skip_relocation, monterey: "656132636af7921e6a2e20b12115ce419ba228167389c41d8d0b2b1a57f3b201" - sha256 cellar: :any_skip_relocation, big_sur: "0f576b680ef04f935c3af7fd7e1ababdfd8b073659594ad81243018ef3b6cc76" - sha256 cellar: :any_skip_relocation, catalina: "89367dad83660f1fc7deae319233bc4b554b92bb0faf406d14ff5145d70226d3" - sha256 cellar: :any_skip_relocation, mojave: "9f491e354dc372c864fa2ea747ec3f514071b5fe0ad5f2649818c1e788ce97d8" - sha256 cellar: :any_skip_relocation, x86_64_linux: "b7c60bf096b4333d3e62e3cd994853dfb6ac2db505f4f453fb52ba734625c14e" - end - - disable! date: "2022-07-31", because: :repo_archived - - depends_on "go" => :build - depends_on "go-bindata" => :build - - uses_from_macos "zip" => :build - - def install - ENV["GOPATH"] = buildpath - ENV["GO111MODULE"] = "auto" - dir = buildpath/"src/github.com/goadapp/goad" - dir.install buildpath.children - - cd dir do - system "make", "build" - bin.install "build/goad" - prefix.install_metafiles - end - end - - test do - system "#{bin}/goad", "--version" - end -end From bde9da6d4ab86bdcb56dafd97fbbc4836bad25f8 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:36 +0000 Subject: [PATCH 042/133] gofabric8: remove formula --- Formula/gofabric8.rb | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 Formula/gofabric8.rb diff --git a/Formula/gofabric8.rb b/Formula/gofabric8.rb deleted file mode 100644 index f7a3cdbe9fbf84..00000000000000 --- a/Formula/gofabric8.rb +++ /dev/null @@ -1,44 +0,0 @@ -class Gofabric8 < Formula - desc "CLI for fabric8 running on Kubernetes or OpenShift" - homepage "https://github.com/fabric8io/gofabric8/" - url "https://github.com/fabric8io/gofabric8/archive/v0.4.176.tar.gz" - sha256 "78e44fdfd69605f50ab1f5539f2d282ce786b28b88c49d0f9671936c9e37355a" - license "Apache-2.0" - - bottle do - rebuild 1 - sha256 cellar: :any_skip_relocation, arm64_monterey: "fc81a3d411740c59daa6f2130871e78b52533709c0eccdba91b5ac8b98d283ae" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "33dd12b78757e29d078afe1fbb57fc4530c71f804f88c96ec48452f8b2053ad2" - sha256 cellar: :any_skip_relocation, monterey: "07d4ba74501720a1e068a62afb148da767c509c72f0ab14ba3ec22349d6cfd73" - sha256 cellar: :any_skip_relocation, big_sur: "4d4236c764b54c4699ceaf07831bb6fcd5709e99b343c8a2b5288ff3faa40f94" - sha256 cellar: :any_skip_relocation, catalina: "6400faecf5cfe3dfa54a04839869d327cc3f71d586aa5740d9f63e1e1f13c5f4" - sha256 cellar: :any_skip_relocation, mojave: "6fefb818e47769d4c0811db307d5000aa7d3d48bcdae42e24b0a27272e01641f" - sha256 cellar: :any_skip_relocation, x86_64_linux: "d1bfb6f211dbd423cf15ea057c94f42afab57ec7b955b33057086dbc84b2c1f9" - end - - disable! date: "2022-07-31", because: :repo_archived - - depends_on "go" => :build - - def install - ENV["GOPATH"] = buildpath - ENV["GO111MODULE"] = "auto" - dir = buildpath/"src/github.com/fabric8io/gofabric8" - dir.install buildpath.children - - cd dir do - system "make", "install", "REV=homebrew" - prefix.install_metafiles - end - - bin.install "bin/gofabric8" - end - - test do - Open3.popen3("#{bin}/gofabric8", "version") do |stdin, stdout, _| - stdin.puts "N" # Reject any auto-update prompts - stdin.close - assert_match "gofabric8, version #{version} (branch: 'unknown', revision: 'homebrew')", stdout.read - end - end -end From e24cbe88ae6f463d037515adab51998bcb9842df Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:36 +0000 Subject: [PATCH 043/133] gradio: remove formula --- Formula/gradio.rb | 68 ----------------------------------------------- 1 file changed, 68 deletions(-) delete mode 100644 Formula/gradio.rb diff --git a/Formula/gradio.rb b/Formula/gradio.rb deleted file mode 100644 index 7589959de1514e..00000000000000 --- a/Formula/gradio.rb +++ /dev/null @@ -1,68 +0,0 @@ -class Gradio < Formula - desc "GTK3 app for finding and listening to internet radio stations" - homepage "https://github.com/haecker-felix/Gradio" - url "https://github.com/haecker-felix/Gradio/archive/v7.3.tar.gz" - sha256 "5c5afed83fceb9a9f8bc7414b8a200128b3317ccf1ed50a0e7321ca15cf19412" - license "GPL-3.0-or-later" - revision 1 - - bottle do - rebuild 1 - sha256 monterey: "23007e95399ae41c47177de867ecc857cfe04a3573a2c78aaebb0fcd04a389aa" - sha256 big_sur: "72f8e30b711bee61d93b6da03927edb44f7414b1be112e6259aba2ffe9f84fde" - sha256 catalina: "0417071790ce31f0e7c80b800fabc91a0aef1b8faff27b892136defb02350067" - sha256 x86_64_linux: "88ba113096595acdaa8529ce24f0ce5735f1b595af740c8c1bd3b77a7c795d4e" - end - - disable! date: "2022-07-31", because: :repo_archived - - depends_on "graphviz" => :build # for vala - depends_on "meson" => :build - depends_on "ninja" => :build - depends_on "pkg-config" => :build - depends_on "adwaita-icon-theme" - depends_on "cairo" - depends_on "gettext" - depends_on "glib" - depends_on "gstreamer" - depends_on "gtk+3" - depends_on "hicolor-icon-theme" - depends_on "json-glib" - depends_on "libsoup@2" - depends_on "python@3.7" - - uses_from_macos "bison" => :build # for vala - uses_from_macos "flex" => :build # for vala - - # Fails to build with vala >= 0.56 - resource "vala" do - url "http://download.gnome.org/sources/vala/0.54/vala-0.54.8.tar.xz" - sha256 "edfb3e79486a4bf48cebaea9291e57fc77da9322b6961e9549df6d973d04bc80" - end - - def install - resource("vala").stage do - system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{buildpath}/vala" - system "make" # Fails to compile as a single step - system "make", "install" - ENV.prepend_path "PATH", buildpath/"vala/bin" - end - - # stop meson_post_install.py from doing what needs to be done in the post_install step - ENV["DESTDIR"] = "/" - mkdir "build" do - system "meson", *std_meson_args, ".." - system "ninja" - system "ninja", "install" - end - end - - def post_install - system "#{Formula["gtk+3"].opt_bin}/gtk3-update-icon-cache", "-f", "-t", "#{HOMEBREW_PREFIX}/share/icons/hicolor" - system "#{Formula["glib"].opt_bin}/glib-compile-schemas", "#{HOMEBREW_PREFIX}/share/glib-2.0/schemas" - end - - test do - system "#{bin}/gradio", "-h" if ENV["DISPLAY"] - end -end From 2c604f172db7584e7cac1e009f430314d24c055f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:37 +0000 Subject: [PATCH 044/133] groovyserv: remove formula --- Formula/groovyserv.rb | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 Formula/groovyserv.rb diff --git a/Formula/groovyserv.rb b/Formula/groovyserv.rb deleted file mode 100644 index 55ad7ebc0c7a05..00000000000000 --- a/Formula/groovyserv.rb +++ /dev/null @@ -1,39 +0,0 @@ -class Groovyserv < Formula - desc "Speed up Groovy startup time" - homepage "https://kobo.github.io/groovyserv/" - url "https://bitbucket.org/kobo/groovyserv-mirror/downloads/groovyserv-1.2.0-src.zip" - sha256 "235b38c6bb70721fa41b2c2cc6224eeaac09721e4d04b504148b83c40ea0bb27" - license "Apache-2.0" - - livecheck do - url :stable - end - - bottle do - sha256 cellar: :any_skip_relocation, catalina: "4f132f1b743be47df84dc7b581b86951379598b3ae260701259e784c516b1a6a" - sha256 cellar: :any_skip_relocation, mojave: "576129ad3f5db66baf931af66b60c8c41b0e91929bcbd16c4e05d1ed710415fe" - sha256 cellar: :any_skip_relocation, high_sierra: "30825c3d2f95214cf8e06fbec819f5b3d1ed87f7b5f0dd1c588525dafaf12c41" - sha256 cellar: :any_skip_relocation, sierra: "43388a03d5e69fd6fe8377f8ac51fdfa00ffe0e0276a60f8c7ff2934ab32e2b0" - sha256 cellar: :any_skip_relocation, el_capitan: "51aef6e15608021ae127aaa93e2aa39bfaf52cfea688b45841d315b6a04b55aa" - end - - disable! date: "2022-07-31", because: :does_not_build - - depends_on "go" => :build - depends_on "groovy" - depends_on "openjdk@8" - - def install - # Sandbox fix to stop it ignoring our temporary $HOME variable. - ENV["GRADLE_USER_HOME"] = buildpath/".brew_home" - system "./gradlew", "clean", "distLocalBin" - system "unzip", "build/distributions/groovyserv-#{version}-bin-local.zip" - libexec.install Dir["groovyserv-#{version}/{bin,lib}"] - bin.install Dir[libexec/"bin/*"] - bin.env_script_all_files(libexec/"bin", Language::Java.java_home_env("1.8")) - end - - test do - system bin/"groovyserver", "--help" - end -end From 60a1b4009d00b34855e709f38624a36168cf5ac5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:37 +0000 Subject: [PATCH 045/133] helm@2: remove formula --- Formula/helm@2.rb | 60 ----------------------------------------------- 1 file changed, 60 deletions(-) delete mode 100644 Formula/helm@2.rb diff --git a/Formula/helm@2.rb b/Formula/helm@2.rb deleted file mode 100644 index 79662c16d59640..00000000000000 --- a/Formula/helm@2.rb +++ /dev/null @@ -1,60 +0,0 @@ -class HelmAT2 < Formula - desc "Kubernetes package manager" - homepage "https://helm.sh/" - url "https://github.com/helm/helm.git", - tag: "v2.17.0", - revision: "a690bad98af45b015bd3da1a41f6218b1a451dbe" - license "Apache-2.0" - - bottle do - sha256 cellar: :any_skip_relocation, arm64_monterey: "5758c325702f7f1e630e10a31075cc1a9a19ca047626fee6f3ad36775dbaca7d" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "7372a593968befdd89f52a079360d4096be38df500199cec1de53b9d9a047502" - sha256 cellar: :any_skip_relocation, monterey: "58b5f2ce65b8c15288e235dd8938e599a4762e1a98d25608dc91282f6761a924" - sha256 cellar: :any_skip_relocation, big_sur: "432e81bffefbb026bd50058e920a424b1805b84efc634d78c93dfedb9fec3d5a" - sha256 cellar: :any_skip_relocation, catalina: "831c4f5b7cf7fc1ab53364eeb2eeb6eff8babdbc51817b406b65a948ac6258c2" - sha256 cellar: :any_skip_relocation, mojave: "ab7ef44ce55c8b3597a2cb6dfe0ef93b74b389e6a4d6ab09c9a1ebe8dce5e594" - sha256 cellar: :any_skip_relocation, high_sierra: "a1c5cb86cce4fe2941c94309c8c75cd00ed9fae2e6edc6ea67aacadcf2f13c9e" - sha256 cellar: :any_skip_relocation, x86_64_linux: "718dfe0a0929ae4e4566954651c646ba6bab37dfd0a6ffac64740d0423461922" - end - - keg_only :versioned_formula - - # See: https://helm.sh/blog/helm-v2-deprecation-timeline/ - disable! date: "2022-07-31", because: :deprecated_upstream - - depends_on "glide" => :build - depends_on "go" => :build - - def install - ENV["GOPATH"] = buildpath - ENV["GLIDE_HOME"] = HOMEBREW_CACHE/"glide_home/#{name}" - ENV.prepend_create_path "PATH", buildpath/"bin" - ENV["TARGETS"] = "darwin/amd64" - dir = buildpath/"src/k8s.io/helm" - dir.install buildpath.children - [buildpath/".brew_home"] - - cd dir do - system "make", "bootstrap" - system "make", "build" - - bin.install "bin/helm" - bin.install "bin/tiller" - man1.install Dir["docs/man/man1/*"] - - generate_completions_from_executable(bin/"helm", "completion", base_name: "helm", shells: [:bash, :zsh]) - - prefix.install_metafiles - end - end - - test do - system "#{bin}/helm", "create", "foo" - assert File.directory? "#{testpath}/foo/charts" - - version_output = shell_output("#{bin}/helm version --client 2>&1") - assert_match "GitTreeState:\"clean\"", version_output - if build.stable? - assert_match stable.instance_variable_get(:@resource).instance_variable_get(:@specs)[:revision], version_output - end - end -end From 3a7ca7a518cc669901050b0be0302cf05f199c8a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:37 +0000 Subject: [PATCH 046/133] herrie: remove formula --- Formula/herrie.rb | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 Formula/herrie.rb diff --git a/Formula/herrie.rb b/Formula/herrie.rb deleted file mode 100644 index 9624c7b5c8dac7..00000000000000 --- a/Formula/herrie.rb +++ /dev/null @@ -1,40 +0,0 @@ -class Herrie < Formula - desc "Minimalistic audio player built upon Ncurses" - homepage "https://github.com/EdSchouten/herrie" - url "https://github.com/EdSchouten/herrie/releases/download/herrie-2.2/herrie-2.2.tar.bz2" - sha256 "142341072920f86b6eb570b8f13bf5fd87c06cf801543dc7d1a819e39eb9fb2b" - license "BSD-2-Clause" - revision 1 - - bottle do - rebuild 1 - sha256 arm64_monterey: "6432c7e843bd2580b1b736d4df4cdc37a8e80133ec46e7707cd379e662f5f2ed" - sha256 arm64_big_sur: "2e6dfaa27fef44c8bc0b4caf3250fed6dfcfca8cbdb5f8104a0ba1dc781371c1" - sha256 monterey: "22afb3f4e7d5021cfd0dea01a4f64b8259134ce05b425882f118d2b40f9764ca" - sha256 big_sur: "41be543b395d9650113133b77d4d03d37febc9ecba23cb5f85abe8deb681f011" - sha256 catalina: "8f1d86edb139e3385ac225852623f9c5018779a81b10c307a3ae872c1e64392d" - sha256 mojave: "4e3258f904116ff2eebbe9436ff3ea3bae676fe15bd0ea193d1d934353e2ffe3" - end - - disable! date: "2022-07-31", because: :repo_archived - - depends_on "pkg-config" => :build - depends_on "gettext" - depends_on "glib" - depends_on "libid3tag" - depends_on "libsndfile" - depends_on "libvorbis" - depends_on "mad" - - uses_from_macos "ncurses" - - def install - ENV["PREFIX"] = prefix - system "./configure", "no_modplug", "no_xspf", "coreaudio", "ncurses" - system "make", "install" - end - - test do - system "#{bin}/herrie", "-v" - end -end From 8f35025162185b4b29ae6e311d5adf5552f07496 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:38 +0000 Subject: [PATCH 047/133] homesick-completion: remove formula --- Formula/homesick-completion.rb | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 Formula/homesick-completion.rb diff --git a/Formula/homesick-completion.rb b/Formula/homesick-completion.rb deleted file mode 100644 index 02d8f395539a2d..00000000000000 --- a/Formula/homesick-completion.rb +++ /dev/null @@ -1,22 +0,0 @@ -class HomesickCompletion < Formula - desc "Bash completion for Homesick" - homepage "https://github.com/JoeNyland/homesick-completion" - url "https://github.com/JoeNyland/homesick-completion/archive/v1.0.0.tar.gz" - sha256 "f9953d92dc5c0d9770d502a68651795c78f5d7bd6078cd747e77ebc602c43609" - license "MIT" - - bottle do - sha256 cellar: :any_skip_relocation, all: "84ac5662175829b833121f38e89eb136906b72d3274378b024a8059829b7026f" - end - - disable! date: "2022-07-31", because: :repo_archived - - def install - bash_completion.install "homesick" - end - - test do - assert_match "-F _homesick", - shell_output("bash -c 'source #{bash_completion}/homesick && complete -p homesick'") - end -end From 0f284a84a6eabdb2ee0b99e76e7dc715995ce515 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:38 +0000 Subject: [PATCH 048/133] infrakit: remove formula --- Formula/infrakit.rb | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 Formula/infrakit.rb diff --git a/Formula/infrakit.rb b/Formula/infrakit.rb deleted file mode 100644 index 94b2842a22d1a8..00000000000000 --- a/Formula/infrakit.rb +++ /dev/null @@ -1,38 +0,0 @@ -class Infrakit < Formula - desc "Toolkit for creating and managing declarative infrastructure" - homepage "https://github.com/docker-archive/deploykit" - url "https://github.com/docker-archive/deploykit.git", - tag: "v0.5", - revision: "3d2670e484176ce474d4b3d171994ceea7054c02" - license "Apache-2.0" - - bottle do - rebuild 1 - sha256 cellar: :any_skip_relocation, big_sur: "1516a85df3aef1a35b656d241de9e7f7ec8d8e35d14fdd8c6df1d8966c9a4978" - sha256 cellar: :any_skip_relocation, catalina: "1ad3128e68d1c83ca103eb1469138f3a0d40722b1a9c300babcd50533ff9342a" - sha256 cellar: :any_skip_relocation, mojave: "a20e2268d7d92cb9fcdb136c0940a7bfa62faf6bdc33f79f89639bc08e7d7cb1" - sha256 cellar: :any_skip_relocation, high_sierra: "3d188727e1be0bdf150e152b0939560a209415fa9d3b5c2275eea163510d4994" - sha256 cellar: :any_skip_relocation, sierra: "8db80c4d2d7842486a4cedfa4952ed06e453f2e61f4e6818a08b17fa694d1a1c" - end - - disable! date: "2022-07-31", because: :repo_archived - - depends_on "go" => :build - depends_on "libvirt" => :build - - def install - ENV["GOPATH"] = buildpath - (buildpath/"src/github.com/docker/infrakit").install buildpath.children - cd "src/github.com/docker/infrakit" do - system "make", "cli" - bin.install "build/infrakit" - prefix.install_metafiles - end - end - - test do - ENV["INFRAKIT_HOME"] = testpath - ENV["INFRAKIT_CLI_DIR"] = testpath - assert_match revision.to_s, shell_output("#{bin}/infrakit version") - end -end From f505d955efd3d41c1ed021f765c50b4782a3bb6c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:39 +0000 Subject: [PATCH 049/133] iphotoexport: remove formula --- Formula/iphotoexport.rb | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 Formula/iphotoexport.rb diff --git a/Formula/iphotoexport.rb b/Formula/iphotoexport.rb deleted file mode 100644 index 48fc1da60c26eb..00000000000000 --- a/Formula/iphotoexport.rb +++ /dev/null @@ -1,28 +0,0 @@ -class Iphotoexport < Formula - desc "Export and synchronize iPhoto library to a folder tree" - homepage "https://code.google.com/archive/p/iphotoexport/" - url "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/iphotoexport/iphotoexport-1.6.4.zip" - sha256 "85644b5be1541580a35f1ea6144d832267f1284ac3ca23fe9bcd9eda5aaea5d3" - - bottle do - sha256 cellar: :any_skip_relocation, all: "9b61d6e01dd01bc1ab24a32284ce269495beb77a6f516c8b30e5c86003b66333" - end - - # Replaced by Phoshare app, which was discontinued on 2012-10-10. - # The current version (1.6.4) is from 2010-05-15. - disable! date: "2022-07-31", because: :deprecated_upstream - - depends_on "exiftool" - - def install - # Change hardcoded exiftool path - inreplace "tilutil/exiftool.py", "/usr/bin/exiftool", "exiftool" - - prefix.install Dir["*"] - bin.install_symlink prefix/"iphotoexport.py" => "iphotoexport" - end - - test do - system "#{bin}/iphotoexport", "--help" - end -end From a6b15763b934c01630ec829c3991ab4c76cc84a0 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:39 +0000 Subject: [PATCH 050/133] jooby-bootstrap: remove formula --- Formula/jooby-bootstrap.rb | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 Formula/jooby-bootstrap.rb diff --git a/Formula/jooby-bootstrap.rb b/Formula/jooby-bootstrap.rb deleted file mode 100644 index 7c90b1aa72da78..00000000000000 --- a/Formula/jooby-bootstrap.rb +++ /dev/null @@ -1,26 +0,0 @@ -class JoobyBootstrap < Formula - desc "Script to simplify the creation of jooby apps" - homepage "https://github.com/jooby-project/jooby-bootstrap" - url "https://github.com/jooby-project/jooby-bootstrap/archive/0.2.2.tar.gz" - sha256 "ba662dcbe9022205cdb147a1c4e0931191eb902477ca40f3cba0170dfad54fda" - license "Apache-2.0" - revision 1 - - bottle do - sha256 cellar: :any_skip_relocation, all: "3ca58a519ffa11530ab152b7a007c4b11e7bf76767b9296b84626e0516598c7b" - end - - disable! date: "2022-07-31", because: :unmaintained - - depends_on "maven" - depends_on "openjdk@8" - - def install - libexec.install "jooby" - (bin/"jooby").write_env_script libexec/"jooby", Language::Java.java_home_env("1.8") - end - - test do - system "#{bin}/jooby", "version" - end -end From cd869ed866302f3707dc435c6185db639a22b1c7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:39 +0000 Subject: [PATCH 051/133] json11: remove formula --- Formula/json11.rb | 47 ----------------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 Formula/json11.rb diff --git a/Formula/json11.rb b/Formula/json11.rb deleted file mode 100644 index 668430f2b05947..00000000000000 --- a/Formula/json11.rb +++ /dev/null @@ -1,47 +0,0 @@ -class Json11 < Formula - desc "Tiny JSON library for C++11" - homepage "https://github.com/dropbox/json11" - url "https://github.com/dropbox/json11/archive/v1.0.0.tar.gz" - sha256 "bab960eebc084d26aaf117b8b8809aecec1e86e371a173655b7dffb49383b0bf" - license "MIT" - - bottle do - rebuild 1 - sha256 cellar: :any_skip_relocation, arm64_monterey: "812394b65215fb60f32f3b82697483a928e1784ea981fd3948ed07aae93e12fa" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "9b05e1c86fa167507521019951abafe352ab7ec786c9227d7816d860e5b370d8" - sha256 cellar: :any_skip_relocation, monterey: "07fe8500710d83ca7e6bc1b8cc3b081fbcc6ad45363bdd3bd346c42f712cf926" - sha256 cellar: :any_skip_relocation, big_sur: "35c418041e5f90e2f6486b6ae047fc72166356082618940a319f85ac4939aa8b" - sha256 cellar: :any_skip_relocation, catalina: "cbdc55d054d0ba3060a8709b5b98c5c4c0601e7483b4ca2a62aab8a9fc630428" - sha256 cellar: :any_skip_relocation, mojave: "e0229fc7e70a26fdd945e3cf666e2608f73d186b20fcc2555d19466e78771d54" - end - - disable! date: "2022-07-31", because: :repo_archived - - depends_on "cmake" => :build - - def install - system "cmake", ".", *std_cmake_args - system "make", "install" - end - - test do - (testpath/"test.cpp").write <<~EOS - #include - #include - using namespace json11; - - int main() { - Json my_json = Json::object { - { "key1", "value1" }, - { "key2", false }, - { "key3", Json::array { 1, 2, 3 } }, - }; - auto json_str = my_json.dump(); - return 0; - } - EOS - system ENV.cxx, "test.cpp", "-std=c++11", "-I#{include}", "-L#{lib}", - "-ljson11", "-o", "test" - system "./test" - end -end From 2f40176126d825d323c08a6a2cfdfd3e50617369 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:40 +0000 Subject: [PATCH 052/133] kedge: remove formula --- Formula/kedge.rb | 45 --------------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 Formula/kedge.rb diff --git a/Formula/kedge.rb b/Formula/kedge.rb deleted file mode 100644 index 5d80b32456be61..00000000000000 --- a/Formula/kedge.rb +++ /dev/null @@ -1,45 +0,0 @@ -class Kedge < Formula - desc "Deployment tool for Kubernetes artifacts" - homepage "https://github.com/kedgeproject/kedge" - url "https://github.com/kedgeproject/kedge/archive/v0.12.0.tar.gz" - sha256 "3c01880ba9233fe5b0715527ba32f0c59b25b73284de8cfb49914666a158487b" - license "Apache-2.0" - - bottle do - sha256 cellar: :any_skip_relocation, arm64_monterey: "c25e7dcb4468860e15ec46561940748588733bcaa8fa4bbff1816d2da82268ba" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "a05e8eb025a5e0221e9eea130a331bdeba547af86831a90d0959bed87222168d" - sha256 cellar: :any_skip_relocation, monterey: "aed4f6368ee87ddfd3c73654985c1f65b0b49a50993c71fa4b93f4ed753efaa4" - sha256 cellar: :any_skip_relocation, big_sur: "045212f9d7e995b765d681d7f6b3478fe976907cc867e663dcf6ed791e258e41" - sha256 cellar: :any_skip_relocation, catalina: "3edff5947ad6460ff5132a9f1722d12e9da6c3644138275b0f3423dc14efac3b" - sha256 cellar: :any_skip_relocation, mojave: "2302d114b01411cef00669faf00e32f1db551a9ba10402398720ca7a56cac0ec" - sha256 cellar: :any_skip_relocation, high_sierra: "ff1bf61801e5c5e17ba83abe714c4d30914a458291cdc0fc4654ee952a919c4c" - sha256 cellar: :any_skip_relocation, sierra: "39f193757913fc743191091a86b5d162b4cb4af618975db1ecd649dce7a08941" - sha256 cellar: :any_skip_relocation, el_capitan: "1ff9804be018e8bf5bd0668ce1e1a647ab04005b4ea34fb22f49c50c215b4e13" - sha256 cellar: :any_skip_relocation, x86_64_linux: "a20c3f832449db3fe778e682f6af6a6a19525c1b5d49a196f1e1728467f4b049" - end - - # https://github.com/kedgeproject/kedge/issues/619 - disable! date: "2022-07-31", because: :unsupported - - depends_on "go" => :build - - def install - ENV["GOPATH"] = buildpath - ENV["GO111MODULE"] = "auto" - (buildpath/"src/github.com/kedgeproject").mkpath - ln_s buildpath, buildpath/"src/github.com/kedgeproject/kedge" - system "make", "bin" - bin.install "kedge" - end - - test do - (testpath/"kedgefile.yml").write <<~EOS - name: test - deployments: - - containers: - - image: test - EOS - output = shell_output("#{bin}/kedge generate -f kedgefile.yml") - assert_match "name: test", output - end -end From 39a6532cc2b603441760872b76819fc96d6e052e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:40 +0000 Subject: [PATCH 053/133] kibana: remove formula --- Formula/kibana.rb | 100 ---------------------------------------------- 1 file changed, 100 deletions(-) delete mode 100644 Formula/kibana.rb diff --git a/Formula/kibana.rb b/Formula/kibana.rb deleted file mode 100644 index e5215682129c5e..00000000000000 --- a/Formula/kibana.rb +++ /dev/null @@ -1,100 +0,0 @@ -class Kibana < Formula - desc "Analytics and search dashboard for Elasticsearch" - homepage "https://www.elastic.co/products/kibana" - # NOTE: Do not bump version to one with a non-open-source license - url "https://github.com/elastic/kibana.git", - tag: "v7.10.2", - revision: "a0b793698735eb1d0ab1038f8e5d7a951524e929" - license "Apache-2.0" - head "https://github.com/elastic/kibana.git", branch: "master" - - bottle do - rebuild 1 - sha256 cellar: :any_skip_relocation, all: "308f92ff1e8455e9521c07b3d18d6d8f15b0cf107754620971e6346cfbb39b0e" - end - - # elasticsearch will be relicensed before v7.11. - # https://www.elastic.co/blog/licensing-change - disable! date: "2022-07-31", because: "is switching to an incompatible license" - - depends_on "python@3.10" => :build - depends_on "yarn" => :build - depends_on "node@10" - - def install - inreplace "package.json", /"node": "10\.\d+\.\d+"/, %Q("node": "#{Formula["node@10"].version}") - - # prepare project after checkout - system "yarn", "kbn", "bootstrap" - - # build open source only - system "node", "scripts/build", "--oss", "--release", "--skip-os-packages", "--skip-archives" - - # remove non open source files - rm_rf "x-pack" - - prefix.install Dir - .glob("build/oss/kibana-#{version}-darwin-x86_64/**") - .reject { |f| File.fnmatch("build/oss/kibana-#{version}-darwin-x86_64/{node, data, plugins}", f) } - mv "licenses/APACHE-LICENSE-2.0.txt", "LICENSE.txt" # install OSS license - - cd prefix do - inreplace "config/kibana.yml", "/var/run/kibana.pid", var/"run/kibana.pid" - (etc/"kibana").install Dir["config/*"] - rm_rf "config" - end - end - - def post_install - ln_s etc/"kibana", prefix/"config" - (prefix/"data").mkdir - (prefix/"plugins").mkdir - end - - def caveats - <<~EOS - Config: #{etc}/kibana/ - If you wish to preserve your plugins upon upgrade, make a copy of - #{opt_prefix}/plugins before upgrading, and copy it into the - new keg location after upgrading. - EOS - end - - plist_options manual: "kibana" - - def plist - <<~EOS - - - - - Label - #{plist_name} - Program - #{opt_bin}/kibana - RunAtLoad - - - - EOS - end - - test do - ENV["BABEL_CACHE_PATH"] = testpath/".babelcache.json" - - (testpath/"data").mkdir - (testpath/"config.yml").write <<~EOS - path.data: #{testpath}/data - EOS - - port = free_port - fork do - exec bin/"kibana", "-p", port.to_s, "-c", testpath/"config.yml" - end - sleep 15 - output = shell_output("curl -s 127.0.0.1:#{port}") - # Kibana returns this message until it connects to Elasticsearch - assert_equal "Kibana server is not ready yet", output - end -end From 146b37f44f9d524f41b38f16862c953154292de9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:40 +0000 Subject: [PATCH 054/133] kibana@6: remove formula --- Formula/kibana@6.rb | 76 --------------------------------------------- 1 file changed, 76 deletions(-) delete mode 100644 Formula/kibana@6.rb diff --git a/Formula/kibana@6.rb b/Formula/kibana@6.rb deleted file mode 100644 index 587a4cdb8dce50..00000000000000 --- a/Formula/kibana@6.rb +++ /dev/null @@ -1,76 +0,0 @@ -class KibanaAT6 < Formula - desc "Analytics and search dashboard for Elasticsearch" - homepage "https://www.elastic.co/products/kibana" - url "https://github.com/elastic/kibana.git", - tag: "v6.8.20", - revision: "d872739e24c6cdac75501f19bf4fe0a1b198c524" - license "Apache-2.0" - - bottle do - sha256 cellar: :any_skip_relocation, monterey: "3fdc7ae371689838ee1c29ce6d29a14780effc178fc5de39f20cf619f6af1c22" - sha256 cellar: :any_skip_relocation, big_sur: "8b89272e13e281a61a7c82f03e279d11731c9e772f7ccdcdabf0f2b67546733f" - sha256 cellar: :any_skip_relocation, catalina: "fa529ae4e4890e3b7e7ee56e25a99c7f95852eadfd08d75121c9bc1f1baf4dd5" - end - - keg_only :versioned_formula - - disable! date: "2022-07-31", because: :unsupported - - depends_on "yarn" => :build - depends_on :macos # Due to Python 2 - depends_on "node@10" - - def install - # remove non open source files - rm_rf "x-pack" - inreplace "package.json", /"x-pack":.*/, "" - - # patch build to not try to read tsconfig.json's from the removed x-pack folder - inreplace "src/dev/typescript/projects.ts" do |s| - s.gsub! "new Project(resolve(REPO_ROOT, 'x-pack/tsconfig.json')),", "" - s.gsub! "new Project(resolve(REPO_ROOT, 'x-pack/test/tsconfig.json'), 'x-pack/test'),", "" - end - - inreplace "package.json", /"node": "10\.\d+\.\d+"/, %Q("node": "#{Formula["node@10"].version}") - system "yarn", "kbn", "bootstrap" - system "yarn", "build", "--oss", "--release", "--skip-os-packages", "--skip-archives" - - prefix.install Dir - .glob("build/oss/kibana-#{version}-darwin-x86_64/**") - .reject { |f| File.fnmatch("build/oss/kibana-#{version}-darwin-x86_64/{node, data, plugins}", f) } - mv "licenses/APACHE-LICENSE-2.0.txt", "LICENSE.txt" # install OSS license - - cd prefix do - inreplace "config/kibana.yml", "/var/run/kibana.pid", var/"run/kibana.pid" - (etc/"kibana").install Dir["config/*"] - rm_rf "config" - end - end - - def post_install - ln_s etc/"kibana", prefix/"config" - (prefix/"data").mkdir - (prefix/"plugins").mkdir - end - - def caveats - <<~EOS - Config: #{etc}/kibana/ - If you wish to preserve your plugins upon upgrade, make a copy of - #{opt_prefix}/plugins before upgrading, and copy it into - the new keg location after upgrading. - EOS - end - - plist_options manual: "kibana" - - service do - run opt_bin/"kibana" - run_type :immediate - end - - test do - ENV["BABEL_CACHE_PATH"] = testpath/".babelcache.json" - assert_match version.to_s, shell_output("#{bin}/kibana -V") - end -end From 166b826fb33eeccd9f28d5bdbd56dca6720612a2 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:41 +0000 Subject: [PATCH 055/133] kite: remove formula --- Formula/kite.rb | 51 ------------------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 Formula/kite.rb diff --git a/Formula/kite.rb b/Formula/kite.rb deleted file mode 100644 index ee950c3dee831c..00000000000000 --- a/Formula/kite.rb +++ /dev/null @@ -1,51 +0,0 @@ -class Kite < Formula - desc "Programming language designed to minimize programmer experience" - homepage "https://web.archive.org/web/20200217045713/http://www.kite-language.org/" - url "http://www.kite-language.org/files/kite-1.0.4.tar.gz" - sha256 "8f97e777c3ea8cb22fa1236758df3c479bba98be3deb4483ae9aff4cd39c01d5" - license "BSD-3-Clause" - revision 3 - - bottle do - sha256 monterey: "941bc654ba679eee9d935a158acbfd26f3c73ccd0cf4c92d230fd068938e9cb5" - sha256 cellar: :any, big_sur: "e42d72077eab99bf9765a87691d809c953ab94bd36c65b1dd51a6f681a3962fe" - sha256 cellar: :any, catalina: "34c4f01c0b9290e11773e9bd9f971bdefd47dba7d2bd9023aed4fb0b50738184" - sha256 cellar: :any, mojave: "45a37540be7705e4daca4716415228a99a6ad77ec46d4916834cce0f71f7f08c" - sha256 x86_64_linux: "45184970c4f76d2230063944b65f3f8b48fa90c8860dc502f6f677db03269a63" - end - - disable! date: "2022-07-31", because: :unmaintained - - depends_on "bdw-gc" - - # patch to build against bdw-gc 7.2, sent upstream - patch :DATA - - def install - system "./configure", "--disable-debug", "--disable-dependency-tracking", - "--prefix=#{prefix}" - system "make", "install" - end - - test do - output = pipe_output("#{bin}/kite", "'hello, world'|print;", 0) - assert_equal "hello, world", output.chomp - end -end - -__END__ ---- a/backend/common/kite_vm.c 2010-08-21 01:20:25.000000000 +0200 -+++ b/backend/common/kite_vm.c 2012-02-11 02:29:37.000000000 +0100 -@@ -152,7 +152,12 @@ - #endif - - #ifdef HAVE_GC_H -+#if (GC_VERSION_MAJOR > 7) || (GC_VERSION_MAJOR == 7 && GC_VERSION_MINOR >= 2) -+ ret->old_proc = GC_get_warn_proc(); -+ GC_set_warn_proc ((GC_warn_proc)kite_ignore_gc_warnings); -+#else - ret->old_proc = GC_set_warn_proc((GC_warn_proc)kite_ignore_gc_warnings); -+#endif - #endif /* HAVE_GC_H */ - - return ret; From 62656e949d36a482523e6571e660d6a3f5fe867d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:41 +0000 Subject: [PATCH 056/133] kube-aws: remove formula --- Formula/kube-aws.rb | 48 --------------------------------------------- 1 file changed, 48 deletions(-) delete mode 100644 Formula/kube-aws.rb diff --git a/Formula/kube-aws.rb b/Formula/kube-aws.rb deleted file mode 100644 index fcc021559cf1b4..00000000000000 --- a/Formula/kube-aws.rb +++ /dev/null @@ -1,48 +0,0 @@ -class KubeAws < Formula - desc "Command-line tool to declaratively manage Kubernetes clusters on AWS" - homepage "https://kubernetes-retired.github.io/kube-aws/" - url "https://github.com/kubernetes-retired/kube-aws.git", - tag: "v0.16.4", - revision: "c74d91ecd6760d33111dc8c7f8f51bf816424310" - license "Apache-2.0" - head "https://github.com/kubernetes-retired/kube-aws.git", branch: "master" - - bottle do - sha256 cellar: :any_skip_relocation, arm64_monterey: "f04ba02f28cb91e0abfb59c82c1231b6094ea944b70dd815a903448bfeea470b" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "7af14149a6b45de2067d7fbb256bcc452582134eda27688a82527d7a7a074b41" - sha256 cellar: :any_skip_relocation, monterey: "13b994d0e98d81cdb8a80180ae0ae2e66030013412044f519de39be785b112e4" - sha256 cellar: :any_skip_relocation, big_sur: "8e8c892bc74895bf9567f96ba0d27d74b206197f20bd6d348c96732984dad507" - sha256 cellar: :any_skip_relocation, catalina: "1c5004445c0be8fd055ff78439bd3c0b413cd56247385c1453c5956fbe9503b1" - sha256 cellar: :any_skip_relocation, mojave: "f05e8f3cfbe5f8c17f2cd6d3a854b7c329d7f922f03271bb36ca8497589ef7d4" - sha256 cellar: :any_skip_relocation, high_sierra: "5172a4ad55d3977c81d405bc67d91a35ead719e24c555d5843529d2489323d79" - sha256 cellar: :any_skip_relocation, x86_64_linux: "34fad4681f7bd9006dd5a6c8e4c482244dd27d881e5c6ced41cd4a61722df064" - end - - # Fork can be found at: https://github.com/kube-aws/kube-aws - disable! date: "2022-07-31", because: :repo_archived - - depends_on "go" => :build - depends_on "packr" => :build - - def install - system "make", "OUTPUT_PATH=#{bin}/kube-aws" - end - - test do - system "#{bin}/kube-aws" - system "#{bin}/kube-aws", "init", "--cluster-name", "test-cluster", - "--external-dns-name", "dns", "--region", "us-west-1", - "--availability-zone", "zone", "--key-name", "key", - "--kms-key-arn", "arn", "--no-record-set", - "--s3-uri", "s3://examplebucket/mydir" - cluster_yaml = (testpath/"cluster.yaml").read - assert_match "clusterName: test-cluster", cluster_yaml - assert_match "dnsName: dns", cluster_yaml - assert_match "region: us-west-1", cluster_yaml - assert_match "availabilityZone: zone", cluster_yaml - assert_match "keyName: key", cluster_yaml - assert_match "kmsKeyArn: \"arn\"", cluster_yaml - installed_version = shell_output("#{bin}/kube-aws version 2>&1") - assert_match "kube-aws version v#{version}", installed_version - end -end From 3937bb96f4bd618b925c12896acccddc87b4860e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:42 +0000 Subject: [PATCH 057/133] landscaper: remove formula --- Formula/landscaper.rb | 53 ------------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 Formula/landscaper.rb diff --git a/Formula/landscaper.rb b/Formula/landscaper.rb deleted file mode 100644 index 81091018548932..00000000000000 --- a/Formula/landscaper.rb +++ /dev/null @@ -1,53 +0,0 @@ -class Landscaper < Formula - desc "Manage the application landscape in a Kubernetes cluster" - homepage "https://github.com/Eneco/landscaper" - url "https://github.com/Eneco/landscaper.git", - tag: "v1.0.24", - revision: "1199b098bcabc729c885007d868f38b2cf8d2370" - license "Apache-2.0" - revision 1 - head "https://github.com/Eneco/landscaper.git", branch: "master" - - bottle do - sha256 cellar: :any_skip_relocation, arm64_monterey: "835b3c32293b1725d2065652ecd2a0017ba2387351f586936230ff96030f79cb" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "d6d705dc7d36d5fd8f0f6abd093bd86398c799929069fa47f117deb25f5bbe0f" - sha256 cellar: :any_skip_relocation, monterey: "13cf71ffacb84e95c4346beec92e389893755f998f6f421b930b9adb5ccfdc5d" - sha256 cellar: :any_skip_relocation, big_sur: "bad7cf082826c5d92dd8c09a79b682e1582fcfc3f4e471dde4112393ec7095ce" - sha256 cellar: :any_skip_relocation, catalina: "74decffaf180e0e0dd9bfa2312877da01443a3418afe0f485c1b655c4af1da41" - sha256 cellar: :any_skip_relocation, mojave: "ff82cdb7be6329f9a4a5ce34bcbb04bc9356ab46fa3ecd30b830cf35df268529" - sha256 cellar: :any_skip_relocation, high_sierra: "68302c1748fe4eb063855df24420a8681a54b8ce484f2e030616bd4c4a812d52" - sha256 cellar: :any_skip_relocation, x86_64_linux: "a51ba397aeab58e4b2c68b916dcb3612aca5d7d383b6e4715db785e098270f4e" - end - - # also depends on helm@2 (which failed to build) - disable! date: "2022-07-31", because: :repo_archived - - depends_on "dep" => :build - depends_on "go" => :build - depends_on "helm@2" - depends_on "kubernetes-cli" - - def install - ENV["GOPATH"] = buildpath - ENV["GO111MODULE"] = "auto" - ENV.prepend_create_path "PATH", buildpath/"bin" - arch = Hardware::CPU.intel? ? "amd64" : Hardware::CPU.arch.to_s - ENV["TARGETS"] = "#{OS.kernel_name.downcase}/#{arch}" - dir = buildpath/"src/github.com/eneco/landscaper" - dir.install buildpath.children - [buildpath/".brew_home"] - - cd dir do - system "make", "bootstrap" - system "make", "build" - bin.install "build/landscaper" - bin.env_script_all_files(libexec/"bin", PATH: "#{Formula["helm@2"].opt_bin}:$PATH") - prefix.install_metafiles - end - end - - test do - output = shell_output("#{bin}/landscaper apply --dry-run 2>&1", 1) - assert_match "This is Landscaper v#{version}", output - assert_match "dryRun=true", output - end -end From 5d9a2837c2205689568feb2711546ed97f15ec9c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:42 +0000 Subject: [PATCH 058/133] lesstif: remove formula --- Formula/lesstif.rb | 68 ---------------------------------------------- 1 file changed, 68 deletions(-) delete mode 100644 Formula/lesstif.rb diff --git a/Formula/lesstif.rb b/Formula/lesstif.rb deleted file mode 100644 index 8ffb4040b19acc..00000000000000 --- a/Formula/lesstif.rb +++ /dev/null @@ -1,68 +0,0 @@ -class Lesstif < Formula - desc "Open source implementation of OSF/Motif" - homepage "https://lesstif.sourceforge.io" - url "https://downloads.sourceforge.net/project/lesstif/lesstif/0.95.2/lesstif-0.95.2.tar.bz2" - sha256 "eb4aa38858c29a4a3bcf605cfe7d91ca41f4522d78d770f69721e6e3a4ecf7e3" - license all_of: ["GPL-2.0-or-later", "LGPL-2.0-or-later"] - revision 1 - - bottle do - sha256 arm64_big_sur: "b21ba8ea2bfc016141ab76a3021c7a941f1a682840cec111bc2bc2b8adc53af6" - sha256 big_sur: "49ec8eeeb266caef90b7fee6151d7292e4b636256863a9a4b67abdf965aba33b" - sha256 catalina: "78f251801b6befbfc5823a668c45babcec2f24a0de4befd089f1034e02dcbf46" - sha256 mojave: "f522a309507b2f9c2aad4aea7a8bbb6cc7d845e922d6d49cd3ca81bccad7f5f5" - sha256 high_sierra: "6bc0a2511a83a9a15bc27a2385aa7fd944836eb4e685ee7878e590be7680e713" - sha256 x86_64_linux: "4472bebd72a9ed03121c7cd4c9d2ef99c1da329ebfce7d41a0cf7240ed12cbeb" - end - - disable! date: "2022-07-31", because: :unmaintained - - depends_on "freetype" - depends_on "libice" - depends_on "libsm" - depends_on "libx11" - depends_on "libxext" - depends_on "libxp" - depends_on "libxt" - - conflicts_with "openmotif", - because: "both Lesstif and Openmotif are complete replacements for each other" - - def install - # LessTif does naughty, naughty, things by assuming we want autoconf macros - # to live in wherever `aclocal --print-ac-dir` says they should. - # Shame on you LessTif! *wags finger* - inreplace "configure", "`aclocal --print-ac-dir`", "#{share}/aclocal" - - # 'sed' fails if LANG=en_US.UTF-8 as is often the case on Macs. - # The configure script finds our superenv sed wrapper, sets SED, - # but then doesn't use that variable. - ENV["LANG"] = "C" - - system "./configure", "--prefix=#{prefix}", - "--disable-debug", - "--enable-production", - "--disable-dependency-tracking", - "--enable-shared", - "--enable-static" - - system "make" - - # LessTif won't install in parallel 'cause several parts of the Makefile will - # try to make the same directory and `mkdir` will fail. - ENV.deparallelize - system "make", "install" - - # LessTif ships Core.3, which causes a conflict with CORE.3 from - # Perl in case-insensitive file systems. Rename it to LessTifCore.3 - # to avoid this problem. - mv man3/"Core.3", man3/"LessTifCore.3" - end - - def caveats - <<~EOS - The manpage was renamed to avoid a conflict with Perl. To read it, run: - man LessTifCore - EOS - end -end From 75b97b5d62c3ea93c20c7af2b7cbd737e37436ac Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:42 +0000 Subject: [PATCH 059/133] libav: remove formula --- Formula/libav.rb | 158 ----------------------------------------------- 1 file changed, 158 deletions(-) delete mode 100644 Formula/libav.rb diff --git a/Formula/libav.rb b/Formula/libav.rb deleted file mode 100644 index 56b2c7fea82b81..00000000000000 --- a/Formula/libav.rb +++ /dev/null @@ -1,158 +0,0 @@ -class Libav < Formula - desc "Audio and video processing tools" - homepage "https://libav.org/" - url "https://libav.org/releases/libav-12.3.tar.xz" - sha256 "6893cdbd7bc4b62f5d8fd6593c8e0a62babb53e323fbc7124db3658d04ab443b" - license "GPL-2.0-or-later" - revision 8 - head "https://git.libav.org/libav.git", branch: "master" - - bottle do - sha256 cellar: :any, arm64_monterey: "d163d72bbc94cf659325285190fbbf60f8e3232bb60eba917c57bb3fa4189983" - sha256 cellar: :any, arm64_big_sur: "0654bef05e6d8a3fa7fbeb6e9be5a02abe411ebbb3eec69c7a2e1f4b309cb6f5" - sha256 cellar: :any, monterey: "6db33d4e93ba3b0cb88b1474eadaabe505a3333501b56366e2b95813c8021231" - sha256 cellar: :any, big_sur: "0bd97c8c39f11b5b29d5c271a28eb4ea4a40b4062a4331f8d97f738c9a82fb05" - sha256 cellar: :any, catalina: "fcfafef0bb5eeee417c1d69d8ddb1fe0d7a8f8fe70edf39b8499a0df841f6905" - sha256 cellar: :any, mojave: "f71b7acc7dd972d60176b7d6c9bfe247181867d98ff991d771dcff54a6beace5" - sha256 cellar: :any_skip_relocation, x86_64_linux: "4ddcdad67f78046192ba87f2cdb2012b886e714b08f7595133f348e5761bd6fa" - end - - # See: https://lists.libav.org/pipermail/libav-devel/2020-April/086589.html - disable! date: "2022-07-31", because: :unmaintained - - depends_on "pkg-config" => :build - # manpages won't be built without texi2html - depends_on "texi2html" => :build - depends_on "yasm" => :build - - depends_on "faac" - depends_on "fdk-aac" - depends_on "freetype" - depends_on "lame" - depends_on "libvorbis" - depends_on "libvpx" - depends_on "opus" - depends_on "sdl12-compat" - depends_on "theora" - depends_on "x264" - depends_on "xvid" - - # Cherry-picked hunk from https://github.com/libav/libav/commit/fe7bc1f16abaefe66d8a20f734ca3eb8a4ce4d43 - # (second hunk in above commit conflicts with released source) - patch do - url "https://raw.githubusercontent.com/Homebrew/formula-patches/e07f287/libav/remove_unconditional_X11_probe.patch" - sha256 "093364c5cb0d79fb80566b5b466e6e8877d01c70e32b6f8ad624205005caba26" - end - - # https://bugzilla.libav.org/show_bug.cgi?id=1033 - patch do - url "https://raw.githubusercontent.com/Homebrew/formula-patches/b6e917c/libav/Check-for--no_weak_imports-in-ldflags-on-macOS.patch" - sha256 "986d748ba2c7c83319a59d76fbb0dca22dcd51f0252b3d1f3b80dbda2cf79742" - end - - # Upstream patch for x264 version >= 153, should be included in libav > 12.3 - patch do - url "https://github.com/libav/libav/commit/c6558e8840fbb2386bf8742e4d68dd6e067d262e.patch?full_index=1" - sha256 "0fcfe69274cccbca33825414f526300a1fbbf0c464ac32577e1cc137b8618820" - end - - # Upstream patch to fix building with fdk-aac 2 - patch do - url "https://github.com/libav/libav/commit/141c960e21d2860e354f9b90df136184dd00a9a8.patch?full_index=1" - sha256 "7081183fed875f71d53cce1e71f6b58fb5d5eee9f30462d35f9367ec2210507b" - end - - # Fix for image formats removed from libvpx - # https://github.com/shirkdog/hardenedbsd-ports/blob/HEAD/multimedia/libav/files/patch-libavcodec_libvpx.c - patch :DATA - - def install - args = %W[ - --disable-debug - --disable-shared - --disable-indev=jack - --prefix=#{prefix} - --cc=#{ENV.cc} - --host-cflags=#{ENV.cflags} - --host-ldflags=#{ENV.ldflags} - --enable-gpl - --enable-libfaac - --enable-libfdk-aac - --enable-libfreetype - --enable-libmp3lame - --enable-libopus - --enable-libvorbis - --enable-libvpx - --enable-libx264 - --enable-libxvid - --enable-nonfree - --enable-vda - --enable-version3 - --enable-libtheora - --disable-libxcb - --disable-vaapi - --disable-vdpau - ] - - system "./configure", *args - system "make" - - bin.install "avconv", "avprobe", "avplay" - man1.install "doc/avconv.1", "doc/avprobe.1", "doc/avplay.1" - end - - test do - # Create an example mp4 file - mp4out = testpath/"video.mp4" - system bin/"avconv", "-y", "-filter_complex", "testsrc=rate=1:duration=1", mp4out - assert_predicate mp4out, :exist? - end -end - -__END__ ---- a/libavcodec/libvpx.c -+++ b/libavcodec/libvpx.c -@@ -25,6 +25,7 @@ - enum AVPixelFormat ff_vpx_imgfmt_to_pixfmt(vpx_img_fmt_t img) - { - switch (img) { -+#if VPX_IMAGE_ABI_VERSION < 5 - case VPX_IMG_FMT_RGB24: return AV_PIX_FMT_RGB24; - case VPX_IMG_FMT_RGB565: return AV_PIX_FMT_RGB565BE; - case VPX_IMG_FMT_RGB555: return AV_PIX_FMT_RGB555BE; -@@ -36,10 +37,13 @@ enum AVPixelFormat ff_vpx_imgfmt_to_pixfmt(vpx_img_fmt - case VPX_IMG_FMT_ARGB_LE: return AV_PIX_FMT_BGRA; - case VPX_IMG_FMT_RGB565_LE: return AV_PIX_FMT_RGB565LE; - case VPX_IMG_FMT_RGB555_LE: return AV_PIX_FMT_RGB555LE; -+#endif - case VPX_IMG_FMT_I420: return AV_PIX_FMT_YUV420P; - case VPX_IMG_FMT_I422: return AV_PIX_FMT_YUV422P; - case VPX_IMG_FMT_I444: return AV_PIX_FMT_YUV444P; -+#if VPX_IMAGE_ABI_VERSION < 5 - case VPX_IMG_FMT_444A: return AV_PIX_FMT_YUVA444P; -+#endif - #if VPX_IMAGE_ABI_VERSION >= 3 - case VPX_IMG_FMT_I440: return AV_PIX_FMT_YUV440P; - case VPX_IMG_FMT_I42016: return AV_PIX_FMT_YUV420P16BE; -@@ -53,6 +57,7 @@ enum AVPixelFormat ff_vpx_imgfmt_to_pixfmt(vpx_img_fmt - vpx_img_fmt_t ff_vpx_pixfmt_to_imgfmt(enum AVPixelFormat pix) - { - switch (pix) { -+#if VPX_IMAGE_ABI_VERSION < 5 - case AV_PIX_FMT_RGB24: return VPX_IMG_FMT_RGB24; - case AV_PIX_FMT_RGB565BE: return VPX_IMG_FMT_RGB565; - case AV_PIX_FMT_RGB555BE: return VPX_IMG_FMT_RGB555; -@@ -64,10 +69,13 @@ vpx_img_fmt_t ff_vpx_pixfmt_to_imgfmt(enum AVPixelForm - case AV_PIX_FMT_BGRA: return VPX_IMG_FMT_ARGB_LE; - case AV_PIX_FMT_RGB565LE: return VPX_IMG_FMT_RGB565_LE; - case AV_PIX_FMT_RGB555LE: return VPX_IMG_FMT_RGB555_LE; -+#endif - case AV_PIX_FMT_YUV420P: return VPX_IMG_FMT_I420; - case AV_PIX_FMT_YUV422P: return VPX_IMG_FMT_I422; - case AV_PIX_FMT_YUV444P: return VPX_IMG_FMT_I444; -+#if VPX_IMAGE_ABI_VERSION < 5 - case AV_PIX_FMT_YUVA444P: return VPX_IMG_FMT_444A; -+#endif - #if VPX_IMAGE_ABI_VERSION >= 3 - case AV_PIX_FMT_YUV440P: return VPX_IMG_FMT_I440; - case AV_PIX_FMT_YUV420P16BE: return VPX_IMG_FMT_I42016; From b4439ecd31daf1769d739c0bc45e16a385dbc276 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:43 +0000 Subject: [PATCH 060/133] liblwgeom: remove formula --- Formula/liblwgeom.rb | 83 -------------------------------------------- 1 file changed, 83 deletions(-) delete mode 100644 Formula/liblwgeom.rb diff --git a/Formula/liblwgeom.rb b/Formula/liblwgeom.rb deleted file mode 100644 index 719cd1976ee814..00000000000000 --- a/Formula/liblwgeom.rb +++ /dev/null @@ -1,83 +0,0 @@ -class Liblwgeom < Formula - desc "Allows SpatiaLite to support ST_MakeValid() like PostGIS" - homepage "https://postgis.net/" - url "https://download.osgeo.org/postgis/source/postgis-2.5.4.tar.gz" - sha256 "146d59351cf830e2a2a72fa14e700cd5eab6c18ad3e7c644f57c4cee7ed98bbe" - license "GPL-2.0-or-later" - revision 1 - head "https://git.osgeo.org/gitea/postgis/postgis.git", branch: "master" - - bottle do - rebuild 1 - sha256 cellar: :any, arm64_monterey: "c6e2f39f90827be84a17c7a1bfd7c0043bf3f0a433bfc1e38e2d9094028caad1" - sha256 cellar: :any, arm64_big_sur: "4f8f0403e973d5e2eafb1b3d49deae54a3cb95a80dc42c50f1f28edcc73da0d8" - sha256 cellar: :any, monterey: "fe6ef90e0a9026b59e89684f49ad9ddcb25a06fff022168b0b8f1f8d10a92bb7" - sha256 cellar: :any, big_sur: "e28a391dfb1ccf34656e8169d5eda63bb96c7693508429f7c22b47add8a8bd47" - sha256 cellar: :any, catalina: "cd5a31ea1b30721f36fcd64285b3150667c4cf30a148ffafa88d4e5c81456f45" - sha256 cellar: :any, mojave: "79247efadb38c42e631ceeb750a8379fd68a2a5c720ec265f8f11502764be46b" - sha256 cellar: :any_skip_relocation, x86_64_linux: "9797785b01201a7eb6c4a2d5ba50e98c0b1c0b89e1671fd5914014a25c90b058" - end - - keg_only "conflicts with PostGIS, which also installs liblwgeom.dylib" - - # See details in https://github.com/postgis/postgis/pull/348 - disable! date: "2022-07-31", because: "liblwgeom headers are not installed anymore, use librttopo instead" - - depends_on "autoconf@2.69" => :build - depends_on "automake" => :build - depends_on "gpp" => :build - depends_on "libtool" => :build - depends_on "pkg-config" => :build - - depends_on "geos" - depends_on "json-c" - depends_on "proj@7" - - uses_from_macos "libxml2" - - def install - # See postgis.rb for comments about these settings - ENV.deparallelize - - args = [ - "--disable-dependency-tracking", - "--disable-nls", - - "--with-projdir=#{Formula["proj@7"].opt_prefix}", - "--with-jsondir=#{Formula["json-c"].opt_prefix}", - - # Disable extraneous support - "--without-pgconfig", - "--without-libiconv-prefix", - "--without-libintl-prefix", - "--without-raster", # this ensures gdal is not required - "--without-topology", - ] - - system "./autogen.sh" - system "./configure", *args - - mkdir "stage" - cd "liblwgeom" do - system "make", "install", "DESTDIR=#{buildpath}/stage" - end - - lib.install Dir["stage/**/lib/*"] - include.install Dir["stage/**/include/*"] - end - - test do - (testpath/"test.c").write <<~EOS - #include - - int main(int argc, char* argv[]) - { - printf("%s\\n", lwgeom_version()); - return 0; - } - EOS - system ENV.cc, "test.c", "-I#{include}", "-I#{Formula["proj@7"].opt_include}", - "-L#{lib}", "-llwgeom", "-o", "test" - system "./test" - end -end From 4f8d101895a0a7d9b061437c8ba3284b352e251c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:43 +0000 Subject: [PATCH 061/133] libpqxx@6: remove formula --- Formula/libpqxx@6.rb | 49 -------------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 Formula/libpqxx@6.rb diff --git a/Formula/libpqxx@6.rb b/Formula/libpqxx@6.rb deleted file mode 100644 index 6e504b9f470309..00000000000000 --- a/Formula/libpqxx@6.rb +++ /dev/null @@ -1,49 +0,0 @@ -class LibpqxxAT6 < Formula - desc "C++ connector for PostgreSQL" - homepage "https://pqxx.org/development/libpqxx/" - url "https://github.com/jtv/libpqxx/archive/6.4.7.tar.gz" - sha256 "3fe9f38df1f0f9b72c8fe1b4bc0185cf14b4ed801a9c783189b735404361ce7f" - license "BSD-3-Clause" - revision 1 - - bottle do - rebuild 1 - sha256 cellar: :any, arm64_monterey: "e974d053a47127847a9643a1cf6a6b433d60ec95d583b56a877e2cd115819793" - sha256 cellar: :any, arm64_big_sur: "1bc5d58c42e2b17d2dadf9e3ed6658f29b8cee2c1a6528c938e9f35dfb74f0de" - sha256 cellar: :any, monterey: "344daa30b2c46d3cfafb04e343c12855e245e8d7a56c6f64b9924083ff6a8a0a" - sha256 cellar: :any, big_sur: "fcf3b10ca0fc40cd85498d242c5daed948dd0b51bc1a435fb0f297f03ad87d10" - sha256 cellar: :any, catalina: "646a08fa806d2f86d0d352daa71a3bdb254f73fa950d84c64ad8703d44cef9be" - sha256 cellar: :any_skip_relocation, x86_64_linux: "19f90f07fc8b266b4acff9ff552305b0b352220e77315d777536a6565c291934" - end - - keg_only :versioned_formula - - disable! date: "2022-07-31", because: :versioned_formula - - depends_on "pkg-config" => :build - depends_on "python@3.10" => :build - depends_on "xmlto" => :build - depends_on "libpq" - - def install - ENV.prepend_path "PATH", Formula["python@3.10"].opt_libexec/"bin" - ENV["PG_CONFIG"] = Formula["libpq"].opt_bin/"pg_config" - - system "./configure", "--prefix=#{prefix}", "--enable-shared" - system "make", "install" - end - - test do - (testpath/"test.cpp").write <<~EOS - #include - int main(int argc, char** argv) { - pqxx::connection con; - return 0; - } - EOS - system ENV.cxx, "-std=c++11", "test.cpp", "-L#{lib}", "-lpqxx", - "-I#{include}", "-o", "test" - # Running ./test will fail because there is no running postgresql server - # system "./test" - end -end From 2cc6f2662b73bce71f4d21b0c9240fec6e7a2b58 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:44 +0000 Subject: [PATCH 062/133] libtensorflow@1: remove formula --- Formula/libtensorflow@1.rb | 82 -------------------------------------- 1 file changed, 82 deletions(-) delete mode 100644 Formula/libtensorflow@1.rb diff --git a/Formula/libtensorflow@1.rb b/Formula/libtensorflow@1.rb deleted file mode 100644 index 568170cd6ce0c6..00000000000000 --- a/Formula/libtensorflow@1.rb +++ /dev/null @@ -1,82 +0,0 @@ -class LibtensorflowAT1 < Formula - include Language::Python::Virtualenv - - desc "C interface for Google's OS library for Machine Intelligence" - homepage "https://www.tensorflow.org/" - url "https://github.com/tensorflow/tensorflow/archive/v1.15.5.tar.gz" - sha256 "4c4d23e311093ded2d2e287b18d7c45b07b5984ab88a1d2f91f8f13c886123db" - license "Apache-2.0" - - bottle do - sha256 cellar: :any, big_sur: "8f1c80ebe024b29fb7d6695fa41de75e84d21948535a6459f3dd11b8e5a2165f" - sha256 cellar: :any, catalina: "28bac51bae550468948151ffa7fa62d38cce9eee19522f045b1f40b4885f9625" - sha256 cellar: :any, mojave: "aefd6a0dbaae05e710a8372fa6ca3e6d731b9ee455ca99f898141d7f627303eb" - end - - keg_only :versioned_formula - - disable! date: "2022-07-31", because: :versioned_formula - - depends_on "bazel" => :build - depends_on "python@3.9" => :build - - def install - ENV["PYTHON_BIN_PATH"] = Formula["python@3.9"].opt_bin/"python3" - ENV["CC_OPT_FLAGS"] = "-march=native" - ENV["TF_IGNORE_MAX_BAZEL_VERSION"] = "1" - ENV["TF_NEED_JEMALLOC"] = "1" - ENV["TF_NEED_GCP"] = "0" - ENV["TF_NEED_HDFS"] = "0" - ENV["TF_ENABLE_XLA"] = "0" - ENV["USE_DEFAULT_PYTHON_LIB_PATH"] = "1" - ENV["TF_NEED_OPENCL"] = "0" - ENV["TF_NEED_CUDA"] = "0" - ENV["TF_NEED_MKL"] = "0" - ENV["TF_NEED_VERBS"] = "0" - ENV["TF_NEED_MPI"] = "0" - ENV["TF_NEED_S3"] = "1" - ENV["TF_NEED_GDR"] = "0" - ENV["TF_NEED_KAFKA"] = "0" - ENV["TF_NEED_OPENCL_SYCL"] = "0" - ENV["TF_NEED_ROCM"] = "0" - ENV["TF_DOWNLOAD_CLANG"] = "0" - ENV["TF_SET_ANDROID_WORKSPACE"] = "0" - ENV["TF_CONFIGURE_IOS"] = "0" - system "./configure" - - bazel_compatibility_flags = %w[ - --noincompatible_remove_legacy_whole_archive - ] - system "bazel", "build", "--jobs", ENV.make_jobs, "--compilation_mode=opt", - "--copt=-march=native", *bazel_compatibility_flags, "tensorflow:libtensorflow.so" - lib.install Dir["bazel-bin/tensorflow/*.so*", "bazel-bin/tensorflow/*.dylib*"] - (include/"tensorflow/c").install %w[ - tensorflow/c/c_api.h - tensorflow/c/c_api_experimental.h - tensorflow/c/tf_attrtype.h - tensorflow/c/tf_datatype.h - tensorflow/c/tf_status.h - tensorflow/c/tf_tensor.h - ] - - (lib/"pkgconfig/tensorflow.pc").write <<~EOS - Name: tensorflow - Description: Tensorflow library - Version: #{version} - Libs: -L#{lib} -ltensorflow - Cflags: -I#{include} - EOS - end - - test do - (testpath/"test.c").write <<~EOS - #include - #include - int main() { - printf("%s", TF_Version()); - } - EOS - system ENV.cc, "-L#{lib}", "-I#{include}", "-ltensorflow", "-o", "test_tf", "test.c" - assert_equal version, shell_output("./test_tf") - end -end From 135af113c271312a27606d2a27feff4807edab9b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:44 +0000 Subject: [PATCH 063/133] libu2f-host: remove formula --- Formula/libu2f-host.rb | 55 ------------------------------------------ 1 file changed, 55 deletions(-) delete mode 100644 Formula/libu2f-host.rb diff --git a/Formula/libu2f-host.rb b/Formula/libu2f-host.rb deleted file mode 100644 index abc8d30dbec119..00000000000000 --- a/Formula/libu2f-host.rb +++ /dev/null @@ -1,55 +0,0 @@ -class Libu2fHost < Formula - desc "Host-side of the Universal 2nd Factor (U2F) protocol" - homepage "https://developers.yubico.com/libu2f-host/" - url "https://developers.yubico.com/libu2f-host/Releases/libu2f-host-1.1.10.tar.xz" - sha256 "4265789ec59555a1f383ea2d75da085f78ee4cf1cd7c44a2b38662de02dd316f" - license "GPL-3.0" - revision 1 - - bottle do - sha256 cellar: :any, arm64_monterey: "dcc9f85a98a43d2d0bc7b7467dcc7a8e7f1932728cd4a52db60dd073f3f69ea4" - sha256 cellar: :any, arm64_big_sur: "052b140ee60b38b731fe05d9d4bd0ba81765e9bac7ccc25125ba93596534fe14" - sha256 cellar: :any, monterey: "eb922ac575fdf84fc9835fc3bebb55b0fb467a79db2eaad5d72e5b9a35fd6958" - sha256 cellar: :any, big_sur: "4c6f6729349bce13f6710e5edf040411b78c36e6815258f54a4c8c52f907109b" - sha256 cellar: :any, catalina: "461c37c919d585c8abca2fbff636332c27462cc8f10c04d5762e357c453f7066" - sha256 cellar: :any, mojave: "deed9f64b0e078130c5618ce98580b9b1b284c531cfb04e6296a8d5b259b6a81" - sha256 cellar: :any, high_sierra: "376aa8fc3a98d4aab29ba7d284a58bf07308fda51aa30da72e068f8a6206505e" - sha256 cellar: :any_skip_relocation, x86_64_linux: "d8371ab9b3837d3cd9d784cf3b346aa8d2d88ab28d9a69f8035fefc1cb4b81ef" - end - - # See: https://github.com/Yubico/libu2f-host - disable! date: "2022-07-31", because: :repo_archived - - depends_on "pkg-config" => :build - depends_on "hidapi" - depends_on "json-c" - - # Compatibility with json-c 0.14. Remove with the next release. - patch do - url "https://github.com/Yubico/libu2f-host/commit/840f01135d2892f45e71b9e90405de587991bd03.patch?full_index=1" - sha256 "6752463ca79fb312d4524f39d2ac02707ef6c182450d631e35f02bb49565c651" - end - - def install - system "./configure", "--prefix=#{prefix}" - system "make", "install" - end - - test do - (testpath/"test.c").write <<~EOS - #include - int main() - { - u2fh_devs *devs; - u2fh_global_init (0); - u2fh_devs_init (&devs); - u2fh_devs_discover (devs, NULL); - u2fh_devs_done (devs); - u2fh_global_done (); - return 0; - } - EOS - system ENV.cc, "test.c", "-o", "test", "-I#{include}/u2f-host", "-L#{lib}", "-lu2f-host" - system "./test" - end -end From 5e1b54e704c3343dd8fc7f14c497e638627e4e66 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:44 +0000 Subject: [PATCH 064/133] maven@3.2: remove formula --- Formula/maven@3.2.rb | 68 -------------------------------------------- 1 file changed, 68 deletions(-) delete mode 100644 Formula/maven@3.2.rb diff --git a/Formula/maven@3.2.rb b/Formula/maven@3.2.rb deleted file mode 100644 index 7016d23eeb2948..00000000000000 --- a/Formula/maven@3.2.rb +++ /dev/null @@ -1,68 +0,0 @@ -class MavenAT32 < Formula - desc "Java-based project management" - homepage "https://maven.apache.org/" - url "https://www.apache.org/dyn/closer.lua?path=maven/maven-3/3.2.5/binaries/apache-maven-3.2.5-bin.tar.gz" - mirror "https://archive.apache.org/dist/maven/maven-3/3.2.5/binaries/apache-maven-3.2.5-bin.tar.gz" - sha256 "8c190264bdf591ff9f1268dc0ad940a2726f9e958e367716a09b8aaa7e74a755" - license "Apache-2.0" - revision 1 - - bottle do - sha256 cellar: :any_skip_relocation, all: "bac2ed0bb786b98885700fdee9f2535005b0d89caebed6a6d8791d9948476206" - end - - keg_only :versioned_formula - - disable! date: "2022-07-31", because: :unmaintained - - depends_on "openjdk" - - def install - # Remove windows files - rm_f Dir["bin/*.bat"] - - # Fix the permissions on the global settings file. - chmod 0644, "conf/settings.xml" - - prefix.install_metafiles - libexec.install Dir["*"] - - # Leave conf file in libexec. The mvn symlink will be resolved and the conf - # file will be found relative to it - Pathname.glob("#{libexec}/bin/*") do |file| - next if file.directory? - - basename = file.basename - next if basename.to_s == "m2.conf" - - (bin/basename).write_env_script file, Language::Java.overridable_java_home_env - end - end - - test do - (testpath/"pom.xml").write <<~EOS - - - 4.0.0 - org.homebrew - maven-test - 1.0.0-SNAPSHOT - - 1.8 - 1.8 - UTF-8 - - - EOS - (testpath/"src/main/java/org/homebrew/MavenTest.java").write <<~EOS - package org.homebrew; - public class MavenTest { - public static void main(String[] args) { - System.out.println("Testing Maven with Homebrew!"); - } - } - EOS - system "#{bin}/mvn", "compile", "-Duser.home=#{testpath}" - end -end From 7af5f4168bfbfd70c2393cacf4e2511b4fe0eeaf Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:45 +0000 Subject: [PATCH 065/133] maven@3.3: remove formula --- Formula/maven@3.3.rb | 67 -------------------------------------------- 1 file changed, 67 deletions(-) delete mode 100644 Formula/maven@3.3.rb diff --git a/Formula/maven@3.3.rb b/Formula/maven@3.3.rb deleted file mode 100644 index d79d233de872c8..00000000000000 --- a/Formula/maven@3.3.rb +++ /dev/null @@ -1,67 +0,0 @@ -class MavenAT33 < Formula - desc "Java-based project management" - homepage "https://maven.apache.org/" - url "https://www.apache.org/dyn/closer.lua?path=maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.tar.gz" - mirror "https://archive.apache.org/dist/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.tar.gz" - sha256 "6e3e9c949ab4695a204f74038717aa7b2689b1be94875899ac1b3fe42800ff82" - license "Apache-2.0" - revision 1 - - bottle do - sha256 cellar: :any_skip_relocation, all: "01312f11ae26710bfc86299357e9adb760bd6177ebe5d2f85d3e53bee572d19f" - end - - keg_only :versioned_formula - - disable! date: "2022-07-31", because: :unmaintained - - depends_on "openjdk" - - def install - # Remove windows files - rm_f Dir["bin/*.cmd"] - - # Fix the permissions on the global settings file. - chmod 0644, "conf/settings.xml" - - libexec.install Dir["*"] - - # Leave conf file in libexec. The mvn symlink will be resolved and the conf - # file will be found relative to it - Pathname.glob("#{libexec}/bin/*") do |file| - next if file.directory? - - basename = file.basename - next if basename.to_s == "m2.conf" - - (bin/basename).write_env_script file, Language::Java.overridable_java_home_env - end - end - - test do - (testpath/"pom.xml").write <<~EOS - - - 4.0.0 - org.homebrew - maven-test - 1.0.0-SNAPSHOT - - 1.8 - 1.8 - UTF-8 - - - EOS - (testpath/"src/main/java/org/homebrew/MavenTest.java").write <<~EOS - package org.homebrew; - public class MavenTest { - public static void main(String[] args) { - System.out.println("Testing Maven with Homebrew!"); - } - } - EOS - system "#{bin}/mvn", "compile", "-Duser.home=#{testpath}" - end -end From 0a399d26ce265e292a89e1765d2d4087884d1c19 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:45 +0000 Subject: [PATCH 066/133] maven@3.5: remove formula --- Formula/maven@3.5.rb | 73 -------------------------------------------- 1 file changed, 73 deletions(-) delete mode 100644 Formula/maven@3.5.rb diff --git a/Formula/maven@3.5.rb b/Formula/maven@3.5.rb deleted file mode 100644 index 6e054f1d71f233..00000000000000 --- a/Formula/maven@3.5.rb +++ /dev/null @@ -1,73 +0,0 @@ -class MavenAT35 < Formula - desc "Java-based project management" - homepage "https://maven.apache.org/" - url "https://www.apache.org/dyn/closer.lua?path=maven/maven-3/3.5.4/binaries/apache-maven-3.5.4-bin.tar.gz" - mirror "https://archive.apache.org/dist/maven/maven-3/3.5.4/binaries/apache-maven-3.5.4-bin.tar.gz" - sha256 "ce50b1c91364cb77efe3776f756a6d92b76d9038b0a0782f7d53acf1e997a14d" - license "Apache-2.0" - revision 1 - - bottle do - sha256 cellar: :any, arm64_monterey: "4f685fb12ff8d606e753a10f33ada6e3549adfba01632bb709ec969c74ef5a16" - sha256 cellar: :any, arm64_big_sur: "395084c1ae2cf3ccfa343ed12c100155bb289658c0f82daa6dd1fd3b215c458d" - sha256 cellar: :any, monterey: "1056be877616d89127b7f6b702d11d5cf0ea655480d32d57931353b19bddaf25" - sha256 cellar: :any, big_sur: "395c556575fb1c0d7b89559350c449ded3809b4f711efed178a559cd4d4cc535" - sha256 cellar: :any, catalina: "395c556575fb1c0d7b89559350c449ded3809b4f711efed178a559cd4d4cc535" - sha256 cellar: :any, mojave: "395c556575fb1c0d7b89559350c449ded3809b4f711efed178a559cd4d4cc535" - sha256 cellar: :any_skip_relocation, x86_64_linux: "0f291bcfaa6ed6d4a3c2a0c16dbe8342a55d528cd0c4c66c468f93b6ec7b3883" - end - - keg_only :versioned_formula - - disable! date: "2022-07-31", because: :unmaintained - - depends_on "openjdk" - - def install - # Remove windows files - rm_f Dir["bin/*.cmd"] - - # Fix the permissions on the global settings file. - chmod 0644, "conf/settings.xml" - - libexec.install Dir["*"] - - # Leave conf file in libexec. The mvn symlink will be resolved and the conf - # file will be found relative to it - Pathname.glob("#{libexec}/bin/*") do |file| - next if file.directory? - - basename = file.basename - next if basename.to_s == "m2.conf" - - (bin/basename).write_env_script file, Language::Java.overridable_java_home_env - end - end - - test do - (testpath/"pom.xml").write <<~EOS - - - 4.0.0 - org.homebrew - maven-test - 1.0.0-SNAPSHOT - - 1.8 - 1.8 - UTF-8 - - - EOS - (testpath/"src/main/java/org/homebrew/MavenTest.java").write <<~EOS - package org.homebrew; - public class MavenTest { - public static void main(String[] args) { - System.out.println("Testing Maven with Homebrew!"); - } - } - EOS - system "#{bin}/mvn", "compile", "-Duser.home=#{testpath}" - end -end From b9f7894e9736f793b293870bddc01cbc3c779b18 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:45 +0000 Subject: [PATCH 067/133] mesos: remove formula --- Formula/mesos.rb | 68 ------------------------------------------------ 1 file changed, 68 deletions(-) delete mode 100644 Formula/mesos.rb diff --git a/Formula/mesos.rb b/Formula/mesos.rb deleted file mode 100644 index b05289503dda0b..00000000000000 --- a/Formula/mesos.rb +++ /dev/null @@ -1,68 +0,0 @@ -class Mesos < Formula - desc "Apache cluster manager" - homepage "https://mesos.apache.org" - url "https://www.apache.org/dyn/closer.lua?path=mesos/1.11.0/mesos-1.11.0.tar.gz" - mirror "https://archive.apache.org/dist/mesos/1.11.0/mesos-1.11.0.tar.gz" - sha256 "ce08cb648a21502a4a0c45d240a596d9ac860fcaf717f9a3dc986da9d406fe34" - license "Apache-2.0" - - bottle do - sha256 big_sur: "05b5c4234338601c5fde42b7c692970d037ce6c5952dd615e5148be8dfde7c6e" - sha256 catalina: "7b94becb34b33903ab43411a814514cb40c82facf216480aff9c12e9125b684a" - sha256 mojave: "4703f4fb7376a394f08e4b44bd90f2eacefc409e38350290dd131371892c89bb" - end - - # See https://lists.apache.org/thread.html/rab2a820507f7c846e54a847398ab20f47698ec5bce0c8e182bfe51ba@ - disable! date: "2022-07-31", because: :deprecated_upstream - - depends_on "autoconf" => :build - depends_on "automake" => :build - depends_on "libtool" => :build - depends_on "maven" => :build - depends_on "apr-util" - depends_on "openjdk@8" - depends_on "subversion" - - conflicts_with "nanopb-generator", because: "they depend on an incompatible version of protobuf" - conflicts_with "rapidjson", because: "mesos installs a copy of rapidjson headers" - - def install - # Disable optimizing as libc++ does not play well with optimized clang - # builds (see https://llvm.org/bugs/show_bug.cgi?id=28469 and - # https://issues.apache.org/jira/browse/MESOS-5745). - # - # NOTE: We cannot use `--disable-optimize` since we also pass e.g., - # CXXFLAGS via environment variables. Since compiler flags are passed via - # environment variables the Mesos build will silently ignore flags like - # `--[disable|enable]-optimize`. - ENV.O0 if DevelopmentTools.clang_build_version < 900 - - ENV.cxx11 - - # macOS no longer provides JavaVM.framework. Fix configure script - # that assumes this framework exists for JNI linking. - ENV["JAVA_CPPFLAGS"] = "-I#{Formula["openjdk@8"].include}" - ENV["JAVA_HOME"] = Language::Java.java_home("1.8") - ENV["JAVA_TEST_LDFLAGS"] = "-L#{ENV["JAVA_HOME"]}/jre/lib/server -ljvm" - inreplace "configure", "-framework JavaVM", ENV["JAVA_TEST_LDFLAGS"] - - system "./configure", "--prefix=#{prefix}", - "--disable-debug", - "--disable-dependency-tracking", - "--disable-silent-rules", - "--with-apr=#{Formula["apr"].opt_libexec}", - "--with-svn=#{Formula["subversion"].opt_prefix}", - "--disable-python" - system "make" - system "make", "install" - - bin.env_script_all_files(libexec/"bin", Language::Java.java_home_env("1.8")) - sbin.env_script_all_files(libexec/"sbin", Language::Java.java_home_env("1.8")) - end - - test do - assert_match version.to_s, shell_output("#{sbin}/mesos-agent --version") - assert_match version.to_s, shell_output("#{sbin}/mesos-master --version") - assert_match "Usage: mesos", shell_output("#{bin}/mesos 2>&1", 1) - end -end From 7a8b12d2df8f9bbb7ce877e453802d25543bafc6 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:46 +0000 Subject: [PATCH 068/133] minbif: remove formula --- Formula/minbif.rb | 58 ----------------------------------------------- 1 file changed, 58 deletions(-) delete mode 100644 Formula/minbif.rb diff --git a/Formula/minbif.rb b/Formula/minbif.rb deleted file mode 100644 index b9cadd0da24b60..00000000000000 --- a/Formula/minbif.rb +++ /dev/null @@ -1,58 +0,0 @@ -class Minbif < Formula - desc "IRC-to-other-IM-networks gateway using Pidgin library" - homepage "https://web.archive.org/web/20180831190920/https://symlink.me/projects/minbif/wiki/" - url "https://deb.debian.org/debian/pool/main/m/minbif/minbif_1.0.5+git20150505.orig.tar.gz" - version "1.0.5-20150505" - sha256 "4e264fce518a0281de9fc3d44450677c5fa91097a0597ef7a0d2a688ee66d40b" - license "GPL-2.0-only" - revision 3 - - bottle do - sha256 cellar: :any, arm64_big_sur: "fe93338a9056edd1860252df688c5924ec0b5846455a4b171360495c9a9f05fb" - sha256 cellar: :any, big_sur: "32991355535b355a589e921c72aba99a161d7b3a8dd83dd3e971d5bb9929afab" - sha256 cellar: :any, catalina: "57dc630a96ec93b8168d569cc1ff0152f381ca52c10d2b6b7bffc1d91cbc14a2" - sha256 cellar: :any, mojave: "479cfbb3b59f2c0c05b0553188ae2497ee313b02e5850172bb7055231def61b8" - sha256 cellar: :any, sierra: "5b8a0fd609cda94163f95c7d0b6620c143b3ff127178d37a57b76493231c73cc" - end - - disable! date: "2022-07-31", because: :unmaintained - - depends_on "cmake" => :build - depends_on "pkg-config" => :build - depends_on "gettext" - depends_on "glib" - depends_on "gnutls" - depends_on "pidgin" - - def install - inreplace "minbif.conf" do |s| - s.gsub! "users = /var", "users = #{var}" - s.gsub! "motd = /etc", "motd = #{etc}" - end - - system "make", "PREFIX=#{prefix}", - "ENABLE_CACA=OFF", - "ENABLE_IMLIB=OFF", - "ENABLE_MINBIF=ON", - "ENABLE_PAM=OFF", - "ENABLE_PLUGIN=ON", - "ENABLE_TLS=ON", - "ENABLE_VIDEO=OFF" - system "make", "install" - - (var/"lib/minbif/users").mkpath - end - - def caveats - <<~EOS - Minbif must be passed its config as first argument: - minbif #{etc}/minbif/minbif.conf - - Learn more about minbif: https://web.archive.org/web/20160714124330/https://symlink.me/projects/minbif/wiki/Quick_start - EOS - end - - test do - system "#{bin}/minbif", "--version" - end -end From 816f39199c6af1933723e4cec63c13c2a50fbfa5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:46 +0000 Subject: [PATCH 069/133] mysql-sandbox: remove formula --- Formula/mysql-sandbox.rb | 42 ---------------------------------------- 1 file changed, 42 deletions(-) delete mode 100644 Formula/mysql-sandbox.rb diff --git a/Formula/mysql-sandbox.rb b/Formula/mysql-sandbox.rb deleted file mode 100644 index f9cf0374729ccd..00000000000000 --- a/Formula/mysql-sandbox.rb +++ /dev/null @@ -1,42 +0,0 @@ -class MysqlSandbox < Formula - desc "Install one or more MySQL servers" - homepage "https://mysqlsandbox.net" - url "https://github.com/datacharmer/mysql-sandbox/archive/3.2.17.tar.gz" - sha256 "3af4af111536e4e690042bc80834392f46a7e55c7143332d229ff2eb32321e89" - license "Apache-2.0" - revision 1 - head "https://github.com/datacharmer/mysql-sandbox.git", branch: "master" - - bottle do - sha256 cellar: :any_skip_relocation, arm64_monterey: "4f71cc981e6e405e869a7c2f3b8ad9d2a7b93f288f94a5ad052c8a5b60e4372a" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "7534bbd546393a62cfd0b6bf5022973094743219dee948d004e790b162152edb" - sha256 cellar: :any_skip_relocation, monterey: "6a6208299f27aefcd7ef319bc6b311fbea2bdaa3de351dbf0976e58c16c0a409" - sha256 cellar: :any_skip_relocation, big_sur: "effaa2803c9302f19a2ed000d7fc6e07a718186102877822338a90c850b0ba69" - sha256 cellar: :any_skip_relocation, catalina: "0b01929ca2d5a53f9ea2c18dfcef7f4468b5d625ba75dcfcafe5f74ab8954bf6" - sha256 cellar: :any_skip_relocation, mojave: "dc52de83d9b8f7d85273c64665a80165a8d13e8e4654a0655017d3453fac97ed" - end - - # Replaced by dbdeployer: https://github.com/datacharmer/dbdeployer - disable! date: "2022-07-31", because: :repo_archived - - uses_from_macos "perl" - - def install - ENV["PERL_LIBDIR"] = lib/"perl5" - ENV.prepend_create_path "PERL5LIB", lib/"perl5" - - system "perl", "Makefile.PL", "INSTALL_BASE=#{prefix}", "INSTALLSITEMAN3DIR=#{man3}" - system "make", "test", "install" - - Pathname.glob("#{bin}/*") do |file| - next if file.extname == ".sh" - - libexec.install(file) - file.write_env_script(libexec.join(file.basename), PERL5LIB: ENV["PERL5LIB"]) - end - end - - test do - assert_match version.to_s, shell_output("#{bin}/msandbox", 1) - end -end From 3a1d04aff02fc73583d59182e404af7c7fdc0c87 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:47 +0000 Subject: [PATCH 070/133] mysql@5.6: remove formula --- Formula/mysql@5.6.rb | 177 ------------------------------------------- 1 file changed, 177 deletions(-) delete mode 100644 Formula/mysql@5.6.rb diff --git a/Formula/mysql@5.6.rb b/Formula/mysql@5.6.rb deleted file mode 100644 index 88fdc6f7814509..00000000000000 --- a/Formula/mysql@5.6.rb +++ /dev/null @@ -1,177 +0,0 @@ -class MysqlAT56 < Formula - desc "Open source relational database management system" - homepage "https://dev.mysql.com/doc/refman/5.6/en/" - url "https://dev.mysql.com/get/Downloads/MySQL-5.6/mysql-5.6.51.tar.gz" - sha256 "262ccaf2930fca1f33787505dd125a7a04844f40d3421289a51974b5935d9abc" - license "GPL-2.0-only" - - bottle do - rebuild 1 - sha256 monterey: "e3132c3b1381b6ea6a2298166866e637560b0be3223912d1512a150b096fa104" - sha256 big_sur: "30a530ddb785efe7542641366126d7b4afcce09bde0fa104b869814fa69fc9e2" - sha256 catalina: "a5309a985dccc02490ff9bd0be1575a4e8908ca3e15dcfaa77e7d2b2bd616cfd" - sha256 mojave: "1ba2347383b539258d1c0a29cbbee722c30e6c28446c22a669a8a7deabd5f53e" - sha256 x86_64_linux: "91b24798f46a2bc7b616fb73fc47a5337acb5b8e0a6f9be1c657eade6fade45b" - end - - keg_only :versioned_formula - - disable! date: "2022-07-31", because: :unsupported - - depends_on "cmake" => :build - depends_on "openssl@1.1" - - uses_from_macos "libedit" - - def datadir - var/"mysql" - end - - # Fixes loading of VERSION file, backported from mysql/mysql-server@51675dd - patch :DATA - - def install - # Don't hard-code the libtool path. See: - # https://github.com/Homebrew/homebrew/issues/20185 - inreplace "cmake/libutils.cmake", - "COMMAND /usr/bin/libtool -static -o ${TARGET_LOCATION}", - "COMMAND libtool -static -o ${TARGET_LOCATION}" - - # Fix loading of VERSION file; required in conjunction with patch - File.rename "VERSION", "MYSQL_VERSION" - - # -DINSTALL_* are relative to `CMAKE_INSTALL_PREFIX` (`prefix`) - args = %W[ - -DCOMPILATION_COMMENT=Homebrew - -DDEFAULT_CHARSET=utf8 - -DDEFAULT_COLLATION=utf8_general_ci - -DINSTALL_DOCDIR=share/doc/#{name} - -DINSTALL_INCLUDEDIR=include/mysql - -DINSTALL_INFODIR=share/info - -DINSTALL_MANDIR=share/man - -DINSTALL_MYSQLSHAREDIR=share/mysql - -DMYSQL_DATADIR=#{datadir} - -DSYSCONFDIR=#{etc} - -DWITH_EDITLINE=system - -DWITH_NUMA=OFF - -DWITH_SSL=yes - -DWITH_UNIT_TESTS=OFF - -DWITH_EMBEDDED_SERVER=ON - -DWITH_ARCHIVE_STORAGE_ENGINE=1 - -DWITH_BLACKHOLE_STORAGE_ENGINE=1 - -DENABLED_LOCAL_INFILE=1 - -DWITH_INNODB_MEMCACHED=ON - ] - - system "cmake", ".", *std_cmake_args, *args - system "make" - system "make", "install" - - # Avoid references to the Homebrew shims directory - inreplace bin/"mysqlbug", "#{Superenv.shims_path}/", "" - - (prefix/"mysql-test").cd do - system "./mysql-test-run.pl", "status", "--vardir=#{Dir.mktmpdir}" - end - - # Remove the tests directory - rm_rf prefix/"mysql-test" - - # Don't create databases inside of the prefix! - # See: https://github.com/Homebrew/homebrew/issues/4975 - rm_rf prefix/"data" - - # Link the setup script into bin - bin.install_symlink prefix/"scripts/mysql_install_db" - - # Fix up the control script and link into bin. - inreplace "#{prefix}/support-files/mysql.server", - /^(PATH=".*)(")/, - "\\1:#{HOMEBREW_PREFIX}/bin\\2" - bin.install_symlink prefix/"support-files/mysql.server" - - libexec.install bin/"mysqlaccess" - libexec.install bin/"mysqlaccess.conf" - - # Install my.cnf that binds to 127.0.0.1 by default - (buildpath/"my.cnf").write <<~EOS - # Default Homebrew MySQL server config - [mysqld] - # Only allow connections from localhost - bind-address = 127.0.0.1 - EOS - etc.install "my.cnf" - end - - def post_install - # Make sure the var/mysql directory exists - (var/"mysql").mkpath - - # Don't initialize database, it clashes when testing other MySQL-like implementations. - return if ENV["HOMEBREW_GITHUB_ACTIONS"] - - unless (datadir/"mysql/general_log.CSM").exist? - ENV["TMPDIR"] = nil - system bin/"mysql_install_db", "--verbose", "--user=#{ENV["USER"]}", - "--basedir=#{prefix}", "--datadir=#{datadir}", "--tmpdir=/tmp" - end - end - - def caveats - <<~EOS - A "/etc/my.cnf" from another install may interfere with a Homebrew-built - server starting up correctly. - - MySQL is configured to only allow connections from localhost by default - - To connect: - mysql -uroot - EOS - end - - service do - run [opt_bin/"mysqld_safe", "--datadir=#{var}/mysql"] - keep_alive true - working_dir var/"mysql" - end - - test do - (testpath/"mysql").mkpath - (testpath/"tmp").mkpath - system bin/"mysql_install_db", "--no-defaults", "--user=#{ENV["USER"]}", - "--basedir=#{prefix}", "--datadir=#{testpath}/mysql", "--tmpdir=#{testpath}/tmp" - port = free_port - fork do - system "#{bin}/mysqld", "--no-defaults", "--user=#{ENV["USER"]}", - "--datadir=#{testpath}/mysql", "--port=#{port}", "--tmpdir=#{testpath}/tmp" - end - sleep 5 - assert_match "information_schema", - shell_output("#{bin}/mysql --port=#{port} --user=root --password= --execute='show databases;'") - system "#{bin}/mysqladmin", "--port=#{port}", "--user=root", "--password=", "shutdown" - end -end - -__END__ -diff --git a/cmake/mysql_version.cmake b/cmake/mysql_version.cmake -index 34ed6f4..4becbbc 100644 ---- a/cmake/mysql_version.cmake -+++ b/cmake/mysql_version.cmake -@@ -31,7 +31,7 @@ SET(DOT_FRM_VERSION "6") - - # Generate "something" to trigger cmake rerun when VERSION changes - CONFIGURE_FILE( -- ${CMAKE_SOURCE_DIR}/VERSION -+ ${CMAKE_SOURCE_DIR}/MYSQL_VERSION - ${CMAKE_BINARY_DIR}/VERSION.dep - ) - -@@ -39,7 +39,7 @@ CONFIGURE_FILE( - - MACRO(MYSQL_GET_CONFIG_VALUE keyword var) - IF(NOT ${var}) -- FILE (STRINGS ${CMAKE_SOURCE_DIR}/VERSION str REGEX "^[ ]*${keyword}=") -+ FILE (STRINGS ${CMAKE_SOURCE_DIR}/MYSQL_VERSION str REGEX "^[ ]*${keyword}=") - IF(str) - STRING(REPLACE "${keyword}=" "" str ${str}) - STRING(REGEX REPLACE "[ ].*" "" str "${str}") From eb7ab85eeac345034cba12530574ab5d42293497 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:47 +0000 Subject: [PATCH 071/133] nailgun: remove formula --- Formula/nailgun.rb | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 Formula/nailgun.rb diff --git a/Formula/nailgun.rb b/Formula/nailgun.rb deleted file mode 100644 index 3cc267bafdd3ea..00000000000000 --- a/Formula/nailgun.rb +++ /dev/null @@ -1,41 +0,0 @@ -class Nailgun < Formula - desc "Command-line client, protocol and server for Java programs" - homepage "http://www.martiansoftware.com/nailgun/" - url "https://github.com/facebook/nailgun/archive/nailgun-all-1.0.1.tar.gz" - sha256 "c05fc01d28c895d0003b8ec6151c10ee38690552dcfaeb304497836f558006d5" - license "Apache-2.0" - head "https://github.com/facebook/nailgun.git", branch: "main" - - bottle do - sha256 cellar: :any_skip_relocation, catalina: "9e4e7836ebcef4beb89f43ba07ff7e1fffb0765b8843cda5338eca8b34bafed3" - sha256 cellar: :any_skip_relocation, mojave: "4cbbab0f095c5f5890ae326e7b88b82b4eefa877afe91a63fa161ea82999ee5d" - sha256 cellar: :any_skip_relocation, high_sierra: "7f5d7051e631b174fd1d7d0c0aea2b957d3b4946e2176828ec687baddaaa4e04" - end - - disable! date: "2022-07-31", because: :does_not_build - - depends_on "maven" => :build - depends_on "openjdk@8" - - def install - system "make", "install", "CC=#{ENV.cc}", "PREFIX=#{prefix}", "CFLAGS=#{ENV.cflags}" - require "rexml/document" - pom_xml = REXML::Document.new(File.new("pom.xml")) - jar_version = REXML::XPath.first( - pom_xml, - "string(/pom:project/pom:version)", - "pom" => "http://maven.apache.org/POM/4.0.0", - ) - system "mvn", "clean", "install" - libexec.install Dir["nailgun-server/target/*.jar"] - bin.write_jar_script libexec/"nailgun-server-#{jar_version}.jar", "ng-server", "-server" - end - - test do - port = free_port.to_s - fork { exec "#{bin}/ng-server", port } - sleep 2 - system "#{bin}/ng", "--nailgun-port", port, "ng-version" - system "#{bin}/ng", "--nailgun-port", port, "ng-stop" - end -end From d047f03d30cf3cb75281c5c73b7e053912270499 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:47 +0000 Subject: [PATCH 072/133] namebench: remove formula --- Formula/namebench.rb | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 Formula/namebench.rb diff --git a/Formula/namebench.rb b/Formula/namebench.rb deleted file mode 100644 index 9dc19c04896df4..00000000000000 --- a/Formula/namebench.rb +++ /dev/null @@ -1,37 +0,0 @@ -class Namebench < Formula - desc "DNS benchmark utility" - homepage "https://code.google.com/archive/p/namebench/" - url "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/namebench/namebench-1.3.1-source.tgz" - sha256 "30ccf9e870c1174c6bf02fca488f62bba280203a0b1e8e4d26f3756e1a5b9425" - license "Apache-2.0" - - bottle do - sha256 cellar: :any_skip_relocation, arm64_monterey: "840fa253235f73ad6baed2034e809b523e4895229ad33d1374d5ffe63c33d117" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "d599439f8524ed8a398ac60452bac1d333da837d8727ae9b84fc5f67f3d12dfa" - sha256 cellar: :any_skip_relocation, monterey: "e0962b652a267836132159970698b8dd79fbc6f985a4ee5877205046c5e64bf0" - sha256 cellar: :any_skip_relocation, big_sur: "072034ec4c593736c7a77e9de48f8d149794b2e3f6b000efb20e58b6bb3e7ddb" - sha256 cellar: :any_skip_relocation, catalina: "c958cb3841f9462efd7e2199cad803262dcb3b0b6ab766af53681910090e95e2" - sha256 cellar: :any_skip_relocation, mojave: "35225323dc77dc1954cd19b1aa0476e4ebab47e91dbabbfc7e169b5b500b0eba" - sha256 cellar: :any_skip_relocation, high_sierra: "4c2312daef0aae052b7e65bdb4b20cdcf1bfa601e5f8a484a7f846be1096bcb1" - sha256 cellar: :any_skip_relocation, sierra: "ae766151284842185ceecf1622a82cf55c949994729536015a42eea38f62309c" - sha256 cellar: :any_skip_relocation, el_capitan: "3333ef2615f6fbf294cede389d8545487474779a52c18108feb83a4697530cdc" - end - - disable! date: "2022-07-31", because: :unmaintained - - depends_on :macos # Due to Python 2 - - def install - ENV.prepend_create_path "PYTHONPATH", libexec/"lib/python2.7/site-packages" - - system "python", "setup.py", "install", "--prefix=#{libexec}", - "--install-data=#{libexec}/lib/python2.7/site-packages" - - bin.install "namebench.py" => "namebench" - bin.env_script_all_files(libexec/"bin", PYTHONPATH: ENV["PYTHONPATH"]) - end - - test do - system bin/"namebench", "--query_count", "1", "--only", "8.8.8.8" - end -end From 23cd7cddb07365770c7fe365e92c37cf8c328bbc Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:48 +0000 Subject: [PATCH 073/133] natalie: remove formula --- Formula/natalie.rb | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 Formula/natalie.rb diff --git a/Formula/natalie.rb b/Formula/natalie.rb deleted file mode 100644 index 7d912757f90c17..00000000000000 --- a/Formula/natalie.rb +++ /dev/null @@ -1,34 +0,0 @@ -class Natalie < Formula - desc "Storyboard Code Generator (for Swift)" - homepage "https://github.com/krzyzanowskim/Natalie" - url "https://github.com/krzyzanowskim/Natalie/archive/0.7.0.tar.gz" - sha256 "f7959915595495ce922b2b6987368118fa28ba7d13ac3961fd513ec8dfdb21c8" - license "MIT" - revision 1 - head "https://github.com/krzyzanowskim/Natalie.git", branch: "master" - - bottle do - sha256 cellar: :any_skip_relocation, arm64_monterey: "149e46b9c1fd6dc56e855583824fc194f68f6c910b671bebe4fa68ac43915041" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "df7c39d8bcb8d60b095d9b9b90207042791d994f22a53c97e709aa16768a9b28" - sha256 cellar: :any_skip_relocation, monterey: "5bb0e910fe6f93ec2a190e3a36e51baa2550bd08c64a83ebd6f8d9ca78296510" - sha256 cellar: :any_skip_relocation, big_sur: "6e745ce1d0a34e0887319f32d39ae10e7ae34475fcb9a54916569f7672074b22" - sha256 cellar: :any_skip_relocation, catalina: "218ec8bb0ac3ac4de7a6fa8489f3ad7013b1beb051a7c0e74a6e37ade79eee6c" - sha256 cellar: :any_skip_relocation, mojave: "9dcc093fc648175eb165aec20413246ace7427d0d3c4a9884d37cfad9a851dca" - sha256 cellar: :any_skip_relocation, high_sierra: "dd51e00a1969ffdd478e954bed48bedd1c5a9813b67931aa146711f49cb58223" - end - - disable! date: "2022-07-31", because: :repo_archived - - depends_on xcode: ["9.4", :build] - - def install - system "swift", "build", "--disable-sandbox", "-c", "release", "--static-swift-stdlib" - bin.install ".build/release/natalie" - share.install "NatalieExample" - end - - test do - generated_code = shell_output("#{bin}/natalie #{share}/NatalieExample") - assert generated_code.lines.count > 1, "Natalie failed to generate code!" - end -end From 55f4a30c6a2c4c3c0759114e6047ef8ce77cf879 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:48 +0000 Subject: [PATCH 074/133] netcat6: remove formula --- Formula/netcat6.rb | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 Formula/netcat6.rb diff --git a/Formula/netcat6.rb b/Formula/netcat6.rb deleted file mode 100644 index 145861bca49810..00000000000000 --- a/Formula/netcat6.rb +++ /dev/null @@ -1,37 +0,0 @@ -class Netcat6 < Formula - desc "Rewrite of netcat that supports IPv6, plus other improvements" - homepage "https://www.deepspace6.net/projects/netcat6.html" - url "https://deb.debian.org/debian/pool/main/n/nc6/nc6_1.0.orig.tar.gz" - sha256 "db7462839dd135ff1215911157b666df8512df6f7343a075b2f9a2ef46fe5412" - license "GPL-2.0" - - bottle do - rebuild 1 - sha256 arm64_monterey: "cd438610979aceb80a4ef14b712af6976655067e84dd85743968e805714a8c60" - sha256 arm64_big_sur: "233f4e4769def17cb05da043221a3bb3460b984b570cd4ebbcce7342e7ab6c05" - sha256 monterey: "09e95539dd475a3a577dc7304ba02c07c98930778bac90f07ebd35b5328448fb" - sha256 big_sur: "746665ead519a4bbeb2984d7d83d8ea8425441f922bb199e0328da562e870144" - sha256 catalina: "fbba0de060d7d38efc84e3a098de48d127467fd8e6d90edf2ed96bc20b5e38df" - sha256 mojave: "aba098730e397f84b6ed7534b41bd7f65f5f6182189d890ac93216faff2fe9b7" - sha256 high_sierra: "b3fe44c42b33bc668cdaa0f05eb10a5f9b67891b1947b98abe9cad6464182835" - sha256 sierra: "bdb853a9a63a03555682eae734d9d9a7725591dfd16128cf59f208968ef16ef2" - sha256 cellar: :any_skip_relocation, x86_64_linux: "19b2eee0d231005d4431ed016b681cca59d381bd1c29747ef4ded584f109827a" - end - - # Upstream appears to have stopped developing netcat6 and instead recommends - # using OpenBSD's netcat (which supports IPv6) or Nmap's netcat replacement - # (ncat). - disable! date: "2022-07-31", because: :deprecated_upstream - - def install - system "./configure", "--disable-dependency-tracking", - "--prefix=#{prefix}", - "--mandir=#{man}" - system "make", "install" - end - - test do - out = pipe_output("#{bin}/nc6 www.google.com 80", "GET / HTTP/1.0\r\n\r\n") - assert_equal "HTTP/1.0 200 OK", out.lines.first.chomp - end -end From 9372be57a73d150e68b92346139dd2b9ab24a518 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:48 +0000 Subject: [PATCH 075/133] node@10: remove formula --- Formula/node@10.rb | 58 ---------------------------------------------- 1 file changed, 58 deletions(-) delete mode 100644 Formula/node@10.rb diff --git a/Formula/node@10.rb b/Formula/node@10.rb deleted file mode 100644 index 1d69323b61bab6..00000000000000 --- a/Formula/node@10.rb +++ /dev/null @@ -1,58 +0,0 @@ -class NodeAT10 < Formula - desc "Platform built on V8 to build network applications" - homepage "https://nodejs.org/" - url "https://nodejs.org/dist/v10.24.1/node-v10.24.1.tar.xz" - sha256 "d72fc2c244603b4668da94081dc4d6067d467fdfa026e06a274012f16600480c" - license "MIT" - revision 2 - - bottle do - sha256 cellar: :any, monterey: "00f77d95e0903bd845a11e90d382066c6ffe493bd3ee8ba25d57663f1f4f3585" - sha256 cellar: :any, big_sur: "564df395699ebca8cea0f6df252f7c4b0cc3dcfb54b965475d65edeabe9af00f" - sha256 cellar: :any, catalina: "8bfa95ea0017e43a1e32120655e84e75de4570f0a90ec0c8e9143aa66d8f4a35" - end - - keg_only :versioned_formula - - disable! date: "2022-07-31", because: :unsupported - - depends_on "pkg-config" => :build - depends_on "icu4c" - depends_on :macos # Due to Python 2 (Will not work with Python 3 without extensive patching) - # Node 10 will be EOL April 2021 - - def install - system "./configure", "--prefix=#{prefix}", "--with-intl=system-icu" - system "make", "install" - end - - def post_install - (lib/"node_modules/npm/npmrc").atomic_write("prefix = #{HOMEBREW_PREFIX}\n") - end - - test do - path = testpath/"test.js" - path.write "console.log('hello');" - - output = shell_output("#{bin}/node #{path}").strip - assert_equal "hello", output - output = shell_output("#{bin}/node -e 'console.log(new Intl.NumberFormat(\"en-EN\").format(1234.56))'").strip - assert_equal "1,234.56", output - - output = shell_output("#{bin}/node -e 'console.log(new Intl.NumberFormat(\"de-DE\").format(1234.56))'").strip - assert_equal "1.234,56", output - - # make sure npm can find node - ENV.prepend_path "PATH", opt_bin - ENV.delete "NVM_NODEJS_ORG_MIRROR" - assert_equal which("node"), opt_bin/"node" - assert_predicate bin/"npm", :exist?, "npm must exist" - assert_predicate bin/"npm", :executable?, "npm must be executable" - npm_args = ["-ddd", "--cache=#{HOMEBREW_CACHE}/npm_cache", "--build-from-source"] - system "#{bin}/npm", *npm_args, "install", "npm@latest" - system "#{bin}/npm", *npm_args, "install", "bignum" - assert_predicate bin/"npx", :exist?, "npx must exist" - assert_predicate bin/"npx", :executable?, "npx must be executable" - assert_match "< hello >", shell_output("#{bin}/npx cowsay hello") - end -end From f3649941ba58a793700fc22177b8616b882caeb7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:49 +0000 Subject: [PATCH 076/133] opencv@2: remove formula --- Formula/opencv@2.rb | 99 --------------------------------------------- 1 file changed, 99 deletions(-) delete mode 100644 Formula/opencv@2.rb diff --git a/Formula/opencv@2.rb b/Formula/opencv@2.rb deleted file mode 100644 index 1185a6f2cf466c..00000000000000 --- a/Formula/opencv@2.rb +++ /dev/null @@ -1,99 +0,0 @@ -class OpencvAT2 < Formula - desc "Open source computer vision library" - homepage "https://opencv.org/" - url "https://github.com/opencv/opencv/archive/2.4.13.7.tar.gz" - sha256 "192d903588ae2cdceab3d7dc5a5636b023132c8369f184ca89ccec0312ae33d0" - license "BSD-3-Clause" - revision 12 - - bottle do - sha256 cellar: :any, arm64_monterey: "83c5326c95de73c14aa11909ade85f8f78684f5386d6f134201976eafb63e497" - sha256 arm64_big_sur: "80480cb6ead5fdcdb15ff6a15ce76ab6650da02b1d41f29e719afaf311e9cc4c" - sha256 cellar: :any, monterey: "1a2972e1851f1c02e5259820b798688345525bd906f0840cf6761ec0f4882015" - sha256 big_sur: "ccca6d5ab6c409984409b978bb1f44d753cb973e0d11dd8721fdda7dffa9713c" - sha256 catalina: "f3d3e73afb743e429cbcfe84c44ef461eedb85fe040a3e2da15979ee3ddabfd3" - sha256 mojave: "04149e97504dff8e9d76258126f403e24dabe31245620091dbc452af6722dc2a" - end - - keg_only :versioned_formula - - # https://www.slideshare.net/EugeneKhvedchenya/opencv-30-latest-news-and-the-roadmap - disable! date: "2022-07-31", because: :unsupported - - depends_on "cmake" => :build - depends_on "pkg-config" => :build - depends_on "eigen" - depends_on "ffmpeg" - depends_on "jpeg" - depends_on "libpng" - depends_on "libtiff" - depends_on :macos # Due to Python 2 - depends_on "numpy@1.16" - depends_on "openexr" - - def install - ENV.cxx11 - jpeg = Formula["jpeg"] - - args = std_cmake_args + %W[ - -DCMAKE_OSX_DEPLOYMENT_TARGET= - -DBUILD_JASPER=OFF - -DBUILD_JPEG=OFF - -DBUILD_OPENEXR=OFF - -DBUILD_PERF_TESTS=OFF - -DBUILD_PNG=OFF - -DBUILD_TESTS=OFF - -DBUILD_TIFF=OFF - -DBUILD_ZLIB=OFF - -DBUILD_opencv_java=OFF - -DBUILD_opencv_python=ON - -DWITH_CUDA=OFF - -DWITH_EIGEN=ON - -DWITH_FFMPEG=ON - -DWITH_GSTREAMER=OFF - -DWITH_JASPER=OFF - -DWITH_OPENEXR=ON - -DWITH_OPENGL=ON - -DWITH_TBB=OFF - -DJPEG_INCLUDE_DIR=#{jpeg.opt_include} - -DJPEG_LIBRARY=#{jpeg.opt_lib}/libjpeg.dylib - -DENABLE_SSSE3=ON - ] - - py_prefix = `python-config --prefix`.chomp - py_lib = "#{py_prefix}/lib" - args << "-DPYTHON_LIBRARY=#{py_lib}/libpython2.7.dylib" - args << "-DPYTHON_INCLUDE_DIR=#{py_prefix}/include/python2.7" - - # Make sure find_program locates system Python - # https://github.com/Homebrew/homebrew-science/issues/2302 - args << "-DCMAKE_PREFIX_PATH=#{py_prefix}" - - args << "-DENABLE_SSE41=ON" << "-DENABLE_SSE42=ON" \ - if Hardware::CPU.intel? && MacOS.version.requires_sse42? - - mkdir "build" do - system "cmake", "..", *args - inreplace "modules/core/version_string.inc", Superenv.shims_path, "" - system "make" - system "make", "install" - end - end - - test do - (testpath/"test.cpp").write <<~EOS - #include - #include - int main() { - std::cout << CV_VERSION << std::endl; - return 0; - } - EOS - system ENV.cxx, "test.cpp", "-I#{include}", "-L#{lib}", "-o", "test" - assert_equal version.to_s, shell_output("./test").strip - - ENV["PYTHONPATH"] = lib/"python2.7/site-packages" - output = shell_output("python2.7 -c 'import cv2; print(cv2.__version__)'") - assert_match version.to_s, output - end -end From 93cf0462e5defc1d9bf3c4383e1b26fc1afb94f9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:49 +0000 Subject: [PATCH 077/133] orbit: remove formula --- Formula/orbit.rb | 49 ------------------------------------------------ 1 file changed, 49 deletions(-) delete mode 100644 Formula/orbit.rb diff --git a/Formula/orbit.rb b/Formula/orbit.rb deleted file mode 100644 index a5c3ad220f41db..00000000000000 --- a/Formula/orbit.rb +++ /dev/null @@ -1,49 +0,0 @@ -class Orbit < Formula - desc "CORBA 2.4-compliant object request broker (ORB)" - homepage "https://web.archive.org/web/20191222075841/projects-old.gnome.org/ORBit2/" - url "https://download.gnome.org/sources/ORBit2/2.14/ORBit2-2.14.19.tar.bz2" - sha256 "55c900a905482992730f575f3eef34d50bda717c197c97c08fa5a6eafd857550" - license all_of: ["GPL-2.0-or-later", "LGPL-2.0-only"] - revision 1 - head "https://gitlab.gnome.org/Archive/orbit2.git", branch: "master" - - bottle do - rebuild 3 - sha256 arm64_monterey: "19c4db555e259ad9d2c820e95ccea5f15adab1887083021f7507578ea961c5e8" - sha256 arm64_big_sur: "42435b23e00c8227cd80af182e39c4f24ea2bd6e50b01c0df0cd171a92ba4c02" - sha256 monterey: "564ab69f0155ea40bd63118434548799463a6817f57eb3296bf553100070becd" - sha256 big_sur: "d39f55257c7d7eff2ecb9bb03c596a23d53abf2c081b87bf06f1b93415dda0b4" - sha256 catalina: "3108db04a65e53b067b29f700b1360e90badde53e891555f341fabe7c5dd5fe4" - sha256 mojave: "638d7bc192d39014137dfe3508e935b0b129b78e1f6971c1342e8ed1a52b2900" - sha256 x86_64_linux: "9403e552d8faa81a930060351bd0e757dd279f51c7a05a8d35c08de560a27c2f" - end - - # GNOME 2.19 deprecated Orbit2 in 2007; now even their webpage for it is gone as of 2020 - disable! date: "2022-07-31", because: :deprecated_upstream - - depends_on "pkg-config" => :build - depends_on "glib" - depends_on "libidl" - - # per MacPorts, re-enable use of deprecated glib functions - patch :p0 do - url "https://raw.githubusercontent.com/Homebrew/formula-patches/6b7eaf2b/orbit/patch-linc2-src-Makefile.in.diff" - sha256 "572771ea59f841d74ac361d51f487cc3bcb2d75dacc9c20a8bd6cbbaeae8f856" - end - - patch :p0 do - url "https://raw.githubusercontent.com/Homebrew/formula-patches/6b7eaf2b/orbit/patch-configure.diff" - sha256 "34d068df8fc9482cf70b291032de911f0e75a30994562d4cf56b0cc2a8e28e42" - end - - def install - ENV.deparallelize - system "./configure", "--disable-debug", "--disable-dependency-tracking", - "--prefix=#{prefix}" - system "make", "install" - end - - test do - assert_match version.to_s, shell_output("#{bin}/orbit2-config --prefix --version") - end -end From 8dfbdf56bb810080d4a58c19f0972a3825c0791b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:50 +0000 Subject: [PATCH 078/133] parquet-tools: remove formula --- Formula/parquet-tools.rb | 46 ---------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 Formula/parquet-tools.rb diff --git a/Formula/parquet-tools.rb b/Formula/parquet-tools.rb deleted file mode 100644 index efc6494aca1791..00000000000000 --- a/Formula/parquet-tools.rb +++ /dev/null @@ -1,46 +0,0 @@ -class ParquetTools < Formula - desc "Apache Parquet command-line tools and utilities" - homepage "https://parquet.apache.org/" - url "https://github.com/apache/parquet-mr.git", - tag: "apache-parquet-1.12.2", - revision: "77e30c8093386ec52c3cfa6c34b7ef3321322c94" - license "Apache-2.0" - head "https://github.com/apache/parquet-mr.git", branch: "master" - - bottle do - sha256 cellar: :any_skip_relocation, arm64_monterey: "bccc742739150813fde729a1eb82b4cd122edeae186bbf2bc9845742d337a2f8" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "97878dc311bf03733c98f0315c9ec1a077664e1d5687b6d8553ef31e2db39c52" - sha256 cellar: :any_skip_relocation, monterey: "74545f457e9f95a283f4a8bee126ab6cc05e79331c677a26db7fb2236076ffc0" - sha256 cellar: :any_skip_relocation, big_sur: "4384c7d5a32e1681340d393babb1fb59226b0a87c29f1643c71e23c4658bec90" - sha256 cellar: :any_skip_relocation, catalina: "40d62a070a0dcdc779e32f1054dd4bd2f220590a497d31c90c0230e653056c62" - sha256 cellar: :any_skip_relocation, x86_64_linux: "bb10fb679729d2f61b8804013abb0a56aadaf14c5e81c644ade30123edd6c7a6" - end - - # See https://issues.apache.org/jira/browse/PARQUET-1666 - disable! date: "2022-07-31", because: :deprecated_upstream - - depends_on "maven" => :build - depends_on "openjdk" - - # This file generated with `red-parquet` gem: - # Arrow::Table.new("values" => ["foo", "Homebrew", "bar"]).save("homebrew.parquet") - resource("test-parquet") do - url "https://gist.github.com/bayandin/2144b5fc6052153c1a33fd2679d50d95/raw/7d793910a1afd75ee4677f8c327491f7bdd2256b/homebrew.parquet" - sha256 "5caf572cb0df5ce9d6893609de82d2369b42c3c81c611847b6f921d912040118" - end - - def install - cd "parquet-tools-deprecated" do - system "mvn", "clean", "package", "-Plocal", "-DskipTests=true" - libexec.install "target/parquet-tools-deprecated-#{version}.jar" - bin.write_jar_script libexec/"parquet-tools-deprecated-#{version}.jar", "parquet-tools" - end - end - - test do - resource("test-parquet").stage testpath - - output = shell_output("#{bin}/parquet-tools cat #{testpath}/homebrew.parquet") - assert_match "values = Homebrew", output - end -end From 995cc7ec2d21a85402830dec6ad19d95bd06e4d5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:50 +0000 Subject: [PATCH 079/133] pdf-redact-tools: remove formula --- Formula/pdf-redact-tools.rb | 46 ------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 Formula/pdf-redact-tools.rb diff --git a/Formula/pdf-redact-tools.rb b/Formula/pdf-redact-tools.rb deleted file mode 100644 index 245a3fbf088dd7..00000000000000 --- a/Formula/pdf-redact-tools.rb +++ /dev/null @@ -1,46 +0,0 @@ -class PdfRedactTools < Formula - desc "Securely redacting and stripping metadata" - homepage "https://github.com/firstlookmedia/pdf-redact-tools" - url "https://github.com/firstlookmedia/pdf-redact-tools/archive/v0.1.2.tar.gz" - sha256 "5874a7b76be15ccaa4c20874299ef51fbaf520a858229a58678bc72a305305fc" - license "GPL-3.0-or-later" - revision 1 - head "https://github.com/firstlookmedia/pdf-redact-tools.git", branch: "master" - - bottle do - rebuild 1 - sha256 cellar: :any_skip_relocation, arm64_big_sur: "7f949403c9b5927ae95adf02b32c8f7c74cff9ee14881d50f5634850fc418f2e" - sha256 cellar: :any_skip_relocation, big_sur: "7c70360f14e7dd09fe4d29e86fdd98a40688f60bbd24475b5c9ff54f8dc526db" - sha256 cellar: :any_skip_relocation, catalina: "2b652f29d55bf7d476f02b6ac35c2aab3920709fe72e5390838ee4732a1210da" - sha256 cellar: :any_skip_relocation, mojave: "e89303de13975510234c078756470ac529050a93a4e4a7592b94ef5971cea049" - sha256 cellar: :any_skip_relocation, all: "4649a176c7163257ddd34efd8fc3637d68ddcaeed05f2bcd8a078c32e31e65c4" - end - - # "This project is no longer maintained. A much better tool is dangerzone: - # https://dangerzone.rocks" - disable! date: "2022-07-31", because: :repo_archived - - depends_on "exiftool" - depends_on "ghostscript" - depends_on "imagemagick" - depends_on :macos # Due to Python 2 (https://github.com/firstlookmedia/pdf-redact-tools/pull/34) - - def install - ENV.prepend_create_path "PYTHONPATH", libexec/"lib/python2.7/site-packages" - system "python", *Language::Python.setup_install_args(libexec) - - bin.install Dir["#{libexec}/bin/*"] - bin.env_script_all_files(libexec/"bin", PYTHONPATH: ENV["PYTHONPATH"]) - end - - test do - # Modifies the file in the directory the file is placed in. - cp test_fixtures("test.pdf"), "test.pdf" - system bin/"pdf-redact-tools", "-e", "test.pdf" - assert_predicate testpath/"test_pages/page-0.png", :exist? - rm_rf "test_pages" - - system bin/"pdf-redact-tools", "-s", "test.pdf" - assert_predicate testpath/"test-final.pdf", :exist? - end -end From bd23590f06b43e6a088764603fdf841a96108439 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:50 +0000 Subject: [PATCH 080/133] pdf2htmlex: remove formula --- Formula/pdf2htmlex.rb | 112 ------------------------------------------ 1 file changed, 112 deletions(-) delete mode 100644 Formula/pdf2htmlex.rb diff --git a/Formula/pdf2htmlex.rb b/Formula/pdf2htmlex.rb deleted file mode 100644 index c7e6fcad17fcb2..00000000000000 --- a/Formula/pdf2htmlex.rb +++ /dev/null @@ -1,112 +0,0 @@ -class Pdf2htmlex < Formula - desc "PDF to HTML converter" - homepage "https://coolwanglu.github.io/pdf2htmlEX/" - url "https://github.com/coolwanglu/pdf2htmlEX/archive/v0.14.6.tar.gz" - sha256 "320ac2e1c2ea4a2972970f52809d90073ee00a6c42ef6d9833fb48436222f0e5" - license "GPL-3.0-or-later" - revision 24 - head "https://github.com/coolwanglu/pdf2htmlEX.git", branch: "master" - - bottle do - sha256 arm64_big_sur: "8c29d3c811e6e6580644620a76848458db39181b996cc15e4df2589c8de40e27" - sha256 big_sur: "7cb1691e750ce40dfc9dbb9e9faba3138158c31e3221335acd3d4f25eb7bf3c3" - sha256 catalina: "76c5b16da33231ee6d269f95c5b9b3f0f06b9f5d5634e003d55e6ad5e123a387" - sha256 mojave: "0cf6aa3cd87e96aab2fc58b618f8a9127edec88a624bd6cf2f5816fd575c0a50" - sha256 high_sierra: "8a55a7cd0d373d223162ee92bc6f02c269b4f17fe987471ba3388ea257cf870f" - end - - disable! date: "2022-07-31", because: :repo_archived - - depends_on "autoconf" => :build # for fontforge - depends_on "automake" => :build # for fontforge - depends_on "cmake" => :build - depends_on "pkg-config" => :build - depends_on "cairo" # for fontforge - depends_on "freetype" # for fontforge - depends_on "gettext" # for fontforge - depends_on "giflib" # for fontforge - depends_on "glib" # for fontforge - depends_on "gnu-getopt" - depends_on "jpeg" # for fontforge - depends_on "libpng" # for fontforge - depends_on "libtiff" # for fontforge - depends_on "libtool" # for fontforge - - depends_on "openjpeg" # for poppler - depends_on "pango" # for fontforge - depends_on "ttfautohint" - - # Pdf2htmlex use an outdated, customised Fontforge installation. - # See https://github.com/coolwanglu/pdf2htmlEX/wiki/Building - resource "fontforge" do - url "https://github.com/coolwanglu/fontforge.git", branch: "pdf2htmlEX" - end - - # Upstream issue "poppler 0.59.0 incompatibility" - # Reported 4 Sep 2017 https://github.com/coolwanglu/pdf2htmlEX/issues/733 - resource "poppler" do - url "https://poppler.freedesktop.org/poppler-0.57.0.tar.xz" - sha256 "0ea37de71b7db78212ebc79df59f99b66409a29c2eac4d882dae9f2397fe44d8" - end - - resource "poppler-data" do - url "https://poppler.freedesktop.org/poppler-data-0.4.8.tar.gz" - sha256 "1096a18161f263cccdc6d8a2eb5548c41ff8fcf9a3609243f1b6296abdf72872" - end - - def install - resource("fontforge").stage do - # Fix for incomplete giflib 5 support, see - # https://github.com/coolwanglu/pdf2htmlEX/issues/713 - inreplace "gutils/gimagereadgif.c", "DGifCloseFile(gif)", "DGifCloseFile(gif, NULL)" - - if OS.mac? - # Fix linker error; see: https://trac.macports.org/ticket/25012 - ENV.append "LDFLAGS", "-lintl" - end - - system "./autogen.sh" - system "./configure", "--prefix=#{libexec}/fontforge", - "--without-libzmq", - "--without-x", - "--without-iconv", - "--without-libspiro", - "--without-libuninameslist", - "--disable-python-scripting", - "--disable-python-extension" - system "make" - system "make", "install" - end - - ENV.prepend_path "PKG_CONFIG_PATH", "#{libexec}/fontforge/lib/pkgconfig" - ENV.prepend_path "PATH", "#{libexec}/fontforge/bin" - - resource("poppler").stage do - inreplace "poppler.pc.in", "Cflags: -I${includedir}/poppler", - "Cflags: -I${includedir}/poppler -I${includedir}" - - system "./configure", "--disable-dependency-tracking", - "--prefix=#{libexec}/poppler", - "--enable-xpdf-headers", - "--enable-poppler-glib", - "--disable-gtk-test", - "--enable-introspection=no", - "--disable-poppler-qt4" - system "make", "install" - resource("poppler-data").stage do - system "make", "install", "prefix=#{libexec}/poppler" - end - end - - ENV.prepend_path "PKG_CONFIG_PATH", "#{libexec}/poppler/lib/pkgconfig" - ENV.prepend_path "PATH", "#{libexec}/poppler/bin" - - system "cmake", ".", *std_cmake_args - system "make" - system "make", "install" - end - - test do - system "#{bin}/pdf2htmlEX", test_fixtures("test.pdf") - end -end From 6f9eadd6f354780a021bb780f0728661c8e59c39 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:51 +0000 Subject: [PATCH 081/133] plustache: remove formula --- Formula/plustache.rb | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 Formula/plustache.rb diff --git a/Formula/plustache.rb b/Formula/plustache.rb deleted file mode 100644 index 2a5f528dc0be8f..00000000000000 --- a/Formula/plustache.rb +++ /dev/null @@ -1,31 +0,0 @@ -class Plustache < Formula - desc "C++ port of Mustache templating system" - homepage "https://github.com/mrtazz/plustache" - url "https://github.com/mrtazz/plustache/archive/0.4.0.tar.gz" - sha256 "83960c412a7c176664c48ba4d718e72b5d39935b24dc13d7b0f0840b98b06824" - license "MIT" - - bottle do - rebuild 1 - sha256 cellar: :any, arm64_monterey: "e2c59b901c06ae27cc3576cc279e6f3bbc546db4c4a461beda62500a4f58e35d" - sha256 cellar: :any, arm64_big_sur: "0ef2e1ec65b8dfd26c959c5511d645c239fb8ec29343c1785df52d6abbafd466" - sha256 cellar: :any, monterey: "5f186a90b7ca267f82e8516a3f0f057d052ad2fc5795ee5c6d2ce89ab562eabd" - sha256 cellar: :any, big_sur: "7a9331bddff426646291a13c0cde40ecc1399acc8a44db3073d6756d56ca5621" - sha256 cellar: :any, catalina: "c851f4db6bd4095dd61c1f4a2b192f39b21f05aa8c6e994b9f75d6f183e0bbb8" - sha256 cellar: :any, mojave: "e6edf87d690e5c17b32a04d0da7ffe6cdf185cb6273a23058c56373b62bd554d" - sha256 cellar: :any, high_sierra: "046e756acf6694ae9b8768c62981f807a93aaef52d175bbff7005a29bb23aa00" - end - - disable! date: "2022-07-31", because: :repo_archived - - depends_on "autoconf" => :build - depends_on "automake" => :build - depends_on "libtool" => :build - depends_on "boost" - - def install - system "autoreconf", "--force", "--install" - system "./configure", "--prefix=#{prefix}" - system "make", "install" - end -end From 584c70355db29b742d91bf10393e8bca8a80bd22 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:51 +0000 Subject: [PATCH 082/133] points2grid: remove formula --- Formula/points2grid.rb | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 Formula/points2grid.rb diff --git a/Formula/points2grid.rb b/Formula/points2grid.rb deleted file mode 100644 index 6024e7ab9cdb94..00000000000000 --- a/Formula/points2grid.rb +++ /dev/null @@ -1,35 +0,0 @@ -class Points2grid < Formula - desc "Generate digital elevation models using local griding" - homepage "https://github.com/CRREL/points2grid" - url "https://github.com/CRREL/points2grid/archive/1.3.1.tar.gz" - sha256 "6e2f2d3bbfd6f0f5c2d0c7d263cbd5453745a6fbe3113a3a2a630a997f4a1807" - license "BSD-4-Clause" - revision 13 - - bottle do - sha256 cellar: :any, monterey: "512f823167dbbf5181f29ed8114407b0412d5e078f0f936177fd740e976c0a09" - sha256 cellar: :any, big_sur: "2f165bbc5c54e67fbe9c0d52875898ef82689a3a5a1e145a4567b60dd440cb19" - sha256 cellar: :any, catalina: "1e3ec7e78cd4652a7f43fca2d9917bd61d7dbd66461f3ac428e9d3f62d8bac97" - sha256 cellar: :any, mojave: "d3e4412d6830dc9a2c8bcfc9494497eaeb4d9f606ee0211a74ce10f60382aff8" - end - - disable! date: "2022-07-31", because: :repo_archived - - depends_on "cmake" => :build - depends_on "boost" - depends_on "gdal" - - def install - ENV.cxx11 - libexec.install "test/data/example.las" - system "cmake", ".", *std_cmake_args, "-DWITH_GDAL=ON" - system "make", "install" - end - - test do - system bin/"points2grid", "-i", libexec/"example.las", - "-o", "example", - "--max", "--output_format", "grid" - assert_equal 13, File.read("example.max.grid").scan("423.820000").size - end -end From ee1e1fba882488254e16e8d8f69be52380f05f7d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:51 +0000 Subject: [PATCH 083/133] pony-stable: remove formula --- Formula/pony-stable.rb | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 Formula/pony-stable.rb diff --git a/Formula/pony-stable.rb b/Formula/pony-stable.rb deleted file mode 100644 index 08d0c59e2c5e35..00000000000000 --- a/Formula/pony-stable.rb +++ /dev/null @@ -1,35 +0,0 @@ -class PonyStable < Formula - desc "Dependency manager for the Pony language" - homepage "https://github.com/ponylang/pony-stable" - url "https://github.com/ponylang/pony-stable/archive/0.2.2.tar.gz" - sha256 "8fca5f0f600e695d648200a7492c5d8cea82581f4e4e138f0bb621911d9e4c13" - license "BSD-2-Clause" - head "https://github.com/ponylang/pony-stable.git", branch: "master" - - bottle do - sha256 cellar: :any_skip_relocation, big_sur: "6989c2d99d5b71bbabcc3728f218c195c06ab03363a54a1e8493cb7715d518f5" - sha256 cellar: :any_skip_relocation, catalina: "1375ab1923d90e07e05071bad1effb66aef547bd6d9fd98a40afbdb65596471e" - sha256 cellar: :any_skip_relocation, mojave: "1375ab1923d90e07e05071bad1effb66aef547bd6d9fd98a40afbdb65596471e" - sha256 cellar: :any_skip_relocation, high_sierra: "caf0c823ba581ab0e669d0372c06d1cb74262f05334814a5f49370659aa030d1" - end - - # "Stable is no longer being developed. It's been replaced by Corral - # (https://github.com/ponylang/corral)." - disable! date: "2022-07-31", because: :repo_archived - - depends_on "ponyc" - - def install - system "make", "prefix=#{prefix}", "install" - end - - test do - (testpath/"test/main.pony").write <<~EOS - actor Main - new create(env: Env) => - env.out.print("Hello World!") - EOS - system "#{bin}/stable", "env", "ponyc", "test" - assert_equal "Hello World!", shell_output("./test1").chomp - end -end From c7a8c246a59d96fe9dbceb53fb1624996194f5f4 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:52 +0000 Subject: [PATCH 084/133] postgresql@9.4: remove formula --- Formula/postgresql@9.4.rb | 174 -------------------------------------- 1 file changed, 174 deletions(-) delete mode 100644 Formula/postgresql@9.4.rb diff --git a/Formula/postgresql@9.4.rb b/Formula/postgresql@9.4.rb deleted file mode 100644 index cf76be300a8ec2..00000000000000 --- a/Formula/postgresql@9.4.rb +++ /dev/null @@ -1,174 +0,0 @@ -class PostgresqlAT94 < Formula - desc "Object-relational database system" - homepage "https://www.postgresql.org/" - url "https://ftp.postgresql.org/pub/source/v9.4.26/postgresql-9.4.26.tar.bz2" - sha256 "f5c014fc4a5c94e8cf11314cbadcade4d84213cfcc82081c9123e1b8847a20b9" - license "PostgreSQL" - - bottle do - rebuild 4 - sha256 monterey: "6b8c02385f043c6ddf224b48f79dce675f9f6a18a2fcbd9b9cfdbb52ec57663e" - sha256 big_sur: "0331cf3d1dcb6311ad144916317c520c0a442832d038c6d11da6f42c670e263f" - sha256 catalina: "a72c3df7772799a0870db56245b192b655c7691984224f6eb0b9a3f839edb8a3" - sha256 mojave: "64558f09195403c05cea3f52cb7c7162a61a0a01e24a40aaf297021fadf11fc9" - sha256 x86_64_linux: "fddd8da997370fa7185ce58a2cb5a2f3a95d4d24d9e20eae8dd368004682d1f9" - end - - keg_only :versioned_formula - - # https://www.postgresql.org/support/versioning/ - disable! date: "2022-07-31", because: :unsupported - - depends_on arch: :x86_64 - depends_on "openssl@1.1" - depends_on "readline" - - uses_from_macos "krb5" - uses_from_macos "libxslt" - uses_from_macos "openldap" - uses_from_macos "perl" - - on_linux do - depends_on "autoconf@2.69" => :build - depends_on "linux-pam" - depends_on "util-linux" - - # configure patch to deal with OpenLDAP 2.5 - patch do - url "https://raw.githubusercontent.com/Homebrew/formula-patches/10fe8d35eb7323bb882c909a0ec065ae01401626/postgresql/openldap-2.5.patch" - sha256 "7b1e1a88752482c59f6971dfd17a2144ed60e6ecace8538200377ee9b1b7938c" - end - end - - def install - ENV.prepend "LDFLAGS", "-L#{Formula["openssl@1.1"].opt_lib} -L#{Formula["readline"].opt_lib}" - ENV.prepend "CPPFLAGS", "-I#{Formula["openssl@1.1"].opt_include} -I#{Formula["readline"].opt_include}" - ENV.prepend "PG_SYSROOT", MacOS.sdk_path - ENV.append_to_cflags "-D_XOPEN_SOURCE" - - args = %W[ - --disable-debug - --prefix=#{prefix} - --datadir=#{pkgshare} - --docdir=#{doc} - --enable-thread-safety - --with-gssapi - --with-ldap - --with-openssl - --with-pam - --with-libxml - --with-libxslt - --with-perl - --with-uuid=e2fs - ] - - if OS.mac? - args += %w[ - --with-bonjour - --with-tcl - ] - - # The CLT is required to build tcl support on 10.7 and 10.8 because tclConfig.sh is not part of the SDK - if File.exist?("#{MacOS.sdk_path}/System/Library/Frameworks/Tcl.framework/tclConfig.sh") - args << "--with-tclconfig=#{MacOS.sdk_path}/System/Library/Frameworks/Tcl.framework" - end - - # configure issue with CLT 12+ - if DevelopmentTools.clang_build_version >= 1200 - inreplace "configure", - "exit(! does_int64_work())", - "return(! does_int64_work())" - end - else - # rebuild `configure` after patching - # (remove if patch block not needed) - system "autoreconf", "-ivf" - end - - system "./configure", *args - system "make" - - dirs = %W[datadir=#{pkgshare} libdir=#{lib} pkglibdir=#{lib}] - - # Temporarily disable building/installing the documentation. - # Postgresql seems to "know" the build system has been altered and - # tries to regenerate the documentation when using `install-world`. - # This results in the build failing: - # `ERROR: `osx' is missing on your system.` - # Attempting to fix that by adding a dependency on `open-sp` doesn't - # work and the build errors out on generating the documentation, so - # for now let's simply omit it so we can package Postgresql for Mojave. - if OS.mac? - if DevelopmentTools.clang_build_version >= 1000 - system "make", "all" - system "make", "-C", "contrib", "install", "all", *dirs - system "make", "install", "all", *dirs - else - system "make", "install-world", *dirs - end - else - system "make", "all" - system "make", "-C", "contrib", "install", "all", *dirs - system "make", "install", "all", *dirs - inreplace lib/"pgxs/src/Makefile.global", - "LD = #{HOMEBREW_PREFIX}/Homebrew/Library/Homebrew/shims/linux/super/ld", - "LD = #{HOMEBREW_PREFIX}/bin/ld" - end - end - - def post_install - (var/"log").mkpath - postgresql_datadir.mkpath - - # Don't initialize database, it clashes when testing other PostgreSQL versions. - return if ENV["HOMEBREW_GITHUB_ACTIONS"] - - system "#{bin}/initdb", postgresql_datadir unless pg_version_exists? - end - - def postgresql_datadir - var/name - end - - def postgresql_log_path - var/"log/#{name}.log" - end - - def pg_version_exists? - (postgresql_datadir/"PG_VERSION").exist? - end - - def caveats - <<~EOS - If builds of PostgreSQL 9 are failing and you have version 8.x installed, - you may need to remove the previous version first. See: - https://github.com/Homebrew/legacy-homebrew/issues/2510 - - When installing the postgres gem, including ARCHFLAGS is recommended: - ARCHFLAGS="-arch x86_64" gem install pg - - To install gems without sudo, see the Homebrew documentation: - https://docs.brew.sh/Gems,-Eggs-and-Perl-Modules - - This formula has created a default database cluster with: - initdb #{postgresql_datadir} - For more details, read: - https://www.postgresql.org/docs/#{version.major}/app-initdb.html - EOS - end - - service do - run [opt_bin/"postgres", "-D", var/"postgresql@9.4"] - working_dir HOMEBREW_PREFIX - keep_alive true - run_type :immediate - error_log_path var/"log/postgresql@9.4.log" - end - - test do - system "#{bin}/initdb", testpath/"test" unless ENV["HOMEBREW_GITHUB_ACTIONS"] - assert_equal pkgshare.to_s, shell_output("#{bin}/pg_config --sharedir").chomp - assert_equal lib.to_s, shell_output("#{bin}/pg_config --libdir").chomp - assert_equal lib.to_s, shell_output("#{bin}/pg_config --pkglibdir").chomp - end -end From 42a00fa9f45fc247547cb87774de654ca82de2fd Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:52 +0000 Subject: [PATCH 085/133] postgresql@9.5: remove formula --- Formula/postgresql@9.5.rb | 166 -------------------------------------- 1 file changed, 166 deletions(-) delete mode 100644 Formula/postgresql@9.5.rb diff --git a/Formula/postgresql@9.5.rb b/Formula/postgresql@9.5.rb deleted file mode 100644 index 3c3b809d1faa63..00000000000000 --- a/Formula/postgresql@9.5.rb +++ /dev/null @@ -1,166 +0,0 @@ -class PostgresqlAT95 < Formula - desc "Object-relational database system" - homepage "https://www.postgresql.org/" - url "https://ftp.postgresql.org/pub/source/v9.5.25/postgresql-9.5.25.tar.bz2" - sha256 "7628c55eb23768a2c799c018988d8f2ab48ee3d80f5e11259938f7a935f0d603" - license "PostgreSQL" - - bottle do - rebuild 2 - sha256 arm64_monterey: "e989f50f2bc29335eb02db7f763fd3a19db82a82eb0c2e734e92355c7cf3daf0" - sha256 arm64_big_sur: "8f45d54de15389a0d9b0c95170116a9cd67eba05640fdf4bdfda2c5e045f64dc" - sha256 monterey: "0b581dbfa31a5d0da0d7732116f15afdbfab28f958266bc4afe60e3ec7424cd1" - sha256 big_sur: "b6e7f2c53abe33e98e76f91226060b907a4eab3392c64573846ae649b668a924" - sha256 catalina: "d26af40f35158c68fb779e61ffdf91d185c4c287249622b4a3dddd05d14a738c" - sha256 mojave: "be39a1cdcd44fbebdd13ddbf0ec41bd2e32bb30d3c45d492da4d38e88c525f91" - sha256 x86_64_linux: "3ba513c432cefa749b70540dc4b3de0064a5f2646f808e2b6c43df681daf32ea" - end - - keg_only :versioned_formula - - # https://www.postgresql.org/support/versioning/ - disable! date: "2022-07-31", because: :unsupported - - depends_on "openssl@1.1" - depends_on "readline" - - uses_from_macos "krb5" - uses_from_macos "libxslt" - uses_from_macos "openldap" - uses_from_macos "perl" - - on_linux do - depends_on "autoconf@2.69" => :build - depends_on "linux-pam" - depends_on "util-linux" - - # configure patch to deal with OpenLDAP 2.5 - patch do - url "https://raw.githubusercontent.com/Homebrew/formula-patches/10fe8d35eb7323bb882c909a0ec065ae01401626/postgresql/openldap-2.5.patch" - sha256 "7b1e1a88752482c59f6971dfd17a2144ed60e6ecace8538200377ee9b1b7938c" - end - end - - def install - ENV.prepend "LDFLAGS", "-L#{Formula["openssl@1.1"].opt_lib} -L#{Formula["readline"].opt_lib}" - ENV.prepend "CPPFLAGS", "-I#{Formula["openssl@1.1"].opt_include} -I#{Formula["readline"].opt_include}" - - # avoid adding the SDK library directory to the linker search path - ENV["XML2_CONFIG"] = "xml2-config --exec-prefix=/usr" - - args = %W[ - --disable-debug - --prefix=#{prefix} - --datadir=#{pkgshare} - --libdir=#{lib} - --sysconfdir=#{prefix}/etc - --docdir=#{doc} - --enable-thread-safety - --with-gssapi - --with-ldap - --with-libxml - --with-libxslt - --with-openssl - --with-pam - --with-perl - --with-uuid=e2fs - ] - - if OS.mac? - args += %w[ - --with-bonjour - --with-tcl - ] - end - - # PostgreSQL by default uses xcodebuild internally to determine this, - # which does not work on CLT-only installs. - args << "PG_SYSROOT=#{MacOS.sdk_path}" if MacOS.sdk_root_needed? - - if OS.linux? - # rebuild `configure` after patching - # (remove if patch block not needed) - system "autoreconf", "-ivf" - end - - system "./configure", *args - system "make" - - dirs = %W[datadir=#{pkgshare} libdir=#{lib} pkglibdir=#{lib}] - - # Temporarily disable building/installing the documentation. - # Postgresql seems to "know" the build system has been altered and - # tries to regenerate the documentation when using `install-world`. - # This results in the build failing: - # `ERROR: `osx' is missing on your system.` - # Attempting to fix that by adding a dependency on `open-sp` doesn't - # work and the build errors out on generating the documentation, so - # for now let's simply omit it so we can package Postgresql for Mojave. - if OS.mac? - if DevelopmentTools.clang_build_version >= 1000 - system "make", "all" - system "make", "-C", "contrib", "install", "all", *dirs - system "make", "install", "all", *dirs - else - system "make", "install-world", *dirs - end - else - system "make", "all" - system "make", "-C", "contrib", "install", "all", *dirs - system "make", "install", "all", *dirs - inreplace lib/"pgxs/src/Makefile.global", - "LD = #{HOMEBREW_PREFIX}/Homebrew/Library/Homebrew/shims/linux/super/ld", - "LD = #{HOMEBREW_PREFIX}/bin/ld" - end - end - - def post_install - (var/"log").mkpath - postgresql_datadir.mkpath - - # Don't initialize database, it clashes when testing other PostgreSQL versions. - return if ENV["HOMEBREW_GITHUB_ACTIONS"] - - system "#{bin}/initdb", postgresql_datadir unless pg_version_exists? - end - - def postgresql_datadir - var/name - end - - def postgresql_log_path - var/"log/#{name}.log" - end - - def pg_version_exists? - (postgresql_datadir/"PG_VERSION").exist? - end - - def caveats - <<~EOS - If builds of PostgreSQL 9 are failing and you have version 8.x installed, - you may need to remove the previous version first. See: - https://github.com/Homebrew/legacy-homebrew/issues/2510 - - This formula has created a default database cluster with: - initdb #{postgresql_datadir} - For more details, read: - https://www.postgresql.org/docs/#{version.major}/app-initdb.html - EOS - end - - service do - run [opt_bin/"postgres", "-D", var/"postgresql@9.5"] - working_dir HOMEBREW_PREFIX - keep_alive true - run_type :immediate - error_log_path var/"log/postgresql@9.5.log" - end - - test do - system "#{bin}/initdb", testpath/"test" unless ENV["HOMEBREW_GITHUB_ACTIONS"] - assert_equal pkgshare.to_s, shell_output("#{bin}/pg_config --sharedir").chomp - assert_equal lib.to_s, shell_output("#{bin}/pg_config --libdir").chomp - assert_equal lib.to_s, shell_output("#{bin}/pg_config --pkglibdir").chomp - end -end From 8bded9207777e11333a903702241e191dd76b755 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:53 +0000 Subject: [PATCH 086/133] pow: remove formula --- Formula/pow.rb | 48 ------------------------------------------------ 1 file changed, 48 deletions(-) delete mode 100644 Formula/pow.rb diff --git a/Formula/pow.rb b/Formula/pow.rb deleted file mode 100644 index 289ef5707eb9ff..00000000000000 --- a/Formula/pow.rb +++ /dev/null @@ -1,48 +0,0 @@ -class Pow < Formula - desc "Zero-config Rack server for local apps on macOS" - homepage "http://pow.cx/" - url "http://get.pow.cx/versions/0.6.0.tar.gz" - sha256 "225e52bdc0ace5747197a5ece777785245110e576a5136a3d17136ab88a74364" - - bottle do - sha256 cellar: :any_skip_relocation, arm64_monterey: "62f7818e8a3d09cb9a035d11e96c8a47415022d9365f45c7ab4a4cb45d0c23d2" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "d7b025606aeafec695f040a5e35891ffb5a37f999b70a9960435863509e0746e" - sha256 cellar: :any_skip_relocation, monterey: "e08c6dcc8377016d4240a1b1092252a8f58f12d788ff0d49485e47dfc1c9024f" - sha256 cellar: :any_skip_relocation, big_sur: "148533a078c8f6675c9994a2118fc27e5e4f60882844f9dfed2f756c2a26e926" - sha256 cellar: :any_skip_relocation, catalina: "148533a078c8f6675c9994a2118fc27e5e4f60882844f9dfed2f756c2a26e926" - sha256 cellar: :any_skip_relocation, mojave: "148533a078c8f6675c9994a2118fc27e5e4f60882844f9dfed2f756c2a26e926" - sha256 cellar: :any_skip_relocation, x86_64_linux: "8f1172eca858ea568c110ef3dc88bd840c3b36378fa6ca238ba44a072e89fb6e" - end - - # The related GitHub repository (basecamp/pow) was archived sometime between - # 2018-06-11 and 2019-04-10 (referencing Wayback Machine snapshots) - disable! date: "2022-07-31", because: :repo_archived - - depends_on :macos - depends_on "node" - - def install - libexec.install Dir["*"] - (bin/"pow").write <<~EOS - #!/bin/sh - export POW_BIN="#{bin}/pow" - exec "#{Formula["node"].opt_bin}/node" "#{libexec}/lib/command.js" "$@" - EOS - end - - def caveats - <<~EOS - Create the required host directories: - mkdir -p ~/Library/Application\\ Support/Pow/Hosts - ln -s ~/Library/Application\\ Support/Pow/Hosts ~/.pow - - Setup port 80 forwarding and launchd agents: - sudo pow --install-system - pow --install-local - - Load launchd agents: - sudo launchctl load -w /Library/LaunchDaemons/cx.pow.firewall.plist - launchctl load -w ~/Library/LaunchAgents/cx.pow.powd.plist - EOS - end -end From 0a8c757bc4891d20caad2ea46ed0aab8b447c45f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:53 +0000 Subject: [PATCH 087/133] py2cairo: remove formula --- Formula/py2cairo.rb | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 Formula/py2cairo.rb diff --git a/Formula/py2cairo.rb b/Formula/py2cairo.rb deleted file mode 100644 index c1bb13a3bb9a3e..00000000000000 --- a/Formula/py2cairo.rb +++ /dev/null @@ -1,34 +0,0 @@ -class Py2cairo < Formula - desc "Python 2 bindings for the Cairo graphics library" - homepage "https://cairographics.org/pycairo/" - url "https://github.com/pygobject/pycairo/releases/download/v1.18.2/pycairo-1.18.2.tar.gz" - sha256 "dcb853fd020729516e8828ad364084e752327d4cff8505d20b13504b32b16531" - license "LGPL-2.1" - revision 1 - - bottle do - sha256 cellar: :any, arm64_monterey: "ed5c4e9b343a02fb4e38460eb787a72d5c712796ecb9ca7619b9bcb1545e8e04" - sha256 cellar: :any, arm64_big_sur: "de68fca224353b7e7b8426e24324fdb6fd0cc5a6180db4ad0ccd02b43919b0bc" - sha256 cellar: :any, monterey: "e0f4ec3c7a76d356bde27fdab4ea8cb742931f80d3aac47ddea5a82f727bd32b" - sha256 cellar: :any, big_sur: "80feea24d8039acef848c76075f8911493762d75b883b56bf4d87f14d5a3bbac" - sha256 cellar: :any, catalina: "78ab70984d612ac9feba4d673615e3918110aebc4aa0b360a854e81fc7ac0ea7" - sha256 cellar: :any, mojave: "f01c39e8f71339cdec156309fb7358f5bb3e292fb0a84a071c3a935b58234120" - sha256 cellar: :any, high_sierra: "76dbdbbd42c2a59cae7e9ddc05ad26d331194c8a132e24e7316ceb551a40272b" - end - - # Python 2 support was dropped in version 1.19.0 and this formula is pinned - # to the last preceding version. - disable! date: "2022-07-31", because: :versioned_formula - - depends_on "pkg-config" => :build - depends_on "cairo" - depends_on :macos # Due to Python 2 - - def install - system "python", *Language::Python.setup_install_args(prefix) - end - - test do - system "python", "-c", "import cairo; print(cairo.version)" - end -end From e2bc1d6daa180cbaff2988e11acc3f9adf01ef9e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:53 +0000 Subject: [PATCH 088/133] qtfaststart: remove formula --- Formula/qtfaststart.rb | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 Formula/qtfaststart.rb diff --git a/Formula/qtfaststart.rb b/Formula/qtfaststart.rb deleted file mode 100644 index 77ab4b103def97..00000000000000 --- a/Formula/qtfaststart.rb +++ /dev/null @@ -1,41 +0,0 @@ -class Qtfaststart < Formula - desc "Utility for Quicktime files" - homepage "https://libav.org/" - url "https://libav.org/releases/libav-12.3.tar.gz" - sha256 "115b659022dd387f662e26fbc5bc0cc14ec18daa100003ffd34f4da0479b272e" - license :public_domain - - bottle do - rebuild 1 - sha256 cellar: :any_skip_relocation, arm64_monterey: "bfe12bad53920a125425ded3d3a3b98fda2297032df345ed5760c4fea2b90a1f" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "e9190e060b5e58f6e294576e87607b43e6f9f6399ae350ba48fb3f522a511c0c" - sha256 cellar: :any_skip_relocation, monterey: "9b5d46bf1669b66050141745db249ed1374ef21dd51b1ffb51afe38daf01674a" - sha256 cellar: :any_skip_relocation, big_sur: "c9360f4a62eed02d2f5d7879ad4e3c4f6fd250536b3562b228e40d0d3c6c9a70" - sha256 cellar: :any_skip_relocation, catalina: "abce3f470e0a8b62acd78aa2c58114a3e5b64d7b2117d8ffbaadc23c4eee186e" - sha256 cellar: :any_skip_relocation, mojave: "2fac027c66defdafcbaee5b346fd5c5e6c11b5e9a267de40d604b8e837f5d2c4" - sha256 cellar: :any_skip_relocation, high_sierra: "073794a6af64b0fe9f2bc22480b4c605f9497c5ae9087d26fa8e51bdc0230b00" - sha256 cellar: :any_skip_relocation, x86_64_linux: "f62d45afa6c9944b5e6bcb230cc299c082284900b11b425aec88b04ccab5a52b" - end - - # See: https://lists.libav.org/pipermail/libav-devel/2020-April/086589.html - disable! date: "2022-07-31", because: :unmaintained - - resource "mov" do - url "https://github.com/van7hu/fanca/raw/master/examples/kmplayer/samples/H264_test4_Talkingheadclipped_mov_480x320.mov" - sha256 "5af004e182ac7214dadf34816086d0a25c7a6cac568ae3741fca527cbbd242fc" - end - - def install - system ENV.cc, "-o", "tools/qt-faststart", "tools/qt-faststart.c" - bin.install "tools/qt-faststart" - end - - test do - input = "H264_test4_Talkingheadclipped_mov_480x320.mov" - output = "out.mov" - resource("mov").stage { testpath.install Dir["*"].first => input } - system bin/"qt-faststart", input, output - - assert_predicate testpath/output, :exist? - end -end From 0c0190a3c8600e52bb02f9a9ce8ae55bb49e08a8 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:54 +0000 Subject: [PATCH 089/133] rancher-compose: remove formula --- Formula/rancher-compose.rb | 39 -------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 Formula/rancher-compose.rb diff --git a/Formula/rancher-compose.rb b/Formula/rancher-compose.rb deleted file mode 100644 index 4a3129ff2be461..00000000000000 --- a/Formula/rancher-compose.rb +++ /dev/null @@ -1,39 +0,0 @@ -class RancherCompose < Formula - desc "Docker Compose compatible client to deploy to Rancher" - homepage "https://github.com/rancher/rancher-compose" - url "https://github.com/rancher/rancher-compose/archive/v0.12.5.tar.gz" - sha256 "cdff53b2c3401b990ad33e229c7ef429504419e49e18a814101e2fa3c84859ea" - license "Apache-2.0" - - bottle do - sha256 cellar: :any_skip_relocation, arm64_monterey: "76fcfe3baf9620c16330a14d98aaeecfbf907627c5384618628640dd2287759f" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "86aea676688b0a7af232731acfcf7894a957c5566cd34b793d31f45cecfbde5c" - sha256 cellar: :any_skip_relocation, monterey: "29e8f2717f7f8b6adf708dcf5c20c02052fbb893430c0fe7ec6aff10399931e2" - sha256 cellar: :any_skip_relocation, big_sur: "e3993eaca43eae5d57bbe0f2eb6dda444e30f490cf7b1165f723ec086cd0f149" - sha256 cellar: :any_skip_relocation, catalina: "50da809ea2a33343eda8099715391efc6c730b6996476d7c5366fba0d52ab853" - sha256 cellar: :any_skip_relocation, mojave: "bf318932b401481ee6e3a94c82c617b21e558406ebef9739c1c7bb42441e9eda" - sha256 cellar: :any_skip_relocation, high_sierra: "63f6da5eb59cb86c8f84975b3d3ee41f0bfc1456b239d1a6cc06a648d57e1967" - sha256 cellar: :any_skip_relocation, sierra: "08f3fad4e6c1df545dd908b61afe47ed489e682ad2cadab384066237498a2a04" - sha256 cellar: :any_skip_relocation, el_capitan: "8503ea7d7ca208ca7fe8d0c0b81f9ab9b69d926c58f856ac9de4f9f3600cde17" - sha256 cellar: :any_skip_relocation, x86_64_linux: "824f7aa831c055b0bb1db401881bf4bcdff30e72cb9932ff97e57ba47ff19ecd" - end - - disable! date: "2022-07-31", because: :repo_archived - - depends_on "go" => :build - - def install - ENV["GOPATH"] = buildpath - ENV["GO111MODULE"] = "auto" - (buildpath/"src/github.com/rancher/rancher-compose").install Dir["*"] - system "go", "build", "-ldflags", - "-w -X github.com/rancher/rancher-compose/version.VERSION=#{version}", - "-o", "#{bin}/rancher-compose", - "-v", "github.com/rancher/rancher-compose" - prefix.install_metafiles "src/github.com/rancher/rancher-compose" - end - - test do - system bin/"rancher-compose", "help" - end -end From 74356f3d26b7a447f37e5e91e1b71f2112e85c18 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:54 +0000 Subject: [PATCH 090/133] rdesktop: remove formula --- Formula/rdesktop.rb | 55 --------------------------------------------- 1 file changed, 55 deletions(-) delete mode 100644 Formula/rdesktop.rb diff --git a/Formula/rdesktop.rb b/Formula/rdesktop.rb deleted file mode 100644 index 597ba2cc1193f0..00000000000000 --- a/Formula/rdesktop.rb +++ /dev/null @@ -1,55 +0,0 @@ -class Rdesktop < Formula - desc "UNIX client for connecting to Windows Remote Desktop Services" - homepage "https://github.com/rdesktop/rdesktop" - url "https://github.com/rdesktop/rdesktop/releases/download/v1.9.0/rdesktop-1.9.0.tar.gz" - sha256 "473c2f312391379960efe41caad37852c59312bc8f100f9b5f26609ab5704288" - license "GPL-3.0-or-later" - revision 2 - - bottle do - sha256 arm64_monterey: "671a5f5ead3a6f2406306b8a05a0a63bee37eda0e7e771ab33acc397a8f7c645" - sha256 arm64_big_sur: "1903e4da2086a2942a0cb67b7eaaab26b3fb5048114b6ccccfa0977f676f52a4" - sha256 monterey: "087f1adc8db1045091b37fa769df85d5bd9cc886c8c12e7ff5d1216da6dd62ba" - sha256 big_sur: "60d5a72e5a55cace788d0a28241b9080fbf039c25fd91eb3bf91a95a8e8e4a89" - sha256 catalina: "8b22a2d1f52ff40334a16fc4614bc2f2c9e50386f0732e8e4478f68c7008f961" - sha256 mojave: "91b95a137be4361dee7d8bf2e442fa75eaf159469c09e238a127aa1186534638" - sha256 high_sierra: "84ca9f1d74ad63108e320f2cae63a2afdfafd3995aa2d37837d551cc5dda8688" - sha256 x86_64_linux: "05b175c2263baf72cb59debeaf49a974d31db23caf9f1c2b5e9eb3007a02e791" - end - - disable! date: "2022-07-31", because: :unmaintained - - # Added automake as a build dependency to update config files for ARM support. - depends_on "automake" => :build - depends_on "pkg-config" => :build - depends_on "gnutls" - depends_on "libao" - depends_on "libtasn1" - depends_on "libx11" - depends_on "libxcursor" - depends_on "libxrandr" - depends_on "nettle" - - uses_from_macos "pcsc-lite" - - def install - # Workaround for ancient config files not recognizing aarch64 macos. - %w[config.guess config.sub].each do |fn| - cp Formula["automake"].share/"automake-#{Formula["automake"].version.major_minor}"/fn, fn - end - - args = %W[ - --prefix=#{prefix} - --disable-credssp - --enable-smartcard - --with-sound=libao - ] - - system "./configure", *args - system "make", "install" - end - - test do - assert_match version.to_s, shell_output("#{bin}/rdesktop -help 2>&1", 64) - end -end From 84c39df4ecc3ec5daa606bc500283112b4dd28ad Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:54 +0000 Subject: [PATCH 091/133] rebar: remove formula --- Formula/rebar.rb | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 Formula/rebar.rb diff --git a/Formula/rebar.rb b/Formula/rebar.rb deleted file mode 100644 index 0e8407c40aaa73..00000000000000 --- a/Formula/rebar.rb +++ /dev/null @@ -1,38 +0,0 @@ -class Rebar < Formula - desc "Erlang build tool" - homepage "https://github.com/rebar/rebar" - url "https://github.com/rebar/rebar/archive/2.6.4.tar.gz" - sha256 "577246bafa2eb2b2c3f1d0c157408650446884555bf87901508ce71d5cc0bd07" - license "Apache-2.0" - head "https://github.com/rebar/rebar.git", branch: "master" - - bottle do - rebuild 2 - sha256 cellar: :any_skip_relocation, arm64_monterey: "425daa41363cc4872160fa64a3593188d0d564a6dac7d6f2ad45c1dc64db733c" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "92373b3f954401cb022c08aa56b7e29c8f15cee4a370978c7486c16c2b91ebdd" - sha256 cellar: :any_skip_relocation, monterey: "d3227a8ef5da18f8e70914c0661db9c1c500a6709edcbde979117438841874e7" - sha256 cellar: :any_skip_relocation, big_sur: "17b587b45197068cb021a40a4b8a82c69aac233a5f259986d7ad6bc8c41244b8" - sha256 cellar: :any_skip_relocation, catalina: "1dca4b3d2760f3806569c7a455beb73508409177fd9a6f22816653f14e80fdee" - sha256 cellar: :any_skip_relocation, mojave: "265cfa8851de8a55ff46346167f8670df48d8a731c427d51fe0da16cf2ee8b78" - sha256 cellar: :any_skip_relocation, x86_64_linux: "521320b0d04fb8f9110d7941676344932cc88db4f5c757a3598bf7504d6bda5e" - end - - # Deprecated upstream on 2016-04-13 in favor of rebar3: - # https://github.com/erlang/rebar3 - disable! date: "2022-07-31", because: :repo_archived - - depends_on "erlang" - - def install - system "./bootstrap" - bin.install "rebar" - - bash_completion.install "priv/shell-completion/bash/rebar" - zsh_completion.install "priv/shell-completion/zsh/_rebar" => "_rebar" - fish_completion.install "priv/shell-completion/fish/rebar.fish" - end - - test do - system bin/"rebar", "--version" - end -end From 7b0d7a3c5ace5fc977fbbcb8389f6d7f3072bfa1 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:55 +0000 Subject: [PATCH 092/133] redis@3.2: remove formula --- Formula/redis@3.2.rb | 49 -------------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 Formula/redis@3.2.rb diff --git a/Formula/redis@3.2.rb b/Formula/redis@3.2.rb deleted file mode 100644 index b695f243519d70..00000000000000 --- a/Formula/redis@3.2.rb +++ /dev/null @@ -1,49 +0,0 @@ -class RedisAT32 < Formula - desc "Persistent key-value database, with built-in net interface" - homepage "https://redis.io/" - url "https://download.redis.io/releases/redis-3.2.13.tar.gz" - sha256 "862979c9853fdb1d275d9eb9077f34621596fec1843e3e7f2e2f09ce09a387ba" - revision 1 - - bottle do - rebuild 1 - sha256 cellar: :any_skip_relocation, monterey: "deb6e587553223765a595738749c519e42c28c846bed77c1cdb5616ddc0a7b4e" - sha256 cellar: :any_skip_relocation, big_sur: "ebf02c105c998bee699b3cdd3a22f123d45b731303f579cc5c4eebb8d31cd4f1" - sha256 cellar: :any_skip_relocation, catalina: "ab55e1c85d04427647265baa073ca34e994ce5e6199efc2d4ba9e9c9cb6699f5" - sha256 cellar: :any_skip_relocation, mojave: "6437dda1d4ea2fa65609fa585a44cdf1a26e218ef35b3c47c80b6e2850b36d3b" - sha256 cellar: :any_skip_relocation, x86_64_linux: "139eac3e368bd84fd77338816503733351918b8ac044e60fba7dcda26eb3cbdc" - end - - keg_only :versioned_formula - - disable! date: "2022-07-31", because: :versioned_formula - - def install - system "make", "install", "PREFIX=#{prefix}", "CC=#{ENV.cc}" - - %w[run db/redis log].each { |p| (var/p).mkpath } - - # Fix up default conf file to match our paths - inreplace "redis.conf" do |s| - s.gsub! "/var/run/redis.pid", var/"run/redis.pid" - s.gsub! "dir ./", "dir #{var}/db/redis/" - s.gsub! "# bind 127.0.0.1", "bind 127.0.0.1" - end - - etc.install "redis.conf" - etc.install "sentinel.conf" => "redis-sentinel.conf" - end - - service do - run [opt_bin/"redis-server", etc/"redis.conf", "--daemonize no"] - keep_alive true - working_dir var - log_path var/"log/redis.log" - error_log_path var/"log/redis.log" - end - - test do - system bin/"redis-server", "--test-memory", "2" - %w[run db/redis log].each { |p| assert_predicate var/p, :exist?, "#{var/p} doesn't exist!" } - end -end From 32bf43eaf8cc34e18cd44912b7b6a7727592decb Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:55 +0000 Subject: [PATCH 093/133] redis@4.0: remove formula --- Formula/redis@4.0.rb | 50 -------------------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 Formula/redis@4.0.rb diff --git a/Formula/redis@4.0.rb b/Formula/redis@4.0.rb deleted file mode 100644 index 9e68346b720e44..00000000000000 --- a/Formula/redis@4.0.rb +++ /dev/null @@ -1,50 +0,0 @@ -class RedisAT40 < Formula - desc "Persistent key-value database, with built-in net interface" - homepage "https://redis.io/" - url "https://github.com/redis/redis/archive/4.0.14.tar.gz" - sha256 "3b8c6ea4c9db944fe6ec427c1b11d912ca6c5c5e17ee4cfaea98bbda90724752" - license "BSD-3-Clause" - revision 1 - - bottle do - rebuild 1 - sha256 cellar: :any_skip_relocation, monterey: "cba692eaa032feec943d96c3a47ce7c2fc72fdc10e81680edf1d8e1703a8cbd2" - sha256 cellar: :any_skip_relocation, big_sur: "baedf1761e5966fa4c25e461ad6bad3cc8ec500bc4da9aad6fa98f01d7bf651f" - sha256 cellar: :any_skip_relocation, catalina: "59eea40bb4b8f05511f58eef72b3dab1966828bfdb9c776515f1f34d0c140896" - sha256 cellar: :any_skip_relocation, mojave: "f7eae71970cd2ae572c9b301c5a1e1d52d63beb6fd2a979f8aa2fa8379e00397" - sha256 cellar: :any_skip_relocation, x86_64_linux: "b6882621b76d4146b7f5884cbe6434ec4e51c0fb4553ecbed07a6ccfde6dae8a" - end - - keg_only :versioned_formula - - disable! date: "2022-07-31", because: :versioned_formula - - def install - system "make", "install", "PREFIX=#{prefix}", "CC=#{ENV.cc}" - - %w[run db/redis log].each { |p| (var/p).mkpath } - - # Fix up default conf file to match our paths - inreplace "redis.conf" do |s| - s.gsub! "/var/run/redis.pid", var/"run/redis.pid" - s.gsub! "dir ./", "dir #{var}/db/redis/" - s.sub!(/^bind .*$/, "bind 127.0.0.1 ::1") - end - - etc.install "redis.conf" - etc.install "sentinel.conf" => "redis-sentinel.conf" - end - - service do - run [opt_bin/"redis-server", etc/"redis.conf", "--daemonize no"] - keep_alive true - working_dir var - log_path var/"log/redis.log" - error_log_path var/"log/redis.log" - end - - test do - system bin/"redis-server", "--test-memory", "2" - %w[run db/redis log].each { |p| assert_predicate var/p, :exist?, "#{var/p} doesn't exist!" } - end -end From 7138be67de789c336032622e7632c666c5899d45 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:56 +0000 Subject: [PATCH 094/133] riff: remove formula --- Formula/riff.rb | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 Formula/riff.rb diff --git a/Formula/riff.rb b/Formula/riff.rb deleted file mode 100644 index 1d8b4960495186..00000000000000 --- a/Formula/riff.rb +++ /dev/null @@ -1,41 +0,0 @@ -require "open3" - -class Riff < Formula - desc "Function As A Service on top of Kubernetes, riff is for functions" - homepage "https://www.projectriff.io/" - url "https://github.com/projectriff/cli.git", - tag: "v0.5.0", - revision: "f96cf2f5ca6fddfaf4716c0045f5f142da2d3828" - license "Apache-2.0" - - bottle do - sha256 cellar: :any_skip_relocation, arm64_monterey: "31e1ab57aad8692a70b9440026597d9ea4b7a630f7819b4e74646055595c8630" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "4d5d17c7380e89458c9ec704455ad6c3fdeb77ac9f617bbed3124081fbe56021" - sha256 cellar: :any_skip_relocation, monterey: "04af3eae2f4fef3806cadb21764638fe72cef2628f4260f28640ef73e4815da7" - sha256 cellar: :any_skip_relocation, big_sur: "c9311c903c7ea70a426435993d2756bb8d75a4d230db6be486f7a7d141a73427" - sha256 cellar: :any_skip_relocation, catalina: "cb64974514f8c764d7479cce8f92cd0a2cbc940e96300b823c684f4752d5b734" - sha256 cellar: :any_skip_relocation, mojave: "dd08e62ae58c92239ea1c321b7a3eda01b83912660f2769291cb0443fd128f9d" - sha256 cellar: :any_skip_relocation, high_sierra: "06f5da9420de8bf9aac4a16f93effeb2e3ceb83fedc44a5d1c375a2a6f9f52a4" - sha256 cellar: :any_skip_relocation, x86_64_linux: "5556cf3db55be3101150a75d23d26b7ca675bae354bfb2f0024664cc9ad5ce51" - end - - disable! date: "2022-07-31", because: :repo_archived - - depends_on "go" => :build - depends_on "kubernetes-cli" - - def install - cd buildpath do - system "make", "build" - bin.install "riff" - end - end - - test do - stdout, stderr, status = Open3.capture3("#{bin}/riff --kube-config not-a-kube-config-file doctor") - - assert_equal false, status.success? - assert_equal "", stdout - assert_match "panic: stat not-a-kube-config-file: no such file or directory", stderr - end -end From a99b474c31026ff73eb8e2626c6dd0fc78c7495a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:56 +0000 Subject: [PATCH 095/133] rpg: remove formula --- Formula/rpg.rb | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 Formula/rpg.rb diff --git a/Formula/rpg.rb b/Formula/rpg.rb deleted file mode 100644 index 85c71ebc8157fe..00000000000000 --- a/Formula/rpg.rb +++ /dev/null @@ -1,29 +0,0 @@ -class Rpg < Formula - desc "Ruby package management for UNIX" - homepage "https://github.com/rtomayko/rpg" - url "https://github.com/downloads/rtomayko/rpg/rpg-0.3.0.tar.gz" - sha256 "c350f64744fb602956a91a57c8920e69058ea42e4e36b0e74368e96954d9d0c7" - license "MIT" - head "https://github.com/rtomayko/rpg.git", branch: "master" - - bottle do - rebuild 1 - sha256 cellar: :any_skip_relocation, arm64_big_sur: "47a98b77d2c445d34d87f93b109634f195e50b3261ffe367b61536e5d97c806f" - sha256 cellar: :any_skip_relocation, big_sur: "2ba9343282027a7a1d3c6422920bf0a52c4e78fd11698781228c6f01a07eba9e" - sha256 cellar: :any_skip_relocation, catalina: "d1d4031e3e641523f759f3c2dc69fed0cffdfa537639c1f9686ddc7763b93df9" - sha256 cellar: :any_skip_relocation, mojave: "fab3d032e629a4d20add14e9693919a074286990a16eb6fa8772180fc60730ee" - sha256 cellar: :any_skip_relocation, high_sierra: "f1c7e5d997a1f0ceb1cca6b1067408912ff8e14522fb411530649f0689f9d042" - end - - disable! date: "2022-07-31", because: :repo_archived - - def install - system "./configure", "--prefix=#{prefix}" - system "make" - system "make", "install" - end - - test do - system "#{bin}/rpg", "config" - end -end From 64b7a1b3b163f93857bca0d54412ba011350e129 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:56 +0000 Subject: [PATCH 096/133] ruby@2.4: remove formula --- Formula/ruby@2.4.rb | 170 -------------------------------------------- 1 file changed, 170 deletions(-) delete mode 100644 Formula/ruby@2.4.rb diff --git a/Formula/ruby@2.4.rb b/Formula/ruby@2.4.rb deleted file mode 100644 index c27141a172d02f..00000000000000 --- a/Formula/ruby@2.4.rb +++ /dev/null @@ -1,170 +0,0 @@ -class RubyAT24 < Formula - desc "Powerful, clean, object-oriented scripting language" - homepage "https://www.ruby-lang.org/" - url "https://cache.ruby-lang.org/pub/ruby/2.4/ruby-2.4.10.tar.xz" - sha256 "d5668ed11544db034f70aec37d11e157538d639ed0d0a968e2f587191fc530df" - license "Ruby" - - bottle do - rebuild 1 - sha256 arm64_monterey: "c3ed34cd3fe10e93b0b09d90f25ba232ee7c8628a795381290a71006f9e9f5db" - sha256 arm64_big_sur: "f08af3cd9a9ac6f3f09c21fc2f9b5c1ab64989ff6836b5d7766e63c1d5419cb8" - sha256 monterey: "00894aa6838cc1c6b49271f21ea3bf3c5e1a2bd0c5d5d28fddbdd2a01865b135" - sha256 big_sur: "155e0689032570a5832a6f26775037997748dd7e3e5fd458fc2ccb8c00a199ae" - sha256 catalina: "9e555e1492425fad0adc1288ce6bfaeff3b5845327f20c4924195a7020b9be4f" - sha256 mojave: "1e7496f7681fcd00ea19df6f7f15f65472bb18e86c47fc2c479af631304e6dbd" - sha256 x86_64_linux: "dfe3b272b4da304aa27b4f3a24000670e530823795d04c5f199dbb3a2ae7952b" - end - - keg_only :versioned_formula - - disable! date: "2022-07-31", because: :unsupported - - depends_on "pkg-config" => :build - depends_on "libyaml" - depends_on "openssl@1.1" - depends_on "readline" - - uses_from_macos "zlib" - - def api_version - "2.4.0" - end - - def rubygems_bindir - HOMEBREW_PREFIX/"lib/ruby/gems/#{api_version}/bin" - end - - def install - # otherwise `gem` command breaks - ENV.delete("SDKROOT") - - paths = %w[libyaml openssl@1.1 readline].map { |f| Formula[f].opt_prefix } - args = %W[ - --prefix=#{prefix} - --enable-shared - --disable-silent-rules - --with-sitedir=#{HOMEBREW_PREFIX}/lib/ruby/site_ruby - --with-vendordir=#{HOMEBREW_PREFIX}/lib/ruby/vendor_ruby - --with-opt-dir=#{paths.join(":")} - --without-gmp - ] - args << "--disable-dtrace" if OS.mac? && !MacOS::CLT.installed? - - system "./configure", *args - - # Ruby has been configured to look in the HOMEBREW_PREFIX for the - # sitedir and vendordir directories; however we don't actually want to create - # them during the install. - # - # These directories are empty on install; sitedir is used for non-rubygems - # third party libraries, and vendordir is used for packager-provided libraries. - inreplace "tool/rbinstall.rb" do |s| - s.gsub! 'prepare "extension scripts", sitelibdir', "" - s.gsub! 'prepare "extension scripts", vendorlibdir', "" - s.gsub! 'prepare "extension objects", sitearchlibdir', "" - s.gsub! 'prepare "extension objects", vendorarchlibdir', "" - end - - system "make" - system "make", "install" - - # A newer version of ruby-mode.el is shipped with Emacs - elisp.install Dir["misc/*.el"].reject { |f| f == "misc/ruby-mode.el" } - end - - def post_install - # Customize rubygems to look/install in the global gem directory - # instead of in the Cellar, making gems last across reinstalls - config_file = lib/"ruby/#{api_version}/rubygems/defaults/operating_system.rb" - config_file.unlink if config_file.exist? - config_file.write rubygems_config - - # Create the sitedir and vendordir that were skipped during install - %w[sitearchdir vendorarchdir].each do |dir| - mkdir_p `#{bin}/ruby -rrbconfig -e 'print RbConfig::CONFIG["#{dir}"]'` - end - end - - def rubygems_config - <<~EOS - module Gem - class << self - alias :old_default_dir :default_dir - alias :old_default_path :default_path - alias :old_default_bindir :default_bindir - alias :old_ruby :ruby - end - - def self.default_dir - path = [ - "#{HOMEBREW_PREFIX}", - "lib", - "ruby", - "gems", - "#{api_version}" - ] - - @default_dir ||= File.join(*path) - end - - def self.private_dir - path = if defined? RUBY_FRAMEWORK_VERSION then - [ - File.dirname(RbConfig::CONFIG['sitedir']), - 'Gems', - RbConfig::CONFIG['ruby_version'] - ] - elsif RbConfig::CONFIG['rubylibprefix'] then - [ - RbConfig::CONFIG['rubylibprefix'], - 'gems', - RbConfig::CONFIG['ruby_version'] - ] - else - [ - RbConfig::CONFIG['libdir'], - ruby_engine, - 'gems', - RbConfig::CONFIG['ruby_version'] - ] - end - - @private_dir ||= File.join(*path) - end - - def self.default_path - if Gem.user_home && File.exist?(Gem.user_home) - [user_dir, default_dir, private_dir] - else - [default_dir, private_dir] - end - end - - def self.default_bindir - "#{rubygems_bindir}" - end - - def self.ruby - "#{opt_bin}/ruby" - end - end - EOS - end - - def caveats - <<~EOS - By default, binaries installed by gem will be placed into: - #{rubygems_bindir} - - You may want to add this to your PATH. - EOS - end - - test do - hello_text = shell_output("#{bin}/ruby -e 'puts :hello'") - assert_equal "hello\n", hello_text - ENV["GEM_HOME"] = testpath - system "#{bin}/gem", "install", "json" - end -end From 8aaf095efbc1ff7601fd33e3f12ca983a06da8d5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:57 +0000 Subject: [PATCH 097/133] ruby@2.5: remove formula --- Formula/ruby@2.5.rb | 169 -------------------------------------------- 1 file changed, 169 deletions(-) delete mode 100644 Formula/ruby@2.5.rb diff --git a/Formula/ruby@2.5.rb b/Formula/ruby@2.5.rb deleted file mode 100644 index 721d391765aa05..00000000000000 --- a/Formula/ruby@2.5.rb +++ /dev/null @@ -1,169 +0,0 @@ -class RubyAT25 < Formula - desc "Powerful, clean, object-oriented scripting language" - homepage "https://www.ruby-lang.org/" - url "https://cache.ruby-lang.org/pub/ruby/2.5/ruby-2.5.9.tar.xz" - sha256 "a87f2fa901408cc77652c1a55ff976695bbe54830ff240e370039eca14b358f0" - license "Ruby" - - bottle do - sha256 arm64_monterey: "d88a21825cea4e2e1d1382effb53d640c23472e46e3f8b4c3f63e2571e0b37d1" - sha256 arm64_big_sur: "deb2ee5e006f4fc7b3829dfcdb377300f3dc5f339562a6a1c1b4dec48ed21ae6" - sha256 monterey: "67b01aac127e5ffeae54ee90f79aa137f69f2dede97ca3e390a472474ee5e11f" - sha256 big_sur: "fb6b696623fc988abecbf9fb9f5298219c62c69851123b9d9d69c3f127b0ec3c" - sha256 catalina: "8fab1468c593b5907e027c175dc19e3273b08cc8b344822ce593dcab645e857d" - sha256 mojave: "ef4974800a4417e6251fb548486150157c2f0ff62275170431381480bac1c3ed" - sha256 x86_64_linux: "8b85cf06b1f139109bae913ade71190a65fb71f7848d846428cf95dbd0658e05" - end - - keg_only :versioned_formula - - disable! date: "2022-07-31", because: :unsupported - - depends_on "pkg-config" => :build - depends_on "libyaml" - depends_on "openssl@1.1" - depends_on "readline" - - uses_from_macos "zlib" - - def api_version - "2.5.0" - end - - def rubygems_bindir - HOMEBREW_PREFIX/"lib/ruby/gems/#{api_version}/bin" - end - - def install - # otherwise `gem` command breaks - ENV.delete("SDKROOT") - - paths = %w[libyaml openssl@1.1 readline].map { |f| Formula[f].opt_prefix } - args = %W[ - --prefix=#{prefix} - --enable-shared - --disable-silent-rules - --with-sitedir=#{HOMEBREW_PREFIX}/lib/ruby/site_ruby - --with-vendordir=#{HOMEBREW_PREFIX}/lib/ruby/vendor_ruby - --with-opt-dir=#{paths.join(":")} - --without-gmp - ] - args << "--disable-dtrace" if OS.mac? && !MacOS::CLT.installed? - - system "./configure", *args - - # Ruby has been configured to look in the HOMEBREW_PREFIX for the - # sitedir and vendordir directories; however we don't actually want to create - # them during the install. - # - # These directories are empty on install; sitedir is used for non-rubygems - # third party libraries, and vendordir is used for packager-provided libraries. - inreplace "tool/rbinstall.rb" do |s| - s.gsub! 'prepare "extension scripts", sitelibdir', "" - s.gsub! 'prepare "extension scripts", vendorlibdir', "" - s.gsub! 'prepare "extension objects", sitearchlibdir', "" - s.gsub! 'prepare "extension objects", vendorarchlibdir', "" - end - - system "make" - system "make", "install" - - # A newer version of ruby-mode.el is shipped with Emacs - elisp.install Dir["misc/*.el"].reject { |f| f == "misc/ruby-mode.el" } - end - - def post_install - # Customize rubygems to look/install in the global gem directory - # instead of in the Cellar, making gems last across reinstalls - config_file = lib/"ruby/#{api_version}/rubygems/defaults/operating_system.rb" - config_file.unlink if config_file.exist? - config_file.write rubygems_config - - # Create the sitedir and vendordir that were skipped during install - %w[sitearchdir vendorarchdir].each do |dir| - mkdir_p `#{bin}/ruby -rrbconfig -e 'print RbConfig::CONFIG["#{dir}"]'` - end - end - - def rubygems_config - <<~EOS - module Gem - class << self - alias :old_default_dir :default_dir - alias :old_default_path :default_path - alias :old_default_bindir :default_bindir - alias :old_ruby :ruby - end - - def self.default_dir - path = [ - "#{HOMEBREW_PREFIX}", - "lib", - "ruby", - "gems", - "#{api_version}" - ] - - @default_dir ||= File.join(*path) - end - - def self.private_dir - path = if defined? RUBY_FRAMEWORK_VERSION then - [ - File.dirname(RbConfig::CONFIG['sitedir']), - 'Gems', - RbConfig::CONFIG['ruby_version'] - ] - elsif RbConfig::CONFIG['rubylibprefix'] then - [ - RbConfig::CONFIG['rubylibprefix'], - 'gems', - RbConfig::CONFIG['ruby_version'] - ] - else - [ - RbConfig::CONFIG['libdir'], - ruby_engine, - 'gems', - RbConfig::CONFIG['ruby_version'] - ] - end - - @private_dir ||= File.join(*path) - end - - def self.default_path - if Gem.user_home && File.exist?(Gem.user_home) - [user_dir, default_dir, private_dir] - else - [default_dir, private_dir] - end - end - - def self.default_bindir - "#{rubygems_bindir}" - end - - def self.ruby - "#{opt_bin}/ruby" - end - end - EOS - end - - def caveats - <<~EOS - By default, binaries installed by gem will be placed into: - #{rubygems_bindir} - - You may want to add this to your PATH. - EOS - end - - test do - hello_text = shell_output("#{bin}/ruby -e 'puts :hello'") - assert_equal "hello\n", hello_text - ENV["GEM_HOME"] = testpath - system "#{bin}/gem", "install", "json" - end -end From 6a2e575c327f3be0a2def433409d526d8d7ae938 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:57 +0000 Subject: [PATCH 098/133] saltwater: remove formula --- Formula/saltwater.rb | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 Formula/saltwater.rb diff --git a/Formula/saltwater.rb b/Formula/saltwater.rb deleted file mode 100644 index 7e95357947a768..00000000000000 --- a/Formula/saltwater.rb +++ /dev/null @@ -1,36 +0,0 @@ -class Saltwater < Formula - desc "C compiler written in Rust, with a focus on good error messages" - homepage "https://github.com/jyn514/saltwater" - url "https://github.com/jyn514/saltwater/archive/0.11.0.tar.gz" - sha256 "a9fedbb53586e045798ba26295b4da28157e4eb9945b5a74bbdaebca830f1316" - license "BSD-3-Clause" - head "https://github.com/jyn514/saltwater.git", branch: "master" - - bottle do - sha256 cellar: :any_skip_relocation, monterey: "dc1395bf530b4ea186fe898fc7aa8305c2392fc11dcda12c36b906d21721380a" - sha256 cellar: :any_skip_relocation, big_sur: "3ce720ef4e471ca3cf3b0f3bc9dbb4cf8988eeae18d1d9620de5dc3f779132cb" - sha256 cellar: :any_skip_relocation, catalina: "750182bb83130c00ce6a9ea828261aed154c5c9914a1965172575be861985088" - sha256 cellar: :any_skip_relocation, mojave: "3474f55537373be89128ac84c91a86f52cc10ac8a01934f784ae9ff07797ba43" - sha256 cellar: :any_skip_relocation, high_sierra: "da2e7d1937a9e47c96329261c76a3cc3ec445b0826b92115d3c48ab6885ca8a1" - sha256 cellar: :any_skip_relocation, x86_64_linux: "a10a0a2c825a5d3e0b14d0115fcb18ec3190365678d397283d468a898bc6218e" - end - - disable! date: "2022-07-31", because: :repo_archived - - depends_on "rust" => :build - - def install - system "cargo", "install", *std_cargo_args - end - - test do - (testpath/"hello.c").write <<-EOS - int printf(const char *, ...); - int main() { - printf("Hello, world!\\n"); - } - EOS - system bin/"swcc", "-o", "test", "hello.c" - assert_match "Hello, world!", shell_output("./test") - end -end From 776357dffdfcece0bb9a8488d6e22552683640ad Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:58 +0000 Subject: [PATCH 099/133] scala@2.11: remove formula --- Formula/scala@2.11.rb | 48 ------------------------------------------- 1 file changed, 48 deletions(-) delete mode 100644 Formula/scala@2.11.rb diff --git a/Formula/scala@2.11.rb b/Formula/scala@2.11.rb deleted file mode 100644 index 0477b7da39746e..00000000000000 --- a/Formula/scala@2.11.rb +++ /dev/null @@ -1,48 +0,0 @@ -class ScalaAT211 < Formula - desc "JVM-based programming language" - homepage "https://www.scala-lang.org/" - url "https://downloads.lightbend.com/scala/2.11.12/scala-2.11.12.tgz" - mirror "https://downloads.typesafe.com/scala/2.11.12/scala-2.11.12.tgz" - mirror "https://www.scala-lang.org/files/archive/scala-2.11.12.tgz" - sha256 "b11d7d33699ca4f60bc3b2b6858fd953e3de2b8522c943f4cda4b674316196a8" - revision 1 - - bottle do - sha256 cellar: :any_skip_relocation, all: "cdabefb6cb6bbb4d3d5b297fe0148488f3162c62d348647f0a07b8b06b63300d" - end - - keg_only :versioned_formula - - disable! date: "2022-07-31", because: :unsupported - - depends_on "openjdk@8" - - def install - rm_f Dir["bin/*.bat"] - doc.install Dir["doc/*"] - share.install "man" - libexec.install "bin", "lib" - bin.install Dir[libexec/"bin/*"] - bin.env_script_all_files(libexec/"bin", Language::Java.java_home_env("1.8")) - - # Set up an IntelliJ compatible symlink farm in 'idea' - idea = prefix/"idea" - idea.install_symlink libexec/"src", libexec/"lib" - idea.install_symlink doc => "doc" - end - - test do - file = testpath/"Test.scala" - file.write <<~EOS - object Test { - def main(args: Array[String]) { - println(s"${2 + 2}") - } - } - EOS - - out = shell_output("#{bin}/scala -nc #{file}").strip - - assert_equal "4", out - end -end From ef7097dfc2b72ebd8e0fd3bb0b6ab2ad0c4e2baf Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:58 +0000 Subject: [PATCH 100/133] sdl_rtf: remove formula --- Formula/sdl_rtf.rb | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 Formula/sdl_rtf.rb diff --git a/Formula/sdl_rtf.rb b/Formula/sdl_rtf.rb deleted file mode 100644 index 2a3978d5e4d846..00000000000000 --- a/Formula/sdl_rtf.rb +++ /dev/null @@ -1,40 +0,0 @@ -class SdlRtf < Formula - desc "Sample library to display Rich Text Format (RTF) documents" - homepage "https://www.libsdl.org/projects/SDL_rtf/" - url "https://www.libsdl.org/projects/SDL_rtf/release/SDL_rtf-0.1.0.tar.gz" - sha256 "3dc0274b666e28010908ced24844ca7d279e07b66f673c990d530d4ea94b757e" - license "LGPL-2.0-or-later" - - bottle do - sha256 cellar: :any, arm64_monterey: "c9d79a0cf619950aa552e22404c7105c41083f106acf9bc48437f4d53c41a879" - sha256 cellar: :any, arm64_big_sur: "9d08d7ff2342e161defb1160668e96414902afd78756e4ab3824915385574546" - sha256 cellar: :any, monterey: "6952f9f9fee9d2f3397666f18519ed7b2fe0cdc4bd9c29194066af13df3349b1" - sha256 cellar: :any, big_sur: "d4e19ead242e52808d739cf34bd91be0b941771291437eba0c8931263fcbf9f6" - sha256 cellar: :any, catalina: "ee09de7e32f0992acce56ab546fb0201d7b3903a51243548b590378cccc7e6f5" - sha256 cellar: :any, mojave: "310bcc2756a0ba5dd9287af9159809c2519609830e07e4ef0773edfc51c8bda5" - sha256 cellar: :any, high_sierra: "319fe65012c94d20675b0b3dc3c9e4df59838ccca7496b81a425bded94e3c9fc" - sha256 cellar: :any, sierra: "c34abb198f384916d7b2a09a88c69cb84f29674031329bb7a1733e8a5ed39255" - sha256 cellar: :any, el_capitan: "6c7e9f7459ff062fbb48ee1a383a4fd4acc2c29f5ee9b57dea93710c94ccda11" - sha256 cellar: :any_skip_relocation, x86_64_linux: "97d2c766e23be9693f5263f8018faac71206cabb5f00d878d879534dfe68b8c3" - end - - head do - url "https://github.com/libsdl-org/SDL_rtf.git", branch: "SDL-1.2" - - depends_on "autoconf" => :build - depends_on "automake" => :build - depends_on "libtool" => :build - end - - # SDL 1.2 is deprecated, unsupported, and not recommended for new projects. - disable! date: "2022-07-31", because: :deprecated_upstream - - depends_on "sdl12-compat" - - def install - system "./autogen.sh" if build.head? - - system "./configure", "--prefix=#{prefix}", "--disable-sdltest" - system "make", "install" - end -end From e0b3026fb9b7a801411c17bb83dbfc4d6ee11af3 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:58 +0000 Subject: [PATCH 101/133] skafos: remove formula --- Formula/skafos.rb | 50 ----------------------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 Formula/skafos.rb diff --git a/Formula/skafos.rb b/Formula/skafos.rb deleted file mode 100644 index ad12933248d7fd..00000000000000 --- a/Formula/skafos.rb +++ /dev/null @@ -1,50 +0,0 @@ -class Skafos < Formula - desc "CLI for the Metis Machine A.I. and machine learning deployment platform" - homepage "https://skafos.ai/" - url "https://github.com/MetisMachine/skafos/archive/1.7.7.tar.gz" - sha256 "42eecd6094126f1e4febf94541c4b640f2b4ed39829af2686cd83a60fafcd994" - license "Apache-2.0" - revision 2 - - bottle do - sha256 cellar: :any, catalina: "2f1a06251a8e92a986afbefbfc380dd50c237bf0a59546ebcb89ee4f31b73e3a" - sha256 cellar: :any, mojave: "c487b351e95ab98ef03e4184020bda27b1cdc8353cfb505a54e75036731cfe0e" - sha256 cellar: :any, high_sierra: "57dc00bd0e8bfc96998c690cbd77a7c4c6486d50655603bfdf65771e340ee6b6" - end - - disable! date: "2022-07-31", because: :repo_archived - - depends_on "cmake" => :build - depends_on "libarchive" - depends_on "yaml-cpp" - - def install - system "make", "_create_version_h" - system "make", "_env_for_prod" - - system "cmake", ".", *std_cmake_args - system "make", "install" - end - - test do - (testpath/"test.exp").write <<~EOS - spawn #{bin}/skafos setup - set timeout 5 - expect { - timeout { exit 1 } - "Please enter email:" - } - send "me@foo.bar\r" - expect { - timeout { exit 2 } - "Please enter password:" - } - send "1234\r" - expect { - timeout { exit 3 } - eof - } - EOS - assert_match "Please enter email", shell_output("expect -f test.exp") - end -end From 1649f04fac0c4ad6efe192bb65771212e4436270 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:59 +0000 Subject: [PATCH 102/133] spdylay: remove formula --- Formula/spdylay.rb | 50 ---------------------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 Formula/spdylay.rb diff --git a/Formula/spdylay.rb b/Formula/spdylay.rb deleted file mode 100644 index e4f45d56d73117..00000000000000 --- a/Formula/spdylay.rb +++ /dev/null @@ -1,50 +0,0 @@ -class Spdylay < Formula - desc "Experimental implementation of SPDY protocol versions 2, 3, and 3.1" - homepage "https://github.com/tatsuhiro-t/spdylay" - url "https://github.com/tatsuhiro-t/spdylay/archive/v1.4.0.tar.gz" - sha256 "31ed26253943b9d898b936945a1c68c48c3e0974b146cef7382320a97d8f0fa0" - license "MIT" - revision 3 - - bottle do - sha256 cellar: :any, arm64_monterey: "d4a310199a7b40dea729051d4dbc6fd44480d29d2ef619f6ad3a0d7d86e9762e" - sha256 cellar: :any, arm64_big_sur: "1edca89e855c54de431b99ab1f0a083438b56d56a770ef019f3638b69a3cbfae" - sha256 cellar: :any, monterey: "9e3aebfe4d65aa4acb6e16343f58b4fe26159a4ba4ae2a6209911147f16d8f77" - sha256 cellar: :any, big_sur: "667267cd379da8478b31574c5e25bf3f8e150c6f80ab59c2278bec042c71c7aa" - sha256 cellar: :any, catalina: "5607031eb5776de5b4a68e8c50f312771cae89e8b2266df60718b2e07e35d070" - sha256 cellar: :any, mojave: "9906d0abfcd17c86df23c18b1ed112de0266ccbc7a50c24f741f78bffa552540" - sha256 cellar: :any, high_sierra: "c89edde9d9229dbe524d28b661265349af72a2dac0b85f066751d4716effe1ab" - sha256 cellar: :any, sierra: "2f24051eb854a2345e88a1e023aa76fa6c2cb7522ec0fd7644af15694b456f27" - sha256 cellar: :any_skip_relocation, x86_64_linux: "86dc964a1409f31c97cde673a4f6862af83e38bf7fc67636499eaea916a67f68" - end - - # The SPDY protocol itself is deprecated and most websites no longer support it - disable! date: "2022-07-31", because: "is deprecated and not supported by most websites" - - depends_on "autoconf" => :build - depends_on "automake" => :build - depends_on "libtool" => :build - depends_on "pkg-config" => :build - depends_on "libevent" - depends_on "openssl@1.1" - - uses_from_macos "xz" - uses_from_macos "zlib" - - def install - Formula["libxml2"].stable.stage { (buildpath/"m4").install "libxml.m4" } - - system "autoreconf", "-fiv" - system "./configure", "--disable-dependency-tracking", - "--prefix=#{prefix}" - system "make", "install" - end - - test do - # Check here for popular websites using SPDY: - # https://w3techs.com/technologies/details/ce-spdy/all/all - # With deprecation and lack of sites using SPDY, just test for failure - output = shell_output("#{bin}/spdycat -ns https://www.academia.edu/ 2>&1", 1).chomp - assert_equal "No supported SPDY version was negotiated.", output - end -end From 30f82439efbb2ac68549aaf1fe7cd7519e2202c0 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:59 +0000 Subject: [PATCH 103/133] stout: remove formula --- Formula/stout.rb | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 Formula/stout.rb diff --git a/Formula/stout.rb b/Formula/stout.rb deleted file mode 100644 index 4a5ac7045e6bb7..00000000000000 --- a/Formula/stout.rb +++ /dev/null @@ -1,43 +0,0 @@ -class Stout < Formula - desc "Reliable static website deploy tool" - homepage "https://github.com/cloudflare/Stout" - url "https://github.com/cloudflare/Stout/archive/v1.3.2.tar.gz" - sha256 "33aa533beda7181d5efdcfb9fadcc568f58c1f7e27a4902adf1a6807c4875c99" - license "MIT" - - bottle do - sha256 cellar: :any_skip_relocation, arm64_monterey: "dd10a1085d7eeda1f1fb49febcd1216dd4fab9c07d2a1daf20a283409a609fc5" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "8a8daaa0e22c67dd5988d21cbad74601d3c6bfe2320cabc4236d7ed4444befd2" - sha256 cellar: :any_skip_relocation, monterey: "c77888fdfabc4068d4f876bea213605188f2892210a10caf5126bb4f234c8e7e" - sha256 cellar: :any_skip_relocation, big_sur: "4f91bfefe5af79d0d5ff602956834ec6b20ff8fa55c1152ec37086a2129389c1" - sha256 cellar: :any_skip_relocation, catalina: "95406589caa2074808e99e54b755c2ea7b73fdd3ac8528c1a7f124895f3c1be5" - sha256 cellar: :any_skip_relocation, mojave: "7d90dec0fbc23cfc58b56261957818a0fb1af5c77086b1979b77ea1196484a25" - sha256 cellar: :any_skip_relocation, high_sierra: "cfff658fcb5319cd6a5053c645a9679d3db94e9dff4fbe91ae488ca31658a1fc" - sha256 cellar: :any_skip_relocation, sierra: "26554af96b6044316abecb1a2142e81b1aab8315bff941cbdad9b39fe143b74e" - sha256 cellar: :any_skip_relocation, x86_64_linux: "15db742d981663afb91ae74d337c992c4db3fce07fb5220e2c70ffda68cf6da9" - end - - # https://github.com/cloudflare/Stout/issues/58 - disable! date: "2022-07-31", because: :unmaintained - - depends_on "go" => :build - - def install - ENV["GOPATH"] = buildpath - ENV["GO111MODULE"] = "auto" - - # Compatibility with newer Go. - # Reported upstream, but the project is unmaintained. - mkdir_p buildpath/"vendor/github.com/sspencer" - ln_s buildpath/"vendor/github.com/zackbloom/go-ini", buildpath/"vendor/github.com/sspencer/go-ini" - - mkdir_p buildpath/"src/github.com/cloudflare" - ln_s buildpath, buildpath/"src/github.com/cloudflare/stout" - - system "go", "build", "-o", bin/"stout", "-v", "github.com/cloudflare/stout/src" - end - - test do - system "#{bin}/stout" - end -end From 288ac98e1d84ec9fcecd733e12b4f7c0eda4ae0a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:28:59 +0000 Subject: [PATCH 104/133] tdkjs: remove formula --- Formula/tdkjs.rb | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 Formula/tdkjs.rb diff --git a/Formula/tdkjs.rb b/Formula/tdkjs.rb deleted file mode 100644 index c78bb148286b32..00000000000000 --- a/Formula/tdkjs.rb +++ /dev/null @@ -1,34 +0,0 @@ -require "language/node" - -class Tdkjs < Formula - desc "Tixte Development Kit" - homepage "https://tdk.developer.tixte.com/" - url "https://registry.npmjs.org/tdkjs/-/tdkjs-3.2.0.tgz" - sha256 "6c0e28b22fdb50b8bfe8d113457d048364e8be7dbe09df84dbf4135a5a0c0665" - license "Apache-2.0" - - bottle do - sha256 cellar: :any_skip_relocation, arm64_monterey: "26a19859958a2394a25c5254472350329a618a228f5c8019f57583d9e14ddbe9" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "43f5d7c2bf9b903b1fea73e50a26fbd42757e3434f0dc9f80b652a49c89ba1a3" - sha256 cellar: :any_skip_relocation, monterey: "26a19859958a2394a25c5254472350329a618a228f5c8019f57583d9e14ddbe9" - sha256 cellar: :any_skip_relocation, big_sur: "4de478f9836d71f03230b6ca3f5926e374359989f64c2c9b662b89dd1fc2ae79" - sha256 cellar: :any_skip_relocation, catalina: "d59d6292d1982f2bfb6fac6f3e25d638b131b2ad9c36598ef5ad5ee4f5eb76e3" - sha256 cellar: :any_skip_relocation, mojave: "9edeabf99f8d427626ee1500981ed3bb3738be523abcfa600457588afca605c7" - sha256 cellar: :any_skip_relocation, high_sierra: "09ace9b6ab20a91e582b8d95ba05abe45b046231cb457cf87c7d2704352778f8" - sha256 cellar: :any_skip_relocation, x86_64_linux: "26a19859958a2394a25c5254472350329a618a228f5c8019f57583d9e14ddbe9" - end - - disable! date: "2022-07-31", because: :unmaintained - - depends_on "node" - - def install - system "npm", "install", *Language::Node.std_npm_install_args(libexec) - bin.install_symlink Dir["#{libexec}/bin/*"] - end - - test do - system "printf", "'''tdk.init()\ntdk.setColor('red')\nfunction animate(){\ntdk.circle(0, 0, 20)\n}''' > test.js" - system bin/"tdkjs", "test.js", "output.html" - end -end From cb262660eded5bb68de3f79b03ca1f1eee572961 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:29:00 +0000 Subject: [PATCH 105/133] teleconsole: remove formula --- Formula/teleconsole.rb | 81 ------------------------------------------ 1 file changed, 81 deletions(-) delete mode 100644 Formula/teleconsole.rb diff --git a/Formula/teleconsole.rb b/Formula/teleconsole.rb deleted file mode 100644 index 0497a0ef7a5ad1..00000000000000 --- a/Formula/teleconsole.rb +++ /dev/null @@ -1,81 +0,0 @@ -require "language/go" - -class Teleconsole < Formula - desc "Free service to share your terminal session with people you trust" - homepage "https://www.teleconsole.com" - url "https://github.com/gravitational/teleconsole/archive/0.4.0.tar.gz" - sha256 "ba0a231c5501995e2b948c387360eb84e3a44fe2af6540b6439fc58637b0efa4" - license "Apache-2.0" - - bottle do - sha256 cellar: :any_skip_relocation, monterey: "d027484ac3f03fd9cf35f3a90bc241c04709f29e499d29bbd1c4d5f636bc1876" - sha256 cellar: :any_skip_relocation, big_sur: "a7d96f387532f40298ff90dc062994e933fc009500279421a16182b063f39446" - sha256 cellar: :any_skip_relocation, catalina: "fd114a850d3e9eb653e6ed08f53224bd81219c7bcfbd2459440b68a0e96711dc" - sha256 cellar: :any_skip_relocation, mojave: "4a5a767d1097e9e8580e3d3ad77d01b8b840ef622092983d713333ed90d2db0d" - sha256 cellar: :any_skip_relocation, high_sierra: "d53e81606f1e85b59bd3ee364e006989187f5cce884b33fb77b104b931a7e3c5" - sha256 cellar: :any_skip_relocation, sierra: "c74fa8ac5e92c39a3f0d869b9e8bd44d32ab67ed0748b5548a0700287dfbe817" - sha256 cellar: :any_skip_relocation, x86_64_linux: "c143c1ce6d0119de540cd748544c68d55ea414e610c58cf6c02cb3cd9717c307" - end - - disable! date: "2022-07-31", because: :repo_archived - - depends_on "go" => :build - - go_resource "github.com/Sirupsen/logrus" do - url "https://github.com/Sirupsen/logrus.git", - revision: "d26492970760ca5d33129d2d799e34be5c4782eb" - end - - go_resource "github.com/gravitational/trace" do - url "https://github.com/gravitational/trace.git", - revision: "6e153c7add15eb07e311f892779fb294373c4cfa" - end - - go_resource "github.com/gravitational/teleport" do - url "https://github.com/gravitational/teleport.git", - revision: "2cb40abd8ea8fb2915304ea4888b5b9f3e5bc223" - end - - go_resource "github.com/jonboulle/clockwork" do - url "https://github.com/jonboulle/clockwork.git", - revision: "bcac9884e7502bb2b474c0339d889cb981a2f27f" - end - - go_resource "golang.org/x/crypto" do - url "https://go.googlesource.com/crypto.git", - revision: "9477e0b78b9ac3d0b03822fd95422e2fe07627cd" - end - - go_resource "golang.org/x/net" do - url "https://go.googlesource.com/net.git", - revision: "55a3084c9119aeb9ba2437d595b0a7e9cb635da9" - end - - go_resource "github.com/fatih/color" do - url "https://github.com/fatih/color.git", - revision: "bf82308e8c8546dc2b945157173eb8a959ae9505" - end - - go_resource "github.com/mattn/go-colorable" do - url "https://github.com/mattn/go-colorable.git", - revision: "d228849504861217f796da67fae4f6e347643f15" - end - - go_resource "github.com/mattn/go-isatty" do - url "https://github.com/mattn/go-isatty.git", - revision: "66b8e73f3f5cda9f96b69efd03dd3d7fc4a5cdb8" - end - - def install - ENV["GOPATH"] = buildpath - ENV["GO111MODULE"] = "auto" - mkdir_p buildpath/"src/github.com/gravitational" - ln_s buildpath, buildpath/"src/github.com/gravitational/teleconsole" - Language::Go.stage_deps resources, buildpath/"src" - system "go", "build", "-o", bin/"teleconsole" - end - - test do - system "#{bin}/teleconsole", "help" - end -end From b568223a2c5e8c2f5e17c9d6ea49484ede8214a6 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:29:00 +0000 Subject: [PATCH 106/133] telegram-cli: remove formula --- Formula/telegram-cli.rb | 116 ---------------------------------------- 1 file changed, 116 deletions(-) delete mode 100644 Formula/telegram-cli.rb diff --git a/Formula/telegram-cli.rb b/Formula/telegram-cli.rb deleted file mode 100644 index 9719ada81deaac..00000000000000 --- a/Formula/telegram-cli.rb +++ /dev/null @@ -1,116 +0,0 @@ -class TelegramCli < Formula - desc "Command-line interface for Telegram" - homepage "https://github.com/vysheng/tg" - url "https://github.com/vysheng/tg.git", - tag: "1.3.1", - revision: "5935c97ed05b90015418b5208b7beeca15a6043c" - license "GPL-2.0" - revision 4 - head "https://github.com/vysheng/tg.git", branch: "master" - - bottle do - rebuild 1 - sha256 arm64_monterey: "2a2821cb318c0270c4a51154c662257262e956e46621dc908f78448981c2284a" - sha256 arm64_big_sur: "335e874e6767796259265d4d62d144b599c37f7d5e98a54c36903e0733b50ce3" - sha256 monterey: "f70222afc6e527354cd71857668550130d8fb2de2fb08ace0127db745f69d87a" - sha256 big_sur: "a2cf1d0764a462e736640449bb3ca11522ec0c38a4dfb2e54ff3ccc3556f7ff9" - sha256 catalina: "4c1a9d233c3b46d75badb6e89e007ff9763e55071474ce11d0e109e7ee24aefe" - sha256 mojave: "da9d09f1f4a317ed14c97e67fc2def18c4cd728a7023ab80424a8d548437ee74" - sha256 high_sierra: "410b56cc04620c7a1f495b500b41fa61339cc68444c1c65939bb4fb0c4cc96ef" - sha256 x86_64_linux: "a8e2ef70303824cf404b4d481ac67194c8240611aafcef592bec5311f36d7d08" - end - - # "This project is deprecated and is no longer being maintained. - # Last commit was in 2016 - disable! date: "2022-07-31", because: :unmaintained - - depends_on "pkg-config" => :build - depends_on "jansson" - depends_on "libconfig" - depends_on "libevent" - depends_on "openssl@1.1" - depends_on "readline" - - uses_from_macos "zlib" - - # Look for the configuration file under /usr/local/etc rather than /etc on OS X. - # Pull Request: https://github.com/vysheng/tg/pull/1306 - patch do - url "https://github.com/vysheng/tg/commit/7fad505c344fdee68ea2af1096dc9357e50a8019.patch?full_index=1" - sha256 "1cdaa1f3e1f7fd722681ea4e02ff31a538897ed9d704c61f28c819a52ed0f592" - end - - # Patch for OpenSSL 1.1 compatibility - patch do - url "https://raw.githubusercontent.com/Homebrew/formula-patches/129507e4ee3dc314156e179902ac375abd00c7fa/telegram-cli/openssl-1.1.diff" - sha256 "eb6243e1861c0b1595e8bdee705d1acdd2678e854f0919699d4b26c159e30b5e" - end - - # Patch to make telegram-cli use sysconfdir for Apple Silicon support - # This patch does not apply cleanly to 1.3.1, but applies cleanly to head. - # using inline patch for the tag this is checking out. - # patch do - # url "https://github.com/vysheng/tg/commit/63b85c3ca1b335daf783d6e9ae80c076e7406e39.patch?full_index=1" - # sha256 "cbc37bd03b7456a43dbedeb5c8dd17294e016d8e8bb36f236f42f74bde4d7a71" - # end - patch :DATA - - def install - args = %W[ - --prefix=#{prefix} - CFLAGS=-I#{Formula["readline"].include} - CPPFLAGS=-I#{Formula["readline"].include} - LDFLAGS=-L#{Formula["readline"].lib} - --disable-liblua - --sysconfdir=#{etc} - ] - - system "./configure", *args - system "make" - - bin.install "bin/telegram-cli" => "telegram" - (etc/"telegram-cli").install "server.pub" - end - - test do - assert_match "messages_allocated", pipe_output("#{bin}/telegram", "stats") - end -end - -__END__ -diff --git a/Makefile.in b/Makefile.in -index e1989ab..78d84d0 100644 ---- a/Makefile.in -+++ b/Makefile.in -@@ -2,7 +2,7 @@ srcdir=@srcdir@ - - CFLAGS=@CFLAGS@ - LDFLAGS=@LDFLAGS@ @OPENSSL_LDFLAGS@ --CPPFLAGS=@CPPFLAGS@ @OPENSSL_INCLUDES@ -+CPPFLAGS=@CPPFLAGS@ @OPENSSL_INCLUDES@ -DSYSCONFDIR='"@sysconfdir@"' - DEFS=@DEFS@ - COMPILE_FLAGS=${CFLAGS} ${CPFLAGS} ${CPPFLAGS} ${DEFS} -Wall -Wextra -Werror -Wno-deprecated-declarations -fno-strict-aliasing -fno-omit-frame-pointer -ggdb -Wno-unused-parameter -fPIC - -diff --git a/main.c b/main.c -index 9498b0b..ba97e36 100644 ---- a/main.c -+++ b/main.c -@@ -927,8 +927,16 @@ int main (int argc, char **argv) { - running_for_first_time (); - parse_config (); - -- #if defined(__FreeBSD__) || (defined(__APPLE__) && defined(__MACH__)) -- tgl_set_rsa_key (TLS, "/usr/local/etc/" PROG_NAME "/server.pub"); -+ #if defined(__FreeBSD__) -+ /* at the time of adding --sysconfdir to configure I do not know if FreeBSD has it set to /usr/local/etc */ -+ #undef SYSCONFDIR -+ #define SYSCONFDIR "/usr/local/etc" -+ #endif -+ -+ #if defined(SYSCONFDIR) -+ /* if --sysconfdir was provided to configure use it, not touching FreeBSD as I'm not sure if -+ the default is correct there */ -+ tgl_set_rsa_key (TLS, SYSCONFDIR "/" PROG_NAME "/server.pub"); - #else - tgl_set_rsa_key (TLS, "/etc/" PROG_NAME "/server.pub"); - #endif From 4136432f56682b36aeb9b63a5dcde3e35b42c103 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:29:01 +0000 Subject: [PATCH 107/133] termtosvg: remove formula --- Formula/termtosvg.rb | 50 -------------------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 Formula/termtosvg.rb diff --git a/Formula/termtosvg.rb b/Formula/termtosvg.rb deleted file mode 100644 index 4d181d159d6071..00000000000000 --- a/Formula/termtosvg.rb +++ /dev/null @@ -1,50 +0,0 @@ -class Termtosvg < Formula - include Language::Python::Virtualenv - - desc "Record terminal sessions as SVG animations" - homepage "https://nbedos.github.io/termtosvg" - url "https://github.com/nbedos/termtosvg/archive/1.1.0.tar.gz" - sha256 "53e9ad5976978684699d14b83cac37bf173d76c787f1b849859ad8aef55f22d2" - license "BSD-3-Clause" - revision 3 - - bottle do - sha256 cellar: :any_skip_relocation, arm64_monterey: "724f67913066d53b19c8ca53eb8110a39293cd416dcf2c2d1cea5f78a070bb83" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "23db60dd604e925a43b598be9a7fd2f6a9c94b32764066ba2bfcf45e9b60396d" - sha256 cellar: :any_skip_relocation, monterey: "a5bec176e665df6ed59fea8cfb15550668bcaee87624f35fea2737f74c050366" - sha256 cellar: :any_skip_relocation, big_sur: "32f1142366e73140d1d96f7003d9e3d745a08adb998278d3ec96acbea25888e4" - sha256 cellar: :any_skip_relocation, catalina: "085ece852b31385103c159ee5b81fac163264e803a1014ada30e0f4260fc43ac" - sha256 cellar: :any_skip_relocation, mojave: "9ddce257d68a972d67278fd51e2ac818fd13b7ad84932f0590bda076b1224aa9" - sha256 cellar: :any_skip_relocation, x86_64_linux: "21df9137fcd9c002b52eab21f6d6690b0b187ca1436e77d328ca0157643b95e6" - end - - disable! date: "2022-07-31", because: :repo_archived - - depends_on "python@3.10" - - uses_from_macos "libxml2" - uses_from_macos "libxslt" - - resource "lxml" do - url "https://files.pythonhosted.org/packages/e5/21/a2e4517e3d216f0051687eea3d3317557bde68736f038a3b105ac3809247/lxml-4.6.3.tar.gz" - sha256 "39b78571b3b30645ac77b95f7c69d1bffc4cf8c3b157c435a34da72e78c82468" - end - - resource "pyte" do - url "https://files.pythonhosted.org/packages/66/37/6fed89b484c8012a0343117f085c92df8447a18af4966d25599861cd5aa0/pyte-0.8.0.tar.gz" - sha256 "7e71d03e972d6f262cbe8704ff70039855f05ee6f7ad9d7129df9c977b5a88c5" - end - - resource "wcwidth" do - url "https://files.pythonhosted.org/packages/89/38/459b727c381504f361832b9e5ace19966de1a235d73cdbdea91c771a1155/wcwidth-0.2.5.tar.gz" - sha256 "c4d647b99872929fdb7bdcaa4fbe7f01413ed3d98077df798530e5b04f116c83" - end - - def install - virtualenv_install_with_resources - end - - test do - system libexec/"bin/python", "-m", "unittest", "termtosvg.tests.suite" - end -end From ef00ebac1d4344c90bd86a5cd941e04658481d88 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:29:01 +0000 Subject: [PATCH 108/133] terraform@0.11: remove formula --- Formula/terraform@0.11.rb | 86 --------------------------------------- 1 file changed, 86 deletions(-) delete mode 100644 Formula/terraform@0.11.rb diff --git a/Formula/terraform@0.11.rb b/Formula/terraform@0.11.rb deleted file mode 100644 index e5bb046281f9a0..00000000000000 --- a/Formula/terraform@0.11.rb +++ /dev/null @@ -1,86 +0,0 @@ -class TerraformAT011 < Formula - desc "Tool to build, change, and version infrastructure" - homepage "https://www.terraform.io/" - url "https://github.com/hashicorp/terraform/archive/v0.11.15.tar.gz" - sha256 "e0f8c5549d45d133f86570c7e5083af3eb1ce64aa0eeeaa5b7c5fa5221cfdd4a" - license "MPL-2.0" - - bottle do - sha256 cellar: :any_skip_relocation, arm64_big_sur: "a9adc546789d09e4b62696954cf28e85dc9e78043950e80a45f77cccbb88a1a6" - sha256 cellar: :any_skip_relocation, monterey: "87225e1a86da6d3c2e5bfd075084cb3a4bebc59a4c943113d95db9f01c8f89f1" - sha256 cellar: :any_skip_relocation, big_sur: "66f418d06a3fe1d3ad02e6d77815992940fd712f1d8f6e9dcbefd82fec49b75a" - sha256 cellar: :any_skip_relocation, catalina: "af2485736328e4ef93a6fbf79d7e6dd4e1c9a01597abd22ee20218d1fe4cc762" - sha256 cellar: :any_skip_relocation, mojave: "1b3e7e7126b9410185ed5eae937bb0f814f8eb062d9c09d7e72d91b96d51b228" - sha256 cellar: :any_skip_relocation, x86_64_linux: "67b1bce3e6f2f4a90c9f5416aa065e225805b161f4f32f392f7c71bd9cbb0f40" - end - - keg_only :versioned_formula - - disable! date: "2022-07-31", because: :unsupported - - depends_on "go@1.16" => :build - depends_on "gox" => :build - depends_on arch: :x86_64 - - on_linux do - depends_on "zip" => :build - end - - def install - ENV["GOPATH"] = buildpath - ENV.prepend_create_path "PATH", buildpath/"bin" - - dir = buildpath/"src/github.com/hashicorp/terraform" - dir.install buildpath.children - [buildpath/".brew_home"] - - cd dir do - # v0.6.12 - source contains tests which fail if these environment variables are set locally. - ENV.delete "AWS_ACCESS_KEY" - ENV.delete "AWS_SECRET_KEY" - - os = OS.kernel_name.downcase - arch = Hardware::CPU.intel? ? "amd64" : Hardware::CPU.arch.to_s - - ENV["XC_OS"] = os - ENV["XC_ARCH"] = arch - system "go", "mod", "vendor" # Needed for Go 1.14+ - system "make", "tools", "bin" - - bin.install "pkg/#{os}_#{arch}/terraform" - prefix.install_metafiles - end - end - - test do - minimal = testpath/"minimal.tf" - minimal.write <<~EOS - variable "aws_region" { - default = "us-west-2" - } - - variable "aws_amis" { - default = { - eu-west-1 = "ami-b1cf19c6" - us-east-1 = "ami-de7ab6b6" - us-west-1 = "ami-3f75767a" - us-west-2 = "ami-21f78e11" - } - } - - # Specify the provider and access details - provider "aws" { - access_key = "this_is_a_fake_access" - secret_key = "this_is_a_fake_secret" - region = "${var.aws_region}" - } - - resource "aws_instance" "web" { - instance_type = "m1.small" - ami = "${lookup(var.aws_amis, var.aws_region)}" - count = 4 - } - EOS - system "#{bin}/terraform", "init" - system "#{bin}/terraform", "graph" - end -end From 2e728bdb586890d520cc2ac91573fd7d5b53be01 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:29:01 +0000 Subject: [PATCH 109/133] terraform@0.12: remove formula --- Formula/terraform@0.12.rb | 66 --------------------------------------- 1 file changed, 66 deletions(-) delete mode 100644 Formula/terraform@0.12.rb diff --git a/Formula/terraform@0.12.rb b/Formula/terraform@0.12.rb deleted file mode 100644 index a15dd12ea82497..00000000000000 --- a/Formula/terraform@0.12.rb +++ /dev/null @@ -1,66 +0,0 @@ -class TerraformAT012 < Formula - desc "Tool to build, change, and version infrastructure" - homepage "https://www.terraform.io/" - url "https://github.com/hashicorp/terraform/archive/v0.12.31.tar.gz" - sha256 "f53aef1f1ea9d72a30145f0018cc16fea076ae09bd93faa320645af7bce3bf4d" - license "MPL-2.0" - - bottle do - sha256 cellar: :any_skip_relocation, arm64_monterey: "7c1e4da55fb02c5f9ee2c0bbceb32927b7396ae759fe418ace857afc1346c226" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "46b7341d0710f40ec6532bf16de55226e1df553408e99a97dce9aaa668efac27" - sha256 cellar: :any_skip_relocation, monterey: "21aa5de3857889453b4ec7ed810df350b22838cda61baa7e6db6a0c3946d5891" - sha256 cellar: :any_skip_relocation, big_sur: "bcbadc631d4a94c210c5d2b7a82120dee050f6263abc8d2cda78eb5ad0c2cfc5" - sha256 cellar: :any_skip_relocation, catalina: "bcbadc631d4a94c210c5d2b7a82120dee050f6263abc8d2cda78eb5ad0c2cfc5" - sha256 cellar: :any_skip_relocation, x86_64_linux: "75fd648fb8fd2dcb7e922d7ca2f5ca8c044c4967c625144a758e05368b4ace1c" - end - - keg_only :versioned_formula - - disable! date: "2022-07-31", because: :unsupported - - depends_on "go" => :build - depends_on macos: :catalina - - def install - # v0.6.12 - source contains tests which fail if these environment variables are set locally. - ENV.delete "AWS_ACCESS_KEY" - ENV.delete "AWS_SECRET_KEY" - - ENV["CGO_ENABLED"] = "0" - system "go", "build", *std_go_args, - "-ldflags", "-s -w", "-mod=vendor", "-o", bin/"terraform" - end - - test do - minimal = testpath/"minimal.tf" - minimal.write <<~EOS - variable "aws_region" { - default = "us-west-2" - } - - variable "aws_amis" { - default = { - eu-west-1 = "ami-b1cf19c6" - us-east-1 = "ami-de7ab6b6" - us-west-1 = "ami-3f75767a" - us-west-2 = "ami-21f78e11" - } - } - - # Specify the provider and access details - provider "aws" { - access_key = "this_is_a_fake_access" - secret_key = "this_is_a_fake_secret" - region = var.aws_region - } - - resource "aws_instance" "web" { - instance_type = "m1.small" - ami = var.aws_amis[var.aws_region] - count = 4 - } - EOS - system "#{bin}/terraform", "init" - system "#{bin}/terraform", "graph" - end -end From 9be5c545f4a3cdaf97c394d0d7358f2d49b06847 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:29:02 +0000 Subject: [PATCH 110/133] terraform@0.13: remove formula --- Formula/terraform@0.13.rb | 66 --------------------------------------- 1 file changed, 66 deletions(-) delete mode 100644 Formula/terraform@0.13.rb diff --git a/Formula/terraform@0.13.rb b/Formula/terraform@0.13.rb deleted file mode 100644 index 0d628835eb8e63..00000000000000 --- a/Formula/terraform@0.13.rb +++ /dev/null @@ -1,66 +0,0 @@ -class TerraformAT013 < Formula - desc "Tool to build, change, and version infrastructure" - homepage "https://www.terraform.io/" - url "https://github.com/hashicorp/terraform/archive/v0.13.7.tar.gz" - sha256 "7395800a4523d4a1483f96d71636c2710a7e9de19c37cc0f03fdb51414a63cf0" - license "MPL-2.0" - - bottle do - sha256 cellar: :any_skip_relocation, big_sur: "a9071c87b749036c6b9b0287af782e80e0282e7428718355ae8a2cea2c70bdb6" - sha256 cellar: :any_skip_relocation, catalina: "59fb34b8e85bbfc049a2e2950539abab123904d101bf572c85cd963e901ed1a6" - sha256 cellar: :any_skip_relocation, mojave: "ad5aad95ca700df4f9c61ec68734952e6a72b223a7cf2762eb7aa3b03b6c7b69" - sha256 cellar: :any_skip_relocation, x86_64_linux: "4f7a689aa70f30e171b26de7bc1ef214f1ddb9c60950865c1530833f99e609a8" - end - - keg_only :versioned_formula - - disable! date: "2022-07-31", because: :unsupported - - depends_on "go@1.14" => :build - - def install - # v0.6.12 - source contains tests which fail if these environment variables are set locally. - ENV.delete "AWS_ACCESS_KEY" - ENV.delete "AWS_SECRET_KEY" - - # resolves issues fetching providers while on a VPN that uses /etc/resolv.conf - # https://github.com/hashicorp/terraform/issues/26532#issuecomment-720570774 - ENV["CGO_ENABLED"] = "1" - - system "go", "build", *std_go_args, - "-ldflags", "-s -w", "-mod=vendor", "-o", bin/"terraform" - end - - test do - minimal = testpath/"minimal.tf" - minimal.write <<~EOS - variable "aws_region" { - default = "us-west-2" - } - - variable "aws_amis" { - default = { - eu-west-1 = "ami-b1cf19c6" - us-east-1 = "ami-de7ab6b6" - us-west-1 = "ami-3f75767a" - us-west-2 = "ami-21f78e11" - } - } - - # Specify the provider and access details - provider "aws" { - access_key = "this_is_a_fake_access" - secret_key = "this_is_a_fake_secret" - region = var.aws_region - } - - resource "aws_instance" "web" { - instance_type = "m1.small" - ami = var.aws_amis[var.aws_region] - count = 4 - } - EOS - system "#{bin}/terraform", "init" - system "#{bin}/terraform", "graph" - end -end From 0535fb527c4e9da33b72f9670e6f0c383391f16a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:29:02 +0000 Subject: [PATCH 111/133] tidyp: remove formula --- Formula/tidyp.rb | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 Formula/tidyp.rb diff --git a/Formula/tidyp.rb b/Formula/tidyp.rb deleted file mode 100644 index 4b077e160dbc0e..00000000000000 --- a/Formula/tidyp.rb +++ /dev/null @@ -1,43 +0,0 @@ -class Tidyp < Formula - desc "Validate and modify HTML" - homepage "https://github.com/petdance/tidyp" - url "https://github.com/downloads/petdance/tidyp/tidyp-1.04.tar.gz" - sha256 "20b0fad32c63575bd4685ed09b8c5ca222bbc7b15284210d4b576d0223f0b338" - license "Zlib" - - bottle do - rebuild 1 - sha256 cellar: :any, monterey: "46db487f2849abbb7fa3123a5420bd06a782cc5fb23691e81f6d4a4ce3186e5b" - sha256 cellar: :any, big_sur: "7698a00e976bc8e04d0cefa0450713f73c658e694400fc107b161aa1184b2d72" - sha256 cellar: :any, catalina: "e9529c4cb157eb48b5d3a4cde35c4a8f1994496290a5a308b7feacd4b5bc58bf" - sha256 cellar: :any, mojave: "b48c3587cde0cbc77ff07e9cb6849dcd3a985d8360ab5e8e7a7d5f0691e5d68b" - sha256 cellar: :any, high_sierra: "267b4c383278baa37d4bab8e10aba1ee73d2eba642332414fad77d262b602099" - end - - disable! date: "2022-07-31", because: :repo_archived - - uses_from_macos "libxslt" => :build - - resource "manual" do - url "https://raw.githubusercontent.com/petdance/tidyp/6a6c85bc9cb089e343337377f76127d01dd39a1c/htmldoc/tidyp1.xsl" - sha256 "68ea4bb74e0ed203fb2459d46e789b2f94e58dc9a5a6bc6c7eb62b774ac43c98" - end - - def install - system "./configure", "--disable-debug", "--disable-dependency-tracking", - "--prefix=#{prefix}" - system "make", "install" - - # Use the newly brewed tidyp to generate the manual - resource("manual").stage do - system "#{bin}/tidyp -xml-help > tidyp1.xml" - system "#{bin}/tidyp -xml-config > tidyp-config.xml" - system "/usr/bin/xsltproc tidyp1.xsl tidyp1.xml > tidyp.1" - man1.install Utils::Gzip.compress("tidyp.1") - end - end - - test do - system "#{bin}/tidyp", "--version" - end -end From 81b418d14f74a1c31b5bd352904be8ee90f021e6 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:29:02 +0000 Subject: [PATCH 112/133] trace2html: remove formula --- Formula/trace2html.rb | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 Formula/trace2html.rb diff --git a/Formula/trace2html.rb b/Formula/trace2html.rb deleted file mode 100644 index a216eceb4e21bd..00000000000000 --- a/Formula/trace2html.rb +++ /dev/null @@ -1,32 +0,0 @@ -class Trace2html < Formula - desc "Utility from Google Trace Viewer to convert JSON traces to HTML" - homepage "https://github.com/google/trace-viewer" - url "https://github.com/google/trace-viewer/archive/2015-07-07.tar.gz" - version "2015-07-07" - sha256 "6125826d07869fbd634ef898a45df3cabf45e6bcf951f2c63e49f87ce6a0442a" - license "BSD-3-Clause" - revision 1 - - bottle do - sha256 cellar: :any_skip_relocation, arm64_monterey: "f1cfa6d0038b3faff1fbcec844f6cd955a332ab27b6cb88e7fd915954390affe" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "32764a563ad476d574353f8c911c341d8831a6154bda4c068f6c7524724e640d" - sha256 cellar: :any_skip_relocation, monterey: "491b4f9d7b8b4be6cb1f3ebde16ff3ddd7dad449e977518cde47b10adae15b58" - sha256 cellar: :any_skip_relocation, big_sur: "cbe734ca273dc6851bca4b52646389d9593608f92f777abed4a7df97e3314a67" - sha256 cellar: :any_skip_relocation, catalina: "cbe734ca273dc6851bca4b52646389d9593608f92f777abed4a7df97e3314a67" - sha256 cellar: :any_skip_relocation, mojave: "cbe734ca273dc6851bca4b52646389d9593608f92f777abed4a7df97e3314a67" - end - - # https://github.com/google/trace-viewer/commit/5f708803 - disable! date: "2022-07-31", because: "has moved upstream repositories" - - def install - libexec.install Dir["*"] - bin.install_symlink libexec/"tracing/trace2html" - end - - test do - touch "test.json" - system "#{bin}/trace2html", "test.json" - assert_predicate testpath/"test.html", :exist? - end -end From fcba8d6e1b1e4612ec35c050a2ebc6dd3785d393 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:29:03 +0000 Subject: [PATCH 113/133] truncate: remove formula --- Formula/truncate.rb | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 Formula/truncate.rb diff --git a/Formula/truncate.rb b/Formula/truncate.rb deleted file mode 100644 index 49fa05cef48c1f..00000000000000 --- a/Formula/truncate.rb +++ /dev/null @@ -1,36 +0,0 @@ -class Truncate < Formula - desc "Truncates a file to a given size" - homepage "https://www.vanheusden.com/truncate/" - url "https://github.com/flok99/truncate/archive/0.9.tar.gz" - sha256 "a959d50cf01a67ed1038fc7814be3c9a74b26071315349bac65e02ca23891507" - license "AGPL-3.0" - head "https://github.com/flok99/truncate.git" - - bottle do - sha256 cellar: :any_skip_relocation, arm64_big_sur: "6608722fc6a0082220c5ea5b92abfe2753e5b11307f1d812cf79468456cfaa75" - sha256 cellar: :any_skip_relocation, big_sur: "114a1a8f6ad55877eed7574ee0e30c0f18535127ae173f55919fb0ead6c608cc" - sha256 cellar: :any_skip_relocation, catalina: "268e41b71c41a6d5297c7659061953053e2e833bde60d23ff80296950ff4f006" - sha256 cellar: :any_skip_relocation, mojave: "99e774220ef9a0cdb89f4300c671ac9eb74840cf5ed2d0731f12d20e680ff939" - sha256 cellar: :any_skip_relocation, high_sierra: "e1386eda3a93dddd528d1c3bf33b78c9c4da12039d7434b8db956e05eace9482" - sha256 cellar: :any_skip_relocation, sierra: "c4c892f0afbdf3a401ccb0af2a7cf8c65b37ccfdfe2412dda5284faa94f562ff" - sha256 cellar: :any_skip_relocation, el_capitan: "299b80454c20134c5d0916da25fb3d5f0b6843e620dac6babebe01a899253a69" - end - - disable! date: "2022-07-31", because: :repo_removed - - on_macos do - conflicts_with "uutils-coreutils", because: "both install `truncate` binaries" - end - - conflicts_with "coreutils", because: "both install `truncate` binaries" - - def install - system "make" - bin.install "truncate" - man1.install "truncate.1" - end - - test do - system "#{bin}/truncate", "-s", "1k", "testfile" - end -end From 48ca509234727d9e3e4f9df545b1523c0718c204 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:29:03 +0000 Subject: [PATCH 114/133] xctool: remove formula --- Formula/xctool.rb | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 Formula/xctool.rb diff --git a/Formula/xctool.rb b/Formula/xctool.rb deleted file mode 100644 index e3396f8fa3bb8c..00000000000000 --- a/Formula/xctool.rb +++ /dev/null @@ -1,42 +0,0 @@ -class Xctool < Formula - desc "Drop-in replacement for xcodebuild with a few extra features" - homepage "https://github.com/facebookarchive/xctool" - url "https://github.com/facebookarchive/xctool/archive/0.3.7.tar.gz" - sha256 "608522865dc42959a6240010c8295ce01278f4b7a8276d838f21a8973938206d" - license "Apache-2.0" - head "https://github.com/facebookarchive/xctool.git", branch: "master" - - bottle do - sha256 cellar: :any, catalina: "0cf8c734d095ab97b2d5537b67d3f13e6ff8f38c46503ea02b9eba98ff35942c" - sha256 cellar: :any, mojave: "8b116346555e2616619e577d3ce3c69a24d66cb505ee048ba316ab2880736043" - sha256 cellar: :any, high_sierra: "055172ba606bf94416513e418007f849a08ff24a3b3484fb67c1b4f854123bb9" - end - - disable! date: "2022-07-31", because: :repo_archived - - depends_on :macos - depends_on xcode: "7.0" - - def install - xcodebuild "-workspace", "xctool.xcworkspace", - "-scheme", "xctool", - "-configuration", "Release", - "SYMROOT=build", - "-IDEBuildLocationStyle=Custom", - "-IDECustomDerivedDataLocation=#{buildpath}", - "XT_INSTALL_ROOT=#{libexec}" - bin.install_symlink "#{libexec}/bin/xctool" - end - - def post_install - # all libraries need to be signed to avoid codesign errors when - # injecting them into xcodebuild or Simulator.app. - Dir.glob("#{libexec}/lib/*.dylib") do |lib_file| - system "/usr/bin/codesign", "-f", "-s", "-", lib_file - end - end - - test do - system "(#{bin}/xctool -help; true)" - end -end From 9a42048b8a93003e80317a1aea3046bc063d359d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:29:04 +0000 Subject: [PATCH 115/133] yeti: remove formula --- Formula/yeti.rb | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 Formula/yeti.rb diff --git a/Formula/yeti.rb b/Formula/yeti.rb deleted file mode 100644 index b99e97542952f4..00000000000000 --- a/Formula/yeti.rb +++ /dev/null @@ -1,34 +0,0 @@ -class Yeti < Formula - desc "ML-style functional programming language that runs on the JVM" - homepage "https://mth.github.io/yeti/" - url "https://github.com/mth/yeti/archive/v1.0.tar.gz" - sha256 "f1451a7c58cecaee41c46e886eb714a81e0dfe5557c10568421dcbd33ab9357c" - license "BSD-3-Clause" - head "https://github.com/mth/yeti.git", branch: "master" - - bottle do - sha256 cellar: :any_skip_relocation, catalina: "4c352083ddfbf202777d4f8d52895ac2bcb556fd5cc2fc1f820a48bb773b823f" - sha256 cellar: :any_skip_relocation, mojave: "9dffa6798409e7d40acf301547dc8508547331922eaa1b7365a0b04e020ae90f" - sha256 cellar: :any_skip_relocation, high_sierra: "1c49573337d0ca872a060038e3c7e5496d02b025e442c062314d98a786ab708a" - end - - disable! date: "2022-07-31", because: :does_not_build - - depends_on "ant" => :build - depends_on "openjdk@8" - - def install - system "ant", "jar" - libexec.install "yeti.jar" - - (bin/"yeti").write <<~EOS - #!/bin/bash - export JAVA_HOME="#{Language::Java.overridable_java_home_env("1.8")[:JAVA_HOME]}" - exec "${JAVA_HOME}/bin/java" -server -jar "#{libexec}/yeti.jar" "$@" - EOS - end - - test do - assert_equal "3\n", shell_output("#{bin}/yeti -e 'do x: x+1 done 2'") - end -end From 836a3ffc28f8cc00b5dbed2ab313a61d0f3d0073 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:29:04 +0000 Subject: [PATCH 116/133] ykneomgr: remove formula --- Formula/ykneomgr.rb | 46 --------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 Formula/ykneomgr.rb diff --git a/Formula/ykneomgr.rb b/Formula/ykneomgr.rb deleted file mode 100644 index b17c848bcc6ff5..00000000000000 --- a/Formula/ykneomgr.rb +++ /dev/null @@ -1,46 +0,0 @@ -class Ykneomgr < Formula - desc "CLI and C library to interact with the CCID-part of the YubiKey NEO" - homepage "https://developers.yubico.com/libykneomgr/" - url "https://developers.yubico.com/libykneomgr/Releases/libykneomgr-0.1.8.tar.gz" - sha256 "2749ef299a1772818e63c0ff5276f18f1694f9de2137176a087902403e5df889" - license "LGPL-3.0-or-later" - revision 2 - - bottle do - rebuild 1 - sha256 cellar: :any, arm64_monterey: "b1a8db16006b7c66fd5fa1ecd61c5af791be4e7be61b054bfe268b1bb47094e0" - sha256 cellar: :any, arm64_big_sur: "75e8cb3042d639b8271057b9d3e77c2786e66527a8c8602709dff4624b06d134" - sha256 cellar: :any, monterey: "371a8e8a46f71521fcc534c60fff6f9e4cc787d17a03344c37c325d284c14ad2" - sha256 cellar: :any, big_sur: "d08813317ba58b25a12d90485c20e372922bde6bda948a4b4979eccb07374e5f" - sha256 cellar: :any, catalina: "583b882ed5705cfbde73f815689c7fcf70aec84b42a8de606dd847f99afc93b7" - sha256 cellar: :any, mojave: "0fee721a06b166425760bdc5b65349f374ac6512ce09404cdc2c4d82f621022e" - end - - head do - url "https://github.com/Yubico/libykneomgr.git" - depends_on "autoconf" => :build - depends_on "automake" => :build - depends_on "gengetopt" => :build - depends_on "libtool" => :build - end - - # Deprecated in favor of YubiKey Manager (ykman) - disable! date: "2022-07-31", because: :deprecated_upstream - - depends_on "help2man" => :build - depends_on "pkg-config" => :build - depends_on "libzip" - - def install - system "make", "autoreconf" if build.head? - system "./configure", "--disable-dependency-tracking", - "--disable-silent-rules", - "--prefix=#{prefix}" - system "make", "check" - system "make", "install" - end - - test do - assert_match version.to_s, shell_output("#{bin}/ykneomgr --version") - end -end From 846979746624dda17f040207ef0ed5d641268780 Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Mon, 31 Jul 2023 19:06:46 -0700 Subject: [PATCH 117/133] kibana@7: remove alias --- Aliases/kibana@7 | 1 - 1 file changed, 1 deletion(-) delete mode 120000 Aliases/kibana@7 diff --git a/Aliases/kibana@7 b/Aliases/kibana@7 deleted file mode 120000 index 8d9eaa880c8cde..00000000000000 --- a/Aliases/kibana@7 +++ /dev/null @@ -1 +0,0 @@ -../Formula/kibana.rb \ No newline at end of file From edf642cc941d09811e2da718fbe7869a35119e12 Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Mon, 31 Jul 2023 19:07:29 -0700 Subject: [PATCH 118/133] elasticsearch@7: remove alias --- Aliases/elasticsearch@7 | 1 - 1 file changed, 1 deletion(-) delete mode 120000 Aliases/elasticsearch@7 diff --git a/Aliases/elasticsearch@7 b/Aliases/elasticsearch@7 deleted file mode 120000 index e54cdefb60c650..00000000000000 --- a/Aliases/elasticsearch@7 +++ /dev/null @@ -1 +0,0 @@ -../Formula/elasticsearch.rb \ No newline at end of file From 76225e4f51e04550778f22eb3290328b44f459c4 Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Mon, 31 Jul 2023 19:10:23 -0700 Subject: [PATCH 119/133] versioned_keg_only_allowlist: remove deleted formulae --- audit_exceptions/versioned_keg_only_allowlist.json | 1 - 1 file changed, 1 deletion(-) diff --git a/audit_exceptions/versioned_keg_only_allowlist.json b/audit_exceptions/versioned_keg_only_allowlist.json index 4ab20fa3bc58f2..c3606f3ed2036f 100644 --- a/audit_exceptions/versioned_keg_only_allowlist.json +++ b/audit_exceptions/versioned_keg_only_allowlist.json @@ -5,7 +5,6 @@ "cairomm@1.14", "clang-format@8", "clang-format@11", - "gcc@4.9", "gcc@5", "gcc@6", "gcc@7", From c75771fe793beb98ea5ed674f1ab7e178be8299d Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Mon, 31 Jul 2023 19:11:02 -0700 Subject: [PATCH 120/133] github_prerelease_allowlist: remove deleted formulae --- audit_exceptions/github_prerelease_allowlist.json | 2 -- 1 file changed, 2 deletions(-) diff --git a/audit_exceptions/github_prerelease_allowlist.json b/audit_exceptions/github_prerelease_allowlist.json index 6e9266af0c723f..91b0935b21090c 100644 --- a/audit_exceptions/github_prerelease_allowlist.json +++ b/audit_exceptions/github_prerelease_allowlist.json @@ -3,7 +3,5 @@ "gitless": "0.8.8", "grt": "0.2.4", "polynote": "all", - "riff": "0.5.0", - "telegram-cli": "1.3.1", "thrift@0.9": "all" } From c7f4e64078048ef231acb5fbc3ba44fbf4773e21 Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Mon, 31 Jul 2023 19:11:25 -0700 Subject: [PATCH 121/133] not_a_binary_url_prefix_allowlist: remove deleted formulae --- style_exceptions/not_a_binary_url_prefix_allowlist.json | 1 - 1 file changed, 1 deletion(-) diff --git a/style_exceptions/not_a_binary_url_prefix_allowlist.json b/style_exceptions/not_a_binary_url_prefix_allowlist.json index 3ca4d367b61599..024b9534cfbe11 100644 --- a/style_exceptions/not_a_binary_url_prefix_allowlist.json +++ b/style_exceptions/not_a_binary_url_prefix_allowlist.json @@ -1,5 +1,4 @@ [ - "archey", "astyle", "bittwist", "cspice", From 0448084e6122da120db7dec976dae32f22d42bd5 Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Mon, 31 Jul 2023 19:12:07 -0700 Subject: [PATCH 122/133] binary_bootstrap_formula_urls_allowlist: remove deleted formulae --- style_exceptions/binary_bootstrap_formula_urls_allowlist.json | 2 -- 1 file changed, 2 deletions(-) diff --git a/style_exceptions/binary_bootstrap_formula_urls_allowlist.json b/style_exceptions/binary_bootstrap_formula_urls_allowlist.json index 52943b89514233..ffa6c41257c52c 100644 --- a/style_exceptions/binary_bootstrap_formula_urls_allowlist.json +++ b/style_exceptions/binary_bootstrap_formula_urls_allowlist.json @@ -9,8 +9,6 @@ "ghc@8.10", "ghc@9.2", "go", - "go@1.13", - "go@1.14", "go@1.15", "ldc", "mlton", From 2fea677916b3c348cbc0d5b2e9dbc4c8dce9b456 Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Mon, 31 Jul 2023 19:12:38 -0700 Subject: [PATCH 123/133] pypi_formula_mappings: remove deleted formulae --- pypi_formula_mappings.json | 1 - 1 file changed, 1 deletion(-) diff --git a/pypi_formula_mappings.json b/pypi_formula_mappings.json index 049797924f0aba..beefb666d072f5 100644 --- a/pypi_formula_mappings.json +++ b/pypi_formula_mappings.json @@ -14,7 +14,6 @@ ], "exclude_packages": ["cffi", "pycparser", "PyYAML", "six"] }, - "ansible@2.8": false, "ansible@2.9": { "extra_packages": [ "apache-libcloud", "boto3", "dnspython", "docker-py", "junos-eznc", "jxmlease", "kerberos", "ntc-templates", From c2f8784300f25f7f84f385916f5e59d7683a9f36 Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Mon, 31 Jul 2023 19:15:31 -0700 Subject: [PATCH 124/133] archey4: remove conflict --- Formula/archey4.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/Formula/archey4.rb b/Formula/archey4.rb index 5c807e76178972..f39a50d1e1eebb 100644 --- a/Formula/archey4.rb +++ b/Formula/archey4.rb @@ -19,8 +19,6 @@ class Archey4 < Formula depends_on "python@3.11" - conflicts_with "archey", because: "both install `archey` binaries" - resource "distro" do url "https://files.pythonhosted.org/packages/4b/89/eaa3a3587ebf8bed93e45aa79be8c2af77d50790d15b53f6dfc85b57f398/distro-1.8.0.tar.gz" sha256 "02e111d1dc6a50abb8eed6bf31c3e48ed8b0830d1ea2a1b78c61765c2513fdd8" From e03aa6867d8268eed28d18592ea28b00f22a13a6 Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Mon, 31 Jul 2023 19:29:02 -0700 Subject: [PATCH 125/133] coreutils: remove conflict --- Formula/coreutils.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/Formula/coreutils.rb b/Formula/coreutils.rb index 4edb45cacc5901..ea781c56277404 100644 --- a/Formula/coreutils.rb +++ b/Formula/coreutils.rb @@ -45,7 +45,6 @@ class Coreutils < Formula conflicts_with "gfold", because: "both install `gfold` binaries" conflicts_with "idutils", because: "both install `gid` and `gid.1`" conflicts_with "md5sha1sum", because: "both install `md5sum` and `sha1sum` binaries" - conflicts_with "truncate", because: "both install `truncate` binaries" # https://github.com/Homebrew/homebrew-core/pull/36494 def breaks_macos_users From 37fe6f6950c46b7fd5db9f3ccc9e499533faed8c Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Mon, 31 Jul 2023 19:29:57 -0700 Subject: [PATCH 126/133] gifsicle: remove conflict --- Formula/gifsicle.rb | 3 --- 1 file changed, 3 deletions(-) diff --git a/Formula/gifsicle.rb b/Formula/gifsicle.rb index bb8c9b3ef8be9b..01c355639f04b0 100644 --- a/Formula/gifsicle.rb +++ b/Formula/gifsicle.rb @@ -27,9 +27,6 @@ class Gifsicle < Formula depends_on "automake" => :build end - conflicts_with "giflossy", - because: "both install an `gifsicle` binary" - def install args = %W[ --disable-dependency-tracking From 23538a91115b97bfee967331bcee24fddf0a90f3 Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Mon, 31 Jul 2023 19:30:32 -0700 Subject: [PATCH 127/133] nanopb-generator: remove conflict --- Formula/nanopb-generator.rb | 3 --- 1 file changed, 3 deletions(-) diff --git a/Formula/nanopb-generator.rb b/Formula/nanopb-generator.rb index 84db6e1e902eb0..09e4edda7df029 100644 --- a/Formula/nanopb-generator.rb +++ b/Formula/nanopb-generator.rb @@ -19,9 +19,6 @@ class NanopbGenerator < Formula depends_on "protobuf" depends_on "python@3.11" - conflicts_with "mesos", - because: "they depend on an incompatible version of protobuf" - def install cd "generator" do system "make", "-C", "proto" From bcc3aaaf85e2edbbd3b855f28ef1962faae93b78 Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Mon, 31 Jul 2023 19:31:12 -0700 Subject: [PATCH 128/133] openmotif: remove conflict --- Formula/openmotif.rb | 3 --- 1 file changed, 3 deletions(-) diff --git a/Formula/openmotif.rb b/Formula/openmotif.rb index e089c784935c6a..df05df2b608732 100644 --- a/Formula/openmotif.rb +++ b/Formula/openmotif.rb @@ -34,9 +34,6 @@ class Openmotif < Formula uses_from_macos "flex" => :build - conflicts_with "lesstif", - because: "both Lesstif and Openmotif are complete replacements for each other" - # Fix -flat_namespace being used on Big Sur and later. patch do url "https://raw.githubusercontent.com/Homebrew/formula-patches/03cf8088210822aa2c1ab544ed58ea04c897d9c4/libtool/configure-big_sur.diff" From 17961808401e6e4effc96ebe238b8947ebacfb95 Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Mon, 31 Jul 2023 19:31:28 -0700 Subject: [PATCH 129/133] rapidjson: remove conflict --- Formula/rapidjson.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/Formula/rapidjson.rb b/Formula/rapidjson.rb index 542875b1c5b2e6..564f29bdd70aa8 100644 --- a/Formula/rapidjson.rb +++ b/Formula/rapidjson.rb @@ -24,8 +24,6 @@ class Rapidjson < Formula depends_on "cmake" => :build depends_on "doxygen" => :build - conflicts_with "mesos", because: "mesos installs a copy of rapidjson headers" - def install system "cmake", ".", *std_cmake_args system "make", "install" From bf749d6863d923ccb7d6ab91024c602d47ca835b Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Mon, 31 Jul 2023 19:38:43 -0700 Subject: [PATCH 130/133] uutils-coreutils: remove conflict --- Formula/uutils-coreutils.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/Formula/uutils-coreutils.rb b/Formula/uutils-coreutils.rb index cb83132a0d3c7d..2629f2785ead7d 100644 --- a/Formula/uutils-coreutils.rb +++ b/Formula/uutils-coreutils.rb @@ -23,7 +23,6 @@ class UutilsCoreutils < Formula on_macos do conflicts_with "coreutils", because: "uutils-coreutils and coreutils install the same binaries" conflicts_with "aardvark_shell_utils", because: "both install `realpath` binaries" - conflicts_with "truncate", because: "both install `truncate` binaries" end def install From 249a86406c249f4cc6bb9af604d5cf2edd924998 Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Mon, 31 Jul 2023 19:39:27 -0700 Subject: [PATCH 131/133] aws-cfn-tools: remove formula --- Formula/aws-cfn-tools.rb | 44 ---------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 Formula/aws-cfn-tools.rb diff --git a/Formula/aws-cfn-tools.rb b/Formula/aws-cfn-tools.rb deleted file mode 100644 index da25ecb3ff13fd..00000000000000 --- a/Formula/aws-cfn-tools.rb +++ /dev/null @@ -1,44 +0,0 @@ -class AwsCfnTools < Formula - desc "Client for Amazon CloudFormation web service" - homepage "https://aws.amazon.com/developertools/AWS-CloudFormation/2555753788650372" - url "https://cloudformation-cli.s3.amazonaws.com/AWSCloudFormation-cli.zip" - version "1.0.12" - sha256 "382e3e951833fd77235fae41c1742224d68bdf165e1ace4200ee88c01ac29a90" - revision 1 - - bottle do - sha256 cellar: :any_skip_relocation, all: "62fe9878c486068d70c77637c2b2ce55d3f4fbb07b6aba7c65ecd8f1aaaee7c4" - end - - disable! date: "2022-08-04", because: :deprecated_upstream - - depends_on "ec2-api-tools" - depends_on "openjdk" - - def install - env = { JAVA_HOME: Formula["openjdk"].opt_prefix, AWS_CLOUDFORMATION_HOME: libexec } - rm Dir["bin/*.cmd"] # Remove Windows versions - libexec.install Dir["*"] - Pathname.glob("#{libexec}/bin/*") do |file| - next if file.directory? - - basename = file.basename - next if basename.to_s == "service" - - (bin/basename).write_env_script file, env - end - end - - def caveats - <<~EOS - Before you can use these tools you must export some variables to your $SHELL. - export AWS_ACCESS_KEY="" - export AWS_SECRET_KEY="" - export AWS_CREDENTIAL_FILE="" - EOS - end - - test do - assert_match version.to_s, shell_output("#{bin}/cfn-version") - end -end From 5bf00b7405f02452496f013518c766bb670fc745 Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Mon, 31 Jul 2023 19:43:21 -0700 Subject: [PATCH 132/133] elb-tools: remove formula --- Formula/elb-tools.rb | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 Formula/elb-tools.rb diff --git a/Formula/elb-tools.rb b/Formula/elb-tools.rb deleted file mode 100644 index 4091ebccf2cfba..00000000000000 --- a/Formula/elb-tools.rb +++ /dev/null @@ -1,44 +0,0 @@ -class ElbTools < Formula - desc "Client interface to the Amazon Elastic Load Balancing web service" - homepage "https://aws.amazon.com/developertools/2536" - url "https://ec2-downloads.s3.amazonaws.com/ElasticLoadBalancing.zip" - version "1.0.35.0" - sha256 "31d9aa0ca579c270f8e3579f967b6048bc070802b7b41a30a9fa090fbffba62b" - revision 1 - - bottle do - sha256 cellar: :any_skip_relocation, all: "8dd3007e8367fe8e0c4b4b85889a68d7196a954a27add9cb163c5965daa51da1" - end - - disable! date: "2022-08-04", because: :deprecated_upstream - - depends_on "ec2-api-tools" - depends_on "openjdk" - - def install - env = { JAVA_HOME: Formula["openjdk"].opt_prefix, AWS_ELB_HOME: libexec } - rm Dir["bin/*.cmd"] # Remove Windows versions - libexec.install Dir["*"] - Pathname.glob("#{libexec}/bin/*") do |file| - next if file.directory? - - basename = file.basename - next if basename.to_s == "service" - - (bin/basename).write_env_script file, env - end - end - - def caveats - <<~EOS - Before you can use these tools you must export some variables to your $SHELL. - export AWS_ACCESS_KEY="" - export AWS_SECRET_KEY="" - export AWS_CREDENTIAL_FILE="" - EOS - end - - test do - assert_match version.to_s, shell_output("#{bin}/elb-version") - end -end From efc5d02588ae28b4f607fba076a5689702c377a6 Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Mon, 31 Jul 2023 20:11:56 -0700 Subject: [PATCH 133/133] elasticsearch@6: add alias --- Aliases/elasticsearch | 1 + 1 file changed, 1 insertion(+) create mode 120000 Aliases/elasticsearch diff --git a/Aliases/elasticsearch b/Aliases/elasticsearch new file mode 120000 index 00000000000000..100da9e55cf492 --- /dev/null +++ b/Aliases/elasticsearch @@ -0,0 +1 @@ +../Formula/elasticsearch@6.rb \ No newline at end of file