diff options
Diffstat (limited to 'cscript')
| -rw-r--r-- | cscript | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -18,7 +18,7 @@ # along with DCP-o-matic. If not, see <http://www.gnu.org/licenses/>. # -# This file is read by the tool "cdist" (git://git.carlh.net/git/cdist.git) +# This file is read by the tool "cdist" (https://git.carlh.net/git/cdist.git) # which is used to build distribution packages and run tests. It relies on # quite a bit of other stuff (e.g. some docker images and qemu VMs) so is # unlikely to be so useful for most people. @@ -506,8 +506,8 @@ def build_with_cpp17(target): def dependencies(target, options): - deps = [('libdcp', 'v1.10.55', {'c++17': build_with_cpp17(target)})] - deps.append(('libsub', 'v1.6.59')) + deps = [('libdcp', 'ee236adf5362053a8ae3ce28242db6d4265b9938', {'c++17': build_with_cpp17(target)})] + deps.append(('libsub', 'v1.6.61')) deps.append(('leqm-nrt', 'd75d0af984d9c14bfefca8f1bdbc215c3bf3a388')) if target.platform != 'linux' or target.distro != 'arch': # We get our OpenSSL libraries from the environment, but we @@ -529,7 +529,7 @@ option_defaults = { "gui": True, "variant": None } def build_tests(target): # Currently we only build tests on macOS, Windows, some Ubuntu versions and Arch return ( - (target.platform == 'linux' and target.distro == 'ubuntu' and target.version in ['18.04', '22.04', '24.04', '25.10']) or + (target.platform == 'linux' and target.distro == 'ubuntu' and target.version in ['18.04', '22.04', '24.04', '26.04']) or (target.platform == 'linux' and target.distro == 'arch') or (target.platform == 'osx') or (target.platform == 'windows') @@ -583,7 +583,7 @@ def configure_options(target, options, for_package=False): if target.platform == 'linux' and ( (target.distro == 'ubuntu' and target.version == "24.04") or - (target.distro == 'fedora' and target.version == "42") + (target.distro == 'fedora' and target.version in ("42", "43")) ): opt += ' --enable-grok' |
