Package: pagure / 5.11.3+dfsg-1
Metadata
Package | Version | Patches format |
---|---|---|
pagure | 5.11.3+dfsg-1 | 3.0 (quilt) |
Patch series
view the series filePatch | File delta | Description |
---|---|---|
0002 Fix Python shebang for various scripts.patch | (download) |
createdb.py |
2 1 + 1 - 0 ! |
fix python shebang for various scripts Pagure ships with the "/usr/bin/env python" shebang, which doesn't work on Debian because "python" refers to Python 2. This patch replaces every occurrence of this by "/usr/bin/python3". For more info: https://pagure.io/pagure/issue/4725 |
0003 Adjust path of aclchecker.py.patch | (download) |
pagure/default_config.py |
2 1 + 1 - 0 ! |
adjust path of aclchecker.py Pagure's default_config.py file contains a hardcoded path for the aclchecker.py script which doesn't work for us (/usr/libexec, Fedora-specific). This patch adjusts the path to where we actually install the script (/usr/share/pagure). |
0004 Adjust flask_app.py to locate template static and th.patch | (download) |
pagure/flask_app.py |
11 8 + 3 - 0 ! |
adjust flask_app.py to locate template, static and theme files On Debian, we install template, static and theme files under /usr/share/pagure (instead of /usr/lib/python3/dist-packages/pagure, which is upstream's default). For that reason, we have to adjust flask_app.py in order to make it properly locate these files. |