🔒 Repository is read-only – file editing is disabled.

recipes/utils/python-werkzeug/PAGBUILD.yaml main

36 linii Raw ← Powrót
123456789101112131415161718192021222324252627282930313233343536
pkgname: 'python-werkzeug'
pkgver: '3.1.8'
pkgrel: '1'
pkgdesc: 'Swiss Army knife of Python web development'
url: 'https://pypi.org/project/Werkzeug/'
arch: x86_64
depends: []
makedepends:
- 'python-setuptools'
- 'python-wheel'
- 'python-flit-core'
- 'python-markupsafe'

source:
- 'https://github.com/pallets/werkzeug/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz'

sha256sums:
- SKIP

build: |
  cd werkzeug-${pkgver}

  pip3 wheel -w dist \
  --no-build-isolation \
  --no-deps $PWD
  pip3 install --no-index \
  --find-links dist \
  --no-cache-dir    \
  --no-user         \
  --root=${PKGDIR}       \
  werkzeug

  find ${PKGDIR} -type d -name vendor -o -name tests |xargs rm -rf 

package: |
  true