summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaura Weber <LRWeber@users.noreply.github.com>2023-04-02 10:53:54 -0700
committerGitHub <noreply@github.com>2023-04-02 19:53:54 +0200
commit2117e37a0bb27f385af52037c298e02bec9870c6 (patch)
tree7842f71dc12005e727cfaff28357ed68226c2752
parentac62817ba0c9b7fb64a63d3cfc135081a1575546 (diff)
downloadspack-2117e37a0bb27f385af52037c298e02bec9870c6.tar.gz
spack-2117e37a0bb27f385af52037c298e02bec9870c6.tar.bz2
spack-2117e37a0bb27f385af52037c298e02bec9870c6.tar.xz
spack-2117e37a0bb27f385af52037c298e02bec9870c6.zip
sublime-text: Fix the dependencies of the recent update (#36562)
-rw-r--r--var/spack/repos/builtin/packages/sublime-text/package.py16
1 files changed, 9 insertions, 7 deletions
diff --git a/var/spack/repos/builtin/packages/sublime-text/package.py b/var/spack/repos/builtin/packages/sublime-text/package.py
index a905c1c293..230c5d94e7 100644
--- a/var/spack/repos/builtin/packages/sublime-text/package.py
+++ b/var/spack/repos/builtin/packages/sublime-text/package.py
@@ -13,6 +13,8 @@ class SublimeText(Package):
homepage = "https://www.sublimetext.com/"
url = "https://download.sublimetext.com/sublime_text_build_4143_x64.tar.xz"
+ maintainers("LRWeber")
+
version("4.4143", sha256="7de862c38d19367414117110328dded754ac709fed54c8cc5cb0737c894c073c")
version(
"3.2.2.3211", sha256="0b3c8ca5e6df376c3c24a4b9ac2e3b391333f73b229bc6e87d0b4a5f636d74ee"
@@ -32,13 +34,13 @@ class SublimeText(Package):
# depends_on("libgobject", type="run")
depends_on("gtkplus@:2", type="run", when="@:3.1")
- depends_on("gtkplus@3:", type="run", when="@3.2:")
- depends_on("glib", type="run")
- depends_on("libx11", type="run")
- depends_on("pcre", type="run")
- depends_on("libffi", type="run")
- depends_on("libxcb", type="run")
- depends_on("libxau", type="run")
+ depends_on("gtkplus@3:", type="run", when="@3.2:3.2.2")
+ depends_on("glib", type="run", when="@:3.2.2")
+ depends_on("libx11", type="run", when="@:3.2.2")
+ depends_on("pcre", type="run", when="@:3.2.2")
+ depends_on("libffi", type="run", when="@:3.2.2")
+ depends_on("libxcb", type="run", when="@:3.2.2")
+ depends_on("libxau", type="run", when="@:3.2.2")
def url_for_version(self, version):
if version[0] == 2: