From af68769007abcfdd498740093aee1976599f1fee Mon Sep 17 00:00:00 2001 From: Martin Robinson Date: Wed, 1 Nov 2023 21:01:01 +0100 Subject: [PATCH] Remove an unused file (#30662) This was probably used for the now removed homebrew package. --- python/servo/servo-binary-formula.rb.in | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 python/servo/servo-binary-formula.rb.in diff --git a/python/servo/servo-binary-formula.rb.in b/python/servo/servo-binary-formula.rb.in deleted file mode 100644 index 7c0254c9ebb..00000000000 --- a/python/servo/servo-binary-formula.rb.in +++ /dev/null @@ -1,21 +0,0 @@ -# This Source Code Form is subject to the terms of the Mozilla Public -# License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at https://mozilla.org/MPL/2.0/. - -class ServoBin < Formula - desc "Servo, the Parallel Browser Engine Project (binary version)" - homepage "https://servo.org" - url "PACKAGEURL" - version "VERSION" - sha256 "SHA" - - bottle :unneeded - - def install - prefix.install "bin", "libexec", "resources" - end - - test do - system bin/"servo", "-o", "/dev/null", "-x", "http://example.com" - end -end