From ec49752c6672d98cf9dbdcf1fd79107e30ba95b4 Mon Sep 17 00:00:00 2001 From: Kali Kaneko Date: Thu, 30 May 2013 04:58:46 +0900 Subject: bump dev version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index dff0c64..f1f93e1 100644 --- a/setup.py +++ b/setup.py @@ -48,7 +48,7 @@ sqlite = "sqlite" PYSQLITE_EXPERIMENTAL = False #DEV_VERSION = None -DEV_VERSION = "1" +DEV_VERSION = "02" sources = ["src/module.c", "src/connection.c", "src/cursor.c", "src/cache.c", "src/microprotocols.c", "src/prepare_protocol.c", "src/statement.c", -- cgit v1.2.3 From 63812c052d99023148a658b838ec6e907366d03e Mon Sep 17 00:00:00 2001 From: Kali Kaneko Date: Thu, 30 May 2013 05:36:07 +0900 Subject: ignore debian --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 49be68c..d4e22b0 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ build *.pyc dist/ MANIFEST +debian/ -- cgit v1.2.3 From 82d2e3fe619bef5614bf187520d472fe186a5e54 Mon Sep 17 00:00:00 2001 From: Kali Kaneko Date: Fri, 31 May 2013 01:22:39 +0900 Subject: add include dir for slcipher --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index f1f93e1..ac1a3cd 100644 --- a/setup.py +++ b/setup.py @@ -146,6 +146,7 @@ class LibSQLCipherBuilder(build_ext): description = ("Build C extension linking against libsqlcipher library.") def build_extension(self, ext): + ext.extra_compile_args.append("-I/usr/include/sqlcipher/") ext.extra_link_args.append("-lsqlcipher") build_ext.build_extension(self, ext) -- cgit v1.2.3 From a5221c0bba13e639915e7db38578db665048ca9d Mon Sep 17 00:00:00 2001 From: Kali Kaneko Date: Fri, 31 May 2013 03:26:15 +0900 Subject: remove doc install for now --- setup.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/setup.py b/setup.py index ac1a3cd..ebf535a 100644 --- a/setup.py +++ b/setup.py @@ -306,16 +306,6 @@ def get_setup_args(): print "Fatal error: PYSQLITE_VERSION could not be detected!" sys.exit(1) - data_files = [("pysqlcipher-doc", - glob.glob("doc/*.html") - + glob.glob("doc/*.txt") - + glob.glob("doc/*.css")), - ("pysqlcipher-doc/code", - glob.glob("doc/code/*.py"))] - - #XXX ? - #py_modules = ["sqlcipher"], - setup_args = dict( name="pysqlcipher", version=PYSQLITE_VERSION, @@ -333,8 +323,6 @@ def get_setup_args(): packages=["pysqlcipher", "pysqlcipher.test"] + (["pysqlcipher.test.py25"], [])[sys.version_info < (2, 5)], scripts=[], - data_files=data_files, - ext_modules=[ Extension( name="pysqlcipher._sqlite", -- cgit v1.2.3