1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-11 07:22:22 +00:00

- Update to 0.7

- Update WWW
This commit is contained in:
Marcus Alves Grando 2006-07-10 15:20:21 +00:00
parent ee0811b45b
commit 074e1d1ea6
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=167354
4 changed files with 29 additions and 8 deletions

View File

@ -6,9 +6,9 @@
#
PORTNAME= rbtree
PORTVERSION= 0.6
PORTVERSION= 0.7
CATEGORIES= devel python
MASTER_SITES= http://cheeseshop.python.org/packages/source/R/RBTree/
MASTER_SITES= http://cheeseshop.python.org/packages/source/r/rbtree/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= mnag@FreeBSD.org
@ -16,8 +16,6 @@ COMMENT= A fast tree with ordered data and expanded iterator support
BUILD_DEPENDS= pyrexc:${PORTSDIR}/devel/pyrex
WRKSRC= ${WRKDIR}/${PORTNAME}
DIST_SUBDIR= python
USE_PYTHON= yes
USE_PYDISTUTILS= yes

View File

@ -1,3 +1,3 @@
MD5 (python/rbtree-0.6.tar.gz) = 5c031f8d510888bd2e8ebc3d6e4b51ac
SHA256 (python/rbtree-0.6.tar.gz) = d18febd8b96d58e4809f9b7968525264c23388f463261d3df3f4bf9016d9ea59
SIZE (python/rbtree-0.6.tar.gz) = 13478
MD5 (python/rbtree-0.7.tar.gz) = 86d93a8866c65a1774bd6b84389d8909
SHA256 (python/rbtree-0.7.tar.gz) = 46498f40cf27fe21a8c74c698fe27cfc115664b99118781d604cde9d8681c042
SIZE (python/rbtree-0.7.tar.gz) = 27817

View File

@ -0,0 +1,23 @@
#
# Do not use py-setuptools
#
--- setup.py.orig Thu Jun 15 02:43:12 2006
+++ setup.py Mon Jul 10 12:12:43 2006
@@ -1,8 +1,6 @@
-import ez_setup
-ez_setup.use_setuptools()
-
-from setuptools import setup, find_packages
-from setuptools.extension import Extension
+from distutils.core import setup
+from distutils.extension import Extension
+from Pyrex.Distutils import build_ext
classifiers = [
"Development Status :: 4 - Beta",
@@ -31,4 +29,5 @@
include_dirs=['src',],
),
],
+ cmdclass = {'build_ext': build_ext}
)

View File

@ -16,4 +16,4 @@ In common usage its nearly as fast as the Python dict impl but has a
slightly more expensive usage of the compare function as the keys are
ordered and not hashed.
WWW: http://www.python.org/pypi/RBTree/
WWW: http://cheeseshop.python.org/pypi/rbtree/