← recipes

Commit 2adcdf9

0
plików
+0
dodanych
-0
usuniętych
@@ -725,17 +725,20 @@ footprint: |
725 725 build: |
726 726 cd pygments-${pkgver}
727 727
728 - pip3 wheel -w dist \
729 - --no-build-isolation \
730 - --no-deps $PWD
731 - pip3 install --no-index \
732 - --find-links dist \
733 - --no-cache-dir \
734 - --no-user \
735 - --root=${PKGDIR} \
736 - pygments
728 + export PYTHONPATH="/usr/lib/python3.14/site-packages:$PYTHONPATH"
737 729
738 - find ${PKGDIR} -type d -name vendor -o -name tests |xargs rm -rf
730 + pip3 wheel -w dist \
731 + --no-build-isolation \
732 + --no-deps $PWD
733 +
734 + pip3 install --no-index \
735 + --find-links dist \
736 + --no-cache-dir \
737 + --no-user \
738 + --root=${PKGDIR} \
739 + pygments
740 +
741 + find ${PKGDIR} -type d \( -name vendor -o -name tests \) -exec rm -rf {} +
739 742
740 743 package: |
741 744 true