* [Buildroot] [PATCH] package/rpm: add missing dependency to openssl
@ 2014-11-16 22:56 Yann E. MORIN
2014-11-16 23:26 ` Peter Korsgaard
0 siblings, 1 reply; 3+ messages in thread
From: Yann E. MORIN @ 2014-11-16 22:56 UTC (permalink / raw)
To: buildroot
We forcibly enable use of an extrernal openssl in rpm, so we must depend
on it.
openssl is correctly selected from kconfig, but there is no build-time
dependency to it.
It was not an issue so far, because openssl always sorts before rpm, so
gets built before. Unless one wants to just build rpm to debug an
autobuilder failure, that is.
Add that build-time dependency to openssl.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
---
package/rpm/rpm.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/rpm/rpm.mk b/package/rpm/rpm.mk
index af1642f..50e6d75 100644
--- a/package/rpm/rpm.mk
+++ b/package/rpm/rpm.mk
@@ -7,7 +7,7 @@
RPM_VERSION_MAJOR = 5.2
RPM_VERSION = $(RPM_VERSION_MAJOR).0
RPM_SITE = http://rpm5.org/files/rpm/rpm-$(RPM_VERSION_MAJOR)
-RPM_DEPENDENCIES = zlib beecrypt neon popt
+RPM_DEPENDENCIES = zlib beecrypt neon popt openssl
RPM_LICENSE = LGPLv2.1
RPM_LICENSE_FILES = COPYING.LIB
--
1.9.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH] package/rpm: add missing dependency to openssl
2014-11-16 22:56 [Buildroot] [PATCH] package/rpm: add missing dependency to openssl Yann E. MORIN
@ 2014-11-16 23:26 ` Peter Korsgaard
2014-11-17 17:59 ` Yann E. MORIN
0 siblings, 1 reply; 3+ messages in thread
From: Peter Korsgaard @ 2014-11-16 23:26 UTC (permalink / raw)
To: buildroot
>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:
> We forcibly enable use of an extrernal openssl in rpm, so we must depend
> on it.
> openssl is correctly selected from kconfig, but there is no build-time
> dependency to it.
> It was not an issue so far, because openssl always sorts before rpm, so
> gets built before. Unless one wants to just build rpm to debug an
> autobuilder failure, that is.
> Add that build-time dependency to openssl.
Committed, thanks.
> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> ---
> package/rpm/rpm.mk | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
> diff --git a/package/rpm/rpm.mk b/package/rpm/rpm.mk
> index af1642f..50e6d75 100644
> --- a/package/rpm/rpm.mk
> +++ b/package/rpm/rpm.mk
> @@ -7,7 +7,7 @@
> RPM_VERSION_MAJOR = 5.2
> RPM_VERSION = $(RPM_VERSION_MAJOR).0
> RPM_SITE = http://rpm5.org/files/rpm/rpm-$(RPM_VERSION_MAJOR)
> -RPM_DEPENDENCIES = zlib beecrypt neon popt
> +RPM_DEPENDENCIES = zlib beecrypt neon popt openssl
A quick check seems to show that zlib isn't selected from Config.in. Is
it needed (besides indirectly from openssl)?
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH] package/rpm: add missing dependency to openssl
2014-11-16 23:26 ` Peter Korsgaard
@ 2014-11-17 17:59 ` Yann E. MORIN
0 siblings, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2014-11-17 17:59 UTC (permalink / raw)
To: buildroot
Peter, All,
On 2014-11-17 00:26 +0100, Peter Korsgaard spake thusly:
> >>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:
>
> > We forcibly enable use of an extrernal openssl in rpm, so we must depend
> > on it.
>
> > openssl is correctly selected from kconfig, but there is no build-time
> > dependency to it.
>
> > It was not an issue so far, because openssl always sorts before rpm, so
> > gets built before. Unless one wants to just build rpm to debug an
> > autobuilder failure, that is.
>
> > Add that build-time dependency to openssl.
>
> Committed, thanks.
>
> > Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> > ---
> > package/rpm/rpm.mk | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
>
> > diff --git a/package/rpm/rpm.mk b/package/rpm/rpm.mk
> > index af1642f..50e6d75 100644
> > --- a/package/rpm/rpm.mk
> > +++ b/package/rpm/rpm.mk
> > @@ -7,7 +7,7 @@
> > RPM_VERSION_MAJOR = 5.2
> > RPM_VERSION = $(RPM_VERSION_MAJOR).0
> > RPM_SITE = http://rpm5.org/files/rpm/rpm-$(RPM_VERSION_MAJOR)
> > -RPM_DEPENDENCIES = zlib beecrypt neon popt
> > +RPM_DEPENDENCIES = zlib beecrypt neon popt openssl
>
> A quick check seems to show that zlib isn't selected from Config.in. Is
> it needed (besides indirectly from openssl)?
Yes, rpm needs it, too. I'll cook a patch. Thanks for noticing.
Regards,
Yann E. MORIN.
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-11-17 17:59 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-16 22:56 [Buildroot] [PATCH] package/rpm: add missing dependency to openssl Yann E. MORIN
2014-11-16 23:26 ` Peter Korsgaard
2014-11-17 17:59 ` Yann E. MORIN
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox