From 609f361f935bedb57eda7d1bf274aaa860a8c6fa Mon Sep 17 00:00:00 2001 From: Toyohisa Kameyama Date: Tue, 29 Sep 2020 21:12:55 +0900 Subject: [PATCH] texstudio: added v3.0.0 and v3.0.1. (#19040) --- var/spack/repos/builtin/packages/texstudio/package.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/var/spack/repos/builtin/packages/texstudio/package.py b/var/spack/repos/builtin/packages/texstudio/package.py index 888a8679a8b..babfaa078cd 100644 --- a/var/spack/repos/builtin/packages/texstudio/package.py +++ b/var/spack/repos/builtin/packages/texstudio/package.py @@ -7,14 +7,17 @@ class Texstudio(QMakePackage): - """TeXstudio is a fully featured LaTeX editor, whose goal is to make writing - LaTeX documents as easy and comfortable as possible.""" + """TeXstudio is a fully featured LaTeX editor, whose goal is to make + writing LaTeX documents as easy and comfortable as possible.""" homepage = "http://www.texstudio.org" url = "https://github.com/texstudio-org/texstudio/archive/2.12.16.tar.gz" git = "https://github.com/texstudio-org/texstudio.git" version('master', branch='master') + version('3.0.1', sha256='0a2a7d266fecdfa3ea4a454fd66833a54590e610f880c6a97644cdcfc2116191') + version('3.0.0', sha256='c1f704f84b2007621c5f8ec7fd3b4cf96693f98fd25724ee8fe9c3dccdc7ab2a') + version('2.12.16', sha256='a14b8912bfd15d982cfbe5f00deed37ca85fb6e38d3aa0c2dac23b4ecaab0984') version('2.12.14', sha256='61df71f368bbf21f865645534f63840fd48dbd2996d6d0188aa26d3b647fede0') version('2.12.12', sha256='5978daa806c616f9a1eea231bb613f0bc1037d7d2435ee5ca6b14fe88a2caa8c') @@ -28,6 +31,8 @@ class Texstudio(QMakePackage): # See https://github.com/texstudio-org/texstudio/wiki/Compiling depends_on('qt@4.4.4:5.9.999,5.11.0:') + conflicts('target=aarch64:', when='@:2.12.22') + def qmake_args(self): args = ['PREFIX={0}'.format(self.prefix)]