diff --git a/PKGBUILD b/PKGBUILD index 4e52ffe..50767ef 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -5,7 +5,7 @@ # Maintainer: Future Linux Team pkgname=python-setuptools -pkgver=75.1.0 +pkgver=75.3.0 pkgrel=1 pkgdesc="Easily download, build, install, upgrade, and uninstall Python packages" arch=('x86_64') @@ -14,17 +14,17 @@ license=('PSF') depends=('python') makedepends=('python-flit-core' 'python-wheel' 'python-installer' 'python-build') source=(https://github.com/pypa/setuptools/archive/${pkgver}/${pkgname#*-}-${pkgver}.tar.gz) -sha256sums=(d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538) +sha256sums=(625fb6087d038db909775d787d3ac34eb5b1082b7091f715e1861934408758a4) build() { - cd ${pkgname#*-}-${pkgver} + cd ${pkgname#*-}-${pkgver} - python3 setup.py egg_info - python3 -m build --wheel --skip-dependency-check --no-isolation + python3 setup.py egg_info + python3 -m build --wheel --skip-dependency-check --no-isolation } package() { - cd ${pkgname#*-}-${pkgver} + cd ${pkgname#*-}-${pkgver} - python3 -m installer --destdir=${pkgdir} dist/*.whl + python3 -m installer --destdir=${pkgdir} dist/*.whl }