@@ -20,7 +20,6 @@
|
||||
https://github.com/nuspell/nuspell/archive/refs/tags/v5.1.6.tar.gz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>git</Dependency>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>catch2</Dependency>
|
||||
<Dependency>pandoc-bin</Dependency>
|
||||
|
||||
@@ -1,37 +1,26 @@
|
||||
#!/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 autotools, cmaketools, shelltools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import cmaketools, mesontools
|
||||
|
||||
l = ''.join([
|
||||
' -DCMAKE_BUILD_TYPE=Release',
|
||||
' -DCMAKE_INSTALL_PREFIX=/usr',
|
||||
' -DBUILD_SHARED_LIBS=1',
|
||||
' -Bbuild -G Ninja -L '
|
||||
])
|
||||
|
||||
def setup():
|
||||
parameters = ' '.join([
|
||||
'-B build',
|
||||
'-DCMAKE_INSTALL_LIBDIR=lib',
|
||||
'-DCATCH_USE_VALGRIND=OFF',
|
||||
'-DCATCH_BUILD_EXAMPLES=OFF',
|
||||
'-DCATCH_ENABLE_COVERAGE=OFF',
|
||||
'-DCATCH_ENABLE_WERROR=OFF',
|
||||
'-DBUILD_TESTING=ON'
|
||||
])
|
||||
cmaketools.configure(parameters)
|
||||
|
||||
cmaketools.configure(l)
|
||||
|
||||
def build():
|
||||
shelltools.cd('build')
|
||||
autotools.make()
|
||||
|
||||
mesontools.build()
|
||||
|
||||
def check():
|
||||
shelltools.cd('build')
|
||||
autotools.make('test')
|
||||
|
||||
pass
|
||||
|
||||
def install():
|
||||
shelltools.cd('build')
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
mesontools.install()
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>catch2</Name>
|
||||
<Homepage>https://github.com/catchorg/catch2</Homepage>
|
||||
<Homepage>https://github.com/catchorg/Catch2/</Homepage>
|
||||
<Packager>
|
||||
<Name>Safa Arıman</Name>
|
||||
<Email>safaariman@pisilinux.org</Email>
|
||||
@@ -12,9 +12,10 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>C++ Automated Test Cases in Headers</Summary>
|
||||
<Description>Catch2 is a multi-paradigm test framework for C++, which also supports Objective-C. It is primarily distributed as a single header file, although certain extensions may require additional headers.</Description>
|
||||
<Archive sha1sum="dcdb80e8215451fb99c8a24ca375274f2bd5f233" type="targz">https://github.com/catchorg/Catch2/archive/v2.13.9.tar.gz</Archive>
|
||||
<Archive sha1sum="00e054a9ff83928305ed790370a8ad50e411430b" type="targz">https://github.com/catchorg/Catch2/archive/refs/tags/v3.7.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>ninja</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
@@ -24,12 +25,18 @@
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2024-08-18</Date>
|
||||
<Version>3.7.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2022-11-05</Date>
|
||||
<Version>2.13.9</Version>
|
||||
|
||||
@@ -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")
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>expected</Name>
|
||||
@@ -12,10 +12,10 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>Single header implementation of std::expected with functional-style extensions.</Summary>
|
||||
<Description>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.</Description>
|
||||
<Archive sha1sum="2ce5120ef6b4238b092a73214a48516462f809ce" type="targz">https://github.com/TartanLlama/expected/archive/v1.0.0.tar.gz</Archive>
|
||||
<Archive sha1sum="ae311c9ad746d944d18e8cf873d0b1f04bff4acb" type="targz">https://github.com/TartanLlama/expected/archive/refs/tags/v1.1.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>git</Dependency>
|
||||
<Dependency>ninja</Dependency>
|
||||
<Dependency>catch2</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
@@ -24,12 +24,18 @@
|
||||
<Name>expected-devel</Name>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share/cmake</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2024-08-18</Date>
|
||||
<Version>1.1.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Safa Arıman</Name>
|
||||
<Email>safa@ariman.gen.tr</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2020-03-17</Date>
|
||||
<Version>1.0.0</Version>
|
||||
|
||||
Reference in New Issue
Block a user