Re: [gentoo-portage-dev] [PATCH] Allow ESYSROOT and BROOT in the pkg_setup phase

2019-08-13 Thread Zac Medico
On 8/11/19 6:51 AM, James Le Cuirot wrote: > From: Michał Górny > > This follows a recent change to PMS. > > Signed-off-by: James Le Cuirot > --- > lib/portage/package/ebuild/config.py | 7 --- > 1 file changed, 4 insertions(+), 3 deletions(-) > > Sending this on behalf of mgorny as

[gentoo-portage-dev] [PATCH v2] portage/glsa.py: only check for revisions based on GLSA DTD

2019-08-13 Thread Aaron Bauman
* All GLSA's have been converted to use the revision attribute * If there is no count attribute then raise a GlsaFormatException * Ensure the attribute is an integer Signed-off-by: Aaron Bauman --- lib/portage/glsa.py | 15 +-- 1 file changed, 5 insertions(+), 10 deletions(-) diff

[gentoo-portage-dev] [PATCH] portage/glsa.py: only check for revisions based on GLSA DTD

2019-08-13 Thread Aaron Bauman
* All GLSA's have been converted to use the revision attribute * Only check that the revision attribute is populated which defaults to 1 from tooling (e.g. GLSAMaker) * If there is no count attribute then raise a GlsaFormatException * Remove 'try' logic as we already check if the attribute is