Date: Monday, October 24, 2022 @ 08:40:19 Author: alucryd Revision: 1334521
python-flit -> python-flit-core Modified: python-confuse/trunk/PKGBUILD ----------+ PKGBUILD | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2022-10-24 08:36:22 UTC (rev 1334520) +++ PKGBUILD 2022-10-24 08:40:19 UTC (rev 1334521) @@ -4,7 +4,7 @@ pkgname=python-confuse pkgver=2.0.0 -pkgrel=1 +pkgrel=2 pkgdesc='Painless YAML config files for Python' arch=(any) url=https://github.com/beetbox/confuse @@ -12,9 +12,9 @@ depends=(python-yaml) makedepends=( git - python-flit - python-pip - python-poetry + python-build + python-flit-core + python-installer ) checkdepends=(python-nose) _tag=46504692f9f6c26e248a90243062ccca1fd29992 @@ -28,7 +28,7 @@ build() { cd confuse - python -m flit build --format wheel + python -m build --wheel --no-isolation } check() { @@ -37,7 +37,7 @@ } package() { - PIP_CONFIG_FILE=/dev/null pip install --isolated --root="${pkgdir}" --ignore-installed --no-deps confuse/dist/*.whl + python -m installer --destdir="${pkgdir}" confuse/dist/*.whl install -Dm 644 confuse/LICENSE -t "${pkgdir}"/usr/share/licenses/python-confuse/ }
