From 78f49c949eab3c5147c88cc19d2107332a780e23 Mon Sep 17 00:00:00 2001 From: xhaa123 Date: Mon, 15 Apr 2024 20:46:28 +0800 Subject: [PATCH] python-flit-core 3.9.0-2 --- PKGBUILD | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index c93b4c1..deeda51 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -6,19 +6,20 @@ # Maintainer: Future Linux Team pkgname=python-flit-core pkgver=3.9.0 -pkgrel=1 +pkgrel=2 pkgdesc="A PEP 517 build backend for packages using Flit" arch=('x86_64') url="https://pypi.org/project/flit-core/" license=('BSD') depends=('python') +makedepends=('python-build' 'python-installer') source=(https://pypi.org/packages/source/f/flit-core/flit_core-${pkgver}.tar.gz) sha256sums=(72ad266176c4a3fcfab5f2930d76896059851240570ce9a98733b658cb786eba) build() { cd flit_core-${pkgver} - python3 -m flit_core.wheel + python3 -m build --wheel --skip-dependency-check --no-isolation }