Your message dated Sun, 28 Jul 2019 21:49:15 +0000
with message-id <e1hrr2z-00029k...@fasolo.debian.org>
and subject line Bug#932985: fixed in django-session-security 2.6.5+dfsg-2
has caused the Debian Bug report #932985,
regarding Please remove Python 2 support
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 ow...@bugs.debian.org
immediately.)


-- 
932985: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=932985
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: django-session-security
Version: 2.6.5+dfsg-1
Severity: serious
Tags: patch

Hi,

Please remove Python 2 support. Attached patch may help.

Thomas
diff --git a/debian/changelog b/debian/changelog
index 50bbfe1..e9b3fe2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,15 @@
-django-session-security (2.6.5+dfsg-2) UNRELEASED; urgency=medium
+django-session-security (2.6.5+dfsg-2) unstable; urgency=medium
 
+  [ Ondřej Nový ]
   * Use debhelper-compat instead of debian/compat.
   * Bump Standards-Version to 4.4.0.
 
+  [ Thomas Goirand ]
+  * Team upload.
+  * Removed Python 2 support.
+  * Correctly overrides override_dh_sphinxdoc rather than auto_build.
+  * Add missing (build-)depends python3-six.
+
  -- Ondřej Nový <on...@debian.org>  Sat, 20 Jul 2019 00:30:59 +0200
 
 django-session-security (2.6.5+dfsg-1) unstable; urgency=medium
diff --git a/debian/control b/debian/control
index 7542d93..fab6569 100644
--- a/debian/control
+++ b/debian/control
@@ -3,10 +3,9 @@ Section: python
 Priority: optional
 Build-Depends: debhelper-compat (= 9),
  dh-python,
- python-all,
- python-setuptools,
  python3-all,
  python3-setuptools,
+ python3-six,
  python3-django,
  python3-sphinx
 Maintainer: Debian Python Modules Team 
<python-modules-t...@lists.alioth.debian.org>
@@ -16,23 +15,10 @@ Vcs-Git: 
https://salsa.debian.org/python-team/modules/django-session-security.gi
 Standards-Version: 4.4.0
 Homepage: http://django-session-security.rtfd.org/
 
-Package: python-django-session-security
-Architecture: all
-Depends: ${python:Depends},
-         ${misc:Depends},
-         ${sphinxdoc:Depends}
-Recommends: libjs-jquery
-Description: Python2 Django module to log a user out after X minutes
- A little javascript and middleware work together to ensure that the
- user was active during the past X minutes in any tab he has open.
- Otherwise, display a warning leaving a couple of minutes to show any
- kind of activity like moving the mouse. Otherwise, logout the user.
- .
- This is the Python 2 version.
-
 Package: python3-django-session-security
 Architecture: all
-Depends: ${python3:Depends},
+Depends: python3-six,
+         ${python3:Depends},
          ${misc:Depends},
          ${sphinxdoc:Depends}
 Recommends: libjs-jquery
diff --git a/debian/python-django-session-security.install 
b/debian/python-django-session-security.install
deleted file mode 100644
index dbdb301..0000000
--- a/debian/python-django-session-security.install
+++ /dev/null
@@ -1 +0,0 @@
-/usr/lib/python2*
diff --git a/debian/python-django-session-security.links 
b/debian/python-django-session-security.links
deleted file mode 100644
index 67da37a..0000000
--- a/debian/python-django-session-security.links
+++ /dev/null
@@ -1 +0,0 @@
-/usr/share/javascript/jquery/jquery.js 
/usr/lib/python2.7/dist-packages/session_security/tests/project/static/jquery.js
diff --git a/debian/rules b/debian/rules
index a655966..3842756 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,8 +1,10 @@
 #!/usr/bin/make -f
 #DH_VERBOSE=1
 %:
-       dh "$@" --with python2,python3,sphinxdoc --buildsystem=pybuild
+       dh "$@" --with python3,sphinxdoc --buildsystem=pybuild
 
-override_dh_auto_build:
-       dh_auto_build -O--buildsystem=python_distutils
+override_dh_sphinxdoc:
+ifeq (,$(findstring nodoc, $(DEB_BUILD_OPTIONS)))
        python3 setup.py build_sphinx
+       dh_sphinxdoc
+endif

--- End Message ---
--- Begin Message ---
Source: django-session-security
Source-Version: 2.6.5+dfsg-2

