All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/10] Misc fixes (cover letter only)
@ 2019-02-06 22:00 Paul Eggleton
  2019-02-06 22:24 ` akuster
  0 siblings, 1 reply; 3+ messages in thread
From: Paul Eggleton @ 2019-02-06 22:00 UTC (permalink / raw)
  To: yocto

The following changes since commit 61e9b048591adab88d1996646286e1d7df024bea:

  Fix drop-down alignment on duplicates page (2018-11-20 11:58:42 +1300)

are available in the Git repository at:

  git://git.yoctoproject.org/layerindex-web paule/fixes12
  http://git.yoctoproject.org/cgit.cgi/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...finally or with to ensure files get closed
  Replace use of assert with exceptions
  docker: add wget to dependencies
  RRS: fix sorting arrow positioning
  rrs_maintainer_history: check out layer branch before looking for
    maintainers.inc
  RRS: add tool to import/export upstream history data

 Dockerfile                                 |   1 +
 conf/local.conf                            |   2 +-
 layerindex/bulkchange.py                   |  18 +-
 layerindex/update.py                       |   4 +-
 layerindex/update_layer.py                 |  14 +-
 layerindex/utils.py                        |  21 ++-
 layerindex/views.py                        |  70 ++++++--
 rrs/tools/historytool.py                   | 196 +++++++++++++++++++++
 rrs/tools/rrs_distros.py                   |  19 +-
 rrs/tools/rrs_maintainer_history.py        |  45 ++---
 rrs/tools/rrs_upgrade_history.py           |   4 +-
 rrs/tools/rrs_upstream_history.py          |   3 +-
 rrs/tools/upgrade_history_internal.py      |   3 +-
 rrs/views.py                               |   2 +
 templates/layerindex/maintemail.txt        |   9 +
 templates/layerindex/maintemailsubject.txt |   1 +
 templates/layerindex/recipedetail.html     |  27 +++
 templates/rrs/maintainers.html             |   2 +-
 templates/rrs/recipedetail.html            |  27 +++
 templates/rrs/recipes.html                 |   2 +-
 20 files changed, 392 insertions(+), 78 deletions(-)
 create mode 100755 rrs/tools/historytool.py
 create mode 100644 templates/layerindex/maintemail.txt
 create mode 100644 templates/layerindex/maintemailsubject.txt

-- 
2.17.2



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH 00/10] Misc fixes (cover letter only)
  2019-02-06 22:00 [PATCH 00/10] Misc fixes (cover letter only) Paul Eggleton
@ 2019-02-06 22:24 ` akuster
  2019-02-06 22:57   ` Paul Eggleton
  0 siblings, 1 reply; 3+ messages in thread
From: akuster @ 2019-02-06 22:24 UTC (permalink / raw)
  To: Paul Eggleton, yocto


Hello Paul.

On 2/6/19 2:00 PM, Paul Eggleton wrote:
> The following changes since commit 61e9b048591adab88d1996646286e1d7df024bea:
>
>   Fix drop-down alignment on duplicates page (2018-11-20 11:58:42 +1300)
>
> are available in the Git repository at:
>
>   git://git.yoctoproject.org/layerindex-web paule/fixes12
>   http://git.yoctoproject.org/cgit.cgi/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...finally or with to ensure files get closed
>   Replace use of assert with exceptions
>   docker: add wget to dependencies
>   RRS: fix sorting arrow positioning
>   rrs_maintainer_history: check out layer branch before looking for
>     maintainers.inc
>   RRS: add tool to import/export upstream history data

Thanks for the updates and fixes. This is  a very useful tool to both YP
and OE. 

I had to look at what was actual changes to figure out what this patch
set was against.  Should we change the "subject" to help clarify? ie
[layer-index][PATCH ...?

The layer index is hosted on OE. Should one of the  OE mailing be CC'ed??

Yes I realize the sources are hosted on YP but the url for the tool is
http://layers.openembedded.org. can be confusing.

kind regards,
Armin
>
>  Dockerfile                                 |   1 +
>  conf/local.conf                            |   2 +-
>  layerindex/bulkchange.py                   |  18 +-
>  layerindex/update.py                       |   4 +-
>  layerindex/update_layer.py                 |  14 +-
>  layerindex/utils.py                        |  21 ++-
>  layerindex/views.py                        |  70 ++++++--
>  rrs/tools/historytool.py                   | 196 +++++++++++++++++++++
>  rrs/tools/rrs_distros.py                   |  19 +-
>  rrs/tools/rrs_maintainer_history.py        |  45 ++---
>  rrs/tools/rrs_upgrade_history.py           |   4 +-
>  rrs/tools/rrs_upstream_history.py          |   3 +-
>  rrs/tools/upgrade_history_internal.py      |   3 +-
>  rrs/views.py                               |   2 +
>  templates/layerindex/maintemail.txt        |   9 +
>  templates/layerindex/maintemailsubject.txt |   1 +
>  templates/layerindex/recipedetail.html     |  27 +++
>  templates/rrs/maintainers.html             |   2 +-
>  templates/rrs/recipedetail.html            |  27 +++
>  templates/rrs/recipes.html                 |   2 +-
>  20 files changed, 392 insertions(+), 78 deletions(-)
>  create mode 100755 rrs/tools/historytool.py
>  create mode 100644 templates/layerindex/maintemail.txt
>  create mode 100644 templates/layerindex/maintemailsubject.txt
>




^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH 00/10] Misc fixes (cover letter only)
  2019-02-06 22:24 ` akuster
