rpm needs db-6.1.26+ patch (was Re: python3 optional deps)

2016-06-05 Thread Jeff Johnson
On Jun 1, 2016, at 6:29 PM, Elan Ruusamäe wrote: > > 1. were in middle of 5.4.15 -> 5.4.17 change The attached patch (for db-6.1.26/db-6.2.23) is necessary with rpm-5.4.x). Earlier versions of db-x.y.z need no modification. hth 73 de Jeff == jbj13.patch

Re: python3 optional deps

2016-06-01 Thread Elan Ruusamäe
On 06.05.2016 14:36, Jacek Konieczny wrote: On 2016-05-06 10:59, Elan Ruusamäe wrote: On 06.05.2016 11:47, Jacek Konieczny wrote: Feel free to separate it :-) sure. suggest package name? rpm-pythonprov? It is already a separate package, just built with whole RPM. looks like there's jus

Re: python3 optional deps

2016-05-08 Thread Jakub Bogusz
On Fri, May 06, 2016 at 09:11:26AM +0200, Jacek Konieczny wrote: > On 2016-05-04 11:11, Elan Ruusamäe wrote: > > > >can someone check (and fix?) why those optional deps: > >https://github.com/docker/docker-py/blob/1.8.1/setup.py#L14-L17 > > > > > > > > > >extras_require = { > > > >':python_

Re: python3 optional deps

2016-05-06 Thread Jeff Johnson
On May 6, 2016, at 3:41 AM, Elan Ruusamäe wrote: > On 06.05.2016 10:11, Jacek Konieczny wrote: >> >> I guess the python dependency generator should be fixed in our RPM, to >> ignore the 'extras' dependencies (or to make them 'suggest', skipping the >> ':python_version' ones. > is there python

Re: python3 optional deps

2016-05-06 Thread Jacek Konieczny
On 2016-05-06 10:59, Elan Ruusamäe wrote: On 06.05.2016 11:47, Jacek Konieczny wrote: Feel free to separate it :-) sure. suggest package name? rpm-pythonprov? It is already a separate package, just built with whole RPM. looks like there's just one file to move: /usr/lib/rpm/pythoneggs.py

Re: python3 optional deps

2016-05-06 Thread Elan Ruusamäe
On 06.05.2016 11:47, Jacek Konieczny wrote: Feel free to separate it :-) sure. suggest package name? looks like there's just one file to move: /usr/lib/rpm/pythoneggs.py or just move it to rpm-build-macros package? -- glen ___ pld-devel-en mailing

Re: python3 optional deps

2016-05-06 Thread Jacek Konieczny
On 2016-05-06 09:41, Elan Ruusamäe wrote: On 06.05.2016 10:11, Jacek Konieczny wrote: I guess the python dependency generator should be fixed in our RPM, to ignore the 'extras' dependencies (or to make them 'suggest', skipping the ':python_version' ones. is there python module to parse the egg

Re: python3 optional deps

2016-05-06 Thread Elan Ruusamäe
On 06.05.2016 10:11, Jacek Konieczny wrote: I guess the python dependency generator should be fixed in our RPM, to ignore the 'extras' dependencies (or to make them 'suggest', skipping the ':python_version' ones. is there python module to parse the egg info? or just manual parsing each time

Re: python3 optional deps

2016-05-06 Thread Jacek Konieczny
On 2016-05-04 11:11, Elan Ruusamäe wrote: can someone check (and fix?) why those optional deps: https://github.com/docker/docker-py/blob/1.8.1/setup.py#L14-L17 extras_require = { ':python_version < "3.5"': 'backports.ssl_match_hostname >= 3.5', ':python_version < "3.3"': 'ipadd

python3 optional deps

2016-05-04 Thread Elan Ruusamäe
can someone check (and fix?) why those optional deps: https://github.com/docker/docker-py/blob/1.8.1/setup.py#L14-L17 extras_require = { ':python_version < "3.5"': 'backports.ssl_match_hostname >= 3.5', ':python_version < "3.3"': 'ipaddress >= 1.0.16',