pybind11.

This commit is contained in:
4fury-c3440d8
2023-01-26 00:46:01 +03:00
parent 47da80d5e0
commit beab843d83
2 changed files with 40 additions and 19 deletions
+14 -10
View File
@@ -1,20 +1,24 @@
#!/usr/bin/env python #!/usr/bin/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 https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import cmaketools from pisi.actionsapi import pythonmodules, cmaketools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get j = ''.join([
' -DPYBIND11_FINDPYTHON=ON',
' -DUSE_PYTHON_INCLUDE_DIR=OFF',
' -B_build -L '
])
def setup(): def setup():
cmaketools.configure() cmaketools.configure(j)
def build(): def build():
cmaketools.make() cmaketools.make("-C _build")
pythonmodules.compile(pyVer = "3")
def install(): def install():
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR()) cmaketools.install("-C _build")
pythonmodules.install(pyVer = "3")
pisitools.dodoc("LICENSE")
+26 -9
View File
@@ -1,5 +1,5 @@
<?xml version="1.0" ?> <?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd"> <!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI> <PISI>
<Source> <Source>
<Name>pybind11</Name> <Name>pybind11</Name>
@@ -12,33 +12,50 @@
<IsA>app</IsA> <IsA>app</IsA>
<Summary>Seamless operability between C++11 and Python</Summary> <Summary>Seamless operability between C++11 and Python</Summary>
<Description>Seamless operability between C++11 and Python</Description> <Description>Seamless operability between C++11 and Python</Description>
<Archive sha1sum="e340be2d61439deaf7bdd4bd273bb8c51b713f26" type="targz">https://github.com/pybind/pybind11/archive/v2.6.2.tar.gz</Archive> <Archive sha1sum="6cd93bee0447ec432803c005fdcdeadc5d425c6d" type="targz">
<!-- https://files.pythonhosted.org/packages/source/p/pybind11/pybind11-2.10.3.tar.gz -->
https://github.com/pybind/pybind11/archive/refs/tags/v2.10.3.tar.gz
</Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>cmake</Dependency> <Dependency>cmake</Dependency>
<Dependency>boost-devel</Dependency> <Dependency>boost-devel</Dependency>
<Dependency>python3-devel</Dependency> <Dependency>python3-devel</Dependency>
<!-- <Dependency>python3-pytest</Dependency> -->
<!-- <Dependency>python3-sphinx</Dependency> -->
<Dependency>python3-setuptools</Dependency> <Dependency>python3-setuptools</Dependency>
<Dependency>python3-pytest</Dependency> <Dependency>python3-importlib_metadata</Dependency>
</BuildDependencies> </BuildDependencies>
<!--
<Patches> <Patches>
<Patch>pybind11.patch</Patch> <!-- <Patch level="1">pybind11.patch</Patch> -->
<Patch level="1">pybind11.patch</Patch>
</Patches> </Patches>
-->
</Source> </Source>
<Package> <Package>
<Name>pybind11</Name> <Name>pybind11</Name>
<RuntimeDependencies> <RuntimeDependencies>
<!-- <Dependency></Dependency> -->
</RuntimeDependencies> </RuntimeDependencies>
<Files> <Files>
<Path fileType="header">/usr/include</Path> <Path fileType="header">/usr/include/pybind11</Path>
<Path fileType="data">/usr/share</Path> <Path fileType="data">/usr/share/cmake/pybind11</Path>
<Path fileType="data">/usr/share/pkgconfig/pybind11.pc</Path>
<Path fileType="executable">/usr/bin/pybind11-config</Path>
<Path fileType="header">/usr/lib/python3.9/site-packages/pybind11/include</Path>
<Path fileType="data">/usr/lib/python3.9</Path>
<Path fileType="data">/usr/lib/python3.9/site-packages/pybind11/share/cmake</Path>
<Path fileType="data">/usr/lib/python3.9/site-packages/pybind11/share/pkgconfig</Path>
<Path fileType="data">/usr/share/doc/pybind11</Path>
</Files> </Files>
</Package> </Package>
<History> <History>
<Update release="2">
<Date>2023-01-26</Date>
<Version>2.10.3</Version>
<Comment>Version bump.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="1"> <Update release="1">
<Date>2021-03-10</Date> <Date>2021-03-10</Date>
<Version>2.6.2</Version> <Version>2.6.2</Version>