Re: pyxs review

2012-12-10 Thread Jakub Wilk
* Maykel Moya mm...@mmoya.org, 2012-11-09, 13:44: I'll take care of the issues noted here, including contacting upstream regarding the blob and the inclusion of GPL-3 text. Thanks for the review. It's been over a month. Any news? -- Jakub Wilk -- To UNSUBSCRIBE, email to

Re: Problem with distutils and the experimental multi-arch Python2.7 packages

2012-12-10 Thread Jakub Wilk
* Yannick Roehlly yannick.roeh...@gmail.com, 2012-12-09, 17:08: While trying the experimental Python 2.7 package with multiarch support, I found that distutils is not working. When I try to build some package, I have this error: error: invalid Python installation: unable to open

Re: Third round of advise on packaging python-csb

2012-12-10 Thread Jakub Wilk
* Tomás Di Domenico td...@tdido.com.ar, 2012-12-09, 22:27: I have also tried my hand at generating a Python3 binary package, which seems to be working. I would appreciate if someone could take a look at the debian/rules file and tell me how to improve it. I'm sure my very simple version is not

Re: Problem with distutils and the experimental multi-arch Python2.7 packages

2012-12-10 Thread Yannick Roehlly
Jakub Wilk wrote: This looks like bug #695596. Yes. Thanks for correcting this. Yannick -- Between infinite and short there is a big difference. -- G. H. Gonnet -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of unsubscribe. Trouble?

Re: Third round of advise on packaging python-csb

2012-12-10 Thread Bradley M. Froehle
Interesting, the LibraryStyleGuide [1] suggests a plain `=` and the AppStyleGuide [2] suggests `:=`. (The difference of course is that `=` does delayed evaluation meaning the command is run once for every time the variable is needed, and `:=` does immediate evaluation meaning the command is run

Re: Third round of advise on packaging python-csb

2012-12-10 Thread Barry Warsaw
On Dec 10, 2012, at 02:33 PM, Bradley M. Froehle wrote: Interesting, the LibraryStyleGuide [1] suggests a plain `=` and the AppStyleGuide [2] suggests `:=`. (The difference of course is that `=` does delayed evaluation meaning the command is run once for every time the variable is needed, and