[Python-modules-team] python-icalendar 4.0.0-1 MIGRATED to testing

2018-01-02 Thread Debian testing watch
FYI: The status of the python-icalendar source package
in Debian's testing distribution has changed.

  Previous version: 3.11.7-3
  Current version:  4.0.0-1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See https://release.debian.org/testing-watch/ for more information.

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] python-jsonrpclib 0.1.7-1 MIGRATED to testing

2018-01-02 Thread Debian testing watch
FYI: The status of the python-jsonrpclib source package
in Debian's testing distribution has changed.

  Previous version: 0.1.3-1
  Current version:  0.1.7-1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See https://release.debian.org/testing-watch/ for more information.

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] python-parameterized 0.6.1-2 MIGRATED to testing

2018-01-02 Thread Debian testing watch
FYI: The status of the python-parameterized source package
in Debian's testing distribution has changed.

  Previous version: 0.6.1-1
  Current version:  0.6.1-2

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See https://release.debian.org/testing-watch/ for more information.

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] python-gpyconf is marked for autoremoval from testing

2018-01-02 Thread Debian testing autoremoval watch
python-gpyconf 0.2-1 is marked for autoremoval from testing on 2018-01-24

It is affected by these RC bugs:
885372: python-gpyconf: Depends on unmaintained pygtk


___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] pygtkspellcheck is marked for autoremoval from testing

2018-01-02 Thread Debian testing autoremoval watch
pygtkspellcheck 4.0.5-1 is marked for autoremoval from testing on 2018-01-24

It is affected by these RC bugs:
885375: pygtkspellcheck: Depends on unmaintained pygtk


___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] sphinx 1.6.5-4 MIGRATED to testing

2018-01-02 Thread Debian testing watch
FYI: The status of the sphinx source package
in Debian's testing distribution has changed.

  Previous version: 1.6.5-3
  Current version:  1.6.5-4

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See https://release.debian.org/testing-watch/ for more information.

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] Bug#864337: marked as done (python-blessed: Non-determistically FTBFS due to unreliable timing in tests)

2018-01-02 Thread Debian Bug Tracking System
Your message dated Wed, 03 Jan 2018 00:50:09 +
with message-id 
and subject line Bug#864337: fixed in python-blessed 1.14.2-2
has caused the Debian Bug report #864337,
regarding python-blessed: Non-determistically FTBFS due to unreliable timing in 
tests
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.)


-- 
864337: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=864337
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: python-blessed
Version: 1.14.1-1
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-b...@lists.alioth.debian.org

Dear Maintainer,

python-blessed's testsuite appears to use method timing/benchmarking in such 
a way that it will non-deterministically FTBFS:

  […]
   test_esc_delay_cbreak_timout_0 

  
  def test_esc_delay_cbreak_timout_0():
  """esc_delay still in effect with timeout of 0 ("nonblocking")."""
  pid, master_fd = pty.fork()
  if pid == 0:  # child
  cov = init_subproc_coverage('test_esc_delay_cbreak_timout_0')
  term = TestTerminal()
  os.write(sys.__stdout__.fileno(), SEMAPHORE)
  with term.cbreak():
  stime = time.time()
  inp = term.inkey(timeout=0)
  measured_time = (time.time() - stime) * 100
  os.write(sys.__stdout__.fileno(), (
  '%s %i' % (inp.name, measured_time,)).encode('ascii'))
  sys.stdout.flush()
  if cov is not None:
  cov.stop()
  cov.save()
  os._exit(0)
  
  with echo_off(master_fd):
  os.write(master_fd, u'\x1b'.encode('ascii'))
  read_until_semaphore(master_fd)
  stime = time.time()
  key_name, duration_ms = read_until_eof(master_fd).split()
  
  pid, status = os.waitpid(pid, 0)
  assert key_name == u'KEY_ESCAPE'
  assert os.WEXITSTATUS(status) == 0
  assert math.floor(time.time() - stime) == 0.0
  >   assert 34 <= int(duration_ms) <= 45, int(duration_ms)
  E   AssertionError: 71
  E   assert 71 <= 45
  E+  where 71 = int('71')
  
  blessed/tests/test_keyboard.py:528: AssertionError
   1 failed, 305 passed in 75.27 seconds 
=
  E: pybuild pybuild:283: test: plugin distutils failed with: exit code=1: cd 
/build/1st/python-blessed-1.14.1/.pybuild/pythonX.Y_3.5/build; python3.5 -m 
pytest 
  dh_auto_test: pybuild --test --test-pytest -i python{version} -p 3.5 returned 
exit code 13
  debian/rules:7: recipe for target 'build' failed
  make: *** [build] Error 25
  dpkg-buildpackage: error: debian/rules build gave error exit status 2
  I: copying local configuration
  E: Failed autobuilding of package

  […]

The full build log is attached or can be viewed here:


https://tests.reproducible-builds.org/debian/logs/unstable/amd64/python-blessed_1.14.1-1.build1.log.gz


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


python-blessed.1.14.1-1.logs.unstable.log.txt.gz
Description: Binary data
--- End Message ---
--- Begin Message ---
Source: python-blessed
Source-Version: 1.14.2-2

