From adbcbd3b13964c4067df24a2e1a6ee489ce74e6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=BE=E6=B5=A6=20=E7=9F=A5=E4=B9=9F=20Matsuura=20Tomoy?= =?UTF-8?q?a?= Date: Thu, 9 Nov 2023 15:49:58 +0900 Subject: [PATCH] bumped flatcam-evo version --- flatcam-evo.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/flatcam-evo.rb b/flatcam-evo.rb index 487799d..10b2a93 100644 --- a/flatcam-evo.rb +++ b/flatcam-evo.rb @@ -2,13 +2,13 @@ class FlatcamEvo < Formula include Language::Python::Virtualenv desc "2D Computer-Aided PCB Manufacturing(Beta-evo)" homepage "https://bitbucket.org/marius_stanciu/flatcam_beta" - url "https://bitbucket.org/marius_stanciu/flatcam_beta.git", branch: "Beta_8.995", revision: "e965ca54947628e1f100bbab7a178f140d2849a7" + url "https://bitbucket.org/marius_stanciu/flatcam_beta.git", branch: "Beta_8.995", revision: "a7c909273b4fcdf7b092eadf242f214b8011f69e" version "8.9.95" depends_on "pkg-config" => :build depends_on "freetype" depends_on "gdal" depends_on "geos" - depends_on "pyqt@5" + depends_on "pyqt" depends_on "python" depends_on "python-tk" depends_on "qpdf" @@ -16,11 +16,11 @@ class FlatcamEvo < Formula def install virtualenv_create(libexec, "python3", without_pip: false) - inreplace "flatcam.py", "import sys", "#!#{libexec}/bin/python3\nimport sys" + inreplace "flatcam.py", "\nimport sys", "#!#{libexec}/bin/python3\nimport sys" system libexec/"bin/pip", "install", "-r", "requirements.txt" libexec.install Dir["*.py", "appCommon", "appEditors", "appGUI", \ "appHandlers", "appObjects", "appParsers", "appPlugins", "assets", "config",\ - "descartes", "doc", "locale", "locale_template", \ + "descartes", "doc", "libs", "locale", "locale_template", \ "preprocessors", "tclCommands", "Utils",] bin.install_symlink libexec/"flatcam.py" => "flatcam-evo" system "chmod", "+x", libexec/"flatcam.py"