From 0b71c3bd5fa0eca7273d84257d6cfdfa0023dde7 Mon Sep 17 00:00:00 2001 From: Tasos Sahanidis Date: Fri, 8 Mar 2024 15:23:17 +0200 Subject: Revert "extra/python-setuptools: Remove temporarily" This reverts commit bac778e7e3d3fb9e2de20c83674ac81055681f0b. --- extra/python-setuptools/PKGBUILD | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 extra/python-setuptools/PKGBUILD (limited to 'extra/python-setuptools') diff --git a/extra/python-setuptools/PKGBUILD b/extra/python-setuptools/PKGBUILD new file mode 100644 index 00000000..63552ad5 --- /dev/null +++ b/extra/python-setuptools/PKGBUILD @@ -0,0 +1,40 @@ +# WARNING! If you get an error along the lines of +# "error: cannot copy tree 'build/scripts-3.11': not a directory", STOP! +# +# You might be tempted, but do *NOT* `mkdir build/scripts-3.XX`. +# +# This happens because upstream is using the git repo which doesn't have the metadata. +# It doesn't affect upstream because their setuptools already has a directory .egg-info, +# whereas if we have an .egg-info file, then it will result in "error: invalid command 'egg_info'" +# when trying to build any python package that uses setuptools. +# +# That said, let's build from the source tarball which already has the metadata. + +# Add the tarball +source[0]="https://pypi.python.org/packages/source/s/setuptools/setuptools-$pkgver.tar.gz" +# Depending on how annoying this gets, maybe comment it to switch back to SKIP +sha512sums[0]='11df934931f4b73f7e07ea5713479593c6baa134d423556b2ae7aff0f1e5bdbdee1f5b516131adb169c838231ceb0293441fbf275ef7030dabecf74122565b6d' + +# Work around the directory name containing the version. +eval "$( + declare -f prepare | \ + sed -r 's/cd setuptools;?$/cd setuptools-$pkgver/' +)" +eval "$( + declare -f build | \ + sed -r 's/cd setuptools;?$/cd setuptools-$pkgver/' +)" +eval "$( + declare -f package | \ + sed -r 's/cd setuptools;?$/cd setuptools-$pkgver/' +)" + +# Skip the last two patches. +eval "$( + declare -f prepare | \ + sed '/add-dependency.patch/d' | sed '/build-no-isolation.patch/d' +)" + +# Don't bother with the tests. +unset check +unset checkdepends -- cgit v1.2.3-54-g00ecf