Your message dated Sat, 26 Mar 2022 11:59:13 +0000 with message-id <c4d20274f6d76a43fb574d2177f6e3af4235e4be.camel@adam-barratt.org.uk> and subject line Closing p-u requests for updates in 11.3 has caused the Debian Bug report #1005288, regarding bullseye-pu: package sphinx-bootstrap-theme/0.7.1-1+deb11u1 to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner@bugs.debian.org immediately.) -- 1005288: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1005288 Debian Bug Tracking System Contact owner@bugs.debian.org with problems
--- Begin Message ---
- To: Debian Bug Tracking System <submit@bugs.debian.org>
- Subject: bullseye-pu: package sphinx-bootstrap-theme/0.8.0-1+deb11u1
- From: Antonio Terceiro <terceiro@debian.org>
- Date: Thu, 10 Feb 2022 11:44:24 -0300
- Message-id: <YgUkyNWQVWGZwG2W@debian.org>
Package: release.debian.org Severity: normal Tags: bullseye User: release.debian.org@packages.debian.org Usertags: pu [ Reason ] Version 0.8.0-1 contains a bug caused by extra whitespace in src="" attributes of <script> tags that search to be broken. [ Impact ] Documentation generated with sphinx and this theme has a broken search functionality. [ Tests ] I confirmed the fix against the lava package, which generates documentation using sphinx-bootstrap-theme. [ Risks ] None. The only functional changes are the exact bug fixes, which are basically deleting 1 extra space in a few lines. [ Checklist ] [*] *all* changes are documented in the d/changelog [*] I reviewed all changes and I approve them [*] attach debdiff against the package in (old)stable (for your convenience I'm also attaching the patch itself, since it's easier to read the diff-in-diff in the debdiff) [*] the issue is verified as fixed in unstable [ Changes ] The fix is simple and consists of removing the extra spaces that were breaking the reference to the Javascript files. [ Other info ] Nothing.diff --git a/debian/changelog b/debian/changelog index 450e76e..0b40199 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +sphinx-bootstrap-theme (0.8.0-1+deb11u1) bullseye; urgency=medium + + * Fix search functionality + Add a combined backport of 2 upstream commits that remove 1 extra spaces + off of a few lines. + + -- Antonio Terceiro <terceiro@debian.org> Thu, 10 Feb 2022 11:38:38 -0300 + sphinx-bootstrap-theme (0.8.0-1) unstable; urgency=medium [ Ondřej Nový ] diff --git a/debian/patches/0002-Fix-search-functionality.patch b/debian/patches/0002-Fix-search-functionality.patch new file mode 100644 index 0000000..d587944 --- /dev/null +++ b/debian/patches/0002-Fix-search-functionality.patch @@ -0,0 +1,50 @@ +From: Antonio Terceiro <terceiro@debian.org> +Date: Thu, 10 Feb 2022 11:36:03 -0300 +Subject: Fix search functionality + +The extra spaces at the end of the src="" attibute of those <script> +tags caused search to be broken on generated documentation. This is a +combined backport of the following upstream commits +0d80bffe488da6d5b7b575b964f92adde5026e3e ("BUG: Fix for Sphinx 3.4+ +search") and 19e69c8c46dff011ce24e1718e034decdf319f28 ("Drop spirious +space in script urls"). +--- + sphinx_bootstrap_theme/bootstrap/layout.html | 8 ++++---- + sphinx_bootstrap_theme/bootstrap/search.html | 5 +++-- + 2 files changed, 7 insertions(+), 6 deletions(-) + +diff --git a/sphinx_bootstrap_theme/bootstrap/layout.html b/sphinx_bootstrap_theme/bootstrap/layout.html +index 303472d..d29ca4f 100644 +--- a/sphinx_bootstrap_theme/bootstrap/layout.html ++++ b/sphinx_bootstrap_theme/bootstrap/layout.html +@@ -52,10 +52,10 @@ + <meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'> + <meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1'> + <meta name="apple-mobile-web-app-capable" content="yes"> +-<script type="text/javascript" src="{{ pathto('_static/js/jquery-1.12.4.min.js', 1) }} "></script> +-<script type="text/javascript" src="{{ pathto('_static/js/jquery-fix.js', 1) }} "></script> +-<script type="text/javascript" src="{{ pathto('_static', 1) + '/bootstrap-' + bootstrap_version + '/js/bootstrap.min.js' }} "></script> +-<script type="text/javascript" src="{{ pathto('_static/bootstrap-sphinx.js', 1) }} "></script> ++<script type="text/javascript" src="{{ pathto('_static/js/jquery-1.12.4.min.js', 1) }}"></script> ++<script type="text/javascript" src="{{ pathto('_static/js/jquery-fix.js', 1) }}"></script> ++<script type="text/javascript" src="{{ pathto('_static', 1) + '/bootstrap-' + bootstrap_version + '/js/bootstrap.min.js' }}"></script> ++<script type="text/javascript" src="{{ pathto('_static/bootstrap-sphinx.js', 1) }}"></script> + {% endblock %} + + {# Silence the sidebar's, relbar's #} +diff --git a/sphinx_bootstrap_theme/bootstrap/search.html b/sphinx_bootstrap_theme/bootstrap/search.html +index 60a6601..cca744a 100644 +--- a/sphinx_bootstrap_theme/bootstrap/search.html ++++ b/sphinx_bootstrap_theme/bootstrap/search.html +@@ -10,8 +10,9 @@ + {%- extends "layout.html" %} + {% set title = _('Search') %} + {% block extrahead %} +- <script type="text/javascript" src="{{ pathto('_static/searchtools.js', 1) }} "></script> +- <script type="text/javascript" src="{{ pathto('searchindex.js', 1) }} "></script> ++ <script type="text/javascript" src="{{ pathto('_static/searchtools.js', 1) }}"></script> ++ <script type="text/javascript" src="{{ pathto('_static/language_data.js', 1) }}"></script> ++ <script type="text/javascript" src="{{ pathto('searchindex.js', 1) }}"></script> + {# this is used when loading the search index using $.ajax fails, + such as on Chrome for documents on localhost #} + <script type="text/javascript" id="searchindexloader"></script> diff --git a/debian/patches/series b/debian/patches/series index 391ae29..30e0b22 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1 +1,2 @@ privacy_breach.patch +0002-Fix-search-functionality.patchFrom: Antonio Terceiro <terceiro@debian.org> Date: Thu, 10 Feb 2022 11:36:03 -0300 Subject: Fix search functionality The extra spaces at the end of the src="" attibute of those <script> tags caused search to be broken on generated documentation. This is a combined backport of the following upstream commits 0d80bffe488da6d5b7b575b964f92adde5026e3e ("BUG: Fix for Sphinx 3.4+ search") and 19e69c8c46dff011ce24e1718e034decdf319f28 ("Drop spirious space in script urls"). --- sphinx_bootstrap_theme/bootstrap/layout.html | 8 ++++---- sphinx_bootstrap_theme/bootstrap/search.html | 5 +++-- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/sphinx_bootstrap_theme/bootstrap/layout.html b/sphinx_bootstrap_theme/bootstrap/layout.html index 303472d..d29ca4f 100644 --- a/sphinx_bootstrap_theme/bootstrap/layout.html +++ b/sphinx_bootstrap_theme/bootstrap/layout.html @@ -52,10 +52,10 @@ <meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'> <meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1'> <meta name="apple-mobile-web-app-capable" content="yes"> -<script type="text/javascript" src="{{ pathto('_static/js/jquery-1.12.4.min.js', 1) }} "></script> -<script type="text/javascript" src="{{ pathto('_static/js/jquery-fix.js', 1) }} "></script> -<script type="text/javascript" src="{{ pathto('_static', 1) + '/bootstrap-' + bootstrap_version + '/js/bootstrap.min.js' }} "></script> -<script type="text/javascript" src="{{ pathto('_static/bootstrap-sphinx.js', 1) }} "></script> +<script type="text/javascript" src="{{ pathto('_static/js/jquery-1.12.4.min.js', 1) }}"></script> +<script type="text/javascript" src="{{ pathto('_static/js/jquery-fix.js', 1) }}"></script> +<script type="text/javascript" src="{{ pathto('_static', 1) + '/bootstrap-' + bootstrap_version + '/js/bootstrap.min.js' }}"></script> +<script type="text/javascript" src="{{ pathto('_static/bootstrap-sphinx.js', 1) }}"></script> {% endblock %} {# Silence the sidebar's, relbar's #} diff --git a/sphinx_bootstrap_theme/bootstrap/search.html b/sphinx_bootstrap_theme/bootstrap/search.html index 60a6601..cca744a 100644 --- a/sphinx_bootstrap_theme/bootstrap/search.html +++ b/sphinx_bootstrap_theme/bootstrap/search.html @@ -10,8 +10,9 @@ {%- extends "layout.html" %} {% set title = _('Search') %} {% block extrahead %} - <script type="text/javascript" src="{{ pathto('_static/searchtools.js', 1) }} "></script> - <script type="text/javascript" src="{{ pathto('searchindex.js', 1) }} "></script> + <script type="text/javascript" src="{{ pathto('_static/searchtools.js', 1) }}"></script> + <script type="text/javascript" src="{{ pathto('_static/language_data.js', 1) }}"></script> + <script type="text/javascript" src="{{ pathto('searchindex.js', 1) }}"></script> {# this is used when loading the search index using $.ajax fails, such as on Chrome for documents on localhost #} <script type="text/javascript" id="searchindexloader"></script>Attachment: signature.asc
Description: PGP signature
--- End Message ---
--- Begin Message ---
- To: 1000342-done@bugs.debian.org, 1000645-done@bugs.debian.org, 1001411-done@bugs.debian.org, 1001692-done@bugs.debian.org, 1001740-done@bugs.debian.org, 1001849-done@bugs.debian.org, 1002012-done@bugs.debian.org, 1002051-done@bugs.debian.org, 1002563-done@bugs.debian.org, 1002619-done@bugs.debian.org, 1002620-done@bugs.debian.org, 1002652-done@bugs.debian.org, 1002685-done@bugs.debian.org, 1002703-done@bugs.debian.org, 1003018-done@bugs.debian.org, 1003058-done@bugs.debian.org, 1003133-done@bugs.debian.org, 1003173-done@bugs.debian.org, 1003484-done@bugs.debian.org, 1003526-done@bugs.debian.org, 1003659-done@bugs.debian.org, 1003765-done@bugs.debian.org, 1003948-done@bugs.debian.org, 1004033-done@bugs.debian.org, 1004050-done@bugs.debian.org, 1004192-done@bugs.debian.org, 1004247-done@bugs.debian.org, 1004384-done@bugs.debian.org, 1004452-done@bugs.debian.org, 1004483-done@bugs.debian.org, 1004533-done@bugs.debian.org, 1004575-done@bugs.debian.org, 1004741-done@bugs.debian.org, 1004895-done@bugs.debian.org, 1004966-done@bugs.debian.org, 1004999-done@bugs.debian.org, 1005007-done@bugs.debian.org, 1005010-done@bugs.debian.org, 1005013-done@bugs.debian.org, 1005052-done@bugs.debian.org, 1005148-done@bugs.debian.org, 1005158-done@bugs.debian.org, 1005217-done@bugs.debian.org, 1005232-done@bugs.debian.org, 1005288-done@bugs.debian.org, 1005340-done@bugs.debian.org, 1005351-done@bugs.debian.org, 1005355-done@bugs.debian.org, 1005372-done@bugs.debian.org, 1005694-done@bugs.debian.org, 1005861-done@bugs.debian.org, 1005868-done@bugs.debian.org, 1005949-done@bugs.debian.org, 1006010-done@bugs.debian.org, 1006137-done@bugs.debian.org, 1006138-done@bugs.debian.org, 1006165-done@bugs.debian.org, 1006187-done@bugs.debian.org, 1006192-done@bugs.debian.org, 1006215-done@bugs.debian.org, 1006222-done@bugs.debian.org, 1006342-done@bugs.debian.org, 1006371-done@bugs.debian.org, 1006402-done@bugs.debian.org, 1006493-done@bugs.debian.org, 1006522-done@bugs.debian.org, 1006752-done@bugs.debian.org, 1006768-done@bugs.debian.org, 1006796-done@bugs.debian.org, 1006797-done@bugs.debian.org, 1006883-done@bugs.debian.org, 1006905-done@bugs.debian.org, 1006916-done@bugs.debian.org, 1007001-done@bugs.debian.org, 1007249-done@bugs.debian.org, 1007261-done@bugs.debian.org, 1007262-done@bugs.debian.org, 1007747-done@bugs.debian.org, 1007878-done@bugs.debian.org, 1007909-done@bugs.debian.org, 1007920-done@bugs.debian.org, 1007947-done@bugs.debian.org, 1007963-done@bugs.debian.org, 1008031-done@bugs.debian.org, 1008074-done@bugs.debian.org, 1006446-done@bugs.debian.org
- Subject: Closing p-u requests for updates in 11.3
- From: "Adam D. Barratt" <adam@adam-barratt.org.uk>
- Date: Sat, 26 Mar 2022 11:59:13 +0000
- Message-id: <c4d20274f6d76a43fb574d2177f6e3af4235e4be.camel@adam-barratt.org.uk>
Package: release.debian.org Version: 11.3 Hi, The updates referenced by these bugs were included in stable as part of this morning's 11.3 point release. Regards, Adam
--- End Message ---