diff --git a/programming/library/expected/actions.py b/programming/library/expected/actions.py index 59a046f76c..9b54f0ba79 100644 --- a/programming/library/expected/actions.py +++ b/programming/library/expected/actions.py @@ -1,29 +1,28 @@ -#!/usr/bin/env python +#!/usr/bin/python # -*- coding: utf-8 -*- # # Licensed under the GNU General Public License, version 3. -# See the file http://www.gnu.org/licenses/gpl.txt +# See the file https://www.gnu.org/licenses/gpl-3.0.txt -from pisi.actionsapi import cmaketools, shelltools -from pisi.actionsapi import pisitools +from pisi.actionsapi import cmaketools, mesontools, pisitools +l = ''.join([ + ' -DCMAKE_BUILD_TYPE=Release', + ' -DCATCH_ENABLE_WERROR=ON', + ' -DEXPECTED_BUILD_PACKAGE_DEB=OFF ' + ' -Bbuild -G Ninja -L ' + ]) def setup(): - cmaketools.configure('-B build') - + cmaketools.configure(l) def build(): - shelltools.cd('build') - cmaketools.make() - + mesontools.build() def check(): - shelltools.cd('build') - shelltools.system('./tests') - + mesontools.build("test") def install(): - shelltools.cd('build') - cmaketools.install() + mesontools.install() - pisitools.dodoc('../COPYING') + pisitools.dodoc("COPYING") diff --git a/programming/library/expected/pspec.xml b/programming/library/expected/pspec.xml index 8ace17ab7c..9d1a653a36 100644 --- a/programming/library/expected/pspec.xml +++ b/programming/library/expected/pspec.xml @@ -1,5 +1,5 @@ - + expected @@ -12,10 +12,10 @@ library Single header implementation of std::expected with functional-style extensions. std::expected is proposed as the preferred way to represent object which will either have an expected value, or an unexpected value giving information about why something failed. Unfortunately, chaining together many computations which may fail can be verbose, as error-checking code will be mixed in with the actual programming logic. This implementation provides a number of utilities to make coding with expected cleaner. - https://github.com/TartanLlama/expected/archive/v1.0.0.tar.gz + https://github.com/TartanLlama/expected/archive/refs/tags/v1.1.0.tar.gz cmake - git + ninja catch2 @@ -24,12 +24,18 @@ expected-devel /usr/include - /usr/share/doc - /usr/share/cmake + /usr/share + + 2024-08-18 + 1.1.0 + Version bump. + Safa Arıman + safa@ariman.gen.tr + 2020-03-17 1.0.0