We believe that the bug you reported is fixed in the latest version of
python-blessed, 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 864...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Pierre-Elliott Bécue  (supplier of updated python-blessed 
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: Wed, 03 Jan 2018 01:18:43 +0100
Source: python-blessed
Binary: python-blessed python3-blessed
Architecture: source
Version: 1.14.2-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: Pierre-Elliott Bécue 
Description:
 python-blessed - Thin, practical wrapper around terminal capabilities in 
Python2
 python3-blessed - Thin, practical wrap

[Python-modules-team] python-blessed_1.14.2-2_source.changes ACCEPTED into unstable

2018-01-02 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 03 Jan 2018 01:18:43 +0100
Source: python-blessed
Binary: python-blessed python3-blessed
Architecture: source
Version: 1.14.2-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: Pierre-Elliott Bécue 
Description:
 python-blessed - Thin, practical wrapper around terminal capabilities in 
Python2
 python3-blessed - Thin, practical wrapper around terminal capabilities in 
Python3
Closes: 864337
Changes:
 python-blessed (1.14.2-2) unstable; urgency=medium
 .
   * Team upload.
   * d/patches/0001: Remove all time-based assertions in test_keyboard.py.
 (Closes: #864337)
   * Remove d/clean as the egg files are included in the git repo since the
 beginning, and it's not coherent with the current package's behaviour.
Checksums-Sha1:
 6ba96ecb1a47ba6911ccf7ba8c30be730cc75254 2296 python-blessed_1.14.2-2.dsc
 5576de1b1e0e8494a1c73c1735755a99f0f1f373 3692 
python-blessed_1.14.2-2.debian.tar.xz
 af30b1b08df6267ba68cb7da3ba9d0b021e345b3 6890 
python-blessed_1.14.2-2_amd64.buildinfo
Checksums-Sha256:
 247d8f777049686c9698f3ba214cdc1bfcd3787112431d7498e0baf382af053f 2296 
python-blessed_1.14.2-2.dsc
 52a14078d2fabd3c8d55964f1c65e8ee6aa861f21d6efb9db5ecf6245d0d764f 3692 
python-blessed_1.14.2-2.debian.tar.xz
 19dc25d51b84d93928cb41e48a2643bc5833019b560ed5bb7ab88cf137fce3cd 6890 
python-blessed_1.14.2-2_amd64.buildinfo
Files:
 79bad530c1df692dbed3c99c0063a11a 2296 python optional 
python-blessed_1.14.2-2.dsc
 53cc2f5f69c0107cbaf3af3ac74c896a 3692 python optional 
python-blessed_1.14.2-2.debian.tar.xz
 ccf2c89e2425df09f9fc120c44a14ea9 6890 python optional 
python-blessed_1.14.2-2_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEi3hoeGwz5cZMTQpICBa54Yx2K60FAlpMJZcACgkQCBa54Yx2
K63vRQ/+Nt86ZO8/fznznNOAM5D/AzgNuViSikCRzITsmGM/t49zdAHWICNpi3sC
WJuwQznxu/tMtMYunuZdCDc+eo+UKA5jdeqCEN2z5FMNgxTZ1Lfr+xMUkxlb2AsF
aAp9wTWjSyQDtlRpZo6dFmxDP/z3pEVmtcu/CIOvU/ZQEayWw7IK4r6nrCigy+Ct
yBab1lRdjA+HhRXRYUeR+ALr+ftICXffj7ePdTPFGVjbqLqpXFmlaWtvZYiJu16d
fr8z83PHo/TvWQxgleL1c+aNKZZgzFJdas8bncuKPRC5gJtPwNlE62luS2i85oJB
oaBn+uLRsDrWa6Pz8yonxlB+2qCtUf9kBvDhFM5DIu0vVAl9UOOchElUcCEEigO4
aTLuLXMqa3iTwObHqqOPxJZvwYdnmTB2Pqq0Tdtb3Lndev3DY+1jjmk+hJr3EMKm
w7vuVjXIg40urcy4eooSmGBbavpYZRj6voTNVxRwu8XpIrBGrY7fqGwdeXEoEtIS
kZVl/9ze0upl3aP8mGN0Y1BdAiEhVdZGmv2+jl/Z8ISmcN3W3DkMVqfAra4bgSUC
M0QZ5TItAun8u3FiKrlLpYQkfygkhIvmCtp8xoPqsjCwr7Qd4gg2mI8ad/5AKEH3
k230pdxXGgQYcsbUjHWQMxna27ZoOVqyb9OwzvYql7jexIfzBOI=
=xjYl
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team

[Python-modules-team] Processing of python-blessed_1.14.2-2_source.changes

2018-01-02 Thread Debian FTP Masters
python-blessed_1.14.2-2_source.changes uploaded successfully to localhost
along with the files:
  python-blessed_1.14.2-2.dsc
  python-blessed_1.14.2-2.debian.tar.xz
  python-blessed_1.14.2-2_amd64.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] qscintilla2_2.10.2+dfsg-4_source.changes ACCEPTED into unstable

2018-01-02 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 02 Jan 2018 17:13:22 -0500
Source: qscintilla2
Binary: libqscintilla2-qt4-13 libqscintilla2-qt4-13-dbg libqscintilla2-qt5-13 
libqscintilla2-qt5-13-dbg libqscintilla2-qt4-l10n libqscintilla2-qt5-l10n 
libqscintilla2-qt4-designer libqscintilla2-designer 
libqscintilla2-qt4-designer-dbg libqscintilla2-qt5-designer 
libqt5scintilla2-designer libqscintilla2-qt5-designer-dbg 
libqscintilla2-qt4-dev libqscintilla2-qt5-dev libqscintilla2-doc 
python-qscintilla2 pyqt4.qsci-dev python-qscintilla2-dbg python3-pyqt4.qsci 
python3-pyqt4.qsci-dbg python-pyqt5.qsci python-pyqt5.qsci-dbg 
python3-pyqt5.qsci pyqt5.qsci-dev python3-pyqt5.qsci-dbg
Architecture: source
Version: 2.10.2+dfsg-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: Scott Kitterman 
Description:
 libqscintilla2-designer - Qt4 Designer plugin for QScintilla 2 (Transitional 
package)
 libqscintilla2-doc - API documentation for QScintilla 2
 libqscintilla2-qt4-13 - Qt4 port of the Scintilla source code editing widget
 libqscintilla2-qt4-13-dbg - Qt4 port of the Scintilla source code editing 
widget (debug)
 libqscintilla2-qt4-designer - Qt4 Designer plugin for QScintilla 2
 libqscintilla2-qt4-designer-dbg - Qt4 Designer plugin for QScintilla 2 (debug)
 libqscintilla2-qt4-dev - Scintilla source code editing widget for Qt4, 
development files
 libqscintilla2-qt4-l10n - Scintilla source code editing widget for Qt4, 
translation files
 libqscintilla2-qt5-13 - Qt5 port of the Scintilla source code editing widget
 libqscintilla2-qt5-13-dbg - Qt5 port of the Scintilla source code editing 
widget (debug)
 libqscintilla2-qt5-designer - Qt5 Designer plugin for QScintilla 2
 libqscintilla2-qt5-designer-dbg - Qt5 Designer plugin for QScintilla 2 (debug)
 libqscintilla2-qt5-dev - Scintilla source code editing widget for Qt5, 
development files
 libqscintilla2-qt5-l10n - Scintilla source code editing widget for Qt5, 
translation files
 libqt5scintilla2-designer - Qt5 Designer plugin for QScintilla 2 (Transitional 
package)
 pyqt4.qsci-dev - Development files for Python Qscintilla2 (Qt4)
 pyqt5.qsci-dev - Development files for Python Qscintilla2 (Qt5)
 python-pyqt5.qsci - Python bindings for QScintilla 2 with Qt 5
 python-pyqt5.qsci-dbg - Python bindings for QScintilla 2 (Qt 5 debug 
extensions)
 python-qscintilla2 - Python bindings for QScintilla 2
 python-qscintilla2-dbg - Python bindings for QScintilla 2 (debug extensions)
 python3-pyqt4.qsci - Python 3 bindings for QScintilla 2 with Qt 4
 python3-pyqt4.qsci-dbg - Python 3 bindings for QScintilla 2 (Qt 4 debug 
extensions)
 python3-pyqt5.qsci - Python 3 bindings for QScintilla 2 with Qt 5
 python3-pyqt5.qsci-dbg - Python 3 bindings for QScintilla 2 (Qt 5 debug 
extensions)
Changes:
 qscintilla2 (2.10.2+dfsg-4) unstable; urgency=medium
 .
   * Upload to unstable
   * Bump standards-version to 4.1.3 without further change
Checksums-Sha1:
 6fe05d05f33bbc7231ce97ff21d219271c10d67a 4510 qscintilla2_2.10.2+dfsg-4.dsc
 c3e27675bcc5f6bc7e412a0cc35b823ab554bcb2 2715476 
qscintilla2_2.10.2+dfsg.orig.tar.gz
 0beb6c6a1d64a60356a385845d823c5658df7eb2 101192 
qscintilla2_2.10.2+dfsg-4.debian.tar.xz
 b1e1918c16923123181f9fc5f3cfaba4b4bdf2f0 13228 
qscintilla2_2.10.2+dfsg-4_source.buildinfo
Checksums-Sha256:
 790db54adede8a525a414fd4b190135d92410e138961e759eededcbaf56747f1 4510 
qscintilla2_2.10.2+dfsg-4.dsc
 240ab44305c8f6b805092cff339fd8bcf859ac30e0e7b82f10d4c2eea74e63f4 2715476 
qscintilla2_2.10.2+dfsg.orig.tar.gz
 28bd64f8fc188b976464c6c840d610d9c61c65f273f4634b8e06f48b8fb93a24 101192 
qscintilla2_2.10.2+dfsg-4.debian.tar.xz
 3d1d7fc1f9e323b73549badf91b4f4b6ce1fb7ab2cb6e116c929a8edefff3b50 13228 
qscintilla2_2.10.2+dfsg-4_source.buildinfo
Files:
 7da112724a701ea12f48a95d78a19c81 4510 libs optional 
qscintilla2_2.10.2+dfsg-4.dsc
 1002ff4875db710ff16740b19b6e8dba 2715476 libs optional 
qscintilla2_2.10.2+dfsg.orig.tar.gz
 c554ec3932d51858098f8d9b3398aa85 101192 libs optional 
qscintilla2_2.10.2+dfsg-4.debian.tar.xz
 7538bd868d13917f2c3833e63eba1045 13228 libs optional 
qscintilla2_2.10.2+dfsg-4_source.buildinfo

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJaTAwuAAoJEHjX3vua1ZrxJkwP/AztCZImH6+I/I5YzEZdPVrf
LOeiJXKSbZXHD2gS3mUbUnwlKbUdrWo4PbmcjBlZ8+V+owvOP26gqfA0+DAFGRML
SyhQoSMDB798rdMJ/SuY+GfiOQ2waDWJRi82x4tmOeFl+J8MaatHhrvAdkbU4iwg
E0SJC+cZwiWqwLIRn7VtchcZ+4b4oTSKXNfobGCiNO7MsWH6UbkFVtui3dI8/J9G
o+3rSzBbW6CIce+fS9DMEaj5o1LhMq6+ZiJ+MaI9fGh3gd2sfxzrltyVqwB+vpy3
XRH/Gbsw1HT9hv5uBpfYJAuWW13H6qU9EsRJJLNb6Mlql9rN6RHllOV39zgd992Y
T2YJJP3f1Q2aFwYLEtT9+gPawM8ytYISSkNnuWLCXurkrUfvEDWpS139p083dveu
gxhrcbXZGj2mTNsIQCfHShRgq7U2vLeG92RjW3KKxf6pLwWRKf4wIhgtRHi/eU66
G5cZAKsFhnT2tFOd2LLhZLE6QaqqjxBP34QdU8ZKimxnM0NhelCOgv0/Q2C8I4l9
AacHNIaKTUVGlJC7d2CL8oS9hGWojlONTevUVGb2bvmyFTn32ECUIXqx2qMkhkWg
ihbcTNBRdS6VJyuETiQiSJgXZgJ6UhA1XnrMlZKSCp/OKL87C7w5eIhbPYCygEMk
w4wbJ0hSZ24FaLDWNTbO
=/Gi8
-END PGP SIG

[Python-modules-team] Processing of qscintilla2_2.10.2+dfsg-4_source.changes

2018-01-02 Thread Debian FTP Masters
qscintilla2_2.10.2+dfsg-4_source.changes uploaded successfully to localhost
along with the files:
  qscintilla2_2.10.2+dfsg-4.dsc
  qscintilla2_2.10.2+dfsg.orig.tar.gz
  qscintilla2_2.10.2+dfsg-4.debian.tar.xz
  qscintilla2_2.10.2+dfsg-4_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] Bug#807347: marked as done (txaws: FTBFS: twisted.trial.unittest.FailTest: '500' != 500)

