Qscintilla: added v2.12.0, fixed build (#21902)

This commit is contained in:
Olivier Cessenat 2021-02-26 19:13:25 +01:00 committed by GitHub
parent 5578c07b51
commit 2484ed0281
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,25 +13,29 @@ class Qscintilla(QMakePackage):
""" """
homepage = "https://www.riverbankcomputing.com/software/qscintilla/intro" homepage = "https://www.riverbankcomputing.com/software/qscintilla/intro"
url = "https://www.riverbankcomputing.com/static/Downloads/QScintilla/2.11.2/QScintilla_gpl-2.11.2.tar.gz" url = "https://www.riverbankcomputing.com/static/Downloads/QScintilla/2.12.0/QScintilla_src-2.12.0.tar.gz"
version('2.11.2', sha256='029bdc476a069fda2cea3cd937ba19cc7fa614fb90578caef98ed703b658f4a1') # Directory structure is changed in latest release, logic is lost
# Newer versions of Qscintilla won't build, so prefer the following version version('2.12.0', sha256='a4cc9e7d2130ecfcdb18afb43b813ef122473f6f35deff747415fbc2fe0c60ed', url='https://www.riverbankcomputing.com/static/Downloads/QScintilla/2.12.0/QScintilla_src-2.12.0.tar.gz')
version('2.10.2', sha256='14b31d20717eed95ea9bea4cd16e5e1b72cee7ebac647cba878e0f6db6a65ed0', preferred=True)
# Last standard release dates back to 2021/11/23
version('2.11.6', sha256='e7346057db47d2fb384467fafccfcb13aa0741373c5d593bc72b55b2f0dd20a7', preferred=True, url='https://www.riverbankcomputing.com/static/Downloads/QScintilla/2.11.6/QScintilla-2.11.6.tar.gz')
version('2.11.2', sha256='029bdc476a069fda2cea3cd937ba19cc7fa614fb90578caef98ed703b658f4a1', url='https://www.riverbankcomputing.com/static/Downloads/QScintilla/2.11.2/QScintilla_gpl-2.11.2.tar.gz')
version('2.10.2', sha256='14b31d20717eed95ea9bea4cd16e5e1b72cee7ebac647cba878e0f6db6a65ed0', url='https://www.riverbankcomputing.com/static/Downloads/QScintilla/2.10.2/QScintilla-2.10.2.tar.gz')
variant('designer', default=False, description="Enable pluging for Qt-Designer") variant('designer', default=False, description="Enable pluging for Qt-Designer")
variant('python', default=False, description="Build python bindings") variant('python', default=False, description="Build python bindings")
depends_on('qt+opengl', when='+python')
depends_on('qt') depends_on('qt')
depends_on('py-pyqt5 +qsci_api', type=('build', 'run'), when='+python ^qt@5') depends_on('py-pyqt5 +qsci_api', type=('build', 'run'), when='+python ^qt@5')
depends_on('py-pyqt4 +qsci_api', type=('build', 'run'), when='+python ^qt@4') depends_on('py-pyqt4 +qsci_api', type=('build', 'run'), when='+python ^qt@4')
depends_on('python', type=('build', 'run'), when='+python') depends_on('python', type=('build', 'run'), when='+python')
# adter install inquires py-sip variant : so we need to have it
depends_on('py-sip', type='build', when='~python')
extends('python', when='+python') extends('python', when='+python')
build_directory = 'Qt4Qt5'
@run_before('qmake')
def chdir(self):
os.chdir(str(self.stage.source_path) + '/Qt4Qt5')
def qmake_args(self): def qmake_args(self):
# below, DEFINES ... gets rid of ...regex...errors during build # below, DEFINES ... gets rid of ...regex...errors during build
@ -50,7 +54,7 @@ def setup_run_environment(self, env):
# Fix install prefix # Fix install prefix
@run_after('qmake') @run_after('qmake')
def fix_install_path(self): def fix_install_path(self):
makefile = FileFilter('Makefile') makefile = FileFilter(join_path('Qt4Qt5', 'Makefile'))
makefile.filter(r'\$\(INSTALL_ROOT\)' + makefile.filter(r'\$\(INSTALL_ROOT\)' +
self.spec['qt'].prefix, '$(INSTALL_ROOT)') self.spec['qt'].prefix, '$(INSTALL_ROOT)')
@ -128,7 +132,10 @@ def make_qsci(self):
makefile = FileFilter('Qsci/Makefile') makefile = FileFilter('Qsci/Makefile')
makefile.filter(r'\$\(INSTALL_ROOT\)', '') makefile.filter(r'\$\(INSTALL_ROOT\)', '')
make('install') if '@2.11:' in self.spec:
make('install', parallel=False)
else:
make('install')
@run_after('install') @run_after('install')
def extend_path_setup(self): def extend_path_setup(self):