From 8305742d75039b250cc48f616a35bccceb07f94c Mon Sep 17 00:00:00 2001 From: Manuela Kuhn <36827019+manuelakuhn@users.noreply.github.com> Date: Tue, 14 Jun 2022 00:20:31 +0200 Subject: exempi: add 2.6.1 and fix boost dependency (#31120) --- var/spack/repos/builtin/packages/exempi/package.py | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/var/spack/repos/builtin/packages/exempi/package.py b/var/spack/repos/builtin/packages/exempi/package.py index 333c636cd8..f1c60decb1 100644 --- a/var/spack/repos/builtin/packages/exempi/package.py +++ b/var/spack/repos/builtin/packages/exempi/package.py @@ -15,25 +15,24 @@ class Exempi(AutotoolsPackage): """ homepage = "https://libopenraw.freedesktop.org/wiki/Exempi" - url = "https://libopenraw.freedesktop.org/download/exempi-2.5.2.tar.bz2" + url = "https://libopenraw.freedesktop.org/download/exempi-2.6.1.tar.bz2" + version('2.6.1', sha256='072451ac1e0dc97ed69a2e5bfc235fd94fe093d837f65584d0e3581af5db18cd') version('2.5.2', sha256='52f54314aefd45945d47a6ecf4bd21f362e6467fa5d0538b0d45a06bc6eaaed5') depends_on('zlib') depends_on('iconv') - depends_on('boost@1.48.0:') + # needs +test variant to prevent following error: + # 118 checking for the Boost unit_test_framework library... no + # >> 119 configure: error: cannot find the flags to link with Boost + # unit_test_framework + depends_on('boost+test@1.79.0:', when='@2.6.1:') + depends_on('boost+test@1.48.0:') depends_on('pkgconfig') depends_on('expat') conflicts('%gcc@:4.5') - def patch(self): - # fix make check: Fix undefined reference to `boost::unit_test::unit_test_main`: - # BOOST_TEST_DYN_LINK only works with shlib and when boost is linked after src: - # https://bugs.launchpad.net/widelands/+bug/662908 - # https://github.com/bincrafters/community/issues/127 - filter_file('#define BOOST_TEST_DYN_LINK', '', 'exempi/tests/test-adobesdk.cpp') - def configure_args(self): args = ['--with-boost={0}'.format(self.spec['boost'].prefix)] -- cgit v1.2.3-60-g2f50