apply_defaults: drop unsused recipe. (#11950)

Introduced in 7b0c0671ab, perhaps
as a dependency for `jsonrpcserver`? (albeit only 3 years later
jsonrpcserver proerly added a REQUIRES for it).

In any case, not needed anymore by anything on-tree since
7b0c0671ab.

Users should try to `pip install` this, if they need it.
This commit is contained in:
OscarL
2025-03-14 02:39:33 -03:00
committed by GitHub
parent e319b1c023
commit 4ddeec8199

View File

@@ -1,60 +0,0 @@
SUMMARY="Helps pull configuration into a project"
DESCRIPTION="Makes configuration easy! Application settings come from a \
config file into your code cleanly."
HOMEPAGE="https://pypi.org/project/apply-defaults/
https://github.com/bcb/apply_defaults"
COPYRIGHT="2015 Beau Barker"
LICENSE="MIT"
REVISION="1"
SOURCE_URI="https://files.pythonhosted.org/packages/42/31/7daf0d1111b29405d25b7677c8c681f6de7aff19d44b54f57ce5c789af24/apply_defaults-0.1.6.tar.gz"
CHECKSUM_SHA256="3773de3491b94c0fe44310f1a85888389cdc71e1544b343bce0d2bd6991acea5"
ARCHITECTURES="any"
PROVIDES="
$portName = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
PYTHON_PACKAGES=(python39 python310)
PYTHON_VERSIONS=(3.9 3.10)
for i in "${!PYTHON_PACKAGES[@]}"; do
pythonPackage=${PYTHON_PACKAGES[i]}
pythonVersion=${PYTHON_VERSIONS[$i]}
eval "PROVIDES_${pythonPackage}=\"\
${portName}_$pythonPackage = $portVersion\
\"; \
REQUIRES_$pythonPackage=\"\
haiku\n\
cmd:python$pythonVersion\
\""
BUILD_REQUIRES="$BUILD_REQUIRES
setuptools_$pythonPackage"
BUILD_PREREQUIRES="$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
}