Re: [yocto] is there a rationale for YP using sysvinit as default init manager?

2019-11-21 Thread Paul Eggleton
rking on changing this in the last cycle but AFAICT not all issues were able to be resolved in time. Kai, do you have a status update? Thanks Paul -- Paul Eggleton Intel System Software Products -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

[yocto] [layerindex-web][PATCH 0/6] Recipe search improvements, misc fixes [cover letter only]

2019-11-20 Thread Paul Eggleton
:30 +1300) are available in the Git repository at: git://git.yoctoproject.org/layerindex-web paule/fixes14 http://git.yoctoproject.org/cgit.cgi/layerindex-web/log/?h=paule/fixes14 Paul Eggleton (6): Drop LICENSE.diff2html update: fix exception with -x/--nofetch option recipes: improved

[yocto] [layerindex-web][PATCH 00/29] RRS: rework upgrade history collection [cover letter only]

2019-11-20 Thread Paul Eggleton
/?h=paule/recipesymbol Paul Eggleton (29): RRS: collect history independent of current recipes RRS: Add deleted recipe handling RRS: use more robust RFC2822 date conversion RRS: skip problematic OE-Core commits (when a dependency) RRS: handle downgrades RRS: use more robust method

Re: [yocto] [warrior] [meta-qt4] 3rdparty: javascriptcore: JITStubs.cpp: allow builds of JavaScriptCore with gcc v8

2019-11-20 Thread Paul Eggleton
I submit one? Quentin sent one yesterday (with the same subject). If you could give it a try and confirm it fixes the failure that would be great. Thanks Paul -- Paul Eggleton Intel System Software Products -- ___ yocto mailing list yocto@yoctoproje

Re: [yocto] [error-report-web][PATCH V2] Add local.conf and auto.conf into error details

2019-11-13 Thread Paul Eggleton
{{ detail.BUILD.AUTO_CONF | safe > }} > +{% endif %} We cannot use the safe filter here - doing so could open up an XSS vulnerability, since anyone can upload anything to the error-report application and the content could include links or othe

Re: [yocto] Where is the documentation for things to fix when upgrading poky versions?

2019-10-30 Thread Paul Eggleton
est/ref-manual/ref-manual.html#migration BTW if you (or anyone else) finds anything we missed documenting here then please do let us know - things do slip by, especially upstream changes. Cheers, Paul -- Paul Eggleton Intel System Software Products -- ___

Re: [yocto] [layerindex-web] Add SPDX Identifier

2019-10-28 Thread Paul Eggleton
Hi Yann On Wednesday, 23 October 2019 2:25:48 AM NZDT Yann CARDAILLAC wrote: > On Mon, Oct 21, 2019 at 9:37 PM Paul Eggleton > wrote: > > On Tuesday, 22 October 2019 4:15:03 AM NZDT Yann CARDAILLAC wrote: > > > https://bugzilla.yoctoproject.org/show_bug.cgi?id=13527 >

[yocto] [layerindex-web][PATCH 2/2] requirements.txt: bump a couple more versions

2019-10-28 Thread Paul Eggleton
Update pytz and beautifulsoup4. Signed-off-by: Paul Eggleton --- requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 84f2ea54..07d8495e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ amqp

[yocto] [layerindex-web][PATCH 1/2] requirements.txt: update to fix CVE-2019-16865

2019-10-28 Thread Paul Eggleton
Update Pillow version to incorporate a fix for a denial-of-service vulnerability (which should not affect this application however, as it does not use Pillow to process external images): https://nvd.nist.gov/vuln/detail/CVE-2019-16865 Signed-off-by: Paul Eggleton --- requirements.txt | 2

[yocto] [layerindex-web][PATCH 0/2] dependency updates

2019-10-28 Thread Paul Eggleton
/layerindex-web paule/requirements1 http://git.yoctoproject.org/cgit.cgi/layerindex-web/log/?h=paule/requirements1 Paul Eggleton (2): requirements.txt: update to fix CVE-2019-16865 requirements.txt: bump a couple more versions requirements.txt | 6 +++--- 1 file changed, 3 insertions(+), 3

Re: [yocto] [layerindex-web] Add SPDX Identifier

2019-10-21 Thread Paul Eggleton
at some of the templates used for authentication originally came from here: https://github.com/macdhuibh/django-registration-templates The LICENSE file indicates MIT for those though. The txt files are tricky because any stray newlines will affect formatting. I would probably avoid touching the

[yocto] [layerindex-web][PATCH 3/3] Fix cgit commit URL setting

2019-10-20 Thread Paul Eggleton
Typo, there has to be a ? in front of the id or otherwise we don't get linked to the right commit. This would have affected recently added layers with a cgit web frontend. Signed-off-by: Paul Eggleton --- templates/layerindex/editlayer.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion

[yocto] [layerindex-web][PATCH 2/3] Add branch comparison function

2019-10-20 Thread Paul Eggleton
ut is also useful in its own right. Note: for readability, SRCREVs are only shown when PV has not changed. Signed-off-by: Paul Eggleton --- layerindex/forms.py | 19 ++ layerindex/urls.py | 12 +- layerindex/views.py

[yocto] [layerindex-web][PATCH 1/3] Track SRCREV for each recipe

2019-10-20 Thread Paul Eggleton
For the purposes of the branch comparison function I'm about to add it would be useful to track the value of SRCREV, so we can see if it has changed even if PV hasn't. Signed-off-by: Paul Eggleton --- layerindex/migrations/0043_recipe_srcrev.py | 20 layerindex/models.py

[yocto] [layerindex-web][PATCH 0/3] Branch comparison functionality

2019-10-20 Thread Paul Eggleton
(2019-10-14 09:20:33 +1300) are available in the Git repository at: git://git.yoctoproject.org/layerindex-web paule/branch_comparison http://git.yoctoproject.org/cgit.cgi/layerindex-web/log/?h=paule/branch_comparison Paul Eggleton (3): Track SRCREV for each recipe Add branch comparison

Re: [yocto] [layerindex-web] Enabled zeus, not working...

2019-10-14 Thread Paul Eggleton
r day) you're picking bitbake out of a repo where zeus is a valid branch. FYI on layers.openembedded.org you also need to select the Python environment for the branch - python3 in this case. I've made both of these changes so it should index correctly the next time around. Cheers Paul --

Re: [yocto] [layerindex-web] [PATCH 0/3] Some misc changes/fixes..

2019-10-13 Thread Paul Eggleton
ng new settings in case the user doesn't add the default to their edited settings file). Cheers Paul -- Paul Eggleton Intel System Software Products -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

Re: [yocto] [layerindex-web] Having problems instantiating a docker image

2019-10-09 Thread Paul Eggleton
at part. You can set it on the command line but there almost certainly will be other issues, so let's fix those first and then you might not have to deal with this part. Cheers, Paul -- Paul Eggleton Intel Open Source Technology Centre -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

Re: [yocto] [OE-core] 3.0 release notes / migration guide

2019-10-02 Thread Paul Eggleton
On Thursday, 3 October 2019 11:44:53 AM NZDT akuster808 wrote: > On 10/2/19 3:20 PM, Paul Eggleton wrote: > > So it's that time again - we need to start building up the raw material for > > the release notes and migration guide for the upcoming 3.0 release, and I'd > > like

[yocto] 3.0 release notes / migration guide

2019-10-02 Thread Paul Eggleton
add things to the migration guide page, but bear in mind I don't always have all of the context for every change. Thanks! Paul -- Paul Eggleton Intel Open Source Technology Centre -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctop

[yocto] [layerindex-web][PATCH 0/3] More minor fixes [cover letter only]

2019-10-01 Thread Paul Eggleton
://git.yoctoproject.org/layerindex-web paule/dissector-backports3 http://git.yoctoproject.org/cgit.cgi/layerindex-web/log/?h=paule/dissector-backports3 Paul Eggleton (3): README: add basic documentation on db backup and restore requirements.txt: update Add a space between text and glyphicons

Re: [yocto] [layerindex-web][PATCH] These changes will add the metadata for product revision and epoch if present in the bitbake recipe.

2019-09-30 Thread Paul Eggleton
nt in the bitbake recipe. These will be automatically available through the REST API but won't (yet) be visible in the UI. -- snip -- (Removing snip lines obviously) Thanks, Paul -- Paul Eggleton Intel Open Source Technology Centre -- __

Re: [yocto] Xilinx/meta-jupyter layer

2019-09-30 Thread Paul Eggleton
ate python2 recipes. > > > > A question to community, > > - Would you recommend maintaining this layer separately in the current > > github.com/Xilinx location or be included under meta- openembedded layers. > > - Would you suggest having a separate mailing list ? &

[yocto] [layerindex-web][PATCH 00/15] More dockersetup/import fixes [cover letter only]

2019-09-29 Thread Paul Eggleton
dependencies (2019-09-17 15:35:44 +1200) are available in the Git repository at: git://git.yoctoproject.org/layerindex-web paule/dissector-backports2 http://git.yoctoproject.org/cgit.cgi/layerindex-web/log/?h=paule/dissector-backports2 Paul Eggleton (15): dockersetup.py: add connectivity check

Re: [yocto] [layerindex-web] PR / PE in layer index

2019-09-23 Thread Paul Eggleton
that migration to the database in the normal way: ./manage.py migrate layerindex Of course if your database already has those new fields the latter will fail, in this instance you could simply add --fake since the result would have been the same. Cheers, Paul -- Paul Eggleton Intel

