Package: sqlobject / 3.1.0+dfsg-2

Metadata

Package Version Patches format
sqlobject 3.1.0+dfsg-2 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
get_rid_of_setuptools | (download)

setup.py | 10 2 + 8 - 0 !
1 file changed, 2 insertions(+), 8 deletions(-)

 remove the unnecessary setuptools requirement.

change_doc_build_script | (download)

docs/rebuild | 6 3 + 3 - 0 !
1 file changed, 3 insertions(+), 3 deletions(-)

 use rst2html from python-docutils to build the documentation.

remove_pkg_resources | (download)

sqlobject/conftest.py | 6 0 + 6 - 0 !
1 file changed, 6 deletions(-)

 we don't need pkg_resources to run the test suite during the

 build, so remove that dependency.
replace_logos | (download)

docs/Authors.rst | 10 3 + 7 - 0 !
docs/DeveloperGuide.rst | 30 11 + 19 - 0 !
docs/FAQ.rst | 10 3 + 7 - 0 !
docs/Inheritance.rst | 10 3 + 7 - 0 !
docs/News.rst | 10 3 + 7 - 0 !
docs/News1.rst | 10 3 + 7 - 0 !
docs/News2.rst | 10 3 + 7 - 0 !
docs/News3.rst | 10 3 + 7 - 0 !
docs/News4.rst | 10 3 + 7 - 0 !
docs/News5.rst | 10 3 + 7 - 0 !
docs/Python3.rst | 10 3 + 7 - 0 !
docs/SQLBuilder.rst | 10 3 + 7 - 0 !
docs/SQLObject.rst | 10 3 + 7 - 0 !
docs/SelectResults.rst | 10 3 + 7 - 0 !
docs/TODO.rst | 10 3 + 7 - 0 !
docs/Versioning.rst | 10 3 + 7 - 0 !
docs/Views.rst | 10 3 + 7 - 0 !
docs/community.rst | 10 3 + 7 - 0 !
docs/download.rst | 10 3 + 7 - 0 !
docs/index.rst | 10 3 + 7 - 0 !
docs/links.rst | 10 3 + 7 - 0 !
docs/sqlobject-admin.rst | 10 3 + 7 - 0 !
22 files changed, 74 insertions(+), 166 deletions(-)

 replace the image links simple text links.

 The image links link to several external sites (sourceforge, travis-ci,
 circleci.com and so forth), which triggers lintian's privacy-breach-logo
 error. This avoids the entire issue and avoids dragging the logos into
 the package.
0005 Remove docs from installed files.patch | (download)

setup.py | 21 0 + 21 - 0 !
1 file changed, 21 deletions(-)

 remove docs from installed files

We don't want to install the documentation in the package as well,
since we already install it under /usr/share/doc, so we exclude
it from setup.py

fix_sqlite_vacuum_cmd | (download)

sqlobject/sqlite/sqliteconnection.py | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 fix #841596 by backporting upstream fix

SQLite 3.15 treats the parameter to VACUUM as a schema name,
not the table name. Dropping the parameter matches the
behaviour on older versions, which simply ignored the parameter.

Patch-Name: fix_sqlite_vacuum_cmd