Package Details: pypy3-build 1.2.2.post1-4

Git Clone URL: https://aur.archlinux.org/pypy3-build.git (read-only, click to copy)
Package Base: pypy3-build
Description: A simple, correct PEP 517 build frontend
Upstream URL: https://build.pypa.io
Licenses: MIT
Submitter: carlosal1015
Maintainer: carlosal1015
Last Packager: carlosal1015
Votes: 0
Popularity: 0.000000
First Submitted: 2024-08-29 14:52 (UTC)
Last Updated: 2025-06-03 15:24 (UTC)

Pinned Comments

carlosal1015 commented on 2024-09-15 03:58 (UTC)

Pre-built binaries of this package and its dependencies can be found in the arch4edu repository.

Latest Comments

carlosal1015 commented on 2025-06-03 15:26 (UTC)

@maksverver You're right. I'll leave it as default.

maksverver commented on 2025-06-03 13:20 (UTC)

This PKGBUILD conflicts with python-build, because it installs pyproject-build in /usr/bin/ instead of /opt/pypy3/bin.

I was able to fix it by simply removing these lines from the PKGBUILD:

mkdir -p "$pkgdir/usr"
mv "${pkgdir}/opt/pypy3/bin" "$pkgdir/usr/bin"

Is there a particular reason they were there in the first place? It seems like a better solution would be for pypy users to invoke /opt/pypy3/bin/pyproject-build directly, or to add /opt/pypy3/bin to their PATH (before /usr/bin!) so the pypy3 binaries are found first.

petronny commented on 2025-06-01 15:34 (UTC)

Bootstrap build

# Maintainer: Carlos Aznarán <caznaranl@uni.pe>
_base=build
pkgname=pypy3-${_base}
pkgver=1.2.2
pkgrel=1
pkgdesc="A simple, correct PEP 517 build frontend"
arch=(any)
url="https://${_base}.pypa.io"
license=(MIT)
makedepends=(pypy3-installer pypy3-flit-core)
source=(${_base}-${pkgver}.tar.gz::https://github.com/pypa/${_base}/archive/${pkgver}.tar.gz)
sha512sums=('91e14208680915414a87bd3ba31229510a78d82d5504efc40cf7f9c6a7a698cfa4ff523f85c2dd6a56b5e313fae57134f64f2c328c88cd40efe40236b0b661cc')

build() {
  cd ${_base}-${pkgver}
  pypy3 -m flit_core.wheel
}

package() {
  cd ${_base}-${pkgver}
  pypy3 -m installer --destdir="$pkgdir" dist/*.whl
  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
}

carlosal1015 commented on 2024-09-15 03:58 (UTC)

Pre-built binaries of this package and its dependencies can be found in the arch4edu repository.