From 7f3697f01780faad0c4953dc38f3c8226f8af1c1 Mon Sep 17 00:00:00 2001 From: OscarL Date: Wed, 7 Jun 2023 06:03:08 -0300 Subject: [PATCH] ordereddict: retire recipe. (#8807) This package was only needed for Python versions older than 2.7. Nothing uses in-tree. --- dev-python/ordereddict/ordereddict-1.1.recipe | 38 ------------------- 1 file changed, 38 deletions(-) delete mode 100644 dev-python/ordereddict/ordereddict-1.1.recipe diff --git a/dev-python/ordereddict/ordereddict-1.1.recipe b/dev-python/ordereddict/ordereddict-1.1.recipe deleted file mode 100644 index ddfa40512..000000000 --- a/dev-python/ordereddict/ordereddict-1.1.recipe +++ /dev/null @@ -1,38 +0,0 @@ -SUMMARY="A substitute for Py2.7's collections.OrderedDict for Python 2.4-2.6" -DESCRIPTION="Drop-in substitute for Py2.7's new collections.OrderedDict. The \ -recipe has big-oh performance that matches regular dictionaries (amortized \ -O(1) insertion/deletion/lookup and O(n) iteration/repr/copy/equality_testing)." -HOMEPAGE="https://pypi.python.org/pypi/ordereddict" -COPYRIGHT="2009 Raymond Hettinger" -LICENSE="MIT" -REVISION="1" -SOURCE_URI="https://pypi.python.org/packages/source/o/ordereddict/ordereddict-1.1.tar.gz" -CHECKSUM_SHA256="1c35b4ac206cef2d24816c89f89cf289dd3d38cf7c449bb3fab7bf6d43f01b1f" - -ARCHITECTURES="x86 x86_gcc2" - -PROVIDES=" - ordereddict = $portVersion - " -REQUIRES=" - haiku - cmd:python < 2.7 - " - -BUILD_REQUIRES=" - haiku_devel - " -BUILD_PREREQUIRES=" - cmd:python < 2.7 - " - -BUILD() -{ - $portPackageLinksDir/cmd~python/bin/python setup.py build -} - -INSTALL() -{ - $portPackageLinksDir/cmd~python/bin/python setup.py install \ - --prefix=$prefix -}