Re: [yocto] Extension of package name by distro version

2019-09-16 Thread Paul Eggleton
ded the mentioned string to PR in > bbclasses' in poky. Honestly, I do not believe this is the best idea > (on other hands it is working xD ) ... I would say PR_append = "${DISTRO_VERSION}" in your custom distro config work - did you try that? Cheers, Paul -- Pau

[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

[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 a/layerindex/tools

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

2019-09-15 Thread Paul Eggleton
hild items to that and add pagination to avoid result size issues. Signed-off-by: Paul Eggleton --- layerindex/restviews.py | 25 ++--- layerindex/urls.py | 1 + 2 files changed, 23 insertions(+), 3 deletions(-) diff --git a/layerindex/restviews.py b/layerindex/restview

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

2019-09-15 Thread Paul Eggleton
) are available in the Git repository at: git://git.yoctoproject.org/layerindex-web paule/restapi-fixes http://git.yoctoproject.org/cgit.cgi/layerindex-web/log/?h=paule/restapi-fixes Paul Eggleton (3): API: fix recipes API performance regression import_layers: use recipesExtended viewset import_layers

[yocto] [layerindex-web][PATCH 0/4] dockersetup fixes (cover letter only)

2019-08-11 Thread Paul Eggleton
in the Git repository at: git://git.yoctoproject.org/layerindex-web paule/dissector-backports2 http://git.yoctoproject.org/cgit.cgi/layerindex-web/log/?h=paule/dissector-backports2 Paul Eggleton (4): dockersetup.py: add connectivity check docker: fix comment at top of Dockerfile

[yocto] [layerindex-web][PATCH 00/15] REST API / import_layers improvements (cover letter only)

2019-08-05 Thread Paul Eggleton
9ce9f7d2d1870a90b95809f43bae5d4e9f1ebd93: dockersetup: fix regression with https enabled (2019-07-31 09:03:46 +1200) are available in the Git repository at: git://git.yoctoproject.org/layerindex-web paule/importlayers http://git.yoctoproject.org/cgit.cgi/layerindex-web/log/?h=paule/importlayers Paul Eggleton (15): API

[yocto] [layerindex-web][PATCH v2 000/129] Docker setup / misc fixes (cover letter only)

2019-07-25 Thread Paul Eggleton
-web/log/?h=paule/dissector-backports Amber Elliot (6): docker: add setup script admin.py: Add custom SiteAdmin model. Upgrade django-registration to version 3.0. Add user security questions layerindex/urls.py: improve formatting requirements.txt: Require secure version of Django. Paul

[yocto] [layerindex-web][PATCH 000/126] Docker setup / misc fixes (cover letter only)

2019-07-17 Thread Paul Eggleton
formatting requirements.txt: Require secure version of Django. Paul Eggleton (119): Add ability to hide branches Split out recipe dependency handling to its own function docker: Add docker-compose file update_classic_status: recognise pythonhosted.org as python update_classic_status: set

[yocto] [layerindex-web][PATCH 0/7] Recipe reporting system fixes (cover letter only)

2019-07-16 Thread Paul Eggleton
-14 10:05:53 +1300) are available in the Git repository at: git://git.yoctoproject.org/layerindex-web paule/fixes13 http://git.yoctoproject.org/cgit.cgi/layerindex-web/log/?h=paule/fixes13 Paul Eggleton (7): Split out patch status read to a method on the Patch model Record patch

Re: [yocto] [oe] [OE-core] Git commit process question.

2019-04-03 Thread Paul Eggleton
d the basics of why a change has been made, then it's likely that the commit message wasn't good enough. Unlike other issues, once a commit goes in the message is set in stone within the git history, so if you are working on a change, *please* take a minute or two to document it adequately in the commit message so that others looking back can understand it. Thanks, Paul -- Paul Eggleton Intel Open Source Technology Centre -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

Re: [yocto] Removing busybox

2019-02-27 Thread Paul Eggleton
ine (well, the packagegroup packages that it produces) was intended to be, although I guess there might be some argument about what should and should not be in there. Cheers, Paul -- Paul Eggleton Intel Open Source Technology Centre -- ___ yocto mailing l

Re: [yocto] Using SDK/ESDK to build images

2019-02-14 Thread Paul Eggleton
to test one or more components that you're developing with the SDK. Cheers, Paul -- Paul Eggleton Intel Open Source Technology Centre -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

Re: [yocto] [OE-core] Yocto Project Status WW07'19

2019-02-12 Thread Paul Eggleton
ex updating and it appears that's not working at the moment. I have asked Michael to look into it. Thanks for the report, I'll reply back here when things are sorted out. Cheers, Paul -- Paul Eggleton Intel Open Source Technology Centre -- ___ yocto ma

Re: [yocto] [PATCH V2] patchwork: Add a dockerfile for deploy patchwork and patchtest

2019-02-10 Thread Paul Eggleton
> Sorry for the late response. I'm no longer involved with the Yocto > > Project. Last word I heard was that point of contact for Patchwork- > > related work was Paul Eggleton. > > > > Hope this helps. > > > > Jose > Thanks. > > > > On Mon,

Re: [yocto] [PATCH 00/10] Misc fixes (cover letter only)

2019-02-06 Thread Paul Eggleton
On Thursday, 7 February 2019 11:24:24 AM NZDT akuster wrote: > > Hello Paul. > > On 2/6/19 2:00 PM, Paul Eggleton wrote: > > The following changes since commit 61e9b048591adab88d1996646286e1d7df024bea: > > > > Fix drop-down alignment on duplicates p

[yocto] [PATCH 00/10] Misc fixes (cover letter only)

2019-02-06 Thread Paul Eggleton
/layerindex-web/log/?h=paule/fixes12 Paul Eggleton (10): Send people an email when another user adds them as a maintainer Add links to other branch recipes in recipe detail Fix errors due to races deleting bitbake temp files local.conf: allow for upstream_tracking.inc to be missing Use try

Re: [yocto] [Recipe reporting system] Upgradable recipe name list

2019-01-07 Thread Paul Eggleton
Hongxu Jia > > > gnupg 2.2.11 2.2.12Hongxu Jia > > > help2man-native 1.47.6 1.47.8Hongxu Jia > > > libxcrypt 4.1.14.4.1 Khem Raj > &g

[yocto] [layerindex-web][PATCH 00/30] Misc improvements (cover letter only)

2018-11-19 Thread Paul Eggleton
paule/fixes11 http://git.yoctoproject.org/cgit.cgi//log/?h=paule/fixes11 Paul Eggleton (30): Track and enable reporting on duplicate inc files Replace nvd3 with Chart.js update: handle if there is no origin/master branch in bitbake repo settings: add settings for CAPTCHA accessibility

Re: [yocto] Yocto layers missing thud branches

2018-11-18 Thread Paul Eggleton
l I have just taken care of meta-qt3 and meta-qt4, FWIW. Cheers, Paul -- Paul Eggleton Intel Open Source Technology Centre -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

Re: [yocto] [OE-core] 2.6 migration guide

2018-11-08 Thread Paul Eggleton
On Friday, 9 November 2018 11:41:42 AM NZDT Paul Eggleton wrote: > You could accomplish the latter using PACKAGECONFIG_pn-python3 = "pgo" at > the configuration level Oops, I meant PACKAGECONFIG_remove_pn-python3 = "pgo" here. Cheers, Paul -- Paul Eggleton Intel Ope

Re: [yocto] 2.6 migration guide

2018-11-08 Thread Paul Eggleton
On Monday, 5 November 2018 4:32:26 PM NZDT Paul Eggleton wrote: > On Wednesday, 31 October 2018 11:06:31 AM NZDT Scott Rifenbark wrote: > > I have an initial section at > > https://yoctoproject.org/docs/2.6/ref-manual/ref-manual.html#moving-to-the-yocto-project-2.6-release, >

Re: [yocto] 2.6 migration guide

2018-11-04 Thread Paul Eggleton
https://wiki.yoctoproject.org/wiki/FutureMigrationGuide BTW I think the section on postinstalls (from Richard's input) is a little terse and needs expansion - most importantly it needs to describe what actions the user might need to take. I'll take care of this on review if nobody else does. Cheers, Paul

Re: [yocto] adding new layer

2018-10-24 Thread Paul Eggleton
You can ignore the warning (it's just a warning) 2) Remove the .bb entry from BBFILES in meta-saxo/conf/layer.conf (you can add it back if and when you need it - of course that does mean you could forget to do that and then wonder why adding a .bb file doesn't work) 3) Set BBFILE_PATTERN_I

[yocto] 2.6 migration guide

2018-10-23 Thread Paul Eggleton
through the commits in the release for the more general changelog, so most things will get picked up that way, but it's really helpful if people with first-hand knowledge of the implications of some of these changes are involved in how they get documented. Thanks, Paul -- Paul Eggleton Intel Open

Re: [yocto] NAME missing in mpc8315e-rdb.conf

2018-10-23 Thread Paul Eggleton
ttp://layers.openembedded.org/layerindex/branch/master/machines/? q=mpc8315e=1 Cheers, Paul -- Paul Eggleton Intel Open Source Technology Centre -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

Re: [yocto] Working on Dependent Recipes in eSDK

2018-10-18 Thread Paul Eggleton
> > waiting for a new eSDK is not practical given that the developers may have > > to iterate on the changes to the library quite a bit before they get it > > just right for their new something. > > > > Is there a way to update the eSDK sysroots with recipes that are in the > > wo

