Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/build-support/disabled/python-setuptools-egg-info-manually
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2025-03-16 20:12:42 +0100
committerAndreas Baumann <mail@andreasbaumann.cc>2025-03-16 20:12:42 +0100
commitb79b42e58b90a54eb5644ae10d04b5bfde26fb75 (patch)
treeefc264b13e87d1fccab33b445d86c9ed7147bc61 /build-support/disabled/python-setuptools-egg-info-manually
parentfc72f1b90bda328df3f4531ca2814a1205f92396 (diff)
moved build-support/disabled to build-support-disabled (collides with some pkginfo stuff otherwise)
Diffstat (limited to 'build-support/disabled/python-setuptools-egg-info-manually')
-rw-r--r--build-support/disabled/python-setuptools-egg-info-manually30
1 files changed, 0 insertions, 30 deletions
diff --git a/build-support/disabled/python-setuptools-egg-info-manually b/build-support/disabled/python-setuptools-egg-info-manually
deleted file mode 100644
index 9320e0b6..00000000
--- a/build-support/disabled/python-setuptools-egg-info-manually
+++ /dev/null
@@ -1,30 +0,0 @@
-# create directory before installing (otherwise installing fails)
-eval "$(
- declare -f package | \
- sed '
- 4 i mkdir build/scripts-3.10
- '
-)"
-
-# ignore errors in tests, but execute the tests
-eval "$(
- declare -f check | \
- sed '
- s/\(python.*\)/\1 || true/
- '
-)"
-
-unset checkdepends
-unset check
-
-# egg-infos are not installed correctly, create them before and install
-# them manually
-eval "$(
- declare -f package | \
- sed '
- 6 i python setup.py egg_info \
- rm -rf "$pkgdir"/usr/lib/python3.10/site-packages/setuptools-57.4.0-py3.10.egg-info \
- mkdir "$pkgdir"/usr/lib/python3.10/site-packages/setuptools-57.4.0-py3.10.egg-info \
- cp -R setuptools.egg-info/* "$pkgdir"/usr/lib/python3.10/site-packages/setuptools-57.4.0-py3.10.egg-info/.
- '
-)"