From 29f892f42d1e30b6a35516c9b4a528196e726e69 Mon Sep 17 00:00:00 2001 From: OscarL Date: Fri, 14 Mar 2025 02:29:20 -0300 Subject: [PATCH] whichcraft: drop unused recipe. (#11969) Introduced in 3780b7ecfbe4f4c9c7661bdd394deeda0a534aa1, apparently because webkit's unit-tests required it (2021-03). On 600c2f41ca3c14f37c69e9c7a67c94f2b99e37fb (2023-09) support for Python 3.10 was added, but given that haikuwebkit had already moved to 3.10 even before that, most likely that the `whichcraft` hpkg was not used for those "webkit unit tests". Users should try to `pip install` this, if they need it. --- dev-python/whichcraft/whichcraft-0.6.1.recipe | 66 ------------------- 1 file changed, 66 deletions(-) delete mode 100644 dev-python/whichcraft/whichcraft-0.6.1.recipe diff --git a/dev-python/whichcraft/whichcraft-0.6.1.recipe b/dev-python/whichcraft/whichcraft-0.6.1.recipe deleted file mode 100644 index cc94a9708..000000000 --- a/dev-python/whichcraft/whichcraft-0.6.1.recipe +++ /dev/null @@ -1,66 +0,0 @@ -SUMMARY="Cross-platform cross-python shutil.which" -DESCRIPTION="Implements 'which' (search for executables in the path) in a \ -portable way." -HOMEPAGE="https://pypi.org/project/whichcraft" -COPYRIGHT="2015-2019 Daniel Roy Greenfeld" -LICENSE="BSD (3-clause)" -REVISION="4" -SOURCE_URI="https://github.com/cookiecutter/whichcraft/archive/$portVersion.tar.gz" -CHECKSUM_SHA256="bfa077578261e8bce72ebd44025a2ac196f943123e551589bd5f1c25af9f0085" -SOURCE_FILENAME="whichcraft-$portVersion.tar.gz" -SOURCE_DIR="whichcraft-$portVersion" - -ARCHITECTURES="any" - -PROVIDES=" - $portName = $portVersion - " -REQUIRES=" - haiku - " - -BUILD_REQUIRES=" - haiku_devel - " - -PYTHON_PACKAGES=(python310) -PYTHON_VERSIONS=(3.10) -for i in "${!PYTHON_PACKAGES[@]}"; do - pythonPackage=${PYTHON_PACKAGES[i]} - pythonVersion=${PYTHON_VERSIONS[$i]} - - eval "PROVIDES_${pythonPackage}=\" - ${portName}_$pythonPackage = $portVersion - \"" - eval "REQUIRES_$pythonPackage=\" - haiku - cmd:python$pythonVersion - \"" - BUILD_REQUIRES+=" - setuptools_$pythonPackage - " - BUILD_PREREQUIRES+=" - cmd:python$pythonVersion - " -done - -INSTALL() -{ - for i in "${!PYTHON_PACKAGES[@]}"; do - pythonPackage=${PYTHON_PACKAGES[i]} - pythonVersion=${PYTHON_VERSIONS[$i]} - - python=python$pythonVersion - installLocation=$prefix/lib/$python/vendor-packages/ - export PYTHONPATH=$installLocation:$PYTHONPATH - - mkdir -p $installLocation - rm -rf build - - $python setup.py build install \ - --root=/ --prefix=$prefix - - packageEntries $pythonPackage \ - $prefix/lib/python* - done -}