[yocto] [layerindex-web][PATCH] Fix broken regex for recipes with names containing + signs

2018-10-01 Thread Paul Eggleton
to be fixed anyway.) Signed-off-by: Paul Eggleton --- layerindex/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/layerindex/views.py b/layerindex/views.py index 4eed0cef..5ac7ffab 100644 --- a/layerindex/views.py +++ b/layerindex/views.py @@ -869,6 +869,7 @@ class RecipeDetailView

Re: [yocto] [OE-core] layers.openembedded.org upgraded

2018-09-30 Thread Paul Eggleton
parently fixed itself. If the issue returns or anyone else sees anything strange like this happening then please let me know. Cheers Paul -- Paul Eggleton Intel Open Source Technology Centre -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

[yocto] [layerindex-web][PATCH 00/12] More minor fixes (cover letter only)

2018-09-30 Thread Paul Eggleton
) are available in the Git repository at: git://git.yoctoproject.org/layerindex-web paule/fixes10 http://git.yoctoproject.org/cgit.cgi/layerindex-web/log/?h=paule/fixes10 Paul Eggleton (12): update: fix error on LAYERRECOMMENDS failure admin: allow changing branch on layerbranch records

Re: [yocto] [OE-core] layers.openembedded.org upgraded

2018-09-27 Thread Paul Eggleton
Hi Randy On Friday, 28 September 2018 11:22:29 AM NZST Randy MacLeod wrote: > On 09/27/2018 05:28 PM, Nicolas Dechesne wrote: > > On Thu, Sep 27, 2018 at 10:43 PM Paul Eggleton > > wrote: > >> I'm very happy to announce that we've finally been able to upgrade the >

[yocto] layers.openembedded.org upgraded

2018-09-27 Thread Paul Eggleton
will take a bit more time to properly enable so I'll send out a separate email with further details when they are ready. As always, please let me know if you have any comments or notice any issues. (I've already seen a few minor problems in the update logs so I'll be looking into those.) Ch

[yocto] [layerindex-web][PATCH] update: fix regression caused by previous temp dir fix

2018-09-26 Thread Paul Eggleton
and bitbake.sock. For now the simplest way to deal with this is to ignore the errors since we don't care about these files, we just want the temp dir gone. Signed-off-by: Paul Eggleton --- layerindex/update_layer.py | 11 ++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/layerindex

[yocto] [layerindex-web][PATCH 0/5] More minor fixes (cover letter only)

2018-09-25 Thread Paul Eggleton
completed item (2018-09-20 16:04:49 +1200) are available in the Git repository at: git://git.yoctoproject.org/layerindex-web paule/fixes9 http://git.yoctoproject.org/cgit.cgi/layerindex-web/log/?h=paule/fixes9 Paul Eggleton (5): comparison: use style on hidden select instead of CSS class

Re: [yocto] How to debug unbuildable module error?

2018-09-24 Thread Paul Eggleton
lse that could not be built (and the reason for that will be in the message above). Cheers, Paul -- Paul Eggleton Intel Open Source Technology Centre -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

Re: [yocto] [PATCH] runtime: add BSP test case for usb storage

2018-09-24 Thread Paul Eggleton
(as part of setup, just as you need to set up the board/device before running any tests - you just need to ensure this gets documented somewhere). Cheers, Paul -- Paul Eggleton Intel Open Source Technology Centre -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

Re: [yocto] [PATCH] runtime: add BSP test case for usb storage

2018-09-23 Thread Paul Eggleton
as this is patching OE-Core, the patch needs to be sent to the openembedded-c...@lists.openembedded.org mailing list, if you could please use that for the next revision that would be great. Thanks, Paul -- Paul Eggleton Intel Open Source Technology Centre --

[yocto] [layerindex-web][PATCH 00/10] Bootstrap 3, update task enhancements, etc. (cover letter only)

2018-09-19 Thread Paul Eggleton
for layer_type (2018-09-20 15:53:07 +1200) are available in the Git repository at: git://git.yoctoproject.org/layerindex-web paule/fixes8 http://git.yoctoproject.org/cgit.cgi//log/?h=paule/fixes8 Paul Eggleton (10): import_otherdistro: fix update recording code Upgrade to Bootstrap 3

[yocto] [layerindex-web][PATCH 00/15] More minor fixes (cover letter only)

2018-09-05 Thread Paul Eggleton
/cgit.cgi/layerindex-web/log/?h=paule/fixes7 Paul Eggleton (15): docker: remove one step from proxy setup docker: correct comment in .gitconfig update: do not try to parse a layer that failed to fetch Disable git interactive password prompts Limit selection of "Base" layer type re

Re: [yocto] [layerindex-web] RFC: layer index docker fixes