@ 2019-02-06 22:57   ` Paul Eggleton
  0 siblings, 0 replies; 3+ messages in thread
From: Paul Eggleton @ 2019-02-06 22:57 UTC (permalink / raw)
  To: akuster; +Cc: yocto

Oops, yes, I forgot the [layerindex-web], my apologies.

I can cc the oe-devel list if people really want to see it there as well; up 
to this point we've been using this list only. The other option would be a 
dedicated list but I suspect that would have a very limited subscription.

Cheers,
Paul

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 page (2018-11-20 11:58:42 +1300)
> >
> > are available in the Git repository at:
> >
> >   git://git.yoctoproject.org/layerindex-web paule/fixes12
> >   http://git.yoctoproject.org/cgit.cgi/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...finally or with to ensure files get closed
> >   Replace use of assert with exceptions
> >   docker: add wget to dependencies
> >   RRS: fix sorting arrow positioning
> >   rrs_maintainer_history: check out layer branch before looking for
> >     maintainers.inc
> >   RRS: add tool to import/export upstream history data
> 
> Thanks for the updates and fixes. This is  a very useful tool to both YP
> and OE. 
> 
> I had to look at what was actual changes to figure out what this patch
> set was against.  Should we change the "subject" to help clarify? ie
> [layer-index][PATCH ...?
> 
> The layer index is hosted on OE. Should one of the  OE mailing be CC'ed??
> 
> Yes I realize the sources are hosted on YP but the url for the tool is
> http://layers.openembedded.org. can be confusing.
> 
> kind regards,
> Armin
> >
> >  Dockerfile                                 |   1 +
> >  conf/local.conf                            |   2 +-
> >  layerindex/bulkchange.py                   |  18 +-
> >  layerindex/update.py                       |   4 +-
> >  layerindex/update_layer.py                 |  14 +-
> >  layerindex/utils.py                        |  21 ++-
> >  layerindex/views.py                        |  70 ++++++--
> >  rrs/tools/historytool.py                   | 196 +++++++++++++++++++++
> >  rrs/tools/rrs_distros.py                   |  19 +-
> >  rrs/tools/rrs_maintainer_history.py        |  45 ++---
> >  rrs/tools/rrs_upgrade_history.py           |   4 +-
> >  rrs/tools/rrs_upstream_history.py          |   3 +-
> >  rrs/tools/upgrade_history_internal.py      |   3 +-
> >  rrs/views.py                               |   2 +
> >  templates/layerindex/maintemail.txt        |   9 +
> >  templates/layerindex/maintemailsubject.txt |   1 +
> >  templates/layerindex/recipedetail.html     |  27 +++
> >  templates/rrs/maintainers.html             |   2 +-
> >  templates/rrs/recipedetail.html            |  27 +++
> >  templates/rrs/recipes.html                 |   2 +-
> >  20 files changed, 392 insertions(+), 78 deletions(-)
> >  create mode 100755 rrs/tools/historytool.py
> >  create mode 100644 templates/layerindex/maintemail.txt
> >  create mode 100644 templates/layerindex/maintemailsubject.txt
> >
> 
> 


-- 

Paul Eggleton
Intel Open Source Technology Centre




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-02-06 22:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-06 22:00 [PATCH 00/10] Misc fixes (cover letter only) Paul Eggleton
2019-02-06 22:24 ` akuster
2019-02-06 22:57   ` Paul Eggleton

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.