Bug#812609: tracker.debian.org: wrong versioned links for security versions

2019-06-10 Thread zaza
On Mon, 10 Jun 2019 08:09:23 -0300 zaza  wrote:
> On Fri, 26 Apr 2019 16:17:15 +0200 Salman Mohammadi  wrote:
> > On Mon, 25 Jan 2016 16:43:38 +0100 Ricardo Mones  wrote:
> > >
> > > The links to .dsc file wich appear on versioned links panel for security
> > > versions are using httpredir.d.o, which always gives 40x errors for those
> > > package versions. Example: https://tracker.debian.org/pkg/claws-mail
> > > (3.8.1-2+deb7u1 and 3.11.1-3+deb8u1 dsc links)
> > >
> > 
> > Dear Recardo,
> > 
> > I couldn't reproduce this bug in the package that you have mentioned.
> 
> 
> Neither do I.

Well, this bug and 850409[0] were merged - 26 Aug 2018.
Instructions in 850409.

[0] - https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=850409



Regards,
Herbert



Bug#812609: tracker.debian.org: wrong versioned links for security versions

2019-06-10 Thread zaza
On Fri, 26 Apr 2019 16:17:15 +0200 Salman Mohammadi  wrote:
> On Mon, 25 Jan 2016 16:43:38 +0100 Ricardo Mones  wrote:
> >
> > The links to .dsc file wich appear on versioned links panel for security
> > versions are using httpredir.d.o, which always gives 40x errors for those
> > package versions. Example: https://tracker.debian.org/pkg/claws-mail
> > (3.8.1-2+deb7u1 and 3.11.1-3+deb8u1 dsc links)
> >
> 
> Dear Recardo,
> 
> I couldn't reproduce this bug in the package that you have mentioned.


Neither do I.



Regards,
Herbert



Bug#926351: python3-tesserocr: segfaults on import

2019-04-18 Thread zaza
Hi,

On Fri, 5 Apr 2019 23:26:55 +0200 =?UTF-8?Q?Bernhard_=c3=9cbelacker?= 
 wrote:
> Dear Maintainer,
> just tried to help triaging this issue.

Me too.

> 
> Seems this is "expected" behaviour with LC_ALL not
> set to "C". In the end it leads to this upstream bug:
> 
> https://github.com/sirfz/tesserocr/issues/165
> 
> It contains some workarounds and more information.
> 

Yes.

There is a simplistic solution. Set 'locale' before 'import tesserocr'
doing something like this:

>>> import locale
>>> locale.setlocale(locale.LC_ALL, 'C')
'C'
>>> import tesserocr
>>> 

Or adding some code, like here:
https://github.com/WeblateOrg/weblate/commit/6724204977e7c466a463595736cc5299c8f01829

The workaround - set locale - is known. It is in debian/rules[0] file. But the 
user should be informed about it.

[0] - https://sources.debian.org/src/python-tesserocr/2.4.0-4/debian/changelog/


BTW, CI tests never passed. And it is not a reproducible build. Two tests fail.

 - 
https://sources.debian.org/src/python-tesserocr/2.4.0-4/tests/test_api.py/#L227
 - 
https://sources.debian.org/src/python-tesserocr/2.4.0-4/tests/test_api.py/#L275


The package was recently added to Debian. Low popcon.



Regards,
Herbert