Package Details: pypy3-pybind11 3.0.1-1

Git Clone URL: https://aur.archlinux.org/pypy3-pybind11.git (read-only, click to copy)
Package Base: pypy3-pybind11
Description: A lightweight header-only library that exposes C++ types in Python and vice versa
Upstream URL: https://pybind11.readthedocs.org
Licenses: BSD-3-Clause
Submitter: xantares
Maintainer: carlosal1015
Last Packager: carlosal1015
Votes: 0
Popularity: 0.000000
First Submitted: 2022-05-03 18:24 (UTC)
Last Updated: 2025-08-23 23:56 (UTC)

Latest Comments

robertxy commented on 2025-07-21 22:41 (UTC)

pybind11 remove the setup.py and the setup dont work by default. When i try to update to pybind11 3.0.0-1 i get an error that said the setup.py not found.

They give me this link "https://packaging.python.org/en/latest/discussions/setup-py-deprecated/#what-commands-should-be-used-instead "

I change the following lines and for me work:

build() { cd ${_base}-${pkgver} pypy3 setup.py build }

package() { cd ${_base}-${pkgver} PYTHONPYCACHEPREFIX="${PWD}/.cache/cpython/" pypy3 setup.py install --prefix=/opt/pypy3 --root="$pkgdir" --skip-build --optimize='1' install -D -m644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}" }

for

build() { cd ${_base}-${pkgver} python -m build }

package() { cd ${_base}-${pkgver} PYTHONPYCACHEPREFIX="${PWD}/.cache/cpython/" pypy3 -m pip install . --prefix=/opt/pypy3 --root="$pkgdir" install -D -m644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}" }