2018-01-02 Thread Debian Bug Tracking System
Your message dated Tue, 02 Jan 2018 22:28:07 +
with message-id 
and subject line Bug#886118: Removed package(s) from unstable
has caused the Debian Bug report #807347,
regarding txaws: FTBFS: twisted.trial.unittest.FailTest: '500' != 500
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.)


-- 
807347: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=807347
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: txaws
Version: 0.2.3-1
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

txaws fails to build from source in unstable/amd64:

  [..]
  
  txaws.ec2.tests.test_client.QueryTestCase.test_submit_non_EC2_400
  
===
  [FAIL]
  Traceback (most recent call last):
File

"/home/lamby/temp/cdt.20151207215711.OLxXnJQQOq/txaws-0.2.3/txaws/tests/test_exception.py",
line 18, in test_creation
  self.assertEquals(error.status, 500)
File "/usr/lib/python2.7/dist-packages/twisted/trial/_synctest.py",
line 437, in assertEqual
  super(_Assertions, self).assertEqual(first, second, msg)
File "/usr/lib/python2.7/unittest/case.py", line 513, in assertEqual
  assertion_func(first, second, msg=msg)
File "/usr/lib/python2.7/unittest/case.py", line 506, in
_baseAssertEqual
  raise self.failureException(msg)
  twisted.trial.unittest.FailTest: '500' != 500
  
  txaws.tests.test_exception.AWSErrorTestCase.test_creation
  
---
  Ran 437 tests in 0.633s
  
  FAILED (skips=56, failures=9, successes=372)
  debian/rules:14: recipe for target 'override_dh_auto_test' failed
  make[1]: *** [override_dh_auto_test] Error 1
  make[1]: Leaving directory
  '/home/lamby/temp/cdt.20151207215711.OLxXnJQQOq/txaws-0.2.3'
  debian/rules:6: recipe for target 'build' failed
  make: *** [build] Error 2

  [..]

The full build log is attached.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


txaws.0.2.3-1.unstable.amd64.log.txt.gz
Description: Binary data
--- End Message ---
--- Begin Message ---
Version: 0.2.3-1+rm

Dear submitter,

as the package txaws has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/886118

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

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

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---
___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team

[Python-modules-team] Bug#790141: marked as done (txaws: depends on python-gnomekeyring which is deprecated)

2018-01-02 Thread Debian Bug Tracking System
Your message dated Tue, 02 Jan 2018 22:28:07 +
with message-id 
and subject line Bug#886118: Removed package(s) from unstable
has caused the Debian Bug report #790141,
regarding txaws: depends on python-gnomekeyring which is deprecated
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.)


-- 
790141: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=790141
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: txaws
Severity: important
Tags: sid stretch
User: pkg-gnome-maintain...@lists.alioth.debian.org
Usertags: oldlibs python-gnomekeyring gnome-python-desktop

Hi,

txaws depends on python-gnomekeyring, which is long deprecated and
going to be removed from the archive. txaws should switch to using
the GObject Introspection bindings for gnome-keyring,
gir1.2-gnomekeyring-1.0.

This would mean switching to GObject Introspection for other bindings
as well, e.g. GLib and GTK+, so making the switch to GTK+ 3 at the
same time would make a lot of sense.

For more information on GObject Introspection see [1] and [2].

Please try to do this before the Stretch release as we're going to
try to remove it this cycle.

If you have any question don't hesitate to ask.

Emilio

[1] https://wiki.gnome.org/action/show/Projects/GObjectIntrospection
[2] https://wiki.gnome.org/action/show/Projects/PyGObject 
--- End Message ---
--- Begin Message ---
Version: 0.2.3-1+rm

Dear submitter,

as the package txaws has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/886118

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

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

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---
___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team

[Python-modules-team] Bug#886118: Removed package(s) from unstable

2018-01-02 Thread Debian FTP Masters
We believe that the bug you reported is now fixed; the following
package(s) have been removed from unstable:

aws-status |0.2.3-1 | all
python-txaws |0.2.3-1 | all
 txaws |0.2.3-1 | source

--- Reason ---
RoM; RoQA; FTBFS, depends on gnome-python-desktop
--

Note that the package(s) have simply been removed from the tag
database and may (or may not) still be in the pool; this is not a bug.
The package(s) will be physically removed automatically when no suite
references them (and in the case of source, when no binary references
it).  Please also remember that the changes have been done on the
master archive and will not propagate to any mirrors until the next
dinstall run at the earliest.

Packages are usually not removed from testing by hand. Testing tracks
unstable and will automatically remove packages which were removed
from unstable when removing them from testing causes no dependency
problems. The release team can force a removal from testing if it is
really needed, please contact them if this should be the case.

We try to close bugs which have been reported against this package
automatically. But please check all old bugs, if they were closed
correctly or should have been re-assigned to another package.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 886...@bugs.debian.org.

The full log for this bug can be viewed at https://bugs.debian.org/886118

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

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] Bug#886118: Removed package(s) from unstable

2018-01-02 Thread Debian FTP Masters
Version: 0.2.3-1+rm

Dear submitter,

as the package txaws has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/886118

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

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

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] flask-security_1.7.5-1_amd64.changes ACCEPTED into unstable, unstable

2018-01-02 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 02 Jan 2018 14:06:47 +0100
Source: flask-security
Binary: python3-flask-security
Architecture: source all
Version: 1.7.5-1
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team 

Changed-By: Christoph Berg 
Description:
 python3-flask-security - Simple security for Flask apps (Python 3)
Changes:
 flask-security (1.7.5-1) unstable; urgency=low
 .
   * Team upload.
 .
   [ Adrian Vondendriesch ]
   * Initial package version.
 .
   [ Christoph Berg ]
   * Package intentionally not updated to version 3.0.0 yet as the new
 flask-babelex dependency is still under discussion.
 https://github.com/mattupstate/flask-security/issues/715
   * Remove .DS_Store files.
Checksums-Sha1:
 57ff5939cc32364177b7f79b8eb831a3f9d85137 2304 flask-security_1.7.5-1.dsc
 7962f133fa471e9c6b9e7af9cdead4407eb1ba57 42261 flask-security_1.7.5.orig.tar.gz
 c21dff6b4aaed2f854ef752a41b7648abbe078fc 3396 
flask-security_1.7.5-1.debian.tar.xz
 64a36b09b704f68c9b77b62f0b2a6d3463beba04 8897 
flask-security_1.7.5-1_amd64.buildinfo
 9dee58126803bf6ccc2b52b1519b934be59e3a3b 22116 
python3-flask-security_1.7.5-1_all.deb
Checksums-Sha256:
 136ba33562cfdeb353afb59e8b455ba3602d30a6f89a8acd9559bcc5efa005f7 2304 
flask-security_1.7.5-1.dsc
 988952dba451896fd7e9dbf838d0e843844f1cbd27a8e15594a9e1d9432f435f 42261 
flask-security_1.7.5.orig.tar.gz
 3e3897166d487bc491ac51e42957bf659a857324889efdb14c7a5b07fbafa524 3396 
flask-security_1.7.5-1.debian.tar.xz
 c36dd01e5fcf10a475088869b04538f8fe01dcae5b16937c71ab3172a0bd4ac0 8897 
flask-security_1.7.5-1_amd64.buildinfo
 a63eb81933a8faf00f064b6aeac2da1505473e58706fad3b32d76593e12ac6bc 22116 
python3-flask-security_1.7.5-1_all.deb
Files:
 c42889000a9024b2b25a9a0c29d63f23 2304 python optional 
flask-security_1.7.5-1.dsc
 98a0237a04d39a951e9129311d6dc4e0 42261 python optional 
flask-security_1.7.5.orig.tar.gz
 b08f134590fee72636fb06519ff0d828 3396 python optional 
flask-security_1.7.5-1.debian.tar.xz
 f8974102edd4957b939598acae8635b6 8897 python optional 
flask-security_1.7.5-1_amd64.buildinfo
 ed53bf15c46675ae8a633cf7040814e4 22116 python optional 
python3-flask-security_1.7.5-1_all.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEXEj+YVf0kXlZcIfGTFprqxLSp64FAlpLhFwACgkQTFprqxLS
p643UhAAmGjDlF5SFJ21JPOJ6ICApRELnB3vfSi4dyggrZNFreP7+tRj8JVluKuq
NKToyzEiuZcGyeH49xRgy8HC2dVez/RAPt51+LbZCheSJnd2Q8AIgI01f641dvur
nk09qSx2qwvHmnVzwcKKH1HRhrGkA8yl3rtWybaQbyMvzx9GdQBOMVWvCjmCNxKz
fwR5F6S+q1Jqz5D9CufFlO70KbUGxCRXfTEnrnwy7fRrx2nn2s7UMKEphVmgRsGj
veG03nN7xRwJsTa2RPA5hFZYAmaDpK7Dd/SBUgfICu6Jih6tANFg2UENBWWNtwc8
KudUkygbLe0EagdtTWnN5eSaYWNhLPP1SO8V/PUZuF+VlkvvxLQ25NbtzD2MEw8/
p9PPXvMZ+g6zN5c5LoWif3Tn0lNgX2JXZx71ZlSE/jbIoCA7r3gF/YdSHxwv/1YP
QfG1H+8KLcZlhFAizEwEZaxZMZIVhjVK5Ne3/Jbq+7oA5jtcjkYoAyA65ZwGuoS1
Tak9bvFj9kmSZpivFDpkbWMZVoPxno/S+XxrWQ/dc/5penA1ZopAxVr2ybtJxCx7
2HE5q7UuGXG5ilmOfI6OzjmTGiV9Cmww11X/m6CAPhgDkbeQNXkXtxAmMQYPkVQx
o6D8b+PvN4NCbmb2QZRjBLre4Ga5tGcR4VOnQW7PWVzQpQoW4Bg=
=2AaY
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] Comments regarding flask-security_1.7.5-1_amd64.changes

2018-01-02 Thread Chris Lamb
Hi,

Please clarify copyright of debian/ on next upload :)

 -- Chris Lamb   Tue, 02 Jan 2018 21:37:25 +



___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] Processed: Bug#864337 marked as pending

2018-01-02 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 864337 pending
Bug #864337 [src:python-blessed] python-blessed: Non-determistically FTBFS due 
to unreliable timing in tests
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
864337: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=864337
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] wtf-peewee_0.2.6+dfsg-2_source.changes ACCEPTED into unstable

2018-01-02 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 02 Jan 2018 16:19:07 +0100
Source: wtf-peewee
Binary: python-wtf-peewee python3-wtf-peewee
Architecture: source
Version: 0.2.6+dfsg-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: Christoph Berg 
Description:
 python-wtf-peewee - WTForms integration for peewee models (Python 2)
 python3-wtf-peewee - WTForms integration for peewee models (Python 3)
Changes:
 wtf-peewee (0.2.6+dfsg-2) unstable; urgency=medium
 .
   * Team upload.
   * Add debian/tests/import; autodep8 tries to use "wtf-peewee" as module name
 while the actual name is "wtfpeewee".
Checksums-Sha1:
 0bace9e9dc1aacbb7dcbe4faca8fe53389c61887 2301 wtf-peewee_0.2.6+dfsg-2.dsc
 03f1b838cfe5f7ec055b92d0a2e1d986e884 2248 
wtf-peewee_0.2.6+dfsg-2.debian.tar.xz
 82d12580212ca06d07536d3d6dd0c567c8d8444b 6137 
wtf-peewee_0.2.6+dfsg-2_source.buildinfo
Checksums-Sha256:
 aa2ee3c31a0f87070afa5aaa7b24aaa18539e111782d51603976c45fea575d63 2301 
wtf-peewee_0.2.6+dfsg-2.dsc
 29b332b8eba9ec4836ef9e2f99aed4a1c488aff45f4505857cadb8da97d4c204 2248 
wtf-peewee_0.2.6+dfsg-2.debian.tar.xz
 dfe07a180b2832f886afd411e9abd5b45e6ded87d384548e438790a3d8bae5d5 6137 
wtf-peewee_0.2.6+dfsg-2_source.buildinfo
Files:
 95e102fe468c3eecaa0c5544553937c9 2301 python optional 
wtf-peewee_0.2.6+dfsg-2.dsc
 6bc123021642b7c7a4e9a5b5ef1b90e3 2248 python optional 
wtf-peewee_0.2.6+dfsg-2.debian.tar.xz
 37b5944f893b9cfa79005e3ce44b0695 6137 python optional 
wtf-peewee_0.2.6+dfsg-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEXEj+YVf0kXlZcIfGTFprqxLSp64FAlpLo1gACgkQTFprqxLS
p64w8Q/7Bc4AA7VUDf/8sHPs+pQYcUZsZj/GSW4pLnBncnQSjH+i46u/ipN1EEMS
ltBKVfAZ4oljj/pVO+DtXcQ5gsEoePgZPFcru0uF55DtPXk76tGPSECg25XNPUAm
wz5vl6nervthkZB/TzieGJVrN7HQJZpYYuwe9xl1ngnltFp45TclZBRirsCPAfdX
owQ8VmXaJQiPGxRfDj6xdccoA2WvUxRL3afaSOqNlDW2emoovvR3sLjbffiSA8WU
3sGpYrS+D+lMQhTy66J3QqcQV90ezBtTyUporc5A9w8PIuvdgqs6tCuve1gEIzhu
MOFYWhjS1lz1ZZ/Hf2SzX4JZR7zaTu6x/hNUNfMhe4HVQCNJ6X2WO/LL88aKm7vU
GZsbei9oq8f1yeAs89tGybg9+NGoLR/o6YLN7ArcrYdN7wlweKEEnHSRo7nJ+8W8
o7WjoZe8n67vG9cuXub9y19vq7MT76EZJQHUa8VG0XNvevtiCr08Wu8pAgWGIOg+
tlnnoRC+CpinDWj4nh+mi0Mc4Zw8GxvD13GTbBMTKPQpKhwoF7CoxvsiIEctab+3
3CE9SvseYZbRpP+05MxsMQEoEZXtDxd0rugow09VzYOIrZ+LafxNarIbWnEY9hkt
KznsYUOFtRwd3wBdcndIGYtHrhJBEB3l8JwVsAWm9NXrwe82S2M=
=i/vv
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] flask-mongoengine_0.9.3-2_source.changes ACCEPTED into unstable

2018-01-02 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 02 Jan 2018 16:14:33 +0100
Source: flask-mongoengine
Binary: python-flask-mongoengine python3-flask-mongoengine
Architecture: source
Version: 0.9.3-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: Christoph Berg 
Description:
 python-flask-mongoengine - Extension that provides integration with 
MongoEngine (Python 2)
 python3-flask-mongoengine - Extension that provides integration with 
MongoEngine (Python 3)
Changes:
 flask-mongoengine (0.9.3-2) unstable; urgency=medium
 .
   * Team upload.
 .
   [ Christoph Berg ]
   * Convert repository to gbp.
 .
   [ Adrian Vondendriesch ]
   * Fix port in debian tests (simpleapp).
Checksums-Sha1:
 905544800ee50affb1aa6df95c1367446fb81606 2629 flask-mongoengine_0.9.3-2.dsc
 7b91a4dc22c9349ddd5b3b85202499cafee1bd9c 5424 
