Re: [yocto] [meta-security][PATCH] ncrack: update to tip

2019-09-15 Thread akuster808
On 9/15/19 7:18 AM, Scott Ellis wrote: > Signed-off-by: Scott Ellis > --- > recipes-security/ncrack/ncrack_0.7.bb | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/recipes-security/ncrack/ncrack_0.7.bb > b/recipes-security/ncrack/ncrack_0.7.bb > index

[yocto] [meta-security][PATCH] ncrack: update to tip

2019-09-15 Thread Scott Ellis
Signed-off-by: Scott Ellis --- recipes-security/ncrack/ncrack_0.7.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes-security/ncrack/ncrack_0.7.bb b/recipes-security/ncrack/ncrack_0.7.bb index 06ba2b6..ba26965 100644 --- a/recipes-security/ncrack/ncrack_0.7.bb

[yocto] [layerindex-web][PATCH 2/3] import_layers: use recipesExtended viewset

2019-09-15 Thread Paul Eggleton
The new viewset has a different URL and uses pagination, so we need to take that into account. Signed-off-by: Paul Eggleton --- layerindex/tools/import_layers.py | 92 ++- 1 file changed, 55 insertions(+), 37 deletions(-) diff --git

[yocto] [layerindex-web][PATCH 3/3] import_layers: fix output when importing layers from scratch

2019-09-15 Thread Paul Eggleton
Fixes "Importing None" message since we had not yet initialised the layerbranch variable. Signed-off-by: Paul Eggleton --- layerindex/tools/import_layers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layerindex/tools/import_layers.py b/layerindex/tools/import_layers.py

[yocto] [layerindex-web][PATCH 1/3] API: fix recipes API performance regression

2019-09-15 Thread Paul Eggleton
Adding these extra child items to the standard "recipes" viewset (which we did recently in 684a06a383fd2a8da80490dff5f0dbc47750934e) means that some current usage is impractical due to the size of the returned list of items. Instead, create a recipesExtended viewset, move the new child items to

[yocto] [layerindex-web][PATCH 0/3] REST API fixes

2019-09-15 Thread Paul Eggleton
Some fixes relating to the REST API performance issues experienced with the recent upgrade on layers.openembedded.org. The following changes since commit 73198bd5483c16b9852121c6855dc6dac96a98a0: README: add reference to using import_layers to update (2019-08-06 12:04:17 +1200) are