* [meta-networking][dylan][PATCH] vsftpd: fix compile-time dependence
@ 2013-08-01 13:39 Javier Viguera
2013-08-01 13:47 ` Martin Jansa
0 siblings, 1 reply; 4+ messages in thread
From: Javier Viguera @ 2013-08-01 13:39 UTC (permalink / raw)
To: openembedded-devel; +Cc: Javier Viguera
vsftpd links with openssl libraries (libssl and libcrypto) so there is a
compile-time dependence on openssl package.
Signed-off-by: Javier Viguera <javier.viguera@digi.com>
---
meta-networking/recipes-daemons/vsftpd/vsftpd_2.3.5.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta-networking/recipes-daemons/vsftpd/vsftpd_2.3.5.bb b/meta-networking/recipes-daemons/vsftpd/vsftpd_2.3.5.bb
index c02ee9c..f146910 100644
--- a/meta-networking/recipes-daemons/vsftpd/vsftpd_2.3.5.bb
+++ b/meta-networking/recipes-daemons/vsftpd/vsftpd_2.3.5.bb
@@ -4,7 +4,7 @@ SECTION = "network"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=a6067ad950b28336613aed9dd47b1271"
-DEPENDS = "libcap"
+DEPENDS = "libcap openssl"
SRC_URI = "https://security.appspot.com/downloads/vsftpd-${PV}.tar.gz \
file://makefile-destdir.patch \
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [meta-networking][dylan][PATCH] vsftpd: fix compile-time dependence
2013-08-01 13:39 [meta-networking][dylan][PATCH] vsftpd: fix compile-time dependence Javier Viguera
@ 2013-08-01 13:47 ` Martin Jansa
2013-08-01 13:53 ` Javier Viguera
0 siblings, 1 reply; 4+ messages in thread
From: Martin Jansa @ 2013-08-01 13:47 UTC (permalink / raw)
To: openembedded-devel; +Cc: Javier Viguera
[-- Attachment #1: Type: text/plain, Size: 1672 bytes --]
On Thu, Aug 01, 2013 at 03:39:01PM +0200, Javier Viguera wrote:
> vsftpd links with openssl libraries (libssl and libcrypto) so there is a
> compile-time dependence on openssl package.
>
> Signed-off-by: Javier Viguera <javier.viguera@digi.com>
> ---
> meta-networking/recipes-daemons/vsftpd/vsftpd_2.3.5.bb | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta-networking/recipes-daemons/vsftpd/vsftpd_2.3.5.bb b/meta-networking/recipes-daemons/vsftpd/vsftpd_2.3.5.bb
> index c02ee9c..f146910 100644
> --- a/meta-networking/recipes-daemons/vsftpd/vsftpd_2.3.5.bb
> +++ b/meta-networking/recipes-daemons/vsftpd/vsftpd_2.3.5.bb
> @@ -4,7 +4,7 @@ SECTION = "network"
> LICENSE = "GPLv2"
> LIC_FILES_CHKSUM = "file://COPYING;md5=a6067ad950b28336613aed9dd47b1271"
>
> -DEPENDS = "libcap"
> +DEPENDS = "libcap openssl"
>
It was fixed a month ago:
commit 46354a697c18a64c5836159adf8dbd92e6547e85
Author: Martin Jansa <martin.jansa@gmail.com>
Date: Tue Jul 2 20:31:56 2013 +0200
vsftpd: add missing dependency on openssl
And current vsftpd is 3.0.0:
commit 441502b68d03a4ce7796436a53c5e95399724ad2
Author: Roy.Li <rongqing.li@windriver.com>
Date: Fri Jul 19 10:19:25 2013 +0800
Upgrade vsftpd to 3.0.0
> SRC_URI = "https://security.appspot.com/downloads/vsftpd-${PV}.tar.gz \
> file://makefile-destdir.patch \
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [meta-networking][dylan][PATCH] vsftpd: fix compile-time dependence
2013-08-01 13:47 ` Martin Jansa
@ 2013-08-01 13:53 ` Javier Viguera
2013-08-01 14:08 ` Martin Jansa
0 siblings, 1 reply; 4+ messages in thread
From: Javier Viguera @ 2013-08-01 13:53 UTC (permalink / raw)
To: Martin Jansa; +Cc: openembedded-devel@lists.openembedded.org
Hi Martin,
I just subscribed to the list so I didn't know it was already fixed.
Anyway:
# git branch -a --contains 46354a697c18a64c5836159adf8dbd92e6547e85
shows that it's only fixed on *master*.
I was bitten by this using stable dylan branches, that's why my patch
was sent to apply on dylan.
Could this fix be backported to dylan?
-
Regards,
Javier Viguera
On 01/08/13 15:47, Martin Jansa wrote:
> On Thu, Aug 01, 2013 at 03:39:01PM +0200, Javier Viguera wrote:
>> vsftpd links with openssl libraries (libssl and libcrypto) so there is a
>> compile-time dependence on openssl package.
>>
>> Signed-off-by: Javier Viguera <javier.viguera@digi.com>
>> ---
>> meta-networking/recipes-daemons/vsftpd/vsftpd_2.3.5.bb | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/meta-networking/recipes-daemons/vsftpd/vsftpd_2.3.5.bb b/meta-networking/recipes-daemons/vsftpd/vsftpd_2.3.5.bb
>> index c02ee9c..f146910 100644
>> --- a/meta-networking/recipes-daemons/vsftpd/vsftpd_2.3.5.bb
>> +++ b/meta-networking/recipes-daemons/vsftpd/vsftpd_2.3.5.bb
>> @@ -4,7 +4,7 @@ SECTION = "network"
>> LICENSE = "GPLv2"
>> LIC_FILES_CHKSUM = "file://COPYING;md5=a6067ad950b28336613aed9dd47b1271"
>>
>> -DEPENDS = "libcap"
>> +DEPENDS = "libcap openssl"
>>
>
> It was fixed a month ago:
>
> commit 46354a697c18a64c5836159adf8dbd92e6547e85
> Author: Martin Jansa <martin.jansa@gmail.com>
> Date: Tue Jul 2 20:31:56 2013 +0200
>
> vsftpd: add missing dependency on openssl
>
> And current vsftpd is 3.0.0:
>
> commit 441502b68d03a4ce7796436a53c5e95399724ad2
> Author: Roy.Li <rongqing.li@windriver.com>
> Date: Fri Jul 19 10:19:25 2013 +0800
>
> Upgrade vsftpd to 3.0.0
>
>
>> SRC_URI = "https://security.appspot.com/downloads/vsftpd-${PV}.tar.gz \
>> file://makefile-destdir.patch \
>> _______________________________________________
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [meta-networking][dylan][PATCH] vsftpd: fix compile-time dependence
2013-08-01 13:53 ` Javier Viguera
@ 2013-08-01 14:08 ` Martin Jansa
0 siblings, 0 replies; 4+ messages in thread
From: Martin Jansa @ 2013-08-01 14:08 UTC (permalink / raw)
To: Javier Viguera; +Cc: openembedded-devel@lists.openembedded.org
[-- Attachment #1: Type: text/plain, Size: 2596 bytes --]
On Thu, Aug 01, 2013 at 03:53:10PM +0200, Javier Viguera wrote:
> Hi Martin,
>
> I just subscribed to the list so I didn't know it was already fixed.
>
> Anyway:
>
> # git branch -a --contains 46354a697c18a64c5836159adf8dbd92e6547e85
>
> shows that it's only fixed on *master*.
>
> I was bitten by this using stable dylan branches, that's why my patch
> was sent to apply on dylan.
Backports for dylan need to be marked as such (see README in root of
meta-oe).
> Could this fix be backported to dylan?
It's already in my branch with fixes for backport to dylan
http://git.openembedded.org/meta-openembedded-contrib/log/?h=jansa/dylan-backports
>
> -
> Regards,
>
> Javier Viguera
>
>
> On 01/08/13 15:47, Martin Jansa wrote:
> > On Thu, Aug 01, 2013 at 03:39:01PM +0200, Javier Viguera wrote:
> >> vsftpd links with openssl libraries (libssl and libcrypto) so there is a
> >> compile-time dependence on openssl package.
> >>
> >> Signed-off-by: Javier Viguera <javier.viguera@digi.com>
> >> ---
> >> meta-networking/recipes-daemons/vsftpd/vsftpd_2.3.5.bb | 2 +-
> >> 1 file changed, 1 insertion(+), 1 deletion(-)
> >>
> >> diff --git a/meta-networking/recipes-daemons/vsftpd/vsftpd_2.3.5.bb b/meta-networking/recipes-daemons/vsftpd/vsftpd_2.3.5.bb
> >> index c02ee9c..f146910 100644
> >> --- a/meta-networking/recipes-daemons/vsftpd/vsftpd_2.3.5.bb
> >> +++ b/meta-networking/recipes-daemons/vsftpd/vsftpd_2.3.5.bb
> >> @@ -4,7 +4,7 @@ SECTION = "network"
> >> LICENSE = "GPLv2"
> >> LIC_FILES_CHKSUM = "file://COPYING;md5=a6067ad950b28336613aed9dd47b1271"
> >>
> >> -DEPENDS = "libcap"
> >> +DEPENDS = "libcap openssl"
> >>
> >
> > It was fixed a month ago:
> >
> > commit 46354a697c18a64c5836159adf8dbd92e6547e85
> > Author: Martin Jansa <martin.jansa@gmail.com>
> > Date: Tue Jul 2 20:31:56 2013 +0200
> >
> > vsftpd: add missing dependency on openssl
> >
> > And current vsftpd is 3.0.0:
> >
> > commit 441502b68d03a4ce7796436a53c5e95399724ad2
> > Author: Roy.Li <rongqing.li@windriver.com>
> > Date: Fri Jul 19 10:19:25 2013 +0800
> >
> > Upgrade vsftpd to 3.0.0
> >
> >
> >> SRC_URI = "https://security.appspot.com/downloads/vsftpd-${PV}.tar.gz \
> >> file://makefile-destdir.patch \
> >> _______________________________________________
> >> Openembedded-devel mailing list
> >> Openembedded-devel@lists.openembedded.org
> >> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> >
>
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-08-01 14:07 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-01 13:39 [meta-networking][dylan][PATCH] vsftpd: fix compile-time dependence Javier Viguera
2013-08-01 13:47 ` Martin Jansa
2013-08-01 13:53 ` Javier Viguera
2013-08-01 14:08 ` Martin Jansa
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.