Commits
Marcus Calhoun-Lopez authored ee22bd0f6de
1 1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
2 2 | |
3 3 | PortSystem 1.0 |
4 4 | PortGroup github 1.0 |
5 5 | PortGroup cmake 1.1 |
6 6 | |
7 - | github.setup pybind pybind11 2.3.0 v |
8 - | revision 1 |
7 + | github.setup pybind pybind11 2.4.3 v |
8 + | revision 0 |
9 9 | categories devel |
10 10 | platforms darwin |
11 11 | maintainers {mcalhoun @MarcusCalhoun-Lopez} openmaintainer |
12 12 | license BSD |
13 13 | |
14 14 | description Extension modules for pybind11, which provides seamless operability between C++11 and Python |
15 15 | |
16 16 | long_description Extension modules for pybind11, which is a lightweight header-only library that \ |
17 17 | exposes C++ types in Python and vice versa, mainly \ |
18 18 | to create Python bindings of existing C++ code. |
19 19 | |
20 20 | installs_libs no |
21 21 | supported_archs noarch |
22 22 | |
23 23 | compiler.cxx_standard \ |
24 24 | 2011 |
25 25 | |
26 - | checksums rmd160 fdb97680c25104103572ebfae290282717b41bd0 \ |
27 - | sha256 7f33b38f9a5ea9ba0b57ee0fd574b68cef669e3a8cf0d8bced24f865364c6631 \ |
28 - | size 564575 |
26 + | checksums rmd160 fd274df1be114d7cfd81c4865fb8db16932face3 \ |
27 + | sha256 7954a67e03ceca309402b65ff1eb61b78adc59cf4c18827bd572812253ed7036 \ |
28 + | size 570697 |
29 29 | |
30 30 | set python_branch 3.7 |
31 31 | set python_version [string map {. ""} ${python_branch}] |
32 32 | |
33 33 | configure.args-append \ |
34 34 | -DPYBIND11_PYTHON_VERSION=${python_branch} \ |
35 35 | -DPYBIND11_TEST=NO |
36 36 | |
37 37 | depends_build-append \ |
38 38 | port:python${python_version} \ |
39 39 | port:py${python_version}-setuptools |