From 156a9cbc117d47aa7353d91f392fa57cf308d798 Mon Sep 17 00:00:00 2001 From: landry Date: Sat, 23 Jun 2018 21:39:45 +0000 Subject: [PATCH] Split py-sqlalchemy docs into a subpackage so that both FLAVORs can be installed altogether. Issue reported by and original diff from Elias M. Mariani, with feedback/tweaks from sthen@ & espie@, adapted for 1.2.8 update. --- databases/py-sqlalchemy/Makefile | 24 +- databases/py-sqlalchemy/pkg/DESCR-docs | 1 + .../py-sqlalchemy/pkg/{DESCR => DESCR-main} | 0 databases/py-sqlalchemy/pkg/PLIST-docs | 493 +++++++++++++++++ .../py-sqlalchemy/pkg/{PLIST => PLIST-main} | 496 +----------------- 5 files changed, 514 insertions(+), 500 deletions(-) create mode 100644 databases/py-sqlalchemy/pkg/DESCR-docs rename databases/py-sqlalchemy/pkg/{DESCR => DESCR-main} (100%) create mode 100644 databases/py-sqlalchemy/pkg/PLIST-docs rename databases/py-sqlalchemy/pkg/{PLIST => PLIST-main} (60%) diff --git a/databases/py-sqlalchemy/Makefile b/databases/py-sqlalchemy/Makefile index 7a48175f1db7..a9769a267a69 100644 --- a/databases/py-sqlalchemy/Makefile +++ b/databases/py-sqlalchemy/Makefile @@ -1,10 +1,15 @@ -# $OpenBSD: Makefile,v 1.35 2018/06/19 13:59:24 rpointel Exp $ +# $OpenBSD: Makefile,v 1.36 2018/06/23 21:39:45 landry Exp $ -COMMENT = database toolkit for Python +COMMENT-main = database toolkit for Python +COMMENT-docs = documentation and examples for sqlalchemy MODPY_EGG_VERSION = 1.2.8 DISTNAME = SQLAlchemy-${MODPY_EGG_VERSION} -PKGNAME = py-sqlalchemy-${MODPY_EGG_VERSION:S/p/./} +FULLPKGNAME-main = ${MODPY_PY_PREFIX}sqlalchemy-${MODPY_EGG_VERSION} +FULLPKGPATH-main = databases/py-sqlalchemy${MODPY_FLAVOR} +FULLPKGNAME-docs = py-sqlalchemy-docs-${MODPY_EGG_VERSION} +FULLPKGPATH-docs = databases/py-sqlalchemy,-docs +REVISION = 0 CATEGORIES = databases @@ -13,13 +18,18 @@ HOMEPAGE = http://www.sqlalchemy.org/ # MIT PERMIT_PACKAGE_CDROM = Yes -WANTLIB += ${MODPY_WANTLIB} -WANTLIB += pthread - MODULES = lang/python MODPY_SETUPTOOLS = Yes MODPY_PI = Yes +WANTLIB += ${MODPY_WANTLIB} +WANTLIB += pthread +RUN_DEPENDS += databases/py-sqlalchemy,-docs + +WANTLIB-docs = #empty +RUN_DEPENDS-docs = #empty + +MULTI_PACKAGES = -main -docs FLAVORS = python3 FLAVOR ?= @@ -29,7 +39,7 @@ MAKE_ENV += PYTHONPATH=. TEST_DEPENDS = devel/py-test-xdist${MODPY_FLAVOR} \ devel/py-mock${MODPY_FLAVOR} # On python3, sqlite3 is used. -.if ${FLAVOR} == "" +.if empty (FLAVOR) TEST_DEPENDS += databases/py-sqlite2${MODPY_FLAVOR}>=2.8.3 .endif diff --git a/databases/py-sqlalchemy/pkg/DESCR-docs b/databases/py-sqlalchemy/pkg/DESCR-docs new file mode 100644 index 000000000000..aefced4f6231 --- /dev/null +++ b/databases/py-sqlalchemy/pkg/DESCR-docs @@ -0,0 +1 @@ +SQLAlchemy documentation and examples. diff --git a/databases/py-sqlalchemy/pkg/DESCR b/databases/py-sqlalchemy/pkg/DESCR-main similarity index 100% rename from databases/py-sqlalchemy/pkg/DESCR rename to databases/py-sqlalchemy/pkg/DESCR-main diff --git a/databases/py-sqlalchemy/pkg/PLIST-docs b/databases/py-sqlalchemy/pkg/PLIST-docs new file mode 100644 index 000000000000..c28b28c338e5 --- /dev/null +++ b/databases/py-sqlalchemy/pkg/PLIST-docs @@ -0,0 +1,493 @@ +@comment $OpenBSD: PLIST-docs,v 1.1 2018/06/23 21:39:45 landry Exp $ +@conflict py-sqlalchemy-<1.2.8p0 +@conflict py3-sqlalchemy-<1.2.8p0 +share/doc/py-sqlalchemy/ +share/doc/py-sqlalchemy/_images/ +share/doc/py-sqlalchemy/_images/sqla_arch_small.png +share/doc/py-sqlalchemy/_images/sqla_engine_arch.png +share/doc/py-sqlalchemy/_modules/ +share/doc/py-sqlalchemy/_modules/examples/ +share/doc/py-sqlalchemy/_modules/examples/adjacency_list/ +share/doc/py-sqlalchemy/_modules/examples/adjacency_list/adjacency_list.html +share/doc/py-sqlalchemy/_modules/examples/association/ +share/doc/py-sqlalchemy/_modules/examples/association/basic_association.html +share/doc/py-sqlalchemy/_modules/examples/association/dict_of_sets_with_default.html +share/doc/py-sqlalchemy/_modules/examples/association/proxied_association.html +share/doc/py-sqlalchemy/_modules/examples/custom_attributes/ +share/doc/py-sqlalchemy/_modules/examples/custom_attributes/active_column_defaults.html +share/doc/py-sqlalchemy/_modules/examples/custom_attributes/custom_management.html +share/doc/py-sqlalchemy/_modules/examples/custom_attributes/listen_for_events.html +share/doc/py-sqlalchemy/_modules/examples/dogpile_caching/ +share/doc/py-sqlalchemy/_modules/examples/dogpile_caching/advanced.html +share/doc/py-sqlalchemy/_modules/examples/dogpile_caching/caching_query.html +share/doc/py-sqlalchemy/_modules/examples/dogpile_caching/environment.html +share/doc/py-sqlalchemy/_modules/examples/dogpile_caching/fixture_data.html +share/doc/py-sqlalchemy/_modules/examples/dogpile_caching/helloworld.html +share/doc/py-sqlalchemy/_modules/examples/dogpile_caching/local_session_caching.html +share/doc/py-sqlalchemy/_modules/examples/dogpile_caching/model.html +share/doc/py-sqlalchemy/_modules/examples/dogpile_caching/relationship_caching.html +share/doc/py-sqlalchemy/_modules/examples/dynamic_dict/ +share/doc/py-sqlalchemy/_modules/examples/dynamic_dict/dynamic_dict.html +share/doc/py-sqlalchemy/_modules/examples/elementtree/ +share/doc/py-sqlalchemy/_modules/examples/elementtree/adjacency_list.html +share/doc/py-sqlalchemy/_modules/examples/elementtree/optimized_al.html +share/doc/py-sqlalchemy/_modules/examples/elementtree/pickle.html +share/doc/py-sqlalchemy/_modules/examples/generic_associations/ +share/doc/py-sqlalchemy/_modules/examples/generic_associations/discriminator_on_association.html +share/doc/py-sqlalchemy/_modules/examples/generic_associations/generic_fk.html +share/doc/py-sqlalchemy/_modules/examples/generic_associations/table_per_association.html +share/doc/py-sqlalchemy/_modules/examples/generic_associations/table_per_related.html +share/doc/py-sqlalchemy/_modules/examples/graphs/ +share/doc/py-sqlalchemy/_modules/examples/graphs/directed_graph.html +share/doc/py-sqlalchemy/_modules/examples/inheritance/ +share/doc/py-sqlalchemy/_modules/examples/inheritance/concrete.html +share/doc/py-sqlalchemy/_modules/examples/inheritance/joined.html +share/doc/py-sqlalchemy/_modules/examples/inheritance/single.html +share/doc/py-sqlalchemy/_modules/examples/join_conditions/ +share/doc/py-sqlalchemy/_modules/examples/join_conditions/cast.html +share/doc/py-sqlalchemy/_modules/examples/join_conditions/threeway.html +share/doc/py-sqlalchemy/_modules/examples/large_collection/ +share/doc/py-sqlalchemy/_modules/examples/large_collection/large_collection.html +share/doc/py-sqlalchemy/_modules/examples/materialized_paths/ +share/doc/py-sqlalchemy/_modules/examples/materialized_paths/materialized_paths.html +share/doc/py-sqlalchemy/_modules/examples/nested_sets/ +share/doc/py-sqlalchemy/_modules/examples/nested_sets/nested_sets.html +share/doc/py-sqlalchemy/_modules/examples/performance/ +share/doc/py-sqlalchemy/_modules/examples/performance/__main__.html +share/doc/py-sqlalchemy/_modules/examples/performance/bulk_inserts.html +share/doc/py-sqlalchemy/_modules/examples/performance/bulk_updates.html +share/doc/py-sqlalchemy/_modules/examples/performance/large_resultsets.html +share/doc/py-sqlalchemy/_modules/examples/performance/short_selects.html +share/doc/py-sqlalchemy/_modules/examples/performance/single_inserts.html +share/doc/py-sqlalchemy/_modules/examples/postgis/ +share/doc/py-sqlalchemy/_modules/examples/postgis/postgis.html +share/doc/py-sqlalchemy/_modules/examples/sharding/ +share/doc/py-sqlalchemy/_modules/examples/sharding/attribute_shard.html +share/doc/py-sqlalchemy/_modules/examples/versioned_history/ +share/doc/py-sqlalchemy/_modules/examples/versioned_history/history_meta.html +share/doc/py-sqlalchemy/_modules/examples/versioned_history/test_versioning.html +share/doc/py-sqlalchemy/_modules/examples/versioned_rows/ +share/doc/py-sqlalchemy/_modules/examples/versioned_rows/versioned_map.html +share/doc/py-sqlalchemy/_modules/examples/versioned_rows/versioned_rows.html +share/doc/py-sqlalchemy/_modules/examples/vertical/ +share/doc/py-sqlalchemy/_modules/examples/vertical/dictlike-polymorphic.html +share/doc/py-sqlalchemy/_modules/examples/vertical/dictlike.html +share/doc/py-sqlalchemy/_modules/index.html +share/doc/py-sqlalchemy/_static/ +share/doc/py-sqlalchemy/_static/basic.css +share/doc/py-sqlalchemy/_static/changelog.css +share/doc/py-sqlalchemy/_static/comment-bright.png +share/doc/py-sqlalchemy/_static/comment-close.png +share/doc/py-sqlalchemy/_static/comment.png +share/doc/py-sqlalchemy/_static/detectmobile.js +share/doc/py-sqlalchemy/_static/docs.css +share/doc/py-sqlalchemy/_static/doctools.js +share/doc/py-sqlalchemy/_static/documentation_options.js +share/doc/py-sqlalchemy/_static/down-pressed.png +share/doc/py-sqlalchemy/_static/down.png +share/doc/py-sqlalchemy/_static/file.png +share/doc/py-sqlalchemy/_static/init.js +share/doc/py-sqlalchemy/_static/jquery-3.2.1.js +share/doc/py-sqlalchemy/_static/jquery.js +share/doc/py-sqlalchemy/_static/minus.png +share/doc/py-sqlalchemy/_static/plus.png +share/doc/py-sqlalchemy/_static/pygments.css +share/doc/py-sqlalchemy/_static/searchtools.js +share/doc/py-sqlalchemy/_static/sphinx_paramlinks.css +share/doc/py-sqlalchemy/_static/underscore-1.3.1.js +share/doc/py-sqlalchemy/_static/underscore.js +share/doc/py-sqlalchemy/_static/up-pressed.png +share/doc/py-sqlalchemy/_static/up.png +share/doc/py-sqlalchemy/_static/websupport.js +share/doc/py-sqlalchemy/build/ +share/doc/py-sqlalchemy/build/Makefile +share/doc/py-sqlalchemy/build/changelog/ +share/doc/py-sqlalchemy/build/changelog/changelog_01.rst +share/doc/py-sqlalchemy/build/changelog/changelog_02.rst +share/doc/py-sqlalchemy/build/changelog/changelog_03.rst +share/doc/py-sqlalchemy/build/changelog/changelog_04.rst +share/doc/py-sqlalchemy/build/changelog/changelog_05.rst +share/doc/py-sqlalchemy/build/changelog/changelog_06.rst +share/doc/py-sqlalchemy/build/changelog/changelog_07.rst +share/doc/py-sqlalchemy/build/changelog/changelog_08.rst +share/doc/py-sqlalchemy/build/changelog/changelog_09.rst +share/doc/py-sqlalchemy/build/changelog/changelog_10.rst +share/doc/py-sqlalchemy/build/changelog/changelog_11.rst +share/doc/py-sqlalchemy/build/changelog/changelog_12.rst +share/doc/py-sqlalchemy/build/changelog/index.rst +share/doc/py-sqlalchemy/build/changelog/migration_04.rst +share/doc/py-sqlalchemy/build/changelog/migration_05.rst +share/doc/py-sqlalchemy/build/changelog/migration_06.rst +share/doc/py-sqlalchemy/build/changelog/migration_07.rst +share/doc/py-sqlalchemy/build/changelog/migration_08.rst +share/doc/py-sqlalchemy/build/changelog/migration_09.rst +share/doc/py-sqlalchemy/build/changelog/migration_10.rst +share/doc/py-sqlalchemy/build/changelog/migration_11.rst +share/doc/py-sqlalchemy/build/changelog/migration_12.rst +share/doc/py-sqlalchemy/build/changelog/unreleased_10/ +share/doc/py-sqlalchemy/build/changelog/unreleased_10/4065.rst +share/doc/py-sqlalchemy/build/changelog/unreleased_10/README.txt +share/doc/py-sqlalchemy/build/changelog/unreleased_11/ +share/doc/py-sqlalchemy/build/changelog/unreleased_11/README.txt +share/doc/py-sqlalchemy/build/changelog/unreleased_12/ +share/doc/py-sqlalchemy/build/changelog/unreleased_12/README.txt +share/doc/py-sqlalchemy/build/conf.py +share/doc/py-sqlalchemy/build/contents.rst +share/doc/py-sqlalchemy/build/copyright.rst +share/doc/py-sqlalchemy/build/core/ +share/doc/py-sqlalchemy/build/core/api_basics.rst +share/doc/py-sqlalchemy/build/core/compiler.rst +share/doc/py-sqlalchemy/build/core/connections.rst +share/doc/py-sqlalchemy/build/core/constraints.rst +share/doc/py-sqlalchemy/build/core/custom_types.rst +share/doc/py-sqlalchemy/build/core/ddl.rst +share/doc/py-sqlalchemy/build/core/defaults.rst +share/doc/py-sqlalchemy/build/core/dml.rst +share/doc/py-sqlalchemy/build/core/engines.rst +share/doc/py-sqlalchemy/build/core/engines_connections.rst +share/doc/py-sqlalchemy/build/core/event.rst +share/doc/py-sqlalchemy/build/core/events.rst +share/doc/py-sqlalchemy/build/core/exceptions.rst +share/doc/py-sqlalchemy/build/core/expression_api.rst +share/doc/py-sqlalchemy/build/core/functions.rst +share/doc/py-sqlalchemy/build/core/index.rst +share/doc/py-sqlalchemy/build/core/inspection.rst +share/doc/py-sqlalchemy/build/core/interfaces.rst +share/doc/py-sqlalchemy/build/core/internals.rst +share/doc/py-sqlalchemy/build/core/metadata.rst +share/doc/py-sqlalchemy/build/core/pooling.rst +share/doc/py-sqlalchemy/build/core/reflection.rst +share/doc/py-sqlalchemy/build/core/schema.rst +share/doc/py-sqlalchemy/build/core/selectable.rst +share/doc/py-sqlalchemy/build/core/serializer.rst +share/doc/py-sqlalchemy/build/core/sqla_engine_arch.png +share/doc/py-sqlalchemy/build/core/sqlelement.rst +share/doc/py-sqlalchemy/build/core/tutorial.rst +share/doc/py-sqlalchemy/build/core/type_api.rst +share/doc/py-sqlalchemy/build/core/type_basics.rst +share/doc/py-sqlalchemy/build/core/types.rst +share/doc/py-sqlalchemy/build/corrections.py +share/doc/py-sqlalchemy/build/dialects/ +share/doc/py-sqlalchemy/build/dialects/firebird.rst +share/doc/py-sqlalchemy/build/dialects/index.rst +share/doc/py-sqlalchemy/build/dialects/mssql.rst +share/doc/py-sqlalchemy/build/dialects/mysql.rst +share/doc/py-sqlalchemy/build/dialects/oracle.rst +share/doc/py-sqlalchemy/build/dialects/postgresql.rst +share/doc/py-sqlalchemy/build/dialects/sqlite.rst +share/doc/py-sqlalchemy/build/dialects/sybase.rst +share/doc/py-sqlalchemy/build/errors.rst +share/doc/py-sqlalchemy/build/faq/ +share/doc/py-sqlalchemy/build/faq/connections.rst +share/doc/py-sqlalchemy/build/faq/index.rst +share/doc/py-sqlalchemy/build/faq/metadata_schema.rst +share/doc/py-sqlalchemy/build/faq/ormconfiguration.rst +share/doc/py-sqlalchemy/build/faq/performance.rst +share/doc/py-sqlalchemy/build/faq/sessions.rst +share/doc/py-sqlalchemy/build/faq/sqlexpressions.rst +share/doc/py-sqlalchemy/build/glossary.rst +share/doc/py-sqlalchemy/build/index.rst +share/doc/py-sqlalchemy/build/intro.rst +share/doc/py-sqlalchemy/build/orm/ +share/doc/py-sqlalchemy/build/orm/backref.rst +share/doc/py-sqlalchemy/build/orm/basic_relationships.rst +share/doc/py-sqlalchemy/build/orm/cascades.rst +share/doc/py-sqlalchemy/build/orm/classical.rst +share/doc/py-sqlalchemy/build/orm/collections.rst +share/doc/py-sqlalchemy/build/orm/composites.rst +share/doc/py-sqlalchemy/build/orm/constructors.rst +share/doc/py-sqlalchemy/build/orm/contextual.rst +share/doc/py-sqlalchemy/build/orm/deprecated.rst +share/doc/py-sqlalchemy/build/orm/events.rst +share/doc/py-sqlalchemy/build/orm/examples.rst +share/doc/py-sqlalchemy/build/orm/exceptions.rst +share/doc/py-sqlalchemy/build/orm/extending.rst +share/doc/py-sqlalchemy/build/orm/extensions/ +share/doc/py-sqlalchemy/build/orm/extensions/associationproxy.rst +share/doc/py-sqlalchemy/build/orm/extensions/automap.rst +share/doc/py-sqlalchemy/build/orm/extensions/baked.rst +share/doc/py-sqlalchemy/build/orm/extensions/declarative/ +share/doc/py-sqlalchemy/build/orm/extensions/declarative/api.rst +share/doc/py-sqlalchemy/build/orm/extensions/declarative/basic_use.rst +share/doc/py-sqlalchemy/build/orm/extensions/declarative/index.rst +share/doc/py-sqlalchemy/build/orm/extensions/declarative/inheritance.rst +share/doc/py-sqlalchemy/build/orm/extensions/declarative/mixins.rst +share/doc/py-sqlalchemy/build/orm/extensions/declarative/relationships.rst +share/doc/py-sqlalchemy/build/orm/extensions/declarative/table_config.rst +share/doc/py-sqlalchemy/build/orm/extensions/horizontal_shard.rst +share/doc/py-sqlalchemy/build/orm/extensions/hybrid.rst +share/doc/py-sqlalchemy/build/orm/extensions/index.rst +share/doc/py-sqlalchemy/build/orm/extensions/indexable.rst +share/doc/py-sqlalchemy/build/orm/extensions/instrumentation.rst +share/doc/py-sqlalchemy/build/orm/extensions/mutable.rst +share/doc/py-sqlalchemy/build/orm/extensions/orderinglist.rst +share/doc/py-sqlalchemy/build/orm/index.rst +share/doc/py-sqlalchemy/build/orm/inheritance.rst +share/doc/py-sqlalchemy/build/orm/inheritance_loading.rst +share/doc/py-sqlalchemy/build/orm/internals.rst +share/doc/py-sqlalchemy/build/orm/join_conditions.rst +share/doc/py-sqlalchemy/build/orm/loading.rst +share/doc/py-sqlalchemy/build/orm/loading_columns.rst +share/doc/py-sqlalchemy/build/orm/loading_objects.rst +share/doc/py-sqlalchemy/build/orm/loading_relationships.rst +share/doc/py-sqlalchemy/build/orm/mapped_attributes.rst +share/doc/py-sqlalchemy/build/orm/mapped_sql_expr.rst +share/doc/py-sqlalchemy/build/orm/mapper_config.rst +share/doc/py-sqlalchemy/build/orm/mapping_api.rst +share/doc/py-sqlalchemy/build/orm/mapping_columns.rst +share/doc/py-sqlalchemy/build/orm/mapping_styles.rst +share/doc/py-sqlalchemy/build/orm/nonstandard_mappings.rst +share/doc/py-sqlalchemy/build/orm/persistence_techniques.rst +share/doc/py-sqlalchemy/build/orm/query.rst +share/doc/py-sqlalchemy/build/orm/relationship_api.rst +share/doc/py-sqlalchemy/build/orm/relationship_persistence.rst +share/doc/py-sqlalchemy/build/orm/relationships.rst +share/doc/py-sqlalchemy/build/orm/scalar_mapping.rst +share/doc/py-sqlalchemy/build/orm/self_referential.rst +share/doc/py-sqlalchemy/build/orm/session.rst +share/doc/py-sqlalchemy/build/orm/session_api.rst +share/doc/py-sqlalchemy/build/orm/session_basics.rst +share/doc/py-sqlalchemy/build/orm/session_events.rst +share/doc/py-sqlalchemy/build/orm/session_state_management.rst +share/doc/py-sqlalchemy/build/orm/session_transaction.rst +share/doc/py-sqlalchemy/build/orm/tutorial.rst +share/doc/py-sqlalchemy/build/orm/versioning.rst +share/doc/py-sqlalchemy/build/requirements.txt +share/doc/py-sqlalchemy/build/sqla_arch_small.png +share/doc/py-sqlalchemy/build/texinputs/ +share/doc/py-sqlalchemy/build/texinputs/Makefile +share/doc/py-sqlalchemy/build/texinputs/sphinx.sty +share/doc/py-sqlalchemy/changelog/ +share/doc/py-sqlalchemy/changelog/changelog_01.html +share/doc/py-sqlalchemy/changelog/changelog_02.html +share/doc/py-sqlalchemy/changelog/changelog_03.html +share/doc/py-sqlalchemy/changelog/changelog_04.html +share/doc/py-sqlalchemy/changelog/changelog_05.html +share/doc/py-sqlalchemy/changelog/changelog_06.html +share/doc/py-sqlalchemy/changelog/changelog_07.html +share/doc/py-sqlalchemy/changelog/changelog_08.html +share/doc/py-sqlalchemy/changelog/changelog_09.html +share/doc/py-sqlalchemy/changelog/changelog_10.html +share/doc/py-sqlalchemy/changelog/changelog_11.html +share/doc/py-sqlalchemy/changelog/changelog_12.html +share/doc/py-sqlalchemy/changelog/index.html +share/doc/py-sqlalchemy/changelog/migration_04.html +share/doc/py-sqlalchemy/changelog/migration_05.html +share/doc/py-sqlalchemy/changelog/migration_06.html +share/doc/py-sqlalchemy/changelog/migration_07.html +share/doc/py-sqlalchemy/changelog/migration_08.html +share/doc/py-sqlalchemy/changelog/migration_09.html +share/doc/py-sqlalchemy/changelog/migration_10.html +share/doc/py-sqlalchemy/changelog/migration_11.html +share/doc/py-sqlalchemy/changelog/migration_12.html +share/doc/py-sqlalchemy/contents.html +share/doc/py-sqlalchemy/copyright.html +share/doc/py-sqlalchemy/core/ +share/doc/py-sqlalchemy/core/api_basics.html +share/doc/py-sqlalchemy/core/compiler.html +share/doc/py-sqlalchemy/core/connections.html +share/doc/py-sqlalchemy/core/constraints.html +share/doc/py-sqlalchemy/core/custom_types.html +share/doc/py-sqlalchemy/core/ddl.html +share/doc/py-sqlalchemy/core/defaults.html +share/doc/py-sqlalchemy/core/dml.html +share/doc/py-sqlalchemy/core/engines.html +share/doc/py-sqlalchemy/core/engines_connections.html +share/doc/py-sqlalchemy/core/event.html +share/doc/py-sqlalchemy/core/events.html +share/doc/py-sqlalchemy/core/exceptions.html +share/doc/py-sqlalchemy/core/expression_api.html +share/doc/py-sqlalchemy/core/functions.html +share/doc/py-sqlalchemy/core/index.html +share/doc/py-sqlalchemy/core/inspection.html +share/doc/py-sqlalchemy/core/interfaces.html +share/doc/py-sqlalchemy/core/internals.html +share/doc/py-sqlalchemy/core/metadata.html +share/doc/py-sqlalchemy/core/pooling.html +share/doc/py-sqlalchemy/core/reflection.html +share/doc/py-sqlalchemy/core/schema.html +share/doc/py-sqlalchemy/core/selectable.html +share/doc/py-sqlalchemy/core/serializer.html +share/doc/py-sqlalchemy/core/sqlelement.html +share/doc/py-sqlalchemy/core/tutorial.html +share/doc/py-sqlalchemy/core/type_api.html +share/doc/py-sqlalchemy/core/type_basics.html +share/doc/py-sqlalchemy/core/types.html +share/doc/py-sqlalchemy/dialects/ +share/doc/py-sqlalchemy/dialects/firebird.html +share/doc/py-sqlalchemy/dialects/index.html +share/doc/py-sqlalchemy/dialects/mssql.html +share/doc/py-sqlalchemy/dialects/mysql.html +share/doc/py-sqlalchemy/dialects/oracle.html +share/doc/py-sqlalchemy/dialects/postgresql.html +share/doc/py-sqlalchemy/dialects/sqlite.html +share/doc/py-sqlalchemy/dialects/sybase.html +share/doc/py-sqlalchemy/errors.html +share/doc/py-sqlalchemy/faq/ +share/doc/py-sqlalchemy/faq/connections.html +share/doc/py-sqlalchemy/faq/index.html +share/doc/py-sqlalchemy/faq/metadata_schema.html +share/doc/py-sqlalchemy/faq/ormconfiguration.html +share/doc/py-sqlalchemy/faq/performance.html +share/doc/py-sqlalchemy/faq/sessions.html +share/doc/py-sqlalchemy/faq/sqlexpressions.html +share/doc/py-sqlalchemy/genindex.html +share/doc/py-sqlalchemy/glossary.html +share/doc/py-sqlalchemy/index.html +share/doc/py-sqlalchemy/intro.html +share/doc/py-sqlalchemy/notfound.html +share/doc/py-sqlalchemy/orm/ +share/doc/py-sqlalchemy/orm/backref.html +share/doc/py-sqlalchemy/orm/basic_relationships.html +share/doc/py-sqlalchemy/orm/cascades.html +share/doc/py-sqlalchemy/orm/classical.html +share/doc/py-sqlalchemy/orm/collections.html +share/doc/py-sqlalchemy/orm/composites.html +share/doc/py-sqlalchemy/orm/constructors.html +share/doc/py-sqlalchemy/orm/contextual.html +share/doc/py-sqlalchemy/orm/deprecated.html +share/doc/py-sqlalchemy/orm/events.html +share/doc/py-sqlalchemy/orm/examples.html +share/doc/py-sqlalchemy/orm/exceptions.html +share/doc/py-sqlalchemy/orm/extending.html +share/doc/py-sqlalchemy/orm/extensions/ +share/doc/py-sqlalchemy/orm/extensions/associationproxy.html +share/doc/py-sqlalchemy/orm/extensions/automap.html +share/doc/py-sqlalchemy/orm/extensions/baked.html +share/doc/py-sqlalchemy/orm/extensions/declarative/ +share/doc/py-sqlalchemy/orm/extensions/declarative/api.html +share/doc/py-sqlalchemy/orm/extensions/declarative/basic_use.html +share/doc/py-sqlalchemy/orm/extensions/declarative/index.html +share/doc/py-sqlalchemy/orm/extensions/declarative/inheritance.html +share/doc/py-sqlalchemy/orm/extensions/declarative/mixins.html +share/doc/py-sqlalchemy/orm/extensions/declarative/relationships.html +share/doc/py-sqlalchemy/orm/extensions/declarative/table_config.html +share/doc/py-sqlalchemy/orm/extensions/horizontal_shard.html +share/doc/py-sqlalchemy/orm/extensions/hybrid.html +share/doc/py-sqlalchemy/orm/extensions/index.html +share/doc/py-sqlalchemy/orm/extensions/indexable.html +share/doc/py-sqlalchemy/orm/extensions/instrumentation.html +share/doc/py-sqlalchemy/orm/extensions/mutable.html +share/doc/py-sqlalchemy/orm/extensions/orderinglist.html +share/doc/py-sqlalchemy/orm/index.html +share/doc/py-sqlalchemy/orm/inheritance.html +share/doc/py-sqlalchemy/orm/inheritance_loading.html +share/doc/py-sqlalchemy/orm/internals.html +share/doc/py-sqlalchemy/orm/join_conditions.html +share/doc/py-sqlalchemy/orm/loading.html +share/doc/py-sqlalchemy/orm/loading_columns.html +share/doc/py-sqlalchemy/orm/loading_objects.html +share/doc/py-sqlalchemy/orm/loading_relationships.html +share/doc/py-sqlalchemy/orm/mapped_attributes.html +share/doc/py-sqlalchemy/orm/mapped_sql_expr.html +share/doc/py-sqlalchemy/orm/mapper_config.html +share/doc/py-sqlalchemy/orm/mapping_api.html +share/doc/py-sqlalchemy/orm/mapping_columns.html +share/doc/py-sqlalchemy/orm/mapping_styles.html +share/doc/py-sqlalchemy/orm/nonstandard_mappings.html +share/doc/py-sqlalchemy/orm/persistence_techniques.html +share/doc/py-sqlalchemy/orm/query.html +share/doc/py-sqlalchemy/orm/relationship_api.html +share/doc/py-sqlalchemy/orm/relationship_persistence.html +share/doc/py-sqlalchemy/orm/relationships.html +share/doc/py-sqlalchemy/orm/scalar_mapping.html +share/doc/py-sqlalchemy/orm/self_referential.html +share/doc/py-sqlalchemy/orm/session.html +share/doc/py-sqlalchemy/orm/session_api.html +share/doc/py-sqlalchemy/orm/session_basics.html +share/doc/py-sqlalchemy/orm/session_events.html +share/doc/py-sqlalchemy/orm/session_state_management.html +share/doc/py-sqlalchemy/orm/session_transaction.html +share/doc/py-sqlalchemy/orm/tutorial.html +share/doc/py-sqlalchemy/orm/versioning.html +share/doc/py-sqlalchemy/search.html +share/doc/py-sqlalchemy/searchindex.js +share/examples/py-sqlalchemy/ +share/examples/py-sqlalchemy/__init__.py +share/examples/py-sqlalchemy/adjacency_list/ +share/examples/py-sqlalchemy/adjacency_list/__init__.py +share/examples/py-sqlalchemy/adjacency_list/adjacency_list.py +share/examples/py-sqlalchemy/association/ +share/examples/py-sqlalchemy/association/__init__.py +share/examples/py-sqlalchemy/association/basic_association.py +share/examples/py-sqlalchemy/association/dict_of_sets_with_default.py +share/examples/py-sqlalchemy/association/proxied_association.py +share/examples/py-sqlalchemy/custom_attributes/ +share/examples/py-sqlalchemy/custom_attributes/__init__.py +share/examples/py-sqlalchemy/custom_attributes/active_column_defaults.py +share/examples/py-sqlalchemy/custom_attributes/custom_management.py +share/examples/py-sqlalchemy/custom_attributes/listen_for_events.py +share/examples/py-sqlalchemy/dogpile_caching/ +share/examples/py-sqlalchemy/dogpile_caching/__init__.py +share/examples/py-sqlalchemy/dogpile_caching/advanced.py +share/examples/py-sqlalchemy/dogpile_caching/caching_query.py +share/examples/py-sqlalchemy/dogpile_caching/environment.py +share/examples/py-sqlalchemy/dogpile_caching/fixture_data.py +share/examples/py-sqlalchemy/dogpile_caching/helloworld.py +share/examples/py-sqlalchemy/dogpile_caching/local_session_caching.py +share/examples/py-sqlalchemy/dogpile_caching/model.py +share/examples/py-sqlalchemy/dogpile_caching/relationship_caching.py +share/examples/py-sqlalchemy/dynamic_dict/ +share/examples/py-sqlalchemy/dynamic_dict/__init__.py +share/examples/py-sqlalchemy/dynamic_dict/dynamic_dict.py +share/examples/py-sqlalchemy/elementtree/ +share/examples/py-sqlalchemy/elementtree/__init__.py +share/examples/py-sqlalchemy/elementtree/adjacency_list.py +share/examples/py-sqlalchemy/elementtree/optimized_al.py +share/examples/py-sqlalchemy/elementtree/pickle.py +share/examples/py-sqlalchemy/elementtree/test.xml +share/examples/py-sqlalchemy/elementtree/test2.xml +share/examples/py-sqlalchemy/elementtree/test3.xml +share/examples/py-sqlalchemy/generic_associations/ +share/examples/py-sqlalchemy/generic_associations/__init__.py +share/examples/py-sqlalchemy/generic_associations/discriminator_on_association.py +share/examples/py-sqlalchemy/generic_associations/generic_fk.py +share/examples/py-sqlalchemy/generic_associations/table_per_association.py +share/examples/py-sqlalchemy/generic_associations/table_per_related.py +share/examples/py-sqlalchemy/graphs/ +share/examples/py-sqlalchemy/graphs/__init__.py +share/examples/py-sqlalchemy/graphs/directed_graph.py +share/examples/py-sqlalchemy/inheritance/ +share/examples/py-sqlalchemy/inheritance/__init__.py +share/examples/py-sqlalchemy/inheritance/concrete.py +share/examples/py-sqlalchemy/inheritance/joined.py +share/examples/py-sqlalchemy/inheritance/single.py +share/examples/py-sqlalchemy/join_conditions/ +share/examples/py-sqlalchemy/join_conditions/__init__.py +share/examples/py-sqlalchemy/join_conditions/cast.py +share/examples/py-sqlalchemy/join_conditions/threeway.py +share/examples/py-sqlalchemy/large_collection/ +share/examples/py-sqlalchemy/large_collection/__init__.py +share/examples/py-sqlalchemy/large_collection/large_collection.py +share/examples/py-sqlalchemy/materialized_paths/ +share/examples/py-sqlalchemy/materialized_paths/__init__.py +share/examples/py-sqlalchemy/materialized_paths/materialized_paths.py +share/examples/py-sqlalchemy/nested_sets/ +share/examples/py-sqlalchemy/nested_sets/__init__.py +share/examples/py-sqlalchemy/nested_sets/nested_sets.py +share/examples/py-sqlalchemy/performance/ +share/examples/py-sqlalchemy/performance/__init__.py +share/examples/py-sqlalchemy/performance/__main__.py +share/examples/py-sqlalchemy/performance/bulk_inserts.py +share/examples/py-sqlalchemy/performance/bulk_updates.py +share/examples/py-sqlalchemy/performance/large_resultsets.py +share/examples/py-sqlalchemy/performance/short_selects.py +share/examples/py-sqlalchemy/performance/single_inserts.py +share/examples/py-sqlalchemy/postgis/ +share/examples/py-sqlalchemy/postgis/__init__.py +share/examples/py-sqlalchemy/postgis/postgis.py +share/examples/py-sqlalchemy/sharding/ +share/examples/py-sqlalchemy/sharding/__init__.py +share/examples/py-sqlalchemy/sharding/attribute_shard.py +share/examples/py-sqlalchemy/versioned_history/ +share/examples/py-sqlalchemy/versioned_history/__init__.py +share/examples/py-sqlalchemy/versioned_history/history_meta.py +share/examples/py-sqlalchemy/versioned_history/test_versioning.py +share/examples/py-sqlalchemy/versioned_rows/ +share/examples/py-sqlalchemy/versioned_rows/__init__.py +share/examples/py-sqlalchemy/versioned_rows/versioned_map.py +share/examples/py-sqlalchemy/versioned_rows/versioned_rows.py +share/examples/py-sqlalchemy/vertical/ +share/examples/py-sqlalchemy/vertical/__init__.py +share/examples/py-sqlalchemy/vertical/dictlike-polymorphic.py +share/examples/py-sqlalchemy/vertical/dictlike.py diff --git a/databases/py-sqlalchemy/pkg/PLIST b/databases/py-sqlalchemy/pkg/PLIST-main similarity index 60% rename from databases/py-sqlalchemy/pkg/PLIST rename to databases/py-sqlalchemy/pkg/PLIST-main index c3d0fac3e672..4af72a670e2b 100644 --- a/databases/py-sqlalchemy/pkg/PLIST +++ b/databases/py-sqlalchemy/pkg/PLIST-main @@ -1,4 +1,6 @@ -@comment $OpenBSD: PLIST,v 1.14 2018/06/19 13:59:24 rpointel Exp $ +@comment $OpenBSD: PLIST-main,v 1.1 2018/06/23 21:39:45 landry Exp $ +@pkgpath databases/py-sqlalchemy +@pkgpath databases/py-sqlalchemy,python3 lib/python${MODPY_VERSION}/site-packages/SQLAlchemy-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/ lib/python${MODPY_VERSION}/site-packages/SQLAlchemy-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/PKG-INFO lib/python${MODPY_VERSION}/site-packages/SQLAlchemy-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/SOURCES.txt @@ -430,495 +432,3 @@ lib/python${MODPY_VERSION}/site-packages/sqlalchemy/util/deprecations.py lib/python${MODPY_VERSION}/site-packages/sqlalchemy/util/langhelpers.py lib/python${MODPY_VERSION}/site-packages/sqlalchemy/util/queue.py lib/python${MODPY_VERSION}/site-packages/sqlalchemy/util/topological.py -share/doc/py-sqlalchemy/ -share/doc/py-sqlalchemy/_images/ -share/doc/py-sqlalchemy/_images/sqla_arch_small.png -share/doc/py-sqlalchemy/_images/sqla_engine_arch.png -share/doc/py-sqlalchemy/_modules/ -share/doc/py-sqlalchemy/_modules/examples/ -share/doc/py-sqlalchemy/_modules/examples/adjacency_list/ -share/doc/py-sqlalchemy/_modules/examples/adjacency_list/adjacency_list.html -share/doc/py-sqlalchemy/_modules/examples/association/ -share/doc/py-sqlalchemy/_modules/examples/association/basic_association.html -share/doc/py-sqlalchemy/_modules/examples/association/dict_of_sets_with_default.html -share/doc/py-sqlalchemy/_modules/examples/association/proxied_association.html -share/doc/py-sqlalchemy/_modules/examples/custom_attributes/ -share/doc/py-sqlalchemy/_modules/examples/custom_attributes/active_column_defaults.html -share/doc/py-sqlalchemy/_modules/examples/custom_attributes/custom_management.html -share/doc/py-sqlalchemy/_modules/examples/custom_attributes/listen_for_events.html -share/doc/py-sqlalchemy/_modules/examples/dogpile_caching/ -share/doc/py-sqlalchemy/_modules/examples/dogpile_caching/advanced.html -share/doc/py-sqlalchemy/_modules/examples/dogpile_caching/caching_query.html -share/doc/py-sqlalchemy/_modules/examples/dogpile_caching/environment.html -share/doc/py-sqlalchemy/_modules/examples/dogpile_caching/fixture_data.html -share/doc/py-sqlalchemy/_modules/examples/dogpile_caching/helloworld.html -share/doc/py-sqlalchemy/_modules/examples/dogpile_caching/local_session_caching.html -share/doc/py-sqlalchemy/_modules/examples/dogpile_caching/model.html -share/doc/py-sqlalchemy/_modules/examples/dogpile_caching/relationship_caching.html -share/doc/py-sqlalchemy/_modules/examples/dynamic_dict/ -share/doc/py-sqlalchemy/_modules/examples/dynamic_dict/dynamic_dict.html -share/doc/py-sqlalchemy/_modules/examples/elementtree/ -share/doc/py-sqlalchemy/_modules/examples/elementtree/adjacency_list.html -share/doc/py-sqlalchemy/_modules/examples/elementtree/optimized_al.html -share/doc/py-sqlalchemy/_modules/examples/elementtree/pickle.html -share/doc/py-sqlalchemy/_modules/examples/generic_associations/ -share/doc/py-sqlalchemy/_modules/examples/generic_associations/discriminator_on_association.html -share/doc/py-sqlalchemy/_modules/examples/generic_associations/generic_fk.html -share/doc/py-sqlalchemy/_modules/examples/generic_associations/table_per_association.html -share/doc/py-sqlalchemy/_modules/examples/generic_associations/table_per_related.html -share/doc/py-sqlalchemy/_modules/examples/graphs/ -share/doc/py-sqlalchemy/_modules/examples/graphs/directed_graph.html -share/doc/py-sqlalchemy/_modules/examples/inheritance/ -share/doc/py-sqlalchemy/_modules/examples/inheritance/concrete.html -share/doc/py-sqlalchemy/_modules/examples/inheritance/joined.html -share/doc/py-sqlalchemy/_modules/examples/inheritance/single.html -share/doc/py-sqlalchemy/_modules/examples/join_conditions/ -share/doc/py-sqlalchemy/_modules/examples/join_conditions/cast.html -share/doc/py-sqlalchemy/_modules/examples/join_conditions/threeway.html -share/doc/py-sqlalchemy/_modules/examples/large_collection/ -share/doc/py-sqlalchemy/_modules/examples/large_collection/large_collection.html -share/doc/py-sqlalchemy/_modules/examples/materialized_paths/ -share/doc/py-sqlalchemy/_modules/examples/materialized_paths/materialized_paths.html -share/doc/py-sqlalchemy/_modules/examples/nested_sets/ -share/doc/py-sqlalchemy/_modules/examples/nested_sets/nested_sets.html -share/doc/py-sqlalchemy/_modules/examples/performance/ -share/doc/py-sqlalchemy/_modules/examples/performance/__main__.html -share/doc/py-sqlalchemy/_modules/examples/performance/bulk_inserts.html -share/doc/py-sqlalchemy/_modules/examples/performance/bulk_updates.html -share/doc/py-sqlalchemy/_modules/examples/performance/large_resultsets.html -share/doc/py-sqlalchemy/_modules/examples/performance/short_selects.html -share/doc/py-sqlalchemy/_modules/examples/performance/single_inserts.html -share/doc/py-sqlalchemy/_modules/examples/postgis/ -share/doc/py-sqlalchemy/_modules/examples/postgis/postgis.html -share/doc/py-sqlalchemy/_modules/examples/sharding/ -share/doc/py-sqlalchemy/_modules/examples/sharding/attribute_shard.html -share/doc/py-sqlalchemy/_modules/examples/versioned_history/ -share/doc/py-sqlalchemy/_modules/examples/versioned_history/history_meta.html -share/doc/py-sqlalchemy/_modules/examples/versioned_history/test_versioning.html -share/doc/py-sqlalchemy/_modules/examples/versioned_rows/ -share/doc/py-sqlalchemy/_modules/examples/versioned_rows/versioned_map.html -share/doc/py-sqlalchemy/_modules/examples/versioned_rows/versioned_rows.html -share/doc/py-sqlalchemy/_modules/examples/versioned_rows/versioned_rows_w_versionid.html -share/doc/py-sqlalchemy/_modules/examples/vertical/ -share/doc/py-sqlalchemy/_modules/examples/vertical/dictlike-polymorphic.html -share/doc/py-sqlalchemy/_modules/examples/vertical/dictlike.html -share/doc/py-sqlalchemy/_modules/index.html -share/doc/py-sqlalchemy/_static/ -share/doc/py-sqlalchemy/_static/basic.css -share/doc/py-sqlalchemy/_static/changelog.css -share/doc/py-sqlalchemy/_static/comment-bright.png -share/doc/py-sqlalchemy/_static/comment-close.png -share/doc/py-sqlalchemy/_static/comment.png -share/doc/py-sqlalchemy/_static/detectmobile.js -share/doc/py-sqlalchemy/_static/docs.css -share/doc/py-sqlalchemy/_static/doctools.js -share/doc/py-sqlalchemy/_static/documentation_options.js -share/doc/py-sqlalchemy/_static/down-pressed.png -share/doc/py-sqlalchemy/_static/down.png -share/doc/py-sqlalchemy/_static/file.png -share/doc/py-sqlalchemy/_static/init.js -share/doc/py-sqlalchemy/_static/jquery-3.2.1.js -share/doc/py-sqlalchemy/_static/jquery.js -share/doc/py-sqlalchemy/_static/minus.png -share/doc/py-sqlalchemy/_static/plus.png -share/doc/py-sqlalchemy/_static/pygments.css -share/doc/py-sqlalchemy/_static/searchtools.js -share/doc/py-sqlalchemy/_static/sphinx_paramlinks.css -share/doc/py-sqlalchemy/_static/underscore-1.3.1.js -share/doc/py-sqlalchemy/_static/underscore.js -share/doc/py-sqlalchemy/_static/up-pressed.png -share/doc/py-sqlalchemy/_static/up.png -share/doc/py-sqlalchemy/_static/websupport.js -share/doc/py-sqlalchemy/build/ -share/doc/py-sqlalchemy/build/Makefile -share/doc/py-sqlalchemy/build/changelog/ -share/doc/py-sqlalchemy/build/changelog/changelog_01.rst -share/doc/py-sqlalchemy/build/changelog/changelog_02.rst -share/doc/py-sqlalchemy/build/changelog/changelog_03.rst -share/doc/py-sqlalchemy/build/changelog/changelog_04.rst -share/doc/py-sqlalchemy/build/changelog/changelog_05.rst -share/doc/py-sqlalchemy/build/changelog/changelog_06.rst -share/doc/py-sqlalchemy/build/changelog/changelog_07.rst -share/doc/py-sqlalchemy/build/changelog/changelog_08.rst -share/doc/py-sqlalchemy/build/changelog/changelog_09.rst -share/doc/py-sqlalchemy/build/changelog/changelog_10.rst -share/doc/py-sqlalchemy/build/changelog/changelog_11.rst -share/doc/py-sqlalchemy/build/changelog/changelog_12.rst -share/doc/py-sqlalchemy/build/changelog/index.rst -share/doc/py-sqlalchemy/build/changelog/migration_04.rst -share/doc/py-sqlalchemy/build/changelog/migration_05.rst -share/doc/py-sqlalchemy/build/changelog/migration_06.rst -share/doc/py-sqlalchemy/build/changelog/migration_07.rst -share/doc/py-sqlalchemy/build/changelog/migration_08.rst -share/doc/py-sqlalchemy/build/changelog/migration_09.rst -share/doc/py-sqlalchemy/build/changelog/migration_10.rst -share/doc/py-sqlalchemy/build/changelog/migration_11.rst -share/doc/py-sqlalchemy/build/changelog/migration_12.rst -share/doc/py-sqlalchemy/build/changelog/unreleased_10/ -share/doc/py-sqlalchemy/build/changelog/unreleased_10/4065.rst -share/doc/py-sqlalchemy/build/changelog/unreleased_10/README.txt -share/doc/py-sqlalchemy/build/changelog/unreleased_11/ -share/doc/py-sqlalchemy/build/changelog/unreleased_11/README.txt -share/doc/py-sqlalchemy/build/changelog/unreleased_12/ -share/doc/py-sqlalchemy/build/changelog/unreleased_12/README.txt -share/doc/py-sqlalchemy/build/conf.py -share/doc/py-sqlalchemy/build/contents.rst -share/doc/py-sqlalchemy/build/copyright.rst -share/doc/py-sqlalchemy/build/core/ -share/doc/py-sqlalchemy/build/core/api_basics.rst -share/doc/py-sqlalchemy/build/core/compiler.rst -share/doc/py-sqlalchemy/build/core/connections.rst -share/doc/py-sqlalchemy/build/core/constraints.rst -share/doc/py-sqlalchemy/build/core/custom_types.rst -share/doc/py-sqlalchemy/build/core/ddl.rst -share/doc/py-sqlalchemy/build/core/defaults.rst -share/doc/py-sqlalchemy/build/core/dml.rst -share/doc/py-sqlalchemy/build/core/engines.rst -share/doc/py-sqlalchemy/build/core/engines_connections.rst -share/doc/py-sqlalchemy/build/core/event.rst -share/doc/py-sqlalchemy/build/core/events.rst -share/doc/py-sqlalchemy/build/core/exceptions.rst -share/doc/py-sqlalchemy/build/core/expression_api.rst -share/doc/py-sqlalchemy/build/core/functions.rst -share/doc/py-sqlalchemy/build/core/index.rst -share/doc/py-sqlalchemy/build/core/inspection.rst -share/doc/py-sqlalchemy/build/core/interfaces.rst -share/doc/py-sqlalchemy/build/core/internals.rst -share/doc/py-sqlalchemy/build/core/metadata.rst -share/doc/py-sqlalchemy/build/core/pooling.rst -share/doc/py-sqlalchemy/build/core/reflection.rst -share/doc/py-sqlalchemy/build/core/schema.rst -share/doc/py-sqlalchemy/build/core/selectable.rst -share/doc/py-sqlalchemy/build/core/serializer.rst -share/doc/py-sqlalchemy/build/core/sqla_engine_arch.png -share/doc/py-sqlalchemy/build/core/sqlelement.rst -share/doc/py-sqlalchemy/build/core/tutorial.rst -share/doc/py-sqlalchemy/build/core/type_api.rst -share/doc/py-sqlalchemy/build/core/type_basics.rst -share/doc/py-sqlalchemy/build/core/types.rst -share/doc/py-sqlalchemy/build/corrections.py -share/doc/py-sqlalchemy/build/dialects/ -share/doc/py-sqlalchemy/build/dialects/firebird.rst -share/doc/py-sqlalchemy/build/dialects/index.rst -share/doc/py-sqlalchemy/build/dialects/mssql.rst -share/doc/py-sqlalchemy/build/dialects/mysql.rst -share/doc/py-sqlalchemy/build/dialects/oracle.rst -share/doc/py-sqlalchemy/build/dialects/postgresql.rst -share/doc/py-sqlalchemy/build/dialects/sqlite.rst -share/doc/py-sqlalchemy/build/dialects/sybase.rst -share/doc/py-sqlalchemy/build/errors.rst -share/doc/py-sqlalchemy/build/faq/ -share/doc/py-sqlalchemy/build/faq/connections.rst -share/doc/py-sqlalchemy/build/faq/index.rst -share/doc/py-sqlalchemy/build/faq/metadata_schema.rst -share/doc/py-sqlalchemy/build/faq/ormconfiguration.rst -share/doc/py-sqlalchemy/build/faq/performance.rst -share/doc/py-sqlalchemy/build/faq/sessions.rst -share/doc/py-sqlalchemy/build/faq/sqlexpressions.rst -share/doc/py-sqlalchemy/build/glossary.rst -share/doc/py-sqlalchemy/build/index.rst -share/doc/py-sqlalchemy/build/intro.rst -share/doc/py-sqlalchemy/build/orm/ -share/doc/py-sqlalchemy/build/orm/backref.rst -share/doc/py-sqlalchemy/build/orm/basic_relationships.rst -share/doc/py-sqlalchemy/build/orm/cascades.rst -share/doc/py-sqlalchemy/build/orm/classical.rst -share/doc/py-sqlalchemy/build/orm/collections.rst -share/doc/py-sqlalchemy/build/orm/composites.rst -share/doc/py-sqlalchemy/build/orm/constructors.rst -share/doc/py-sqlalchemy/build/orm/contextual.rst -share/doc/py-sqlalchemy/build/orm/deprecated.rst -share/doc/py-sqlalchemy/build/orm/events.rst -share/doc/py-sqlalchemy/build/orm/examples.rst -share/doc/py-sqlalchemy/build/orm/exceptions.rst -share/doc/py-sqlalchemy/build/orm/extending.rst -share/doc/py-sqlalchemy/build/orm/extensions/ -share/doc/py-sqlalchemy/build/orm/extensions/associationproxy.rst -share/doc/py-sqlalchemy/build/orm/extensions/automap.rst -share/doc/py-sqlalchemy/build/orm/extensions/baked.rst -share/doc/py-sqlalchemy/build/orm/extensions/declarative/ -share/doc/py-sqlalchemy/build/orm/extensions/declarative/api.rst -share/doc/py-sqlalchemy/build/orm/extensions/declarative/basic_use.rst -share/doc/py-sqlalchemy/build/orm/extensions/declarative/index.rst -share/doc/py-sqlalchemy/build/orm/extensions/declarative/inheritance.rst -share/doc/py-sqlalchemy/build/orm/extensions/declarative/mixins.rst -share/doc/py-sqlalchemy/build/orm/extensions/declarative/relationships.rst -share/doc/py-sqlalchemy/build/orm/extensions/declarative/table_config.rst -share/doc/py-sqlalchemy/build/orm/extensions/horizontal_shard.rst -share/doc/py-sqlalchemy/build/orm/extensions/hybrid.rst -share/doc/py-sqlalchemy/build/orm/extensions/index.rst -share/doc/py-sqlalchemy/build/orm/extensions/indexable.rst -share/doc/py-sqlalchemy/build/orm/extensions/instrumentation.rst -share/doc/py-sqlalchemy/build/orm/extensions/mutable.rst -share/doc/py-sqlalchemy/build/orm/extensions/orderinglist.rst -share/doc/py-sqlalchemy/build/orm/index.rst -share/doc/py-sqlalchemy/build/orm/inheritance.rst -share/doc/py-sqlalchemy/build/orm/inheritance_loading.rst -share/doc/py-sqlalchemy/build/orm/internals.rst -share/doc/py-sqlalchemy/build/orm/join_conditions.rst -share/doc/py-sqlalchemy/build/orm/loading.rst -share/doc/py-sqlalchemy/build/orm/loading_columns.rst -share/doc/py-sqlalchemy/build/orm/loading_objects.rst -share/doc/py-sqlalchemy/build/orm/loading_relationships.rst -share/doc/py-sqlalchemy/build/orm/mapped_attributes.rst -share/doc/py-sqlalchemy/build/orm/mapped_sql_expr.rst -share/doc/py-sqlalchemy/build/orm/mapper_config.rst -share/doc/py-sqlalchemy/build/orm/mapping_api.rst -share/doc/py-sqlalchemy/build/orm/mapping_columns.rst -share/doc/py-sqlalchemy/build/orm/mapping_styles.rst -share/doc/py-sqlalchemy/build/orm/nonstandard_mappings.rst -share/doc/py-sqlalchemy/build/orm/persistence_techniques.rst -share/doc/py-sqlalchemy/build/orm/query.rst -share/doc/py-sqlalchemy/build/orm/relationship_api.rst -share/doc/py-sqlalchemy/build/orm/relationship_persistence.rst -share/doc/py-sqlalchemy/build/orm/relationships.rst -share/doc/py-sqlalchemy/build/orm/scalar_mapping.rst -share/doc/py-sqlalchemy/build/orm/self_referential.rst -share/doc/py-sqlalchemy/build/orm/session.rst -share/doc/py-sqlalchemy/build/orm/session_api.rst -share/doc/py-sqlalchemy/build/orm/session_basics.rst -share/doc/py-sqlalchemy/build/orm/session_events.rst -share/doc/py-sqlalchemy/build/orm/session_state_management.rst -share/doc/py-sqlalchemy/build/orm/session_transaction.rst -share/doc/py-sqlalchemy/build/orm/tutorial.rst -share/doc/py-sqlalchemy/build/orm/versioning.rst -share/doc/py-sqlalchemy/build/requirements.txt -share/doc/py-sqlalchemy/build/sqla_arch_small.png -share/doc/py-sqlalchemy/build/texinputs/ -share/doc/py-sqlalchemy/build/texinputs/Makefile -share/doc/py-sqlalchemy/build/texinputs/sphinx.sty -share/doc/py-sqlalchemy/changelog/ -share/doc/py-sqlalchemy/changelog/changelog_01.html -share/doc/py-sqlalchemy/changelog/changelog_02.html -share/doc/py-sqlalchemy/changelog/changelog_03.html -share/doc/py-sqlalchemy/changelog/changelog_04.html -share/doc/py-sqlalchemy/changelog/changelog_05.html -share/doc/py-sqlalchemy/changelog/changelog_06.html -share/doc/py-sqlalchemy/changelog/changelog_07.html -share/doc/py-sqlalchemy/changelog/changelog_08.html -share/doc/py-sqlalchemy/changelog/changelog_09.html -share/doc/py-sqlalchemy/changelog/changelog_10.html -share/doc/py-sqlalchemy/changelog/changelog_11.html -share/doc/py-sqlalchemy/changelog/changelog_12.html -share/doc/py-sqlalchemy/changelog/index.html -share/doc/py-sqlalchemy/changelog/migration_04.html -share/doc/py-sqlalchemy/changelog/migration_05.html -share/doc/py-sqlalchemy/changelog/migration_06.html -share/doc/py-sqlalchemy/changelog/migration_07.html -share/doc/py-sqlalchemy/changelog/migration_08.html -share/doc/py-sqlalchemy/changelog/migration_09.html -share/doc/py-sqlalchemy/changelog/migration_10.html -share/doc/py-sqlalchemy/changelog/migration_11.html -share/doc/py-sqlalchemy/changelog/migration_12.html -share/doc/py-sqlalchemy/contents.html -share/doc/py-sqlalchemy/copyright.html -share/doc/py-sqlalchemy/core/ -share/doc/py-sqlalchemy/core/api_basics.html -share/doc/py-sqlalchemy/core/compiler.html -share/doc/py-sqlalchemy/core/connections.html -share/doc/py-sqlalchemy/core/constraints.html -share/doc/py-sqlalchemy/core/custom_types.html -share/doc/py-sqlalchemy/core/ddl.html -share/doc/py-sqlalchemy/core/defaults.html -share/doc/py-sqlalchemy/core/dml.html -share/doc/py-sqlalchemy/core/engines.html -share/doc/py-sqlalchemy/core/engines_connections.html -share/doc/py-sqlalchemy/core/event.html -share/doc/py-sqlalchemy/core/events.html -share/doc/py-sqlalchemy/core/exceptions.html -share/doc/py-sqlalchemy/core/expression_api.html -share/doc/py-sqlalchemy/core/functions.html -share/doc/py-sqlalchemy/core/index.html -share/doc/py-sqlalchemy/core/inspection.html -share/doc/py-sqlalchemy/core/interfaces.html -share/doc/py-sqlalchemy/core/internals.html -share/doc/py-sqlalchemy/core/metadata.html -share/doc/py-sqlalchemy/core/pooling.html -share/doc/py-sqlalchemy/core/reflection.html -share/doc/py-sqlalchemy/core/schema.html -share/doc/py-sqlalchemy/core/selectable.html -share/doc/py-sqlalchemy/core/serializer.html -share/doc/py-sqlalchemy/core/sqlelement.html -share/doc/py-sqlalchemy/core/tutorial.html -share/doc/py-sqlalchemy/core/type_api.html -share/doc/py-sqlalchemy/core/type_basics.html -share/doc/py-sqlalchemy/core/types.html -share/doc/py-sqlalchemy/dialects/ -share/doc/py-sqlalchemy/dialects/firebird.html -share/doc/py-sqlalchemy/dialects/index.html -share/doc/py-sqlalchemy/dialects/mssql.html -share/doc/py-sqlalchemy/dialects/mysql.html -share/doc/py-sqlalchemy/dialects/oracle.html -share/doc/py-sqlalchemy/dialects/postgresql.html -share/doc/py-sqlalchemy/dialects/sqlite.html -share/doc/py-sqlalchemy/dialects/sybase.html -share/doc/py-sqlalchemy/errors.html -share/doc/py-sqlalchemy/faq/ -share/doc/py-sqlalchemy/faq/connections.html -share/doc/py-sqlalchemy/faq/index.html -share/doc/py-sqlalchemy/faq/metadata_schema.html -share/doc/py-sqlalchemy/faq/ormconfiguration.html -share/doc/py-sqlalchemy/faq/performance.html -share/doc/py-sqlalchemy/faq/sessions.html -share/doc/py-sqlalchemy/faq/sqlexpressions.html -share/doc/py-sqlalchemy/genindex.html -share/doc/py-sqlalchemy/glossary.html -share/doc/py-sqlalchemy/index.html -share/doc/py-sqlalchemy/intro.html -share/doc/py-sqlalchemy/notfound.html -share/doc/py-sqlalchemy/orm/ -share/doc/py-sqlalchemy/orm/backref.html -share/doc/py-sqlalchemy/orm/basic_relationships.html -share/doc/py-sqlalchemy/orm/cascades.html -share/doc/py-sqlalchemy/orm/classical.html -share/doc/py-sqlalchemy/orm/collections.html -share/doc/py-sqlalchemy/orm/composites.html -share/doc/py-sqlalchemy/orm/constructors.html -share/doc/py-sqlalchemy/orm/contextual.html -share/doc/py-sqlalchemy/orm/deprecated.html -share/doc/py-sqlalchemy/orm/events.html -share/doc/py-sqlalchemy/orm/examples.html -share/doc/py-sqlalchemy/orm/exceptions.html -share/doc/py-sqlalchemy/orm/extending.html -share/doc/py-sqlalchemy/orm/extensions/ -share/doc/py-sqlalchemy/orm/extensions/associationproxy.html -share/doc/py-sqlalchemy/orm/extensions/automap.html -share/doc/py-sqlalchemy/orm/extensions/baked.html -share/doc/py-sqlalchemy/orm/extensions/declarative/ -share/doc/py-sqlalchemy/orm/extensions/declarative/api.html -share/doc/py-sqlalchemy/orm/extensions/declarative/basic_use.html -share/doc/py-sqlalchemy/orm/extensions/declarative/index.html -share/doc/py-sqlalchemy/orm/extensions/declarative/inheritance.html -share/doc/py-sqlalchemy/orm/extensions/declarative/mixins.html -share/doc/py-sqlalchemy/orm/extensions/declarative/relationships.html -share/doc/py-sqlalchemy/orm/extensions/declarative/table_config.html -share/doc/py-sqlalchemy/orm/extensions/horizontal_shard.html -share/doc/py-sqlalchemy/orm/extensions/hybrid.html -share/doc/py-sqlalchemy/orm/extensions/index.html -share/doc/py-sqlalchemy/orm/extensions/indexable.html -share/doc/py-sqlalchemy/orm/extensions/instrumentation.html -share/doc/py-sqlalchemy/orm/extensions/mutable.html -share/doc/py-sqlalchemy/orm/extensions/orderinglist.html -share/doc/py-sqlalchemy/orm/index.html -share/doc/py-sqlalchemy/orm/inheritance.html -share/doc/py-sqlalchemy/orm/inheritance_loading.html -share/doc/py-sqlalchemy/orm/internals.html -share/doc/py-sqlalchemy/orm/join_conditions.html -share/doc/py-sqlalchemy/orm/loading.html -share/doc/py-sqlalchemy/orm/loading_columns.html -share/doc/py-sqlalchemy/orm/loading_objects.html -share/doc/py-sqlalchemy/orm/loading_relationships.html -share/doc/py-sqlalchemy/orm/mapped_attributes.html -share/doc/py-sqlalchemy/orm/mapped_sql_expr.html -share/doc/py-sqlalchemy/orm/mapper_config.html -share/doc/py-sqlalchemy/orm/mapping_api.html -share/doc/py-sqlalchemy/orm/mapping_columns.html -share/doc/py-sqlalchemy/orm/mapping_styles.html -share/doc/py-sqlalchemy/orm/nonstandard_mappings.html -share/doc/py-sqlalchemy/orm/persistence_techniques.html -share/doc/py-sqlalchemy/orm/query.html -share/doc/py-sqlalchemy/orm/relationship_api.html -share/doc/py-sqlalchemy/orm/relationship_persistence.html -share/doc/py-sqlalchemy/orm/relationships.html -share/doc/py-sqlalchemy/orm/scalar_mapping.html -share/doc/py-sqlalchemy/orm/self_referential.html -share/doc/py-sqlalchemy/orm/session.html -share/doc/py-sqlalchemy/orm/session_api.html -share/doc/py-sqlalchemy/orm/session_basics.html -share/doc/py-sqlalchemy/orm/session_events.html -share/doc/py-sqlalchemy/orm/session_state_management.html -share/doc/py-sqlalchemy/orm/session_transaction.html -share/doc/py-sqlalchemy/orm/tutorial.html -share/doc/py-sqlalchemy/orm/versioning.html -share/doc/py-sqlalchemy/search.html -share/doc/py-sqlalchemy/searchindex.js -share/examples/py-sqlalchemy/ -share/examples/py-sqlalchemy/__init__.py -share/examples/py-sqlalchemy/adjacency_list/ -share/examples/py-sqlalchemy/adjacency_list/__init__.py -share/examples/py-sqlalchemy/adjacency_list/adjacency_list.py -share/examples/py-sqlalchemy/association/ -share/examples/py-sqlalchemy/association/__init__.py -share/examples/py-sqlalchemy/association/basic_association.py -share/examples/py-sqlalchemy/association/dict_of_sets_with_default.py -share/examples/py-sqlalchemy/association/proxied_association.py -share/examples/py-sqlalchemy/custom_attributes/ -share/examples/py-sqlalchemy/custom_attributes/__init__.py -share/examples/py-sqlalchemy/custom_attributes/active_column_defaults.py -share/examples/py-sqlalchemy/custom_attributes/custom_management.py -share/examples/py-sqlalchemy/custom_attributes/listen_for_events.py -share/examples/py-sqlalchemy/dogpile_caching/ -share/examples/py-sqlalchemy/dogpile_caching/__init__.py -share/examples/py-sqlalchemy/dogpile_caching/advanced.py -share/examples/py-sqlalchemy/dogpile_caching/caching_query.py -share/examples/py-sqlalchemy/dogpile_caching/environment.py -share/examples/py-sqlalchemy/dogpile_caching/fixture_data.py -share/examples/py-sqlalchemy/dogpile_caching/helloworld.py -share/examples/py-sqlalchemy/dogpile_caching/local_session_caching.py -share/examples/py-sqlalchemy/dogpile_caching/model.py -share/examples/py-sqlalchemy/dogpile_caching/relationship_caching.py -share/examples/py-sqlalchemy/dynamic_dict/ -share/examples/py-sqlalchemy/dynamic_dict/__init__.py -share/examples/py-sqlalchemy/dynamic_dict/dynamic_dict.py -share/examples/py-sqlalchemy/elementtree/ -share/examples/py-sqlalchemy/elementtree/__init__.py -share/examples/py-sqlalchemy/elementtree/adjacency_list.py -share/examples/py-sqlalchemy/elementtree/optimized_al.py -share/examples/py-sqlalchemy/elementtree/pickle.py -share/examples/py-sqlalchemy/elementtree/test.xml -share/examples/py-sqlalchemy/elementtree/test2.xml -share/examples/py-sqlalchemy/elementtree/test3.xml -share/examples/py-sqlalchemy/generic_associations/ -share/examples/py-sqlalchemy/generic_associations/__init__.py -share/examples/py-sqlalchemy/generic_associations/discriminator_on_association.py -share/examples/py-sqlalchemy/generic_associations/generic_fk.py -share/examples/py-sqlalchemy/generic_associations/table_per_association.py -share/examples/py-sqlalchemy/generic_associations/table_per_related.py -share/examples/py-sqlalchemy/graphs/ -share/examples/py-sqlalchemy/graphs/__init__.py -share/examples/py-sqlalchemy/graphs/directed_graph.py -share/examples/py-sqlalchemy/inheritance/ -share/examples/py-sqlalchemy/inheritance/__init__.py -share/examples/py-sqlalchemy/inheritance/concrete.py -share/examples/py-sqlalchemy/inheritance/joined.py -share/examples/py-sqlalchemy/inheritance/single.py -share/examples/py-sqlalchemy/join_conditions/ -share/examples/py-sqlalchemy/join_conditions/__init__.py -share/examples/py-sqlalchemy/join_conditions/cast.py -share/examples/py-sqlalchemy/join_conditions/threeway.py -share/examples/py-sqlalchemy/large_collection/ -share/examples/py-sqlalchemy/large_collection/__init__.py -share/examples/py-sqlalchemy/large_collection/large_collection.py -share/examples/py-sqlalchemy/materialized_paths/ -share/examples/py-sqlalchemy/materialized_paths/__init__.py -share/examples/py-sqlalchemy/materialized_paths/materialized_paths.py -share/examples/py-sqlalchemy/nested_sets/ -share/examples/py-sqlalchemy/nested_sets/__init__.py -share/examples/py-sqlalchemy/nested_sets/nested_sets.py -share/examples/py-sqlalchemy/performance/ -share/examples/py-sqlalchemy/performance/__init__.py -share/examples/py-sqlalchemy/performance/__main__.py -share/examples/py-sqlalchemy/performance/bulk_inserts.py -share/examples/py-sqlalchemy/performance/bulk_updates.py -share/examples/py-sqlalchemy/performance/large_resultsets.py -share/examples/py-sqlalchemy/performance/short_selects.py -share/examples/py-sqlalchemy/performance/single_inserts.py -share/examples/py-sqlalchemy/postgis/ -share/examples/py-sqlalchemy/postgis/__init__.py -share/examples/py-sqlalchemy/postgis/postgis.py -share/examples/py-sqlalchemy/sharding/ -share/examples/py-sqlalchemy/sharding/__init__.py -share/examples/py-sqlalchemy/sharding/attribute_shard.py -share/examples/py-sqlalchemy/versioned_history/ -share/examples/py-sqlalchemy/versioned_history/__init__.py -share/examples/py-sqlalchemy/versioned_history/history_meta.py -share/examples/py-sqlalchemy/versioned_history/test_versioning.py -share/examples/py-sqlalchemy/versioned_rows/ -share/examples/py-sqlalchemy/versioned_rows/__init__.py -share/examples/py-sqlalchemy/versioned_rows/versioned_map.py -share/examples/py-sqlalchemy/versioned_rows/versioned_rows.py -share/examples/py-sqlalchemy/versioned_rows/versioned_rows_w_versionid.py -share/examples/py-sqlalchemy/vertical/ -share/examples/py-sqlalchemy/vertical/__init__.py -share/examples/py-sqlalchemy/vertical/dictlike-polymorphic.py -share/examples/py-sqlalchemy/vertical/dictlike.py