muparser: version bump to 2.3.4

This commit is contained in:
suvari
2023-10-14 14:29:11 +03:00
parent 5e02028122
commit 22bca4e49f
2 changed files with 25 additions and 13 deletions
+9 -9
View File
@@ -1,24 +1,24 @@
#!/usr/bin/python #!/usr/bin/env python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Licensed under the GNU General Public License, version 3. # Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt # See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import autotools from pisi.actionsapi import cmaketools
from pisi.actionsapi import pisitools from pisi.actionsapi import pisitools
from pisi.actionsapi import get from pisi.actionsapi import get
def setup(): def setup():
autotools.configure("--enable-shared=yes \ cmaketools.configure("-DCMAKE_INSTALL_PREFIX='/usr'")
--enable-debug=no \
--enable-samples=no")
def build(): def build():
autotools.make() cmaketools.make()
def check():
cmaketools.make("test")
def install(): def install():
autotools.install() cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("Changes.txt", "License.txt") pisitools.dodoc("README*", "LICENSE")
+16 -4
View File
@@ -1,9 +1,9 @@
<?xml version="1.0" ?> <?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> <PISI>
<Source> <Source>
<Name>muparser</Name> <Name>muparser</Name>
<Homepage>http://muparser.beltoforion.de/</Homepage> <Homepage>https://beltoforion.de/en/muparser/</Homepage>
<Packager> <Packager>
<Name>PisiLinux Community</Name> <Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email> <Email>admins@pisilinux.org</Email>
@@ -12,16 +12,20 @@
<IsA>library</IsA> <IsA>library</IsA>
<Summary>Mathematical expressions parser library</Summary> <Summary>Mathematical expressions parser library</Summary>
<Description>muparser is a mathematical expressions parser library. It is based on transforming an expression into a bytecode and precalculating constant parts of it.</Description> <Description>muparser is a mathematical expressions parser library. It is based on transforming an expression into a bytecode and precalculating constant parts of it.</Description>
<Archive sha1sum="363ec441935cc7b74f9bb0e5f2af9a801f0da712" type="targz">https://github.com/beltoforion/muparser/archive/v2.2.6.tar.gz</Archive> <Archive sha1sum="e58180f9b5e321404f0354e6d473da3fa125c676" type="targz">https://github.com/beltoforion/muparser/archive/refs/tags/v2.3.4.tar.gz</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
</BuildDependencies>
</Source> </Source>
<Package> <Package>
<Name>muparser</Name> <Name>muparser</Name>
<RuntimeDependencies> <RuntimeDependencies>
<Dependency>libgcc</Dependency> <Dependency>libgcc</Dependency>
<Dependency>libgomp</Dependency>
</RuntimeDependencies> </RuntimeDependencies>
<Files> <Files>
<Path fileType="library">/usr/lib</Path> <Path fileType="library">/usr/lib/libmuparser.so*</Path>
<Path fileType="doc">/usr/share/doc</Path> <Path fileType="doc">/usr/share/doc</Path>
</Files> </Files>
</Package> </Package>
@@ -34,10 +38,18 @@
<Files> <Files>
<Path fileType="header">/usr/include</Path> <Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path> <Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="library">/usr/lib/cmake/muparser</Path>
</Files> </Files>
</Package> </Package>
<History> <History>
<Update release="6">
<Date>2023-10-14</Date>
<Version>2.3.4</Version>
<Comment>Version bump</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
<Update release="5"> <Update release="5">
<Date>2020-01-27</Date> <Date>2020-01-27</Date>
<Version>2.2.6</Version> <Version>2.2.6</Version>