flask-mongoengine_0.9.3-2.debian.tar.xz
 e3925404c76cce1a7c5250cdd887f0b9403ad3f8 7206 
flask-mongoengine_0.9.3-2_source.buildinfo
Checksums-Sha256:
 3ea0382f86e8f0a5192bbcde8c561b72500ef9cbf4d09051abe2e254f11c98ca 2629 
flask-mongoengine_0.9.3-2.dsc
 2ee82a9261b4094858974ed35709f427f7a2f6b94c3e6cce1ceddbc7c4435121 5424 
flask-mongoengine_0.9.3-2.debian.tar.xz
 f7be6a181176b17e789eea9ef5c67a099da191c68ca099d0f11dfde8a93e1e1d 7206 
flask-mongoengine_0.9.3-2_source.buildinfo
Files:
 a14a6981d4fc65db22dbe90b43992b75 2629 python optional 
flask-mongoengine_0.9.3-2.dsc
 b8deaac172bbb729d276c516643fa89a 5424 python optional 
flask-mongoengine_0.9.3-2.debian.tar.xz
 64b342f508dcfa350bede40a47825699 7206 python optional 
flask-mongoengine_0.9.3-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEXEj+YVf0kXlZcIfGTFprqxLSp64FAlpLok8ACgkQTFprqxLS
p64sug/8DXNOpBwq+o8X0eQ87M+AZh/PnG05T3AfTqEcdOay6HnRGASmzS27huzx
34GYYkOiZ3J37DARF1dG63HUaiRObIk9MYLYUDpzac+U8xGnIyvRI6TMRg42rv4P
j+FTxU261G4iPIRqB+0nOEHDbhAP2UklpUJVuEc0vDqMS2etMonTgZZcUikeoMrY
RmIfOj9X0BY80xky8w5UpqDH8qs40qyqDB9256Ye3BKG9jQ/TVPRRIoW6Xh7YFNV
cd9ETy+eYhMJFe0Q0WV7QX2COEIfEOWOKOqjGLM4bjbLf3jArueT6UyKGXfvEqB1
CyYL7Fw5aiDdXe9AR/So3g+1x5J7QD1C82OCrzCLhuG1IHnhrEW/oGTKaNBDizSJ
tVUyPc7ilASfp8OonivNlMAR1lxCIrpoVL89AIXtBv2CsYhLOfJ5xKSKOpK6MZy1
hYzZmSfzsD1tmg4mqpGe1Ilt90c3NiBkmsenzP9H1TSbNmprZnVHquQumQYb3Q1g
eiY63ahF4TdAHJ2pTcpkUWhs8TLqxMRN3tKnT5XTDfEgdauNgpO0rTvJQeM30Nc7
oO3NZsxXgP5HsYpCQ7KfFhg8S/ywAL2oSsOfE+eDZz2WAuE4Ofd3N0juPzekaAeT
IBTnjOd4b6Nd0cTjvBEOigInRhxs8pTwlxt54cNlSyMwFyB4cB4=
=AWdI
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] Processing of wtf-peewee_0.2.6+dfsg-2_source.changes

2018-01-02 Thread Debian FTP Masters
wtf-peewee_0.2.6+dfsg-2_source.changes uploaded successfully to localhost
along with the files:
  wtf-peewee_0.2.6+dfsg-2.dsc
  wtf-peewee_0.2.6+dfsg-2.debian.tar.xz
  wtf-peewee_0.2.6+dfsg-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] Processing of flask-mongoengine_0.9.3-2_source.changes

2018-01-02 Thread Debian FTP Masters
flask-mongoengine_0.9.3-2_source.changes uploaded successfully to localhost
along with the files:
  flask-mongoengine_0.9.3-2.dsc
  flask-mongoengine_0.9.3-2.debian.tar.xz
  flask-mongoengine_0.9.3-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] Bug#886123: python3-keyring: cannot import name 'unicode_str'

2018-01-02 Thread ydirson
Package: python3-keyring
Version: 10.5.1-1

After updating just this package on stretch to get the keyring binary:

$ keyring get mini-buildd admin
Error initializing plugin kwallet = keyrings.alt.kwallet.
Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/keyring/backend.py", line 171, in 
_load_plugins
init_func = ep.load()
  File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 2291, 
in load
return self.resolve()
  File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 2297, 
in resolve
module = __import__(self.module_name, fromlist=['__name__'], level=0)
  File "/usr/lib/python3/dist-packages/keyrings/alt/kwallet.py", line 6, in 

from keyring.py27compat import unicode_str
ImportError: cannot import name 'unicode_str'
Error initializing plugin Gnome = keyrings.alt.Gnome.
Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/keyring/backend.py", line 171, in 
_load_plugins
init_func = ep.load()
  File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 2291, 
in load
return self.resolve()
  File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 2297, 
in resolve
module = __import__(self.module_name, fromlist=['__name__'], level=0)
  File "/usr/lib/python3/dist-packages/keyrings/alt/Gnome.py", line 11, in 

from keyring.py27compat import unicode_str
ImportError: cannot import name 'unicode_str'


https://github.com/oemof/oemof.db/issues/30 hints to a bug in keyrings.alt 
fixed in 2.2, and
indeed upgrading it to 2.2 fixes the problem.

This package should probably declare "Breaks: python3-keyrings.alt (<< 2.2)" ?

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] python-mechanicalsoup_0.8.0-1_source.changes ACCEPTED into unstable

2018-01-02 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 10 Oct 2017 14:27:05 +0100
Source: python-mechanicalsoup
Binary: python-mechanicalsoup python3-mechanicalsoup
Architecture: source
Version: 0.8.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: Ghislain Antony Vaillant 
Description:
 python-mechanicalsoup - library for automating interaction with websites 
(Python 2)
 python3-mechanicalsoup - library for automating interaction with websites 
(Python 3)
Changes:
 python-mechanicalsoup (0.8.0-1) unstable; urgency=medium
 .
   * Add recommended get-orig-source target
   * New upstream version 0.8.0
   * Bump the minimum Python versions to 2.7 and 3.4
   * Fixup the Vcs-Browser URI
   * Bump the standards version to 4.1.1
   * Avoid dependency on pytest-runner
 - New patch No-pytest-runner.patch
   * Move extend-diff-ignore to d/s/options
Checksums-Sha1:
 223fc6c66562bf351f822c16e7d50001195ca697 2496 python-mechanicalsoup_0.8.0-1.dsc
 f25b014570e9f7587da5774fc16fb373a42e201a 13769 
python-mechanicalsoup_0.8.0.orig.tar.gz
 dcf675c3a5618b25729b0e850e3c6ddbd051c53c 2904 
python-mechanicalsoup_0.8.0-1.debian.tar.xz
 4e70c45b383e921a832c6b7fd4542a1501a31fca 7908 
python-mechanicalsoup_0.8.0-1_source.buildinfo
Checksums-Sha256:
 b6ccac61f8b831d34169a54346fe4bc7bc3f3a07a7c13bd844fa025c9ebb1b08 2496 
python-mechanicalsoup_0.8.0-1.dsc
 38a6ca35428196be94f87f8f036ee4a88b1418d1f77e5634ad92acfaa22c28da 13769 
python-mechanicalsoup_0.8.0.orig.tar.gz
 c8eb8dab61ad9606c46973a62f238199aa9d0fd499453522800a0e1d2114d571 2904 
python-mechanicalsoup_0.8.0-1.debian.tar.xz
 52895e87fcb469cdf56324e3c636b8237bb0cf1791598ab000aa08a04a04503b 7908 
python-mechanicalsoup_0.8.0-1_source.buildinfo
Files:
 0db174406655e5f9e7044b29e582d5c2 2496 python optional 
python-mechanicalsoup_0.8.0-1.dsc
 4526af5a447b5acd7e0c826e6732355c 13769 python optional 
python-mechanicalsoup_0.8.0.orig.tar.gz
 53dcba2d056ea2211b55aa8900129802 2904 python optional 
python-mechanicalsoup_0.8.0-1.debian.tar.xz
 4bea4104fc053fa2afdaf98b15ba870b 7908 python optional 
python-mechanicalsoup_0.8.0-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIcBAEBCAAGBQJaS4q6AAoJEPNPCXROn13ZlTUP+gKClJw/RZPjQ3wHIQseBqOr
POiIU+TsXdN2TYhOmrDUwnuAqpT5c6B4Q1t2Stpar8auSa3H6jkML7pw/YKK0dqE
dySdGYv8eramVQBBD05IKuE+VPYtj05inCb7SvSryb0Nr0tZiw5CDxSbjJxB2rZp
EhPJBOZU9s+zDoys0OFFL63IUem1+8Cm0JEGXjbleVSde6xLavc2p+cg8VGxeeGr
sX7d1jv+OETbz5XA3l7QGfaGnCGg3nmyRbbwpLTtkTi0wigluZ5Wnxl1pMn9dbT3
k7nAEsGVtv+3uqyMnzpN1jCp9bneVzhuQLvFQmm5Qr9UMu75OVMJAbyTatNGx9Fa
6nTpDF2RHPjaxZsm241fGr3FjHIWEKom8JFZGkSVULftCS6ta35ch6okzKUx10vt
WVe3apjA8UUAl/VYdE6rjo9gmatzNg+UstTZy9rNOWtGkcwnOqzmGxDa5r3HPfQF
0t2+pC6oc5duw/u5wogf/A+Xk21ZGoYfn4hX3gF+uRd5uBQAf6U/hpKfeUu5BSFL
+pL+cWYTKsJ2yHuz8tqKTo4Qri7q5UgvgV0xUGS7+Kgl7QLCQSdMhJrtD6CBAEy/
kYVZ0r5RHfBJJ7IIEsJZsdg3VxXcdypQtfLRf4GUdp23/0DWe2yTTgBOAZaFcJ4Z
5TXLYhEKZXJrt7gDBvCX
=mt6G
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] pytest-qt_2.2.1-1_source.changes ACCEPTED into unstable

2018-01-02 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 10 Oct 2017 14:24:45 +0100
Source: pytest-qt
Binary: python3-pytestqt python-pytestqt-doc
Architecture: source
Version: 2.2.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: Ghislain Antony Vaillant 
Description:
 python-pytestqt-doc - documentation for pytest-qt
 python3-pytestqt - pytest plugin for Qt application testing (Python 3)
Changes:
 pytest-qt (2.2.1-1) unstable; urgency=medium
 .
   * New upstream version 2.2.1
   * Add choice of PyQt APIs to Recommends
   * Bump the standards version to 4.1.1
Checksums-Sha1:
 779e8b1463874a6bc47c004888e58a971fe8a0ed 2397 pytest-qt_2.2.1-1.dsc
 9fedb421ab8fc31d8762ec12e37bd1ae591fe0ca 106399 pytest-qt_2.2.1.orig.tar.gz
 94d126e3ca390edb025521a13428a11bcde4e503 4064 pytest-qt_2.2.1-1.debian.tar.xz
 9c4a971e2e25d9695615fc89a85003ecf2e98553 12372 
pytest-qt_2.2.1-1_source.buildinfo
Checksums-Sha256:
 4b50afcdf320a27032ff6b005895007eaddde560d0a71b5b6081da9d97bb873e 2397 
pytest-qt_2.2.1-1.dsc
 ab7fc978d560355fba52a84dd0a533a8e598ee376e9e707ac9a9666c6dd72e0a 106399 
pytest-qt_2.2.1.orig.tar.gz
 5c2f431044095e3b20324b484731ced002508c4e8018bf980bce3903d4a61634 4064 
pytest-qt_2.2.1-1.debian.tar.xz
 884a842c8798d5f219d76af917745e98da09675fc821ea449b28dee820caea29 12372 
pytest-qt_2.2.1-1_source.buildinfo
Files:
 936ec58b2641325baaf4d2372a33e4ef 2397 python optional pytest-qt_2.2.1-1.dsc
 b8f249af73b223d1aa29e2b3780b9bef 106399 python optional 
pytest-qt_2.2.1.orig.tar.gz
 667a3b91ceee8d9ce2bb3772c42913c2 4064 python optional 
pytest-qt_2.2.1-1.debian.tar.xz
 719285b44869d35fd26afa46e2b261e4 12372 python optional 
pytest-qt_2.2.1-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIcBAEBCAAGBQJaS4lsAAoJEPNPCXROn13ZCKAQAL9mIBLjAA/l8JRgD2wW8UdV
24np9zOK3RBL1AESsjRmf1bOdGvRvaa0vxUhHfNwD7IUslqmFaMUblLeRbo8x3G0
sz1GiBqw7iBZiQMR79zWlEhXMyTRlj+lpaUFJFTpinTuj5snhPrmCZdTtx/1wot8
aKavAfhXmV+kLIgV87X4SULWX+kjBDKsVEu4pPOz8JVZPdiAxR6lVQ8V9SiSC5kC
aghA4CRtLE3AT5XpMjJo8tE5x7/L5dvbmKJXeI3kVzDXFlHviHouAoL5sjYwVdKD
0RwE6rb1QtqOYcQKGuS5IuvQrJzz5JbtDD5HTgzO0rn5CeGdv+oLLEjSzdTwwqKL
GMuGaIOaM4tlyUli/7Lv7Sgsgar1WSHiHNEtN89XQ++wDgTkNvJaJW1+wAWlVeLy
0H+JgEMqN1NTkcEraW/tda8SZayBrc8l/tgj38WX0hYFgbnAzlS8O4Np4VjtuDO2
+t9rUFW39PMJFTgo7SbT4smZsUUuwRAC4yg5IyVYUNor4YC3gBzt5elgYwNUsRel
B0gglRC4JXlJIVTNgLm4W6NQUQJoKKd97ro33mndgQiPU8i2jhxsmZeLlQ3dd4MB
ov3+Ob3Gi1HoCrE3Nx95pqeAvFIwdeMvDK0mnj96c65h6JeAWPC3k3ZIfh7vXUNv
3VC+hsU3WXpy6JBX1qBu
=U9QB
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] Bug#886118: RM: txaws -- RoM; RoQA; FTBFS, depends on gnome-python-desktop

2018-01-02 Thread Jeremy Bicha
Package: ftp.debian.org
User: release.debian@packages.debian.org
Usertags: rm
X-Debbugs-Cc: tx...@packages.debian.org

Please remove txaws from Debian.

txaws was removed from Debian Testing and not included in the Stretch
release because it fails to build from source. [1] txaws is now
blocking the removal of the unmaintained gnome-python-desktop
library. [2]

I got approval from the Debian maintainer Clint Byrum before filing this bug.

[1] https://bugs.debian.org/807347
[2] https://bugs.debian.org/790141

Thanks,
Jeremy Bicha

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] Processing of python-mechanicalsoup_0.8.0-1_source.changes

2018-01-02 Thread Debian FTP Masters
python-mechanicalsoup_0.8.0-1_source.changes uploaded successfully to localhost
along with the files:
  python-mechanicalsoup_0.8.0-1.dsc
  python-mechanicalsoup_0.8.0.orig.tar.gz
  python-mechanicalsoup_0.8.0-1.debian.tar.xz
  python-mechanicalsoup_0.8.0-1_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] Processing of pytest-qt_2.2.1-1_source.changes

2018-01-02 Thread Debian FTP Masters
pytest-qt_2.2.1-1_source.changes uploaded successfully to localhost
along with the files:
  pytest-qt_2.2.1-1.dsc
  pytest-qt_2.2.1.orig.tar.gz
  pytest-qt_2.2.1-1.debian.tar.xz
  pytest-qt_2.2.1-1_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] Bug#886115: python-keyczar: FTBFS with new pyasn1

2018-01-02 Thread Dimitri John Ledkov
Package: python-keyczar
Version: 0.716+ds-1
Severity: important

Dear Maintainer,

Package has started to FTBFS with new pyasn1 like so:

==
ERROR: testParseX509 (util_test.ParseX509Test)
--
Traceback (most recent call last):
  File 
"/<>/python-keyczar-0.716+ds/tests/keyczar_tests/util_test.py", line 
97, in testParseX509
params = util.ParseX509(publickey)
  File 
"/<>/python-keyczar-0.716+ds/.pybuild/pythonX.Y_2.7/build/keyczar/util.py",
 line 176, in ParseX509
prettyPrint()[2:-3])))[0]
  File 
"/<>/python-keyczar-0.716+ds/.pybuild/pythonX.Y_2.7/build/keyczar/util.py",
 line 256, in BinToBytes
return "".join([chr(int(x, 2)) for x in octets])
ValueError: invalid literal for int() with base 2: '00052245'

--

I have opened an upstream bug report about this as well.

https://github.com/google/keyczar/issues/212

Regards,

Dimitri.

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] guzzle-sphinx-theme_0.7.11-2~bpo9+1_amd64.changes is NEW

2018-01-02 Thread Debian FTP Masters
binary:python3-guzzle-sphinx-theme is NEW.
binary:python3-guzzle-sphinx-theme is NEW.
source:guzzle-sphinx-theme is NEW.

Your package has been put into the NEW queue, which requires manual action
from the ftpteam to process. The upload was otherwise valid (it had a good
OpenPGP signature and file hashes are valid), so please be patient.

Packages are routinely processed through to the archive, and do feel
free to browse the NEW queue[1].

If there is an issue with the upload, you will receive an email from a
member of the ftpteam.

If you have any questions, you may reply to this email.

[1]: https://ftp-master.debian.org/new.html
 or https://ftp-master.debian.org/backports-new.html for *-backports

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] flask-security_1.7.5-1_amd64.changes is NEW

2018-01-02 Thread Debian FTP Masters
binary:python3-flask-security is NEW.
binary:python3-flask-security is NEW.
source:flask-security is NEW.

Your package has been put into the NEW queue, which requires manual action
from the ftpteam to process. The upload was otherwise valid (it had a good
OpenPGP signature and file hashes are valid), so please be patient.

Packages are routinely processed through to the archive, and do feel
free to browse the NEW queue[1].

If there is an issue with the upload, you will receive an email from a
member of the ftpteam.

If you have any questions, you may reply to this email.

[1]: https://ftp-master.debian.org/new.html
 or https://ftp-master.debian.org/backports-new.html for *-backports

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] Processing of flask-security_1.7.5-1_amd64.changes

2018-01-02 Thread Debian FTP Masters
flask-security_1.7.5-1_amd64.changes uploaded successfully to localhost
along with the files:
  flask-security_1.7.5-1.dsc
  flask-security_1.7.5.orig.tar.gz
  flask-security_1.7.5-1.debian.tar.xz
  flask-security_1.7.5-1_amd64.buildinfo
  python3-flask-security_1.7.5-1_all.deb

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] Bug#864337: python-blessed: Non-determistically FTBFS due to unreliable timing in tests

2018-01-02 Thread Pierre-Elliott Bécue
Control: reopen -1

Sadly, the thing is not fixed yet as other tests rely on the same kind of
methods.

We're discussing the matter.

-- 
Pierre-Elliott Bécue
GPG: 9AE0 4D98 6400 E3B6 7528  F493 0D44 2664 1949 74E2


signature.asc
Description: PGP signature
___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team

[Python-modules-team] Processed: Re: python-blessed: Non-determistically FTBFS due to unreliable timing in tests

2018-01-02 Thread Debian Bug Tracking System
Processing control commands:

> reopen -1
Bug #864337 {Done: Pierre-Elliott Bécue } [src:python-blessed] 
python-blessed: Non-determistically FTBFS due to unreliable timing in tests
'reopen' may be inappropriate when a bug has been closed with a version;
all fixed versions will be cleared, and you may need to re-add them.
Bug reopened
No longer marked as fixed in versions python-blessed/1.14.2-1.

-- 
864337: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=864337
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team

[Python-modules-team] Processing of guzzle-sphinx-theme_0.7.11-2~bpo9+1_amd64.changes

2018-01-02 Thread Debian FTP Masters
guzzle-sphinx-theme_0.7.11-2~bpo9+1_amd64.changes uploaded successfully to 
localhost
along with the files:
  guzzle-sphinx-theme_0.7.11-2~bpo9+1.dsc
  guzzle-sphinx-theme_0.7.11-2~bpo9+1.debian.tar.xz
  guzzle-sphinx-theme_0.7.11-2~bpo9+1_amd64.buildinfo
  python3-guzzle-sphinx-theme_0.7.11-2~bpo9+1_all.deb

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] python-django_1.11.9-1_amd64.changes ACCEPTED into unstable

2018-01-02 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 02 Jan 2018 11:12:54 +
Source: python-django
Binary: python-django python-django-common python-django-doc python3-django
Built-For-Profiles: nocheck
Architecture: source all
Version: 1:1.11.9-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: Chris Lamb 
Description:
 python-django - High-level Python web development framework (Python 2 version)
 python-django-common - High-level Python web development framework (common)
 python-django-doc - High-level Python web development framework (documentation)
 python3-django - High-level Python web development framework (Python 3 version)
Changes:
 python-django (1:1.11.9-1) unstable; urgency=medium
 .
   * New upstream bugfix release.
 
   * Bump Standards-Version to 4.1.3.
   * Update debian/python-django-common.lintian-overrides for updated Lintian
 output.
Checksums-Sha1:
 e85cbe933d54fcdcf89d6a1e98770db67bb35b04 3177 python-django_1.11.9-1.dsc
 8c3f72bcfebd84749523c137a5f3e4cfa1740a48 7879870 
python-django_1.11.9.orig.tar.gz
 77f469cdab3aa1c0ec805cdfd9d9726252cd8815 23852 
python-django_1.11.9-1.debian.tar.xz
 7cf98eb95f5a17b7c90272c6b190dec120e604fa 1534768 
python-django-common_1.11.9-1_all.deb
 181f1eb6648b135f4ce9b1b3b992625dcbc9de24 2601904 
python-django-doc_1.11.9-1_all.deb
 ec825d2608fffc2c9670f2ae8fe81aca715d3761 913376 python-django_1.11.9-1_all.deb
 416fd20d6b832b16b5fcfb106e0b633f57c8838b 8097 
python-django_1.11.9-1_amd64.buildinfo
 c099029f6e8db7b7e018e036677ae90be83397ec 913420 python3-django_1.11.9-1_all.deb
Checksums-Sha256:
 5cc329f7dd1e0a339bfd370c44a6b8817ad75ca3b7d29be985893306910dafa6 3177 
python-django_1.11.9-1.dsc
 353d129f22e1d24980d6061666f435781141c2dfd852f14ffc8a670175821034 7879870 
python-django_1.11.9.orig.tar.gz
 2da2a59e164c9111e7fce2bafa28a787fe029661a1d907a5f13abfa99df562a3 23852 
python-django_1.11.9-1.debian.tar.xz
 6d2172cc5dff10a631699b3a0b157b17477521331bef7c627ae0700bb481f966 1534768 
python-django-common_1.11.9-1_all.deb
 5b9e54d4470ec832bed0e1dfd30e8e50e26e188560951b5fca3ad58b5350f920 2601904 
python-django-doc_1.11.9-1_all.deb
 dd209db27526ae6fde15e98bd1d4fe1e8b820747fdd979489cc284a8f38214c7 913376 
python-django_1.11.9-1_all.deb
 f0f8f32f794ca8e8d62e812c5641da6f891d14215cc3985d38e7041f73e8c1c0 8097 
python-django_1.11.9-1_amd64.buildinfo
 15d2549c11950e027badcd01c9d1da1cccb92e3a92ec6664d68895886f66 913420 
python3-django_1.11.9-1_all.deb
Files:
 d387e43e3629cfce40219f9a59a51734 3177 python optional 
python-django_1.11.9-1.dsc
 08ad028fc50ee961dea35e1e1f657b65 7879870 python optional 
python-django_1.11.9.orig.tar.gz
 dbbcb3ac36d1f6939d6f066b1c0364e0 23852 python optional 
python-django_1.11.9-1.debian.tar.xz
 273cfaaed275a3e527ed34a7373a1455 1534768 python optional 
python-django-common_1.11.9-1_all.deb
 334f4066e34a348a595f52a6f48c9dc8 2601904 doc optional 
python-django-doc_1.11.9-1_all.deb
 0e5747fa60b2d781b1551ae3f7f13cb7 913376 python optional 
python-django_1.11.9-1_all.deb
 096425583f0f732617566c2daffa30ab 8097 python optional 
python-django_1.11.9-1_amd64.buildinfo
 8b4392aee511db5c665a16967d0b9748 913420 python optional 
