openbsd-ports/www/py-turbogears/patches/patch-setup_py

67 lines
1.7 KiB
Plaintext

$OpenBSD: patch-setup_py,v 1.4 2008/04/15 09:36:37 martynas Exp $
--- setup.py.orig Mon Mar 3 23:30:58 2008
+++ setup.py Sun Apr 13 03:16:20 2008
@@ -12,19 +12,6 @@ if sys.version_info < (2, 3):
execfile(os.path.join("turbogears", "release.py"))
# setup params
-install_requires = [
- "CherryPy >= 2.3.0,<3.0.0alpha",
- "ConfigObj >= 4.3.2",
- "DecoratorTools >= 1.4",
- "FormEncode >= 0.7.1",
- "PasteScript >= 1.6.2",
- "RuleDispatch >= 0.5a0.dev-r2303",
- "setuptools >= 0.6c2",
- "simplejson >= 1.3",
- "TurboCheetah >= 1.0",
- "TurboJson >= 1.1.2",
- "TurboKid >= 1.0.4",
-]
exp = ["TGFastData"]
@@ -55,19 +42,6 @@ tgtesttools = [
"SQLAlchemy >= 0.3.10",
]
-# python 2.5 compatible list
-if sys.version_info < (2, 5):
- install_requires.extend([
- "elementtree >= 1.2.6",
- "cElementTree >= 1.0.5",
- ])
- tgtesttools.extend([
- "pysqlite"
- ])
-else:
- # currently there are no extra requires for Python >= 2.5
- ##install_requires.extend([])
- pass
setup(
@@ -112,7 +86,6 @@ a solution to your problem.
""",
url="http://www.turbogears.org",
zip_safe=False,
- install_requires = install_requires,
packages=find_packages(),
include_package_data=True,
exclude_package_data={"thirdparty": ["*"]},
@@ -159,14 +132,6 @@ a solution to your problem.
catwalk = turbogears.toolbox.catwalk:CatWalk
""",
- extras_require = {
- "exp" : exp,
- "sqlobject" : sqlobject,
- "sqlalchemy" : sqlalchemy,
- "future" : future,
- "testtools" : testtools,
- "tgtesttools" : tgtesttools,
- },
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',