Re: [gentoo-portage-dev] [PATCH] Fix off-by-one error in supported EAPI list

2014-08-17 Thread Michał Górny
Dnia 2014-08-17, o godz. 11:44:55 Brian Dolbec napisał(a): > Hmm, I thought EAPI was suppose to be a string... > > from portage/const.py: > > EAPI = 5 > > which is clearly an integer. It generally is. However, the Council-defined EAPIs match integers so far and portage see

[gentoo-portage-dev] [PATCH] Fix off-by-one error in supported EAPI list

2014-08-17 Thread Michał Górny
Fix the off-by-one error in construction of supported EAPI list that resulted in EAPI 5 being considered unsupported. --- pym/portage/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index fdbc4a8..18b2599 100644 ---

Re: [gentoo-portage-dev] [PATCH] Fix off-by-one error in supported EAPI list

2014-08-17 Thread Brian Dolbec
On Sun, 17 Aug 2014 20:37:10 +0200 Michał Górny wrote: > Fix the off-by-one error in construction of supported EAPI list that > resulted in EAPI 5 being considered unsupported. > --- > pym/portage/__init__.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/pym/portage/_

[gentoo-portage-dev] [PATCH] Fix off-by-one error in supported EAPI list

2014-08-17 Thread Michał Górny
Fix the off-by-one error in construction of supported EAPI list that resulted in EAPI 5 being considered unsupported. --- pym/portage/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index fdbc4a8..18b2599 100644 ---