Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
python-bottle-sqlite
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Debian Python Team
packages
python-bottle-sqlite
Commits
d0649cac
Commit
d0649cac
authored
6 years ago
by
Ondřej Nový
Browse files
Options
Downloads
Patches
Plain Diff
Drop Python 2 support.
parent
fc7dd604
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
debian/changelog
+1
-0
1 addition, 0 deletions
debian/changelog
debian/control
+0
-19
0 additions, 19 deletions
debian/control
debian/rules
+1
-1
1 addition, 1 deletion
debian/rules
with
2 additions
and
20 deletions
debian/changelog
+
1
−
0
View file @
d0649cac
...
...
@@ -4,6 +4,7 @@ python-bottle-sqlite (0.1.3-3) UNRELEASED; urgency=medium
* d/copyright: Use https protocol in Format field
* Convert git repository from git-dpm to gbp layout
* Use debhelper-compat instead of debian/compat.
* Drop Python 2 support.
-- Ondřej Nový <onovy@debian.org> Tue, 13 Feb 2018 10:09:50 +0100
...
...
This diff is collapsed.
Click to expand it.
debian/control
+
0
−
19
View file @
d0649cac
...
...
@@ -4,31 +4,12 @@ Priority: optional
Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Uploaders: IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org>
Build-Depends: debhelper-compat (= 9), dh-python,
python-all,
python3-all,
Standards-Version: 4.1.0
Homepage: http://bottlepy.org/docs/dev/plugins/sqlite.html
Vcs-Git: https://salsa.debian.org/python-team/modules/python-bottle-sqlite.git
Vcs-Browser: https://salsa.debian.org/python-team/modules/python-bottle-sqlite
Package: python-bottle-sqlite
Architecture: all
Depends: ${misc:Depends}, ${python:Depends},
Recommends: ${python:Recommends}
Suggests: ${python:Suggests}
Description: SQLite3 integration for Bottle - Python 2.X
Bottle-sqlite is a plugin that integrates SQLite3 with your Bottle
application. It automatically connects to a database at the beginning of a
request, passes the database handle to the route callback and closes the
connection afterwards.
.
To automatically detect routes that need a database connection, the plugin
searches for route callbacks that require a `db` keyword argument
(configurable) and skips routes that do not. This removes any overhead for
routes that don't need a database connection.
.
This package provides the Python 2.x module.
Package: python3-bottle-sqlite
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends},
...
...
This diff is collapsed.
Click to expand it.
debian/rules
+
1
−
1
View file @
d0649cac
...
...
@@ -2,4 +2,4 @@
export PYBUILD_NAME=bottle-sqlite
%:
dh $@ --with python3
,python2
--buildsystem=pybuild
dh $@ --with python3 --buildsystem=pybuild
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment