Commit 1c10fc39 authored by Sandro Tosi's avatar Sandro Tosi
Browse files

Drop python2 support; Closes: #938529

parent 1e33a025
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
sphinx-bootstrap-theme (0.6.5-2) UNRELEASED; urgency=medium

  [ Ondřej Nový ]
  * Convert git repository from git-dpm to gbp layout
  * Use debhelper-compat instead of debian/compat.

 -- Ondřej Nový <onovy@debian.org>  Wed, 08 Aug 2018 09:08:57 +0200
  [ Sandro Tosi ]
  * Drop python2 support; Closes: #938529

 -- Sandro Tosi <morph@debian.org>  Sun, 05 Jan 2020 13:43:34 -0500

sphinx-bootstrap-theme (0.6.5-1) unstable; urgency=medium

+7 −14
Original line number Diff line number Diff line
@@ -2,27 +2,20 @@ Source: sphinx-bootstrap-theme
Section: python
Priority: optional
Maintainer: Sandro Tosi <morph@debian.org>
Uploaders: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Build-Depends: debhelper-compat (= 10), python, python3, dh-python, python-setuptools, python3-setuptools
Uploaders: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>,
Build-Depends: debhelper-compat (= 10),
               dh-python,
               python3,
               python3-setuptools,
Standards-Version: 4.1.4
X-Python-Version: all
X-Python3-Version: all
Homepage: http://ryan-roemer.github.io/sphinx-bootstrap-theme/index.html
Vcs-Git: https://salsa.debian.org/python-team/modules/sphinx-bootstrap-theme.git
Vcs-Browser: https://salsa.debian.org/python-team/modules/sphinx-bootstrap-theme

Package: python-sphinx-bootstrap-theme
Architecture: all
Depends: ${python:Depends}, ${misc:Depends}
Description: bootstrap theme for Sphinx
 This Sphinx theme integrates the Bootstrap CSS / JavaScript framework with
 various layout options, hierarchical menu navigation, and mobile-friendly
 responsive design. It is configurable, extensible and can use any number of
 different Bootswatch CSS themes.

Package: python3-sphinx-bootstrap-theme
Architecture: all
Depends: ${python3:Depends}, ${misc:Depends}
Depends: ${misc:Depends},
         ${python3:Depends},
Description: bootstrap theme for Sphinx (Python 3)
 This Sphinx theme integrates the Bootstrap CSS / JavaScript framework with
 various layout options, hierarchical menu navigation, and mobile-friendly
+2 −3
Original line number Diff line number Diff line
@@ -5,11 +5,10 @@
#export DH_VERBOSE=1

%:
	dh $@ --with python2,python3
	dh $@ --with python3 --buildsystem=pybuild

override_dh_auto_install:
	python setup.py install --root=$(CURDIR)/debian/python-sphinx-bootstrap-theme --install-layout=deb
	python3 setup.py install --root=$(CURDIR)/debian/python3-sphinx-bootstrap-theme --install-layout=deb
	dh_auto_install

	find $(CURDIR)/debian/*-sphinx-bootstrap-theme/usr/lib/python*/dist-packages/sphinx_bootstrap_theme/bootstrap/static/ -type f -exec chmod -x {} \;