We believe that the bug you reported is fixed in the latest version of
django-session-security, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 932...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Jean-Michel Vourgère <nir...@debian.org> (supplier of updated 
django-session-security package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Sun, 28 Jul 2019 23:10:52 +0200
Source: django-session-security
Binary: python3-django-session-security
Architecture: source all
Version: 2.6.5+dfsg-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 
<python-modules-t...@lists.alioth.debian.org>
Changed-By: Jean-Michel Vourgère <nir...@debian.org>
Description:
 python3-django-session-security - Python3 Django module to log a user out 
after X minutes
Closes: 932985
Changes:
 django-session-security (2.6.5+dfsg-2) unstable; urgency=medium
 .
   [ Ondřej Nový ]
   * Use debhelper-compat instead of debian/compat.
   * Bump Standards-Version to 4.4.0.
   * d/changelog: Remove trailing whitespaces.
 .
   [ Thomas Goirand ]
   * Removed Python 2 support (Closes: #932985).
   * Correctly overrides override_dh_sphinxdoc rather than auto_build.
   * Add missing (build-)depends python3-six.
 .
   [Emmanuel Arias]
   * Apply Thomas Goirand patch.
 .
   [ Jean-Michel Vourgère ]
   * Disabled tests: They require unpackaged sbo-selenium.
   * Added d/s/options to ignore changes to egg-info.
Checksums-Sha1:
 01a346a6d2fa407fb940f999a6a54b4b5a975f35 2276 
django-session-security_2.6.5+dfsg-2.dsc
 7e3a3f61fd39c194967220492c2b19f4cfdc1491 5872 
django-session-security_2.6.5+dfsg-2.debian.tar.xz
 666c1208bb7861445fc50a71a895b59fe37bf833 7136 
django-session-security_2.6.5+dfsg-2_amd64.buildinfo
 92d084490c2f866626c804046aa046cc3c082694 44592 
python3-django-session-security_2.6.5+dfsg-2_all.deb
Checksums-Sha256:
 0a478b66a8e2b4c988841389a14fdfa3155a7dcb62d10f135fd08c15d73e7f56 2276 
django-session-security_2.6.5+dfsg-2.dsc
 0d01f0700f23ad5850670ff11e6c3e2824e25deba3241bd5c65de15c6a8df46a 5872 
django-session-security_2.6.5+dfsg-2.debian.tar.xz
 f02517707c8804fea344a7c6f687a52884c7c1d1c208e133a1d277416aab3592 7136 
django-session-security_2.6.5+dfsg-2_amd64.buildinfo
 3a9bcf28277dad56f3c78dcc967037cdda5d1a7586160ac4a2d6dfb47408901e 44592 
python3-django-session-security_2.6.5+dfsg-2_all.deb
Files:
 63a9205bb0d22728698bd508408645cb 2276 python optional 
django-session-security_2.6.5+dfsg-2.dsc
 b4da9494fa9b6a1a9a08309dd39d0c6c 5872 python optional 
django-session-security_2.6.5+dfsg-2.debian.tar.xz
 a2ec0b2bd8adb62c841bca115bdb62f8 7136 python optional 
django-session-security_2.6.5+dfsg-2_amd64.buildinfo
 51ae44916acdc15e33a4fd8d410358b6 44592 python optional 
python3-django-session-security_2.6.5+dfsg-2_all.deb

-----BEGIN PGP SIGNATURE-----

iQJGBAEBCgAwFiEEQIMD57NJdABlZVMrO1wscaIY2DwFAl0+ELwSHG5pcmdhbEBk
ZWJpYW4ub3JnAAoJEDtcLHGiGNg84OAP/jGxas/NZaL+9rcIhfj/DnaJFed0gaCX
fBfeQRpnjT9FfjPC8HRMV8g1p7/lVjvj/8e8v9StrRozmGNMY8nYygzlsD0QFt7m
QhxBjFe0huhTok4FEhizEI3VFqGsMZADGsNxVfJVriDtC4VOhbPC/reRfdihp49o
kBwGIW0EWIz0EpS7eX32nBgzgIjJhHdU0JMgZ2c1TidKcXZlPYQB8GuuSu3Na89e
E8WuuDdfcn5MLt3AQzgXtnAAa500LXSL0Ra6gnU6zDlaEvQ734Da4lraQRoAvSHo
nX/gsA8qCU6PXRmnZsWON9T7DBdch8m0FKpGpFMnauj4iVkOVkBK7FvEEDOA0EBz
wQ07ma2qtI3XGSUQYOXTfXSR8cQvWs/Gj1flrfIcTkLkj5Uj9poO+NXGW0qKMfes
Bw3WSBd1E2KK0UYE7Y3qw/Lz1K9DGTkHf+t2sKQXkpGP5xa6ghc6SuIkqTwQqdwD
8VqJ2UYEe7ZYuVPQGKbOf8+6spWzZPX/ij6B58NV/b0cXcO4Vp183SFACWXWGFfO
hip1x9M0q0L8umNuK14NOnqSFVX/N8O9LWazgmJ7FmKPfDbsupBpV6GDg6/uuAFe
xcXLR5DDCsfyjYeigP2sic1oYLGhttG9r9yogK1AaD8akYsPEmYnkqzAPQ0lCD5m
ZnBzyPWtUVsT
=LGtc
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to