Re: [Debian-med-packaging] Review and sponsoring request: pymia (Python module)

2013-12-11 Thread Jakub Wilk
* Gert Wollny gw.foss...@gmail.com, 2013-12-10, 18:22: Vcs-Browser: http://anonscm.debian.org/?p=debian-med/pymia.git;a=summary Vcs-Git: git://anonscm.debian.org/debian-med/pymia.git I had a 5-seconds look at the source package: Typo in the package description: apropriate - appropriate

Re: [Debian-med-packaging] Review and sponsoring request: pymia (Python module)

2013-12-11 Thread Gert Wollny
Hello Jakub, thanks for having a look. Hello Andreas, I've fixed the issues Jakub pointed out (see below), and if the package now passes your scrutiny I'd ask for sponsoring. best regards, Gert On Wed, 2013-12-11 at 14:45 +0100, Jakub Wilk wrote: * Gert Wollny gw.foss...@gmail.com,

pybuild and not always preventing network connection in auto tests

2013-12-11 Thread Olivier Berger
Hi. AFAIU, pybuild prevents accesses to the network. But this can be problematic during auto_tests that will perform HTTP connections on a local HTTP server (I have such an example in rdflib's auto tests [0]). Is there a way to avoid such a protection, possibly on a selective number of tests ?

Re: pybuild and not always preventing network connection in auto tests

2013-12-11 Thread Dimitri John Ledkov
On 11 December 2013 15:24, Olivier Berger olivier.ber...@telecom-sudparis.eu wrote: Hi. AFAIU, pybuild prevents accesses to the network. But this can be problematic during auto_tests that will perform HTTP connections on a local HTTP server (I have such an example in rdflib's auto tests

Re: pybuild and not always preventing network connection in auto tests

2013-12-11 Thread Dimitri John Ledkov
On 11 December 2013 15:33, Dimitri John Ledkov x...@debian.org wrote: On 11 December 2013 15:24, Olivier Berger olivier.ber...@telecom-sudparis.eu wrote: Hi. AFAIU, pybuild prevents accesses to the network. But this can be problematic during auto_tests that will perform HTTP connections on

Re: pybuild and not always preventing network connection in auto tests

2013-12-11 Thread Barry Warsaw
On Dec 11, 2013, at 03:34 PM, Dimitri John Ledkov wrote: actually you probably need to set them to empty value; e.g. http_proxy= https_proxy= dh_auto_test, or export http_proxy\n export https_proxy Right. That's essentially what I do. -Barry -- To UNSUBSCRIBE, email to

Re: pybuild and not always preventing network connection in auto tests

2013-12-11 Thread Olivier Berger
Barry Warsaw ba...@debian.org writes: On Dec 11, 2013, at 03:34 PM, Dimitri John Ledkov wrote: actually you probably need to set them to empty value; e.g. http_proxy= https_proxy= dh_auto_test, or export http_proxy\n export https_proxy Right. That's essentially what I do. I'm not sure

Re: pybuild and not always preventing network connection in auto tests

2013-12-11 Thread Barry Warsaw
On Dec 11, 2013, at 05:09 PM, Olivier Berger wrote: Do I need an unexport http_proxy AND an http_proxy='' dh_auto_test ? No, all you need to do is unset http_proxy and https_proxy for the duration of the test command. I'm not sure about the behaviour of GNU make wrt env variables, so maybe

Re: pybuild and not always preventing network connection in auto tests

2013-12-11 Thread Olivier Berger
Barry Warsaw ba...@debian.org writes: On Dec 11, 2013, at 05:09 PM, Olivier Berger wrote: Do I need an unexport http_proxy AND an http_proxy='' dh_auto_test ? No, all you need to do is unset http_proxy and https_proxy for the duration of the test command. OK, just inside the pybuild