2018-09-05 Thread Paul Eggleton
On Thursday, 30 August 2018 11:44:10 AM NZST Paul Eggleton wrote: > On Wednesday, 29 August 2018 10:46:27 PM NZST Paul Eggleton wrote: > > I know Konrad promised to update the docker-compose setup to be closer > > to what we'd done recently with the docker setup, but I n

Re: [Yocto-bsp] [poky] Yocto kernel compilation issues

2018-09-04 Thread Paul Eggleton
f this (and many other things) for you. I guess you based your recipe on linux-dummy.bb, but that recipe is special and shouldn't be used as a template for a real kernel. Cheers, Paul -- Paul Eggleton Intel Open Source Technology Centre -- ___ yocto-bs

Re: [yocto] [layerindex-web][PATCH 1/1] import_layer.py: add -t option for layer_type

2018-08-30 Thread Paul Eggleton
> // Robert > > On 07/31/2018 03:57 PM, Robert Yang wrote: > > Hi Paul, > > > > On 07/24/2018 04:33 PM, Paul Eggleton wrote: > >> Hi Robert, > >> > >> On Monday, 23 July 2018 12:30:01 PM CEST Robert Yang wrote: > >>> Now the lo

Re: [yocto] [layerindex-web] RFC: layer index docker fixes

2018-08-29 Thread Paul Eggleton
On Wednesday, 29 August 2018 10:46:27 PM NZST Paul Eggleton wrote: > Hi folks > > I know Konrad promised to update the docker-compose setup to be closer > to what we'd done recently with the docker setup, but I needed something > urgently and wanted to learn how to use docker-com

Re: [yocto] [layerindex-web] RFC: layer index docker fixes

2018-08-29 Thread Paul Eggleton
/layerindex-web/log/?h=paule/docker-compose Let me know what you think - it works well enough for me here, although the setup commands are now a bit ugly on their own. Cheers, Paul -- Paul Eggleton Intel Open Source Technology Centre -- ___ yocto mailing

[yocto] [layerindex-web][PATCH 3/3] update: add option to stop immediately on parse errors

2018-08-23 Thread Paul Eggleton
During debugging a parsing issue, we don't really want to continue if a parsing error occurs, and in that situation I usually end up using Ctrl+C to exit early. Add an option to exit immediately upon error to avoid having to do that. Signed-off-by: Paul Eggleton --- layerindex/update.py

[yocto] [layerindex-web][PATCH 0/3] Minor layer index fixes

2018-08-23 Thread Paul Eggleton
-14 15:09:36 +0200) are available in the Git repository at: git://git.yoctoproject.org/layerindex-web paule/fixes6 http://git.yoctoproject.org/cgit.cgi/layerindex-web/log/?h=paule/fixes6 Paul Eggleton (3): rrs: fix recipe/maintainer count showing at top Hide navbar on comparison select

[yocto] [layerindex-web][PATCH 2/3] Hide navbar on comparison select page

2018-08-23 Thread Paul Eggleton
We don't want to see the navbar on this page because otherwise it lets you select branches and click on Stats etc. which doesn't make any sense in this context. Signed-off-by: Paul Eggleton --- templates/base_toplevel.html | 2 ++ templates/layerindex

[yocto] [layerindex-web][PATCH 1/3] rrs: fix recipe/maintainer count showing at top

2018-08-23 Thread Paul Eggleton
We were using the main badge class as a selector here to show the recipe or maintainer count, and that meant that it also showed up at the top next to the login button if there were some layers to review. Use a proper id to stop that from happening. Signed-off-by: Paul Eggleton --- templates

[yocto] [layerindex-web][PATCH 5/5] Include errors/warnings in main log in error/warning counts for updates

2018-08-14 Thread Paul Eggleton
in the template to avoid the functions being called more than necessary. Signed-off-by: Paul Eggleton --- layerindex/models.py | 8 layerindex/views.py | 2 +- templates/layerindex/updatelist.html | 6 -- 3 files changed, 13 insertions(+), 3 deletions(-) diff

[yocto] [layerindex-web][PATCH 4/5] update: ensure that exceptions during the update process are logged

2018-08-14 Thread Paul Eggleton
-by: Paul Eggleton --- layerindex/update.py | 4 1 file changed, 4 insertions(+) diff --git a/layerindex/update.py b/layerindex/update.py index 14529498..aea7cd09 100755 --- a/layerindex/update.py +++ b/layerindex/update.py @@ -540,6 +540,10 @@ def main(): except KeyboardInterrupt

[yocto] [layerindex-web][PATCH 2/5] update_layer: improve exception handling

2018-08-14 Thread Paul Eggleton
with a non-zero return code so that update.py knows it has failed Signed-off-by: Paul Eggleton --- layerindex/update_layer.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/layerindex/update_layer.py b/layerindex/update_layer.py index 2b39e8ef..d9c93360 100644 --- a/layerindex