python3-django_1.11.9-1_all.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEwv5L0nHBObhsUz5GHpU+J9QxHlgFAlpLal4ACgkQHpU+J9Qx
Hlhyrg/7BaqVr2aoVB958+yl886g4oS5FO8184U/sSmhEH9Q3FGqkkizj/8JwjMl
1JUe9l9ZSF3W7RtLYr087zJgo7IgOGuVcIUw2CdRX8RT2zHRevQ6Bt2+uMR2TfQ8
q7zKKVW+AhcVYRVAmZRP59L51kQyTJYedqCb+jAeptJTCKOsN5dXLk6VCWuZvrCC
k2pBiSyTv24bxHeR/BCptgbwQLD1MH8F9G2qfnL648XFHgRjYV/LYe/rMb1/8oJA
7DjiIhUCqT/qkUlGxL1FY91g4ezRU6FJG01YHHxY53BlZUiisCzOPMJpSpk/aDfh
b9bJj0JslzssKDXObg1AP/Maa8oM5ihezqylf0Zbx4VUCqJz74CwpFZAAPetZjh9
LBhMFNmGkhMi1+uM9Vi/qoxy0aonPgTZvCDcJqJWbxi2hqjtv13aZw8MJj5E7FuU
ZnIG5EMSrDML/vXnwrywwQq0KFmlyFqupJH0pAIQubniQ4vWaE0vZQkebzOkoc1j
KmWM/3L1OP6hxCn5DZzodh048iTDryRbHXsBdgTSctQ5rNX0OZeh9DAfUTHE6cZr
z9TiPAaQcPviRCpflqzJ0QVvqLsF5qtX/h4pCJUHQCs/mbqfghnxs0cQbaF1DTZZ
fFiMBre6Mz+7tRT+x2SAv3FuGlJEPvMxFrc9Q00GGcaIzuHufrs=
=FzYE
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] Processing of python-django_1.11.9-1_amd64.changes

2018-01-02 Thread Debian FTP Masters
python-django_1.11.9-1_amd64.changes uploaded successfully to localhost
along with the files:
  python-django_1.11.9-1.dsc
  python-django_1.11.9.orig.tar.gz
  python-django_1.11.9-1.debian.tar.xz
  python-django-common_1.11.9-1_all.deb
  python-django-doc_1.11.9-1_all.deb
  python-django_1.11.9-1_all.deb
  python-django_1.11.9-1_amd64.buildinfo
  python3-django_1.11.9-1_all.deb

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] python-django_2.0.1-1_amd64.changes ACCEPTED into experimental

2018-01-02 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 02 Jan 2018 10:53:43 +
Source: python-django
Binary: python3-django python-django-doc
Built-For-Profiles: nocheck
Architecture: source all
Version: 2:2.0.1-1
Distribution: experimental
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: Chris Lamb 
Description:
 python-django-doc - High-level Python web development framework (documentation)
 python3-django - High-level Python web development framework (Python 3 version)
Changes:
 python-django (2:2.0.1-1) experimental; urgency=medium
 .
   * New upstream bugfix release.
 
   * Bump Standards-Version to 4.1.3.
Checksums-Sha1:
 60ddb26a8e808e11b80d1d79b387744f64546089 2716 python-django_2.0.1-1.dsc
 3433cc489ccb82f46c4f61550ea96f37ec53ff67 8000807 
python-django_2.0.1.orig.tar.gz
 a3854136a9b84ff4b2b52c74937ada4e5c59cd9d 22788 
python-django_2.0.1-1.debian.tar.xz
 70d11d0fcb0814399bc8eef551a086262f0f91ee 2594332 
python-django-doc_2.0.1-1_all.deb
 30983c48dbd5ec460ee6fe53f918b75eee3f7008 7302 
python-django_2.0.1-1_amd64.buildinfo
 f644d1c51958b8497ec4d37907ef96de263cfc6d 2466316 python3-django_2.0.1-1_all.deb
Checksums-Sha256:
 b82eaeff9496ee827c20a0d6034fbca66602ec896f8098430db9a7b646e101dc 2716 
python-django_2.0.1-1.dsc
 d96b804be412a5125a594023ec524a2010a6ffa4d408e5482ab6ff3cb97ec12f 8000807 
python-django_2.0.1.orig.tar.gz
 fa011b3c42fab726c4b7af50ee598ce4623de0f48ad54038e6c1b553cd9fe98a 22788 
python-django_2.0.1-1.debian.tar.xz
 cb48423dfefe2c55acb87d682972bbfadf0760627f0138dbe95816d53d51b0c4 2594332 
python-django-doc_2.0.1-1_all.deb
 55644e44ed950ecac2bc29c55affcb1728671b4c3f5da2d509537910cf605171 7302 
python-django_2.0.1-1_amd64.buildinfo
 74148dbb817b07fc2ac504d557515e0e08d0e18ab5d09502bd35f1b56cdcca86 2466316 
python3-django_2.0.1-1_all.deb
Files:
 ae50d4078a8bfed89b7aa19213780143 2716 python optional python-django_2.0.1-1.dsc
 29be9ee303a5a592b4ac1ad9316c620a 8000807 python optional 
python-django_2.0.1.orig.tar.gz
 9f4daebdcefa833791dce4fde830291b 22788 python optional 
python-django_2.0.1-1.debian.tar.xz
 039a776a06a1b4a696427c542db4fd7a 2594332 doc optional 
python-django-doc_2.0.1-1_all.deb
 5cbbf0468f3589a89b2c624c604de845 7302 python optional 
python-django_2.0.1-1_amd64.buildinfo
 d1412be40b53b3db7835c4a9a46e8771 2466316 python optional 
python3-django_2.0.1-1_all.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEwv5L0nHBObhsUz5GHpU+J9QxHlgFAlpLZbwACgkQHpU+J9Qx
HlhS5hAAoX+ncVi3HqfJVLxKgi5Q65zLVen0w4ieRONIdZ/radgdxPClp8eOwF60
qoSakbHPKoesAk5NfpxaM/yK2FVZJ3CrRxFWQY42lG/KK/p0ZGV3Uu8nSaSbgRIQ
AOH2bj6iFqFBcOUJPt6tgIhM5o8pBzWnjjIVyRrOk7bSYnpS4rIngKP8ipKE1dD1
se4luyH9OjdGM+O63idMYSFglYLGtX6qK4dHZAQ+AtbCnQPt1e4Y70u3AnGLM2XZ
Gl0osQiVww7QFoUfuxODntg45GaHQwvC5BNZ4rburJfjJAeuypbjjCltpElz4nur
3WEmb5gl/Z8yKtBMp4DYOw6g2gVRplUuQ1Lxc2QqO8JmxJahouwK8/u1NrN91m3H
jlRIhWn4UxCKWrJrW9GBkhFOKgA2MB4hK227Zl2RVE2iO7zlckEqtsKkzJMMECQI
uqlO0vKV+VQvURO5kA8/Lhhn03D77/d4oua++qAHt9XlvNqKlAUjda1cSwWR5XP3
ZzX2gdw8xbxt52Lo9G60qb2OlSWsnqEuIhkxaKBpUTLCjiPdi2dVhdVpDsCVP1Kk
Ooul8TdjWqNi/VSH5sbFGpnn9ZqqmoWkpL1FgfZZkobbqekJTDlA+/JnnvHQHROe
mcr5wI6fUln9o/FqSxRv1hyTlfHmqOL3fCPpW3rKTZ7s+0JM6yg=
=qgUg
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] Processing of python-django_2.0.1-1_amd64.changes

2018-01-02 Thread Debian FTP Masters
python-django_2.0.1-1_amd64.changes uploaded successfully to localhost
along with the files:
  python-django_2.0.1-1.dsc
  python-django_2.0.1.orig.tar.gz
  python-django_2.0.1-1.debian.tar.xz
  python-django-doc_2.0.1-1_all.deb
  python-django_2.0.1-1_amd64.buildinfo
  python3-django_2.0.1-1_all.deb

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] Backport of python3-django-auth-ldap support to stretch

2018-01-02 Thread Neil Williams
One of my packages is going to need a backport of the python3 support
in django-auth-ldap to stretch-backports and so I'm asking if anyone is
interested in doing that backport already?

(Forgot to CC this list when posting to the backports list)

If not, are there any issues I should know about to do the backport
myself?

With the general move to python3, a backport like this would seem to be
generally useful for other packages too. The python3 support currently
only exists in buster or sid.

https://packages.debian.org/unstable/python3-django-auth-ldap

-- 


Neil Williams
=
http://www.linux.codehelp.co.uk/



pgptdjAfOHtpD.pgp
Description: OpenPGP digital signature
___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team