- bugfix update to py-turbogears-1.0.5
- patch-setup_py trick not needed anymore, now that python-2.5 is default, and all dependencies got plists updated to include eggs - switch to eggs.tg.org, to get this stable release ok wcmaier@
This commit is contained in:
parent
29e1448521
commit
7ce927be80
@ -1,8 +1,8 @@
|
||||
# $OpenBSD: Makefile,v 1.8 2008/04/15 09:36:37 martynas Exp $
|
||||
# $OpenBSD: Makefile,v 1.9 2008/07/11 22:48:03 martynas Exp $
|
||||
|
||||
COMMENT= Python web development megaframework
|
||||
|
||||
MODPY_EGG_VERSION= 1.0.4.4
|
||||
MODPY_EGG_VERSION= 1.0.5
|
||||
DISTNAME= TurboGears-${MODPY_EGG_VERSION}
|
||||
PKGNAME= py-turbogears-${MODPY_EGG_VERSION}
|
||||
|
||||
@ -18,8 +18,8 @@ PERMIT_PACKAGE_FTP= Yes
|
||||
PERMIT_DISTFILES_CDROM= Yes
|
||||
PERMIT_DISTFILES_FTP= Yes
|
||||
|
||||
MASTER_SITES= http://cheeseshop.python.org/packages/source/T/TurboGears/ \
|
||||
http://files.turbogears.org/eggs/
|
||||
MASTER_SITES= http://files.turbogears.org/eggs/
|
||||
EXTRACT_SUFX= .zip
|
||||
|
||||
MODULES= lang/python
|
||||
|
||||
@ -44,4 +44,7 @@ REGRESS_DEPENDS= ${RUN_DEPENDS} \
|
||||
|
||||
MODPY_SETUPTOOLS= Yes
|
||||
|
||||
post-extract:
|
||||
find ${WRKSRC} -perm 0666 -exec chmod 0644 {} \;
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,5 +1,5 @@
|
||||
MD5 (TurboGears-1.0.4.4.tar.gz) = oDpm/PfWh/171CBaAf0h3Q==
|
||||
RMD160 (TurboGears-1.0.4.4.tar.gz) = rlSFfoKWE0WmnF7aj+I1Q6JjnkE=
|
||||
SHA1 (TurboGears-1.0.4.4.tar.gz) = d4j7ZV48J2z91wvQERmJ9NTRQPo=
|
||||
SHA256 (TurboGears-1.0.4.4.tar.gz) = zJPCKT1rCIy1VOCEuOw1+ezl1DxDZ2DPD23sGjMYz64=
|
||||
SIZE (TurboGears-1.0.4.4.tar.gz) = 1108722
|
||||
MD5 (TurboGears-1.0.5.zip) = LBsS0mZKuctseVmE5wKGcw==
|
||||
RMD160 (TurboGears-1.0.5.zip) = yM1KY4OPGPlT6CqSc8tvzxQOIUo=
|
||||
SHA1 (TurboGears-1.0.5.zip) = KCVinyJxC0RSL2aYhhQ8/UF2Qlw=
|
||||
SHA256 (TurboGears-1.0.5.zip) = DOL0OBN5/HoYrTOQs1FGUQ0+K32cma8W2GbKZC0q1m8=
|
||||
SIZE (TurboGears-1.0.5.zip) = 1473510
|
||||
|
@ -1,66 +0,0 @@
|
||||
$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',
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST,v 1.4 2008/04/15 09:36:37 martynas Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.5 2008/07/11 22:48:04 martynas Exp $
|
||||
bin/tg-admin
|
||||
lib/python${MODPY_VERSION}/site-packages/TurboGears-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/
|
||||
lib/python${MODPY_VERSION}/site-packages/TurboGears-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/PKG-INFO
|
||||
@ -6,6 +6,7 @@ lib/python${MODPY_VERSION}/site-packages/TurboGears-${MODPY_EGG_VERSION}-py${MOD
|
||||
lib/python${MODPY_VERSION}/site-packages/TurboGears-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/dependency_links.txt
|
||||
lib/python${MODPY_VERSION}/site-packages/TurboGears-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/entry_points.txt
|
||||
lib/python${MODPY_VERSION}/site-packages/TurboGears-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/not-zip-safe
|
||||
lib/python${MODPY_VERSION}/site-packages/TurboGears-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/requires.txt
|
||||
lib/python${MODPY_VERSION}/site-packages/TurboGears-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/top_level.txt
|
||||
lib/python${MODPY_VERSION}/site-packages/turbogears/
|
||||
lib/python${MODPY_VERSION}/site-packages/turbogears/__init__.py
|
||||
@ -729,8 +730,6 @@ lib/python${MODPY_VERSION}/site-packages/turbogears/tests/test_config.py
|
||||
lib/python${MODPY_VERSION}/site-packages/turbogears/tests/test_config.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/turbogears/tests/test_controllers.py
|
||||
lib/python${MODPY_VERSION}/site-packages/turbogears/tests/test_controllers.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/turbogears/tests/test_database.py
|
||||
lib/python${MODPY_VERSION}/site-packages/turbogears/tests/test_database.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/turbogears/tests/test_decorator.py
|
||||
lib/python${MODPY_VERSION}/site-packages/turbogears/tests/test_decorator.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/turbogears/tests/test_errorhandling.py
|
||||
@ -745,8 +744,12 @@ lib/python${MODPY_VERSION}/site-packages/turbogears/tests/test_paginate.py
|
||||
lib/python${MODPY_VERSION}/site-packages/turbogears/tests/test_paginate.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/turbogears/tests/test_sqlalchemy.py
|
||||
lib/python${MODPY_VERSION}/site-packages/turbogears/tests/test_sqlalchemy.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/turbogears/tests/test_sqlobject.py
|
||||
lib/python${MODPY_VERSION}/site-packages/turbogears/tests/test_sqlobject.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/turbogears/tests/test_testutil.py
|
||||
lib/python${MODPY_VERSION}/site-packages/turbogears/tests/test_testutil.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/turbogears/tests/test_util.py
|
||||
lib/python${MODPY_VERSION}/site-packages/turbogears/tests/test_util.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/turbogears/tests/test_validators.py
|
||||
lib/python${MODPY_VERSION}/site-packages/turbogears/tests/test_validators.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/turbogears/tests/test_view.py
|
||||
|
Loading…
Reference in New Issue
Block a user