* [U-Boot] [PATCH 1/1] Dockerfile: add python3-sphinx
@ 2019-07-25 20:34 Heinrich Schuchardt
2019-07-27 13:08 ` Bin Meng
2019-07-29 13:05 ` Tom Rini
0 siblings, 2 replies; 5+ messages in thread
From: Heinrich Schuchardt @ 2019-07-25 20:34 UTC (permalink / raw)
To: u-boot
python3-sphinx is needed to build the htmldocs target.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
---
This patch relates to
https://gitlab.denx.de/u-boot/gitlab-ci-runner
---
Dockerfile | 1 +
1 file changed, 1 insertion(+)
diff --git a/Dockerfile b/Dockerfile
index 73c1b8b..e8468ce 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -66,6 +66,7 @@ RUN apt-get update && apt-get install -y \
python-pip \
python-pytest \
python-virtualenv \
+ python3-sphinx \
rpm2cpio \
sloccount \
sparse \
--
2.20.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [U-Boot] [PATCH 1/1] Dockerfile: add python3-sphinx
2019-07-25 20:34 [U-Boot] [PATCH 1/1] Dockerfile: add python3-sphinx Heinrich Schuchardt
@ 2019-07-27 13:08 ` Bin Meng
2019-07-27 13:33 ` Tom Rini
2019-07-29 13:05 ` Tom Rini
1 sibling, 1 reply; 5+ messages in thread
From: Bin Meng @ 2019-07-27 13:08 UTC (permalink / raw)
To: u-boot
On Fri, Jul 26, 2019 at 4:34 AM Heinrich Schuchardt <xypron.glpk@gmx.de> wrote:
>
> python3-sphinx is needed to build the htmldocs target.
>
> Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
> ---
> This patch relates to
> https://gitlab.denx.de/u-boot/gitlab-ci-runner
> ---
> Dockerfile | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/Dockerfile b/Dockerfile
> index 73c1b8b..e8468ce 100644
> --- a/Dockerfile
> +++ b/Dockerfile
> @@ -66,6 +66,7 @@ RUN apt-get update && apt-get install -y \
> python-pip \
> python-pytest \
> python-virtualenv \
> + python3-sphinx \
Given other packages are using python2, should we use python-sphinx too?
> rpm2cpio \
> sloccount \
> sparse \
> --
Regards,
Bin
^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot] [PATCH 1/1] Dockerfile: add python3-sphinx
2019-07-27 13:08 ` Bin Meng
@ 2019-07-27 13:33 ` Tom Rini
2019-07-27 13:54 ` Bin Meng
0 siblings, 1 reply; 5+ messages in thread
From: Tom Rini @ 2019-07-27 13:33 UTC (permalink / raw)
To: u-boot
On Sat, Jul 27, 2019 at 09:08:26PM +0800, Bin Meng wrote:
> On Fri, Jul 26, 2019 at 4:34 AM Heinrich Schuchardt <xypron.glpk@gmx.de> wrote:
> >
> > python3-sphinx is needed to build the htmldocs target.
> >
> > Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
> > ---
> > This patch relates to
> > https://gitlab.denx.de/u-boot/gitlab-ci-runner
> > ---
> > Dockerfile | 1 +
> > 1 file changed, 1 insertion(+)
> >
> > diff --git a/Dockerfile b/Dockerfile
> > index 73c1b8b..e8468ce 100644
> > --- a/Dockerfile
> > +++ b/Dockerfile
> > @@ -66,6 +66,7 @@ RUN apt-get update && apt-get install -y \
> > python-pip \
> > python-pytest \
> > python-virtualenv \
> > + python3-sphinx \
>
> Given other packages are using python2, should we use python-sphinx too?
We should be forward-looking towards using python3 for everything as we
_really_ do need to do that, so I'm fine with this being python3.
A good follow-up test would be to see what happens if we push as much as
possible to being python3.
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190727/35f0b1ff/attachment.sig>
^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot] [PATCH 1/1] Dockerfile: add python3-sphinx
2019-07-27 13:33 ` Tom Rini
@ 2019-07-27 13:54 ` Bin Meng
0 siblings, 0 replies; 5+ messages in thread
From: Bin Meng @ 2019-07-27 13:54 UTC (permalink / raw)
To: u-boot
On Sat, Jul 27, 2019 at 9:33 PM Tom Rini <trini@konsulko.com> wrote:
>
> On Sat, Jul 27, 2019 at 09:08:26PM +0800, Bin Meng wrote:
> > On Fri, Jul 26, 2019 at 4:34 AM Heinrich Schuchardt <xypron.glpk@gmx.de> wrote:
> > >
> > > python3-sphinx is needed to build the htmldocs target.
> > >
> > > Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
> > > ---
> > > This patch relates to
> > > https://gitlab.denx.de/u-boot/gitlab-ci-runner
> > > ---
> > > Dockerfile | 1 +
> > > 1 file changed, 1 insertion(+)
> > >
> > > diff --git a/Dockerfile b/Dockerfile
> > > index 73c1b8b..e8468ce 100644
> > > --- a/Dockerfile
> > > +++ b/Dockerfile
> > > @@ -66,6 +66,7 @@ RUN apt-get update && apt-get install -y \
> > > python-pip \
> > > python-pytest \
> > > python-virtualenv \
> > > + python3-sphinx \
> >
> > Given other packages are using python2, should we use python-sphinx too?
>
> We should be forward-looking towards using python3 for everything as we
> _really_ do need to do that, so I'm fine with this being python3.
>
> A good follow-up test would be to see what happens if we push as much as
> possible to being python3.
OK, makes sense.
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot] [PATCH 1/1] Dockerfile: add python3-sphinx
2019-07-25 20:34 [U-Boot] [PATCH 1/1] Dockerfile: add python3-sphinx Heinrich Schuchardt
2019-07-27 13:08 ` Bin Meng
@ 2019-07-29 13:05 ` Tom Rini
1 sibling, 0 replies; 5+ messages in thread
From: Tom Rini @ 2019-07-29 13:05 UTC (permalink / raw)
To: u-boot
On Thu, Jul 25, 2019 at 10:34:28PM +0200, Heinrich Schuchardt wrote:
> python3-sphinx is needed to build the htmldocs target.
>
> Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Applied to u-boot-gitlab-ci-runner/master, thanks!
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190729/fd5c860d/attachment.sig>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2019-07-29 13:05 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-07-25 20:34 [U-Boot] [PATCH 1/1] Dockerfile: add python3-sphinx Heinrich Schuchardt
2019-07-27 13:08 ` Bin Meng
2019-07-27 13:33 ` Tom Rini
2019-07-27 13:54 ` Bin Meng
2019-07-29 13:05 ` Tom Rini
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox