Bug#637653: pu: gdebi/0.6.4+squeeze1

2011-09-21 Thread Adam D. Barratt
tag 637653 + confirmed
thanks

On Sat, 2011-09-17 at 19:03 +0200, Luca Falavigna wrote:
 gdebi 0.8.2 just landed in unstable.

Thanks.  Please feel free to go ahead with the stable upload.

Regards,

Adam




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#637653: pu: gdebi/0.6.4+squeeze1

2011-09-21 Thread Luca Falavigna
Il 21/09/2011 21:29, Adam D. Barratt ha scritto:
 Thanks.  Please feel free to go ahead with the stable upload.

Uploaded, thanks!

-- 
  .''`.
 :  :' :   Luca Falavigna dktrkr...@debian.org
 `.  `'
   `-



signature.asc
Description: OpenPGP digital signature


Bug#637653: pu: gdebi/0.6.4+squeeze1

2011-09-21 Thread Adam D. Barratt
tag 637653 + pending
thanks

On Wed, 2011-09-21 at 22:22 +0200, Luca Falavigna wrote:
 Il 21/09/2011 21:29, Adam D. Barratt ha scritto:
  Thanks.  Please feel free to go ahead with the stable upload.
 
 Uploaded, thanks!

and flagged for acceptance at the next dinstall.

Regards,

Adam




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#637653: pu: gdebi/0.6.4+squeeze1

2011-09-17 Thread Adam D. Barratt
On Mon, 2011-09-12 at 23:59 +0200, Luca Falavigna wrote:
 As agreed on IRC, I attach new debdiff with suggested adjustment.
 
 I also committed the change above in gdebi trunk [0]. It's not been
 uploaded to unstable yet, as I'd like to include another fix which will
 require a discrete amount of time to be tested on several environments.

Thanks.  Is there an (even vague) ETA for the other fix being in a
suitable condition to be uploaded?

Regards,

Adam




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#637653: pu: gdebi/0.6.4+squeeze1

2011-09-17 Thread Luca Falavigna
Il 17/09/2011 16:38, Adam D. Barratt ha scritto:
 Thanks.  Is there an (even vague) ETA for the other fix being in a
 suitable condition to be uploaded?

Not soon enough to rush an early commit. I could finalize other little
changes (mostly translations), and upload a new revision to unstable
including the regex change. That could happen within today.

-- 
  .''`.
 :  :' :   Luca Falavigna dktrkr...@debian.org
 `.  `'
   `-



signature.asc
Description: OpenPGP digital signature


Bug#637653: pu: gdebi/0.6.4+squeeze1

2011-09-17 Thread Adam D. Barratt
On Sat, 2011-09-17 at 16:51 +0200, Luca Falavigna wrote:
 Il 17/09/2011 16:38, Adam D. Barratt ha scritto:
  Thanks.  Is there an (even vague) ETA for the other fix being in a
  suitable condition to be uploaded?
 
 Not soon enough to rush an early commit.

Completely understood.

 I could finalize other little changes (mostly translations), and
 upload a new revision to unstable including the regex change. That
 could happen within today.

That would be good if possible.  Thanks, and apologies for the delay in
getting back to you about this (again :/).

Regards,

Adam




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#637653: pu: gdebi/0.6.4+squeeze1

2011-09-17 Thread Luca Falavigna
gdebi 0.8.2 just landed in unstable.

-- 
  .''`.
 :  :' :   Luca Falavigna dktrkr...@debian.org
 `.  `'
   `-



signature.asc
Description: OpenPGP digital signature


Bug#637653: pu: gdebi/0.6.4+squeeze1

2011-08-29 Thread Adam D. Barratt
On Sat, 2011-08-13 at 15:15 +0200, Luca Falavigna wrote:
 I'd like to get your permission to upload to stable a fix for a bug that
 happens only on certain locales (#629403). This solution should be more
 robust than relying on correctness of the translations.

Thanks for working on this.

 I attach a debdiff of the proposed changes. It's quite heavy because of
 the offsets introduced in .po files (regenerated at build time) due to
 line changes in the patch, real changes are limited to the files below:

The regular expression being passed to findall() looks slightly
confused, although I realise that in the context of the data being
matched the differences never actually apply currently.

(Specifically, brackets and parentheses don't need escaping inside a
character class or special treatment other than brackets appearing at
the limits of the class, nor is | used as a separator.)  By way of a
slightly contrived example:

 msg = a|b|c[y/n]hello
 print findall([\[|\(](\S+)/\S+[\]|\)], msg)
['b|c[y']

As I understand the intent, the following appears to match more closely:

 msg = a|b|c[y/n]hello
 print findall([[(](\S+)/\S+[])], msg)
['y']

Are there actually any translations using parentheses rather than
brackets as delimiters?

Regards,

Adam




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#637653: pu: gdebi/0.6.4+squeeze1

2011-08-29 Thread Luca Falavigna
Il 29/08/2011 17:47, Adam D. Barratt ha scritto:
 As I understand the intent, the following appears to match more closely:
 
 msg = a|b|c[y/n]hello
 print findall([[(](\S+)/\S+[])], msg)
 ['y']

Looking more closely, your regex is simpler, and even more robust.
Thanks for the hint!

Would it be OK to upload with the suggested regex? That would require
fixing in unstable too, I could commit change in trunk, so next unstable
upload would address that as well.

 Are there actually any translations using parentheses rather than
 brackets as delimiters?

Not that I'm aware of, at the moment. I also looked at more recent
translations, and everything uses brackets.

-- 
  .''`.
 :  :' :   Luca Falavigna dktrkr...@debian.org
 `.  `'
   `-



signature.asc
Description: OpenPGP digital signature