Date: Sunday, January 29, 2023 @ 08:30:04 Author: felixonmars Revision: 467568
upgpkg: python-setuptools 1:67.0.0-1 Modified: python-setuptools/trunk/PKGBUILD python-setuptools/trunk/add-dependency.patch ----------------------+ PKGBUILD | 14 ++++++++------ add-dependency.patch | 5 ++--- 2 files changed, 10 insertions(+), 9 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2023-01-29 07:04:01 UTC (rev 467567) +++ PKGBUILD 2023-01-29 08:30:04 UTC (rev 467568) @@ -3,7 +3,7 @@ # Contributor: Eli Schwartz <[email protected]> pkgname=python-setuptools -pkgver=65.6.3 +pkgver=67.0.0 pkgrel=1 epoch=1 pkgdesc="Easily download, build, install, upgrade, and uninstall Python packages" @@ -10,8 +10,8 @@ arch=('any') license=('PSF') url="https://pypi.org/project/setuptools/" -depends=('python-appdirs' 'python-jaraco.text' 'python-more-itertools' 'python-ordered-set' - 'python-packaging' 'python-pyparsing' 'python-tomli' 'python-validate-pyproject') +depends=('python-jaraco.text' 'python-more-itertools' 'python-ordered-set' 'python-packaging' + 'python-platformdirs' 'python-tomli' 'python-validate-pyproject') makedepends=('git' 'python-setuptools') checkdepends=('python-jaraco.envs' 'python-jaraco.path' 'python-pip' 'python-pip-run' 'python-pytest-fixture-config' 'python-pytest-virtualenv' 'python-wheel' @@ -22,9 +22,9 @@ source=("$pkgname-$pkgver.tar.gz::https://github.com/pypa/setuptools/archive/v$pkgver.tar.gz" system-validate-pyproject.patch add-dependency.patch) -sha512sums=('cf6a020636060391c3e4ac5896bd3580b8a6c7671237faa48372b6a64d0785cbd12910bd3c9b458b2008ccafd1e122a249513d45c8c9bcd2637b6628d68a3210' +sha512sums=('17ffb92f3a1008b13943f69d2dc934a9f7e91f0f4298244bb049893830373fe7519a573ac82eebdba4051588aaefe7db5e6d0aa32cdc22e4fb2c9a842bc73aff' '390fea2c575a0042054f51d33e629b04a48f832f0a4a2dd07d34e23cdf330c382dba0f54bfb7c8a6a253bb248a4940f2a789672f715e4dc2aeb395fa185cae7a' - '4277c983f17db19b0e499ceff7b6e24aad4f7956ec282bb7f5148f6f44e4e35077bfdfa219cbc04f49f37d0b9dc9c3e3075db7a36dbdc30944e1bd28efad0e0b') + '9c5d80c753e78bf613572fb789a234984087d0ce96d0bad22b5ed731d83c77bf6d8acfa65c78f6c78f9063be7819c2b58988fdf8e7fc89b55339f94a87b3b21f') export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0 @@ -83,9 +83,11 @@ cd setuptools-$pkgver # 1: subtle difference introduced by devendoring # 2: pip failures related to devendoring, + # 3: TODO PYTHONPATH="$PWD"/build/lib python -m pytest \ --deselect setuptools/tests/config/test_apply_pyprojecttoml.py::test_apply_pyproject_equivalent_to_setupcfg \ - --deselect setuptools/tests/test_virtualenv.py + --deselect setuptools/tests/test_virtualenv.py \ + --deselect setuptools/tests/test_editable_install.py::test_editable_with_prefix )} package() { Modified: add-dependency.patch =================================================================== --- add-dependency.patch 2023-01-29 07:04:01 UTC (rev 467567) +++ add-dependency.patch 2023-01-29 08:30:04 UTC (rev 467568) @@ -2,16 +2,15 @@ index f9dd790..0cd700e 100644 --- a/setup.cfg.orig +++ b/setup.cfg -@@ -26,6 +26,14 @@ packages = find_namespace: +@@ -26,6 +26,13 @@ packages = find_namespace: # include_package_data = true python_requires = >=3.7 install_requires = -+ appdirs ++ platformdirs + jaraco.text + more-itertools + ordered-set + packaging -+ pyparsing + tomli + validate-pyproject
