diff options
author | Alexander Botero-Lowry <alexbl@FreeBSD.org> | 2006-12-17 09:49:46 +0000 |
---|---|---|
committer | Alexander Botero-Lowry <alexbl@FreeBSD.org> | 2006-12-17 09:49:46 +0000 |
commit | 7d4b7018b8fd9709dea9fcd5cb250b6fa1816965 (patch) | |
tree | 210fccb769da4cf5d059bbfe6e5aba060476a7ec /databases | |
parent | Markdown is two things: (1) a plain text formatting syntax; and (2) a (diff) |
- Update to 0.3.3
PR: 106778
Submitted by: Dryice Liu <dryice@dryice.name> (maintainer)
Notes
Notes:
svn path=/head/; revision=180003
Diffstat (limited to 'databases')
-rw-r--r-- | databases/py-sqlalchemy/Makefile | 10 | ||||
-rw-r--r-- | databases/py-sqlalchemy/distinfo | 6 | ||||
-rw-r--r-- | databases/py-sqlalchemy/pkg-plist | 9 | ||||
-rw-r--r-- | databases/py-sqlalchemy06/Makefile | 10 | ||||
-rw-r--r-- | databases/py-sqlalchemy06/distinfo | 6 | ||||
-rw-r--r-- | databases/py-sqlalchemy06/pkg-plist | 9 |
6 files changed, 38 insertions, 12 deletions
diff --git a/databases/py-sqlalchemy/Makefile b/databases/py-sqlalchemy/Makefile index a65a0089cbeb..19f16a9f0c15 100644 --- a/databases/py-sqlalchemy/Makefile +++ b/databases/py-sqlalchemy/Makefile @@ -6,12 +6,13 @@ # PORTNAME= sqlalchemy -PORTVERSION= 0.3.1 +PORTVERSION= 0.3.3 CATEGORIES= databases python MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ http://cheeseshop.python.org/packages/source/S/SQLAlchemy/ \ http://dryice.name/computer/FreeBSD/distfiles/ MASTER_SITE_SUBDIR= sqlalchemy +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= SQLAlchemy-${PORTVERSION} MAINTAINER= dryice@dryice.name @@ -35,12 +36,15 @@ OPTIONS+= SQLITE "support Sqlite" on PORTDOCS= adv_datamapping.html alphaapi.html \ alphaimplementation.html datamapping.html \ dbengine.html docs.css docstrings.html \ - index.html metadata.html \ + documentation.html index.html metadata.html \ plugins.html pooling.html scripts.js \ sqlconstruction.html style.css syntaxhighlight.css \ tutorial.html types.html unitofwork.html .endif +PORTEXAMPLES= adjacencytree association backref collections graphs \ + pickle polymorph vertical + .include <bsd.port.pre.mk> .if defined(WITH_FIREBIRD) @@ -72,7 +76,7 @@ post-install: .endif ${MKDIR} ${EXAMPLESDIR} -.for i in adjacencytree backref polymorph vertical +.for i in ${PORTEXAMPLES} ${CP} -r ${WRKSRC}/examples/${i} ${EXAMPLESDIR} .endfor diff --git a/databases/py-sqlalchemy/distinfo b/databases/py-sqlalchemy/distinfo index 48337840185a..a1f983cced95 100644 --- a/databases/py-sqlalchemy/distinfo +++ b/databases/py-sqlalchemy/distinfo @@ -1,3 +1,3 @@ -MD5 (SQLAlchemy-0.3.1.tar.gz) = cb5e17096ed50389687c62bad8c5a67a -SHA256 (SQLAlchemy-0.3.1.tar.gz) = ddf34423d55233fcf39005bf10767dcf7aa8021039289615aa9e80419ccff93e -SIZE (SQLAlchemy-0.3.1.tar.gz) = 585351 +MD5 (SQLAlchemy-0.3.3.tar.gz) = 1336d87f659944f131f7f2c340e81e02 +SHA256 (SQLAlchemy-0.3.3.tar.gz) = fd425065ba70ce199508c3bde9cf7198dd84dd72980ca36a05a24bcbdd095c15 +SIZE (SQLAlchemy-0.3.3.tar.gz) = 737019 diff --git a/databases/py-sqlalchemy/pkg-plist b/databases/py-sqlalchemy/pkg-plist index 19a9ef170800..e4dddb6f29dc 100644 --- a/databases/py-sqlalchemy/pkg-plist +++ b/databases/py-sqlalchemy/pkg-plist @@ -1,13 +1,22 @@ %%PYTHON_SITELIBDIR%%/SQLAlchemy-%%PORTVERSION%%-py%%PYTHONVERSION%%.egg %%EXAMPLEDIR%%/adjacencytree/basic_tree.py %%EXAMPLEDIR%%/adjacencytree/byroot_tree.py +%%EXAMPLEDIR%%/association/basic_association.py +%%EXAMPLEDIR%%/association/proxied_association.py %%EXAMPLEDIR%%/backref/backref_tree.py +%%EXAMPLEDIR%%/collections/large_collection.py +%%EXAMPLEDIR%%/graphs/graph1.py +%%EXAMPLEDIR%%/pickle/custom_pickler.py %%EXAMPLEDIR%%/polymorph/concrete.py %%EXAMPLEDIR%%/polymorph/polymorph.py %%EXAMPLEDIR%%/polymorph/single.py %%EXAMPLEDIR%%/vertical/vertical.py @dirrm %%EXAMPLEDIR%%/adjacencytree +@dirrm %%EXAMPLEDIR%%/association @dirrm %%EXAMPLEDIR%%/backref +@dirrm %%EXAMPLEDIR%%/collections +@dirrm %%EXAMPLEDIR%%/graphs +@dirrm %%EXAMPLEDIR%%/pickle @dirrm %%EXAMPLEDIR%%/polymorph @dirrm %%EXAMPLEDIR%%/vertical @dirrm %%EXAMPLEDIR%% diff --git a/databases/py-sqlalchemy06/Makefile b/databases/py-sqlalchemy06/Makefile index a65a0089cbeb..19f16a9f0c15 100644 --- a/databases/py-sqlalchemy06/Makefile +++ b/databases/py-sqlalchemy06/Makefile @@ -6,12 +6,13 @@ # PORTNAME= sqlalchemy -PORTVERSION= 0.3.1 +PORTVERSION= 0.3.3 CATEGORIES= databases python MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ http://cheeseshop.python.org/packages/source/S/SQLAlchemy/ \ http://dryice.name/computer/FreeBSD/distfiles/ MASTER_SITE_SUBDIR= sqlalchemy +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= SQLAlchemy-${PORTVERSION} MAINTAINER= dryice@dryice.name @@ -35,12 +36,15 @@ OPTIONS+= SQLITE "support Sqlite" on PORTDOCS= adv_datamapping.html alphaapi.html \ alphaimplementation.html datamapping.html \ dbengine.html docs.css docstrings.html \ - index.html metadata.html \ + documentation.html index.html metadata.html \ plugins.html pooling.html scripts.js \ sqlconstruction.html style.css syntaxhighlight.css \ tutorial.html types.html unitofwork.html .endif +PORTEXAMPLES= adjacencytree association backref collections graphs \ + pickle polymorph vertical + .include <bsd.port.pre.mk> .if defined(WITH_FIREBIRD) @@ -72,7 +76,7 @@ post-install: .endif ${MKDIR} ${EXAMPLESDIR} -.for i in adjacencytree backref polymorph vertical +.for i in ${PORTEXAMPLES} ${CP} -r ${WRKSRC}/examples/${i} ${EXAMPLESDIR} .endfor diff --git a/databases/py-sqlalchemy06/distinfo b/databases/py-sqlalchemy06/distinfo index 48337840185a..a1f983cced95 100644 --- a/databases/py-sqlalchemy06/distinfo +++ b/databases/py-sqlalchemy06/distinfo @@ -1,3 +1,3 @@ -MD5 (SQLAlchemy-0.3.1.tar.gz) = cb5e17096ed50389687c62bad8c5a67a -SHA256 (SQLAlchemy-0.3.1.tar.gz) = ddf34423d55233fcf39005bf10767dcf7aa8021039289615aa9e80419ccff93e -SIZE (SQLAlchemy-0.3.1.tar.gz) = 585351 +MD5 (SQLAlchemy-0.3.3.tar.gz) = 1336d87f659944f131f7f2c340e81e02 +SHA256 (SQLAlchemy-0.3.3.tar.gz) = fd425065ba70ce199508c3bde9cf7198dd84dd72980ca36a05a24bcbdd095c15 +SIZE (SQLAlchemy-0.3.3.tar.gz) = 737019 diff --git a/databases/py-sqlalchemy06/pkg-plist b/databases/py-sqlalchemy06/pkg-plist index 19a9ef170800..e4dddb6f29dc 100644 --- a/databases/py-sqlalchemy06/pkg-plist +++ b/databases/py-sqlalchemy06/pkg-plist @@ -1,13 +1,22 @@ %%PYTHON_SITELIBDIR%%/SQLAlchemy-%%PORTVERSION%%-py%%PYTHONVERSION%%.egg %%EXAMPLEDIR%%/adjacencytree/basic_tree.py %%EXAMPLEDIR%%/adjacencytree/byroot_tree.py +%%EXAMPLEDIR%%/association/basic_association.py +%%EXAMPLEDIR%%/association/proxied_association.py %%EXAMPLEDIR%%/backref/backref_tree.py +%%EXAMPLEDIR%%/collections/large_collection.py +%%EXAMPLEDIR%%/graphs/graph1.py +%%EXAMPLEDIR%%/pickle/custom_pickler.py %%EXAMPLEDIR%%/polymorph/concrete.py %%EXAMPLEDIR%%/polymorph/polymorph.py %%EXAMPLEDIR%%/polymorph/single.py %%EXAMPLEDIR%%/vertical/vertical.py @dirrm %%EXAMPLEDIR%%/adjacencytree +@dirrm %%EXAMPLEDIR%%/association @dirrm %%EXAMPLEDIR%%/backref +@dirrm %%EXAMPLEDIR%%/collections +@dirrm %%EXAMPLEDIR%%/graphs +@dirrm %%EXAMPLEDIR%%/pickle @dirrm %%EXAMPLEDIR%%/polymorph @dirrm %%EXAMPLEDIR%%/vertical @dirrm %%EXAMPLEDIR%% |