[yocto] [layerindex-web][PATCH 0/5] Update / error handling fixes

2018-08-14 Thread Paul Eggleton
d17080d325b9b82e8b844c207053eb2b3ac111ad: Show links to include files on recipe detail (2018-08-13 16:04:16 +0200) are available in the Git repository at: git://git.yoctoproject.org/layerindex-web paule/layerupdate http://git.yoctoproject.org/cgit.cgi/layerindex-web/log/?h=paule/layerupdate Paul Eggleton (5): update: avoid

[yocto] [layerindex-web][PATCH v2 00/31] Distro comparisons (cover letter only)

2018-08-13 Thread Paul Eggleton
changes since commit fca74f3ac3c6536c50cb0a518fe78447a284dc55: Update TODO list (2018-08-06 12:36:31 +0200) are available in the Git repository at: git://git.yoctoproject.org/layerindex-web paule/otherdistro http://git.yoctoproject.org/cgit.cgi/layerindex-web/log/?h=paule/otherdistro Paul

Re: [yocto] Copy git hashes of recipes during the image build

2018-08-10 Thread Paul Eggleton
s from a recipe and then package its output though, I think that should work. Cheers, Paul -- Paul Eggleton Intel Open Source Technology Centre -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

[yocto] [layerindex-web][PATCH 00/31] Distro comparisons (cover letter only)

2018-08-08 Thread Paul Eggleton
-web paule/otherdistro http://git.yoctoproject.org/cgit.cgi//log/?h=paule/otherdistro Paul Eggleton (31): forms: clear out comparison recipe/layerbranch if status doesn't accept them Add a script to import layers from an existing layer index update_classic_status: fix matching on wrong l

[yocto] [layerindex-web][PATCH 0/9] Layer index fixes (cover letter only)

2018-08-06 Thread Paul Eggleton
at: git://git.yoctoproject.org/layerindex-web paule/fixes5 http://git.yoctoproject.org/cgit.cgi/layerindex-web/log/?h=paule/fixes5 Paul Eggleton (9): docker: drop names/emails from settings.py docker: fix copying .gitconfig for proxy setup README: tweak to make Docker setup more prominent

Re: [yocto] Cannot use any TEST_TARGET besides simpleremote or qemu

2018-08-02 Thread Paul Eggleton
lly I'd like to see it stay and get fixed up, but the issue is having the time to fix it and maintain it - if you do by any chance then that would be great. At the moment I believe "simpleremote" does still work, it's just the actual classes that are broken, but I didn't give it

Re: [yocto] [layerindex-web][PATCH 1/1] import_layer.py: add -t option for layer_type

2018-07-26 Thread Paul Eggleton
so that this will work if that is extended in future? Of course that will mean initialising Django earlier, I'm not sure if that will have any side-effects that we wouldn't want. If you could give that a try though that would be great. Thanks, Paul -- Paul Eggleton Intel Open Source Technology Centre -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

Re: [yocto] How to force build of a blacklisted recipe?

2018-07-26 Thread Paul Eggleton
t; in a dvb-apps_%.bbappend for the recipe in your own layer, and then the blacklisting will be disabled for that recipe. Cheers, Paul -- Paul Eggleton Intel Open Source Technology Centre -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

Re: [yocto] can bitbake build offline ?

2018-07-26 Thread Paul Eggleton
YI you can enable buildhistory and use the buildhistory-collect-srcrevs script to generate all those SRCREV lines so you don't have to do that by hand: https://www.yoctoproject.org/docs/current/dev-manual/dev-manual.html#maintaining-build-output-quality Cheers, Paul -- Paul Eggleton Intel Open

Re: [yocto] can bitbake build offline ?

2018-07-26 Thread Paul Eggleton
fline? > >> > >> Thanks > >> -- > >> ___ > >> yocto mailing list > >> yocto@yoctoproject.org > >> https://lists.yoctoproject.org/listinfo/yocto > > -- Paul Eggleton Intel Open Source Technology Centre -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

Re: [yocto] [layerindex-web] RFC: layer index docker fixes

2018-07-17 Thread Paul Eggleton
On Monday, 16 July 2018 10:16:55 PM CEST Paul Eggleton wrote: > On Monday, 16 July 2018 8:24:53 PM CEST Konrad Scherer wrote: > > I recently noticed that if gcc is removed in the 'apt-get purge' step, > > the bitbake sanity checker will fail due to missing 'gcc' when doing a &

Re: [yocto] how to download a recipe

2018-07-17 Thread Paul Eggleton
cipe was moved and the move wasn't handled properly. I have a fix and will be sending it shortly. Cheers, Paul -- Paul Eggleton Intel Open Source Technology Centre -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

