An object database implemented on top of SQLite.
This commit is contained in:
parent
5c1884f09f
commit
16649a5b54
4 changed files with 464 additions and 0 deletions
5
py-divmod-axiom/DESCR
Normal file
5
py-divmod-axiom/DESCR
Normal file
|
@ -0,0 +1,5 @@
|
|||
Axiom is an object database, or alternatively, an object-relational mapper. Its
|
||||
primary goal is to provide an object-oriented layer with what we consider to be
|
||||
the key aspects of OO, i.e. polymorphism and message dispatch, without
|
||||
hindering the power of an RDBMS. It is designed to "feel pythonic", without
|
||||
encouraging the typical ORM behavior such as potato programming.
|
21
py-divmod-axiom/Makefile
Normal file
21
py-divmod-axiom/Makefile
Normal file
|
@ -0,0 +1,21 @@
|
|||
# $NetBSD: Makefile,v 1.1.1.1 2006/08/28 01:18:14 milosn Exp $
|
||||
|
||||
AXIOM_VERSION= 0.5.0
|
||||
DISTNAME= Axiom-${AXIOM_VERSION}
|
||||
PKGNAME= ${PYPKGPREFIX}-divmod-axiom-${AXIOM_VERSION}
|
||||
CATEGORIES= python
|
||||
MASTER_SITES= ftp://ftp.osuosl.org/pub/nslu2/sources/
|
||||
EXTRACT_SUFX= .tar.gz
|
||||
|
||||
MAINTAINER= milos.negovanovic@googlemail.com
|
||||
HOMEPAGE= http://divmod.org/trac/wiki/DivmodAxiom
|
||||
COMMENT= An object database implemented on top of SQLite
|
||||
|
||||
DEPENDS+= ${PYPKGPREFIX}-sqlite2>=2.0:../../databases/py-sqlite2
|
||||
DEPENDS+= ${PYPKGPREFIX}-twisted-core>=2.4.0:../../wip/py-twisted-core
|
||||
DEPENDS+= ${PYPKGPREFIX}-divmod-epsilon>=0.5.0:../../wip/py-divmod-epsilon
|
||||
|
||||
PYDISTUTILSPKG= yes
|
||||
|
||||
.include "../../lang/python/extension.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
433
py-divmod-axiom/PLIST
Normal file
433
py-divmod-axiom/PLIST
Normal file
|
@ -0,0 +1,433 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2006/08/28 01:18:15 milosn Exp $
|
||||
${PYSITELIB}/axiom/_pysqlite2.py
|
||||
${PYSITELIB}/axiom/__init__.py
|
||||
${PYSITELIB}/axiom/_apsw.py
|
||||
${PYSITELIB}/axiom/_fincache.py
|
||||
${PYSITELIB}/axiom/attributes.py
|
||||
${PYSITELIB}/axiom/_schema.py
|
||||
${PYSITELIB}/axiom/_version.py
|
||||
${PYSITELIB}/axiom/batch.py
|
||||
${PYSITELIB}/axiom/errors.py
|
||||
${PYSITELIB}/axiom/iaxiom.py
|
||||
${PYSITELIB}/axiom/item.py
|
||||
${PYSITELIB}/axiom/queryutil.py
|
||||
${PYSITELIB}/axiom/scheduler.py
|
||||
${PYSITELIB}/axiom/sequence.py
|
||||
${PYSITELIB}/axiom/slotmachine.py
|
||||
${PYSITELIB}/axiom/store.py
|
||||
${PYSITELIB}/axiom/substore.py
|
||||
${PYSITELIB}/axiom/tags.py
|
||||
${PYSITELIB}/axiom/upgrade.py
|
||||
${PYSITELIB}/axiom/userbase.py
|
||||
${PYSITELIB}/axiom/plugins/userbasecmd.py
|
||||
${PYSITELIB}/axiom/plugins/__init__.py
|
||||
${PYSITELIB}/axiom/plugins/browsecmd.py
|
||||
${PYSITELIB}/axiom/plugins/userbasecmd.pyc
|
||||
${PYSITELIB}/axiom/plugins/__init__.pyc
|
||||
${PYSITELIB}/axiom/plugins/browsecmd.pyc
|
||||
${PYSITELIB}/axiom/scripts/__init__.py
|
||||
${PYSITELIB}/axiom/scripts/axiomatic.py
|
||||
${PYSITELIB}/axiom/scripts/pysql.py
|
||||
${PYSITELIB}/axiom/scripts/__init__.pyc
|
||||
${PYSITELIB}/axiom/scripts/axiomatic.pyc
|
||||
${PYSITELIB}/axiom/scripts/pysql.pyc
|
||||
${PYSITELIB}/axiom/test/itemtestmain.py
|
||||
${PYSITELIB}/axiom/test/__init__.py
|
||||
${PYSITELIB}/axiom/test/itemtest.py
|
||||
${PYSITELIB}/axiom/test/test_attributes.py
|
||||
${PYSITELIB}/axiom/test/morenewapp.py
|
||||
${PYSITELIB}/axiom/test/newapp.py
|
||||
${PYSITELIB}/axiom/test/oldapp.py
|
||||
${PYSITELIB}/axiom/test/openthenload.py
|
||||
${PYSITELIB}/axiom/test/test_crossstore.py
|
||||
${PYSITELIB}/axiom/test/test_batch.py
|
||||
${PYSITELIB}/axiom/test/test_count.py
|
||||
${PYSITELIB}/axiom/test/test_inheritance.py
|
||||
${PYSITELIB}/axiom/test/test_files.py
|
||||
${PYSITELIB}/axiom/test/test_mixin.py
|
||||
${PYSITELIB}/axiom/test/test_item.py
|
||||
${PYSITELIB}/axiom/test/test_unavailable_type.py
|
||||
${PYSITELIB}/axiom/test/test_powerup.py
|
||||
${PYSITELIB}/axiom/test/test_query.py
|
||||
${PYSITELIB}/axiom/test/test_queryutil.py
|
||||
${PYSITELIB}/axiom/test/historic/stub_account1to2.py
|
||||
${PYSITELIB}/axiom/test/historic/__init__.py
|
||||
${PYSITELIB}/axiom/test/historic/stub_loginMethod1to2.py
|
||||
${PYSITELIB}/axiom/test/historic/stub_catalog1to2.py
|
||||
${PYSITELIB}/axiom/test/historic/test_account1to2.py
|
||||
${PYSITELIB}/axiom/test/historic/stubloader.py
|
||||
${PYSITELIB}/axiom/test/historic/test_loginMethod1to2.py
|
||||
${PYSITELIB}/axiom/test/historic/test_catalog1to2.py
|
||||
${PYSITELIB}/axiom/test/historic/loginMethod1to2.axiom.tbz2
|
||||
${PYSITELIB}/axiom/test/historic/account1to2.axiom.tbz2
|
||||
${PYSITELIB}/axiom/test/historic/catalog1to2.axiom.tbz2
|
||||
${PYSITELIB}/axiom/test/historic/stub_account1to2.pyc
|
||||
${PYSITELIB}/axiom/test/historic/__init__.pyc
|
||||
${PYSITELIB}/axiom/test/historic/stub_loginMethod1to2.pyc
|
||||
${PYSITELIB}/axiom/test/historic/stub_catalog1to2.pyc
|
||||
${PYSITELIB}/axiom/test/historic/test_account1to2.pyc
|
||||
${PYSITELIB}/axiom/test/historic/stubloader.pyc
|
||||
${PYSITELIB}/axiom/test/historic/test_loginMethod1to2.pyc
|
||||
${PYSITELIB}/axiom/test/historic/test_catalog1to2.pyc
|
||||
${PYSITELIB}/axiom/test/test_reference.py
|
||||
${PYSITELIB}/axiom/test/test_scheduler.py
|
||||
${PYSITELIB}/axiom/test/test_sequence.py
|
||||
${PYSITELIB}/axiom/test/test_slotmachine.py
|
||||
${PYSITELIB}/axiom/test/test_substore.py
|
||||
${PYSITELIB}/axiom/test/test_tablecreate.py
|
||||
${PYSITELIB}/axiom/test/test_tags.py
|
||||
${PYSITELIB}/axiom/test/test_upgrading.py
|
||||
${PYSITELIB}/axiom/test/test_userbase.py
|
||||
${PYSITELIB}/axiom/test/test_xatop.py
|
||||
${PYSITELIB}/axiom/test/toonewapp.py
|
||||
${PYSITELIB}/axiom/test/itemtestmain.pyc
|
||||
${PYSITELIB}/axiom/test/__init__.pyc
|
||||
${PYSITELIB}/axiom/test/itemtest.pyc
|
||||
${PYSITELIB}/axiom/test/test_attributes.pyc
|
||||
${PYSITELIB}/axiom/test/morenewapp.pyc
|
||||
${PYSITELIB}/axiom/test/newapp.pyc
|
||||
${PYSITELIB}/axiom/test/oldapp.pyc
|
||||
${PYSITELIB}/axiom/test/openthenload.pyc
|
||||
${PYSITELIB}/axiom/test/test_crossstore.pyc
|
||||
${PYSITELIB}/axiom/test/test_batch.pyc
|
||||
${PYSITELIB}/axiom/test/test_count.pyc
|
||||
${PYSITELIB}/axiom/test/test_inheritance.pyc
|
||||
${PYSITELIB}/axiom/test/test_files.pyc
|
||||
${PYSITELIB}/axiom/test/test_mixin.pyc
|
||||
${PYSITELIB}/axiom/test/test_item.pyc
|
||||
${PYSITELIB}/axiom/test/test_unavailable_type.pyc
|
||||
${PYSITELIB}/axiom/test/test_powerup.pyc
|
||||
${PYSITELIB}/axiom/test/test_query.pyc
|
||||
${PYSITELIB}/axiom/test/test_queryutil.pyc
|
||||
${PYSITELIB}/axiom/test/test_reference.pyc
|
||||
${PYSITELIB}/axiom/test/test_scheduler.pyc
|
||||
${PYSITELIB}/axiom/test/test_sequence.pyc
|
||||
${PYSITELIB}/axiom/test/test_slotmachine.pyc
|
||||
${PYSITELIB}/axiom/test/test_substore.pyc
|
||||
${PYSITELIB}/axiom/test/test_tablecreate.pyc
|
||||
${PYSITELIB}/axiom/test/test_tags.pyc
|
||||
${PYSITELIB}/axiom/test/test_upgrading.pyc
|
||||
${PYSITELIB}/axiom/test/test_userbase.pyc
|
||||
${PYSITELIB}/axiom/test/test_xatop.pyc
|
||||
${PYSITELIB}/axiom/test/toonewapp.pyc
|
||||
${PYSITELIB}/axiom/batch.tac
|
||||
${PYSITELIB}/axiom/benchmarks/benchmark_itemcreation.py
|
||||
${PYSITELIB}/axiom/benchmarks/benchmark_tagnames.py
|
||||
${PYSITELIB}/axiom/benchmarks/benchmark_tagsof.py
|
||||
${PYSITELIB}/axiom/benchmarks/testbase.py
|
||||
${PYSITELIB}/axiom/benchmarks/testindex.py
|
||||
${PYSITELIB}/axiom/benchmarks/testinit.py
|
||||
${PYSITELIB}/axiom/benchmarks/testreader.py
|
||||
${PYSITELIB}/axiom/benchmarks/testwriter.py
|
||||
${PYSITELIB}/axiom/benchmarks/benchmark_itemcreation.pyc
|
||||
${PYSITELIB}/axiom/benchmarks/benchmark_tagnames.pyc
|
||||
${PYSITELIB}/axiom/benchmarks/benchmark_tagsof.pyc
|
||||
${PYSITELIB}/axiom/benchmarks/testbase.pyc
|
||||
${PYSITELIB}/axiom/benchmarks/testindex.pyc
|
||||
${PYSITELIB}/axiom/benchmarks/testinit.pyc
|
||||
${PYSITELIB}/axiom/benchmarks/testreader.pyc
|
||||
${PYSITELIB}/axiom/benchmarks/testwriter.pyc
|
||||
${PYSITELIB}/axiom/examples/bucket.py
|
||||
${PYSITELIB}/axiom/examples/library.py
|
||||
${PYSITELIB}/axiom/examples/bucket.pyc
|
||||
${PYSITELIB}/axiom/examples/library.pyc
|
||||
${PYSITELIB}/axiom/_pysqlite2.pyc
|
||||
${PYSITELIB}/axiom/__init__.pyc
|
||||
${PYSITELIB}/axiom/_apsw.pyc
|
||||
${PYSITELIB}/axiom/_fincache.pyc
|
||||
${PYSITELIB}/axiom/attributes.pyc
|
||||
${PYSITELIB}/axiom/_schema.pyc
|
||||
${PYSITELIB}/axiom/_version.pyc
|
||||
${PYSITELIB}/axiom/batch.pyc
|
||||
${PYSITELIB}/axiom/errors.pyc
|
||||
${PYSITELIB}/axiom/iaxiom.pyc
|
||||
${PYSITELIB}/axiom/item.pyc
|
||||
${PYSITELIB}/axiom/queryutil.pyc
|
||||
${PYSITELIB}/axiom/scheduler.pyc
|
||||
${PYSITELIB}/axiom/sequence.pyc
|
||||
${PYSITELIB}/axiom/slotmachine.pyc
|
||||
${PYSITELIB}/axiom/store.pyc
|
||||
${PYSITELIB}/axiom/substore.pyc
|
||||
${PYSITELIB}/axiom/tags.pyc
|
||||
${PYSITELIB}/axiom/upgrade.pyc
|
||||
${PYSITELIB}/axiom/userbase.pyc
|
||||
${PYSITELIB}/build/lib/axiom/_pysqlite2.py
|
||||
${PYSITELIB}/build/lib/axiom/__init__.py
|
||||
${PYSITELIB}/build/lib/axiom/_apsw.py
|
||||
${PYSITELIB}/build/lib/axiom/_fincache.py
|
||||
${PYSITELIB}/build/lib/axiom/attributes.py
|
||||
${PYSITELIB}/build/lib/axiom/_schema.py
|
||||
${PYSITELIB}/build/lib/axiom/_version.py
|
||||
${PYSITELIB}/build/lib/axiom/batch.py
|
||||
${PYSITELIB}/build/lib/axiom/errors.py
|
||||
${PYSITELIB}/build/lib/axiom/iaxiom.py
|
||||
${PYSITELIB}/build/lib/axiom/item.py
|
||||
${PYSITELIB}/build/lib/axiom/queryutil.py
|
||||
${PYSITELIB}/build/lib/axiom/scheduler.py
|
||||
${PYSITELIB}/build/lib/axiom/sequence.py
|
||||
${PYSITELIB}/build/lib/axiom/slotmachine.py
|
||||
${PYSITELIB}/build/lib/axiom/store.py
|
||||
${PYSITELIB}/build/lib/axiom/substore.py
|
||||
${PYSITELIB}/build/lib/axiom/tags.py
|
||||
${PYSITELIB}/build/lib/axiom/upgrade.py
|
||||
${PYSITELIB}/build/lib/axiom/userbase.py
|
||||
${PYSITELIB}/build/lib/axiom/plugins/userbasecmd.py
|
||||
${PYSITELIB}/build/lib/axiom/plugins/__init__.py
|
||||
${PYSITELIB}/build/lib/axiom/plugins/browsecmd.py
|
||||
${PYSITELIB}/build/lib/axiom/scripts/__init__.py
|
||||
${PYSITELIB}/build/lib/axiom/scripts/axiomatic.py
|
||||
${PYSITELIB}/build/lib/axiom/scripts/pysql.py
|
||||
${PYSITELIB}/build/lib/axiom/test/itemtestmain.py
|
||||
${PYSITELIB}/build/lib/axiom/test/__init__.py
|
||||
${PYSITELIB}/build/lib/axiom/test/itemtest.py
|
||||
${PYSITELIB}/build/lib/axiom/test/test_attributes.py
|
||||
${PYSITELIB}/build/lib/axiom/test/morenewapp.py
|
||||
${PYSITELIB}/build/lib/axiom/test/newapp.py
|
||||
${PYSITELIB}/build/lib/axiom/test/oldapp.py
|
||||
${PYSITELIB}/build/lib/axiom/test/openthenload.py
|
||||
${PYSITELIB}/build/lib/axiom/test/test_crossstore.py
|
||||
${PYSITELIB}/build/lib/axiom/test/test_batch.py
|
||||
${PYSITELIB}/build/lib/axiom/test/test_count.py
|
||||
${PYSITELIB}/build/lib/axiom/test/test_inheritance.py
|
||||
${PYSITELIB}/build/lib/axiom/test/test_files.py
|
||||
${PYSITELIB}/build/lib/axiom/test/test_mixin.py
|
||||
${PYSITELIB}/build/lib/axiom/test/test_item.py
|
||||
${PYSITELIB}/build/lib/axiom/test/test_unavailable_type.py
|
||||
${PYSITELIB}/build/lib/axiom/test/test_powerup.py
|
||||
${PYSITELIB}/build/lib/axiom/test/test_query.py
|
||||
${PYSITELIB}/build/lib/axiom/test/test_queryutil.py
|
||||
${PYSITELIB}/build/lib/axiom/test/historic/stub_account1to2.py
|
||||
${PYSITELIB}/build/lib/axiom/test/historic/__init__.py
|
||||
${PYSITELIB}/build/lib/axiom/test/historic/stub_loginMethod1to2.py
|
||||
${PYSITELIB}/build/lib/axiom/test/historic/stub_catalog1to2.py
|
||||
${PYSITELIB}/build/lib/axiom/test/historic/test_account1to2.py
|
||||
${PYSITELIB}/build/lib/axiom/test/historic/stubloader.py
|
||||
${PYSITELIB}/build/lib/axiom/test/historic/test_loginMethod1to2.py
|
||||
${PYSITELIB}/build/lib/axiom/test/historic/test_catalog1to2.py
|
||||
${PYSITELIB}/build/lib/axiom/test/test_reference.py
|
||||
${PYSITELIB}/build/lib/axiom/test/test_scheduler.py
|
||||
${PYSITELIB}/build/lib/axiom/test/test_sequence.py
|
||||
${PYSITELIB}/build/lib/axiom/test/test_slotmachine.py
|
||||
${PYSITELIB}/build/lib/axiom/test/test_substore.py
|
||||
${PYSITELIB}/build/lib/axiom/test/test_tablecreate.py
|
||||
${PYSITELIB}/build/lib/axiom/test/test_tags.py
|
||||
${PYSITELIB}/build/lib/axiom/test/test_upgrading.py
|
||||
${PYSITELIB}/build/lib/axiom/test/test_userbase.py
|
||||
${PYSITELIB}/build/lib/axiom/test/test_xatop.py
|
||||
${PYSITELIB}/build/lib/axiom/test/toonewapp.py
|
||||
bin/axiomatic
|
||||
${PYSITELIB}/axiom/__init__.pyo
|
||||
${PYSITELIB}/axiom/_apsw.pyo
|
||||
${PYSITELIB}/axiom/_fincache.pyo
|
||||
${PYSITELIB}/axiom/_pysqlite2.pyo
|
||||
${PYSITELIB}/axiom/_schema.pyo
|
||||
${PYSITELIB}/axiom/_version.pyo
|
||||
${PYSITELIB}/axiom/attributes.pyo
|
||||
${PYSITELIB}/axiom/batch.pyo
|
||||
${PYSITELIB}/axiom/benchmarks/benchmark_itemcreation.pyo
|
||||
${PYSITELIB}/axiom/benchmarks/benchmark_tagnames.pyo
|
||||
${PYSITELIB}/axiom/benchmarks/benchmark_tagsof.pyo
|
||||
${PYSITELIB}/axiom/benchmarks/testbase.pyo
|
||||
${PYSITELIB}/axiom/benchmarks/testindex.pyo
|
||||
${PYSITELIB}/axiom/benchmarks/testinit.pyo
|
||||
${PYSITELIB}/axiom/benchmarks/testreader.pyo
|
||||
${PYSITELIB}/axiom/benchmarks/testwriter.pyo
|
||||
${PYSITELIB}/axiom/errors.pyo
|
||||
${PYSITELIB}/axiom/examples/bucket.pyo
|
||||
${PYSITELIB}/axiom/examples/library.pyo
|
||||
${PYSITELIB}/axiom/iaxiom.pyo
|
||||
${PYSITELIB}/axiom/item.pyo
|
||||
${PYSITELIB}/axiom/plugins/__init__.pyo
|
||||
${PYSITELIB}/axiom/plugins/browsecmd.pyo
|
||||
${PYSITELIB}/axiom/plugins/userbasecmd.pyo
|
||||
${PYSITELIB}/axiom/queryutil.pyo
|
||||
${PYSITELIB}/axiom/scheduler.pyo
|
||||
${PYSITELIB}/axiom/scripts/__init__.pyo
|
||||
${PYSITELIB}/axiom/scripts/axiomatic.pyo
|
||||
${PYSITELIB}/axiom/scripts/pysql.pyo
|
||||
${PYSITELIB}/axiom/sequence.pyo
|
||||
${PYSITELIB}/axiom/slotmachine.pyo
|
||||
${PYSITELIB}/axiom/store.pyo
|
||||
${PYSITELIB}/axiom/substore.pyo
|
||||
${PYSITELIB}/axiom/tags.pyo
|
||||
${PYSITELIB}/axiom/test/__init__.pyo
|
||||
${PYSITELIB}/axiom/test/historic/__init__.pyo
|
||||
${PYSITELIB}/axiom/test/historic/stub_account1to2.pyo
|
||||
${PYSITELIB}/axiom/test/historic/stub_catalog1to2.pyo
|
||||
${PYSITELIB}/axiom/test/historic/stub_loginMethod1to2.pyo
|
||||
${PYSITELIB}/axiom/test/historic/stubloader.pyo
|
||||
${PYSITELIB}/axiom/test/historic/test_account1to2.pyo
|
||||
${PYSITELIB}/axiom/test/historic/test_catalog1to2.pyo
|
||||
${PYSITELIB}/axiom/test/historic/test_loginMethod1to2.pyo
|
||||
${PYSITELIB}/axiom/test/itemtest.pyo
|
||||
${PYSITELIB}/axiom/test/itemtestmain.pyo
|
||||
${PYSITELIB}/axiom/test/morenewapp.pyo
|
||||
${PYSITELIB}/axiom/test/newapp.pyo
|
||||
${PYSITELIB}/axiom/test/oldapp.pyo
|
||||
${PYSITELIB}/axiom/test/openthenload.pyo
|
||||
${PYSITELIB}/axiom/test/test_attributes.pyo
|
||||
${PYSITELIB}/axiom/test/test_batch.pyo
|
||||
${PYSITELIB}/axiom/test/test_count.pyo
|
||||
${PYSITELIB}/axiom/test/test_crossstore.pyo
|
||||
${PYSITELIB}/axiom/test/test_files.pyo
|
||||
${PYSITELIB}/axiom/test/test_inheritance.pyo
|
||||
${PYSITELIB}/axiom/test/test_item.pyo
|
||||
${PYSITELIB}/axiom/test/test_mixin.pyo
|
||||
${PYSITELIB}/axiom/test/test_powerup.pyo
|
||||
${PYSITELIB}/axiom/test/test_query.pyo
|
||||
${PYSITELIB}/axiom/test/test_queryutil.pyo
|
||||
${PYSITELIB}/axiom/test/test_reference.pyo
|
||||
${PYSITELIB}/axiom/test/test_scheduler.pyo
|
||||
${PYSITELIB}/axiom/test/test_sequence.pyo
|
||||
${PYSITELIB}/axiom/test/test_slotmachine.pyo
|
||||
${PYSITELIB}/axiom/test/test_substore.pyo
|
||||
${PYSITELIB}/axiom/test/test_tablecreate.pyo
|
||||
${PYSITELIB}/axiom/test/test_tags.pyo
|
||||
${PYSITELIB}/axiom/test/test_unavailable_type.pyo
|
||||
${PYSITELIB}/axiom/test/test_upgrading.pyo
|
||||
${PYSITELIB}/axiom/test/test_userbase.pyo
|
||||
${PYSITELIB}/axiom/test/test_xatop.pyo
|
||||
${PYSITELIB}/axiom/test/toonewapp.pyo
|
||||
${PYSITELIB}/axiom/upgrade.pyo
|
||||
${PYSITELIB}/axiom/userbase.pyo
|
||||
${PYSITELIB}/build/lib/axiom/__init__.pyc
|
||||
${PYSITELIB}/build/lib/axiom/__init__.pyo
|
||||
${PYSITELIB}/build/lib/axiom/_apsw.pyc
|
||||
${PYSITELIB}/build/lib/axiom/_apsw.pyo
|
||||
${PYSITELIB}/build/lib/axiom/_fincache.pyc
|
||||
${PYSITELIB}/build/lib/axiom/_fincache.pyo
|
||||
${PYSITELIB}/build/lib/axiom/_pysqlite2.pyc
|
||||
${PYSITELIB}/build/lib/axiom/_pysqlite2.pyo
|
||||
${PYSITELIB}/build/lib/axiom/_schema.pyc
|
||||
${PYSITELIB}/build/lib/axiom/_schema.pyo
|
||||
${PYSITELIB}/build/lib/axiom/_version.pyc
|
||||
${PYSITELIB}/build/lib/axiom/_version.pyo
|
||||
${PYSITELIB}/build/lib/axiom/attributes.pyc
|
||||
${PYSITELIB}/build/lib/axiom/attributes.pyo
|
||||
${PYSITELIB}/build/lib/axiom/batch.pyc
|
||||
${PYSITELIB}/build/lib/axiom/batch.pyo
|
||||
${PYSITELIB}/build/lib/axiom/errors.pyc
|
||||
${PYSITELIB}/build/lib/axiom/errors.pyo
|
||||
${PYSITELIB}/build/lib/axiom/iaxiom.pyc
|
||||
${PYSITELIB}/build/lib/axiom/iaxiom.pyo
|
||||
${PYSITELIB}/build/lib/axiom/item.pyc
|
||||
${PYSITELIB}/build/lib/axiom/item.pyo
|
||||
${PYSITELIB}/build/lib/axiom/plugins/__init__.pyc
|
||||
${PYSITELIB}/build/lib/axiom/plugins/__init__.pyo
|
||||
${PYSITELIB}/build/lib/axiom/plugins/browsecmd.pyc
|
||||
${PYSITELIB}/build/lib/axiom/plugins/browsecmd.pyo
|
||||
${PYSITELIB}/build/lib/axiom/plugins/userbasecmd.pyc
|
||||
${PYSITELIB}/build/lib/axiom/plugins/userbasecmd.pyo
|
||||
${PYSITELIB}/build/lib/axiom/queryutil.pyc
|
||||
${PYSITELIB}/build/lib/axiom/queryutil.pyo
|
||||
${PYSITELIB}/build/lib/axiom/scheduler.pyc
|
||||
${PYSITELIB}/build/lib/axiom/scheduler.pyo
|
||||
${PYSITELIB}/build/lib/axiom/scripts/__init__.pyc
|
||||
${PYSITELIB}/build/lib/axiom/scripts/__init__.pyo
|
||||
${PYSITELIB}/build/lib/axiom/scripts/axiomatic.pyc
|
||||
${PYSITELIB}/build/lib/axiom/scripts/axiomatic.pyo
|
||||
${PYSITELIB}/build/lib/axiom/scripts/pysql.pyc
|
||||
${PYSITELIB}/build/lib/axiom/scripts/pysql.pyo
|
||||
${PYSITELIB}/build/lib/axiom/sequence.pyc
|
||||
${PYSITELIB}/build/lib/axiom/sequence.pyo
|
||||
${PYSITELIB}/build/lib/axiom/slotmachine.pyc
|
||||
${PYSITELIB}/build/lib/axiom/slotmachine.pyo
|
||||
${PYSITELIB}/build/lib/axiom/store.pyc
|
||||
${PYSITELIB}/build/lib/axiom/store.pyo
|
||||
${PYSITELIB}/build/lib/axiom/substore.pyc
|
||||
${PYSITELIB}/build/lib/axiom/substore.pyo
|
||||
${PYSITELIB}/build/lib/axiom/tags.pyc
|
||||
${PYSITELIB}/build/lib/axiom/tags.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/__init__.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/__init__.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/historic/__init__.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/historic/__init__.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/historic/stub_account1to2.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/historic/stub_account1to2.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/historic/stub_catalog1to2.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/historic/stub_catalog1to2.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/historic/stub_loginMethod1to2.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/historic/stub_loginMethod1to2.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/historic/stubloader.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/historic/stubloader.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/historic/test_account1to2.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/historic/test_account1to2.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/historic/test_catalog1to2.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/historic/test_catalog1to2.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/historic/test_loginMethod1to2.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/historic/test_loginMethod1to2.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/itemtest.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/itemtest.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/itemtestmain.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/itemtestmain.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/morenewapp.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/morenewapp.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/newapp.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/newapp.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/oldapp.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/oldapp.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/openthenload.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/openthenload.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/test_attributes.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/test_attributes.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/test_batch.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/test_batch.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/test_count.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/test_count.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/test_crossstore.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/test_crossstore.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/test_files.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/test_files.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/test_inheritance.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/test_inheritance.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/test_item.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/test_item.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/test_mixin.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/test_mixin.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/test_powerup.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/test_powerup.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/test_query.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/test_query.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/test_queryutil.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/test_queryutil.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/test_reference.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/test_reference.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/test_scheduler.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/test_scheduler.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/test_sequence.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/test_sequence.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/test_slotmachine.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/test_slotmachine.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/test_substore.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/test_substore.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/test_tablecreate.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/test_tablecreate.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/test_tags.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/test_tags.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/test_unavailable_type.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/test_unavailable_type.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/test_upgrading.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/test_upgrading.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/test_userbase.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/test_userbase.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/test_xatop.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/test_xatop.pyo
|
||||
${PYSITELIB}/build/lib/axiom/test/toonewapp.pyc
|
||||
${PYSITELIB}/build/lib/axiom/test/toonewapp.pyo
|
||||
${PYSITELIB}/build/lib/axiom/upgrade.pyc
|
||||
${PYSITELIB}/build/lib/axiom/upgrade.pyo
|
||||
${PYSITELIB}/build/lib/axiom/userbase.pyc
|
||||
${PYSITELIB}/build/lib/axiom/userbase.pyo
|
||||
@dirrm ${PYSITELIB}/build/lib/axiom/test/historic
|
||||
@dirrm ${PYSITELIB}/build/lib/axiom/test
|
||||
@dirrm ${PYSITELIB}/build/lib/axiom/scripts
|
||||
@dirrm ${PYSITELIB}/build/lib/axiom/plugins
|
||||
@dirrm ${PYSITELIB}/build/lib/axiom
|
||||
@dirrm ${PYSITELIB}/build/lib
|
||||
@dirrm ${PYSITELIB}/axiom/test/historic
|
||||
@dirrm ${PYSITELIB}/axiom/test
|
||||
@dirrm ${PYSITELIB}/axiom/scripts
|
||||
@dirrm ${PYSITELIB}/axiom/plugins
|
||||
@dirrm ${PYSITELIB}/axiom/examples
|
||||
@dirrm ${PYSITELIB}/axiom/benchmarks
|
||||
@dirrm ${PYSITELIB}/axiom
|
5
py-divmod-axiom/distinfo
Normal file
5
py-divmod-axiom/distinfo
Normal file
|
@ -0,0 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/08/28 01:18:15 milosn Exp $
|
||||
|
||||
SHA1 (Axiom-0.5.0.tar.gz) = 9ab64f2316f4f174cf8279fbe91e8a0a65f0d948
|
||||
RMD160 (Axiom-0.5.0.tar.gz) = 16d8b67ba7bb2dddb932cc675e0114d5a6c91a84
|
||||
Size (Axiom-0.5.0.tar.gz) = 103771 bytes
|
Loading…
Reference in a new issue