Re: [yocto] [layerindex-web] RFC: layer index docker fixes

2018-07-16 Thread Paul Eggleton
On Monday, 16 July 2018 8:24:53 PM CEST Konrad Scherer wrote: > On 07/13/2018 03:29 AM, Paul Eggleton wrote: > > On Thursday, 12 July 2018 10:16:12 PM CEST you wrote: > >> I just noticed that the image doesn't contain git. Was this > >> deliberate or an oversight?

Re: [yocto] [layerindex-web] RFC: layer index docker fixes

2018-07-13 Thread Paul Eggleton
some documentation when I get > back. OK great, thanks. Cheers, Paul -- Paul Eggleton Intel Open Source Technology Centre -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

Re: [yocto] [layerindex-web] RFC: layer index docker fixes

2018-07-12 Thread Paul Eggleton
ust need to make sure everything we now have in the README is covered by the compose file (everything that's practical to cover, anyway). Cheers, Pau; -- Paul Eggleton Intel Open Source Technology Centre -- ___ yocto mailing list yocto@y

[yocto] [layerindex-web] RFC: layer index docker fixes

2018-07-10 Thread Paul Eggleton
it. In particular I haven't yet explored docker-compose as you have, although it looks like it would make deploying all of this a bit easier. Let me know what you think. Cheers, Paul -- Paul Eggleton Intel Open Source Technology Centre -- ___ yocto

Re: [yocto] [layerindex-web][PATCH 1/6] Add docker-compose file to create full layerindex stack of MariaDB, RabbitMQ and Nginx

2018-07-10 Thread Paul Eggleton
or his: https://github.com/halstead/layerindex-web/commit/b9791710ff97550fa9110ab89a70c42b1fc86581 I think we probably want to break all of this down into a set of discrete commits rather than one big one, and then it'll be a bit clearer. I'll do a first pass and come back to you both. Cheers, Pa

Re: [yocto] Keeping and modifying Source code in Yocto

2018-07-10 Thread Paul Eggleton
orarily. Devtool (as recommend by others on this thread) is designed to enable this workflow in a much safer manner. Cheers, Paul -- Paul Eggleton Intel Open Source Technology Centre -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

Re: [yocto] [layerindex-web][PATCH 4/4] update.py: check whether branch existed when nocheckout

2018-07-09 Thread Paul Eggleton
On Monday, 9 July 2018 10:45:58 AM CEST Robert Yang wrote: > On 07/09/2018 04:36 PM, Paul Eggleton wrote: > > On Monday, 9 July 2018 10:34:07 AM CEST Paul Eggleton wrote: > >> On Monday, 9 July 2018 6:11:30 AM CEST Robert Yang wrote: > >>> Fixed: > >>>

Re: [yocto] [layerindex-web][PATCH 4/4] update.py: check whether branch existed when nocheckout

2018-07-09 Thread Paul Eggleton
On Monday, 9 July 2018 10:34:07 AM CEST Paul Eggleton wrote: > Hi Robert, > > On Monday, 9 July 2018 6:11:30 AM CEST Robert Yang wrote: > > Fixed: > > Assume there is no master branch in hello layer: > > $ update.py -l hello -b master > > INFO: Skipping upda

Re: [yocto] [layerindex-web][PATCH 4/4] update.py: check whether branch existed when nocheckout

2018-07-09 Thread Paul Eggleton
h fixed the problem, now it skips it since the > branch doesn't exists when --nocheckout. This fix doesn't seem right. The intention of --nocheckout is to not check anything out, i.e. use whatever HEAD is in the current repository. It wouldn't be correct to get the commit from the origin in this

Re: [yocto] [layerindex-web][PATCH 5/7] update: ignore recommends when ordering layers

2018-07-05 Thread Paul Eggleton
t would have started as a result of this patchset (or indeed recent changes, other than perhaps an upgrade of django-reversion), have you been using loaddata/dumpdata prior to this? Cheers, Paul -- Paul Eggleton Intel Open Source Technology Centre -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

Re: [yocto] [layerindex-web][PATCH 5/7] update: ignore recommends when ordering layers

2018-07-02 Thread Paul Eggleton
yer that recommends another which they don't submit (perhaps a commercial layer?). The system shouldn't refuse to handle it or indicate that it's broken (it isn't, there might be reduced functionality but the layer will still be parseable by bitbake). I'll leave these changes unmerged for a bit in case yo

[yocto] [layerindex-web][PATCH 7/7] Add site-wide notice support

2018-07-02 Thread Paul Eggleton
for formatting the text, URLs will be made into clickable links, and four "levels" are supported (info, success, warning and error). Signed-off-by: Paul Eggleton --- layerindex/admin.py | 1 + layerindex/context_processors.py | 7 +-- layerindex/

  1   2   3   4   5   6   7   8   9   10   >