* [meta-networking][PATCH] stunnel: Add 4.56 version
@ 2013-08-22 17:28 root@myhostname
2013-08-22 18:46 ` Martin Jansa
0 siblings, 1 reply; 8+ messages in thread
From: root@myhostname @ 2013-08-22 17:28 UTC (permalink / raw)
To: openembedded-devel
From: Laszlo Papp <lpapp@kde.org>
---
meta-networking/recipes-support/stunnel/stunnel_4.56.bb | 14 ++++++++++++++
1 file changed, 14 insertions(+)
create mode 100644 meta-networking/recipes-support/stunnel/stunnel_4.56.bb
diff --git a/meta-networking/recipes-support/stunnel/stunnel_4.56.bb b/meta-networking/recipes-support/stunnel/stunnel_4.56.bb
new file mode 100644
index 0000000..21fa436
--- /dev/null
+++ b/meta-networking/recipes-support/stunnel/stunnel_4.56.bb
@@ -0,0 +1,14 @@
+SUMMARY = "SSL encryption wrapper between remote client and local (inetd-startable) or remote server."
+SECTION = "net"
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://COPYING;md5=f41ebed8571077706fee0b860c4d6666"
+DEPENDS = "openssl"
+
+SRC_URI = "https://www.stunnel.org/downloads/${PN}-${PV}.tar.gz"
+
+SRC_URI[md5sum] = "ac4c4a30bd7a55b6687cbd62d864054c"
+SRC_URI[sha256sum] = "9cae2cfbe26d87443398ce50d7d5db54e5ea363889d5d2ec8d2778a01c871293"
+
+inherit autotools
+
+EXTRA_OECONF += "--with-ssl='${STAGING_INCDIR}' --disable-fips"
--
1.8.3.4
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [meta-networking][PATCH] stunnel: Add 4.56 version
2013-08-22 17:28 [meta-networking][PATCH] stunnel: Add 4.56 version root@myhostname
@ 2013-08-22 18:46 ` Martin Jansa
0 siblings, 0 replies; 8+ messages in thread
From: Martin Jansa @ 2013-08-22 18:46 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 1538 bytes --]
On Thu, Aug 22, 2013 at 06:28:57PM +0100, root@myhostname wrote:
> From: Laszlo Papp <lpapp@kde.org>
>
missing SOB line.
> ---
> meta-networking/recipes-support/stunnel/stunnel_4.56.bb | 14 ++++++++++++++
> 1 file changed, 14 insertions(+)
> create mode 100644 meta-networking/recipes-support/stunnel/stunnel_4.56.bb
>
> diff --git a/meta-networking/recipes-support/stunnel/stunnel_4.56.bb b/meta-networking/recipes-support/stunnel/stunnel_4.56.bb
> new file mode 100644
> index 0000000..21fa436
> --- /dev/null
> +++ b/meta-networking/recipes-support/stunnel/stunnel_4.56.bb
> @@ -0,0 +1,14 @@
> +SUMMARY = "SSL encryption wrapper between remote client and local (inetd-startable) or remote server."
> +SECTION = "net"
> +LICENSE = "GPLv2"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=f41ebed8571077706fee0b860c4d6666"
> +DEPENDS = "openssl"
> +
> +SRC_URI = "https://www.stunnel.org/downloads/${PN}-${PV}.tar.gz"
You can shorten ${PN}-${PV} as ${P} or even ${BP}.
> +
> +SRC_URI[md5sum] = "ac4c4a30bd7a55b6687cbd62d864054c"
> +SRC_URI[sha256sum] = "9cae2cfbe26d87443398ce50d7d5db54e5ea363889d5d2ec8d2778a01c871293"
> +
> +inherit autotools
> +
> +EXTRA_OECONF += "--with-ssl='${STAGING_INCDIR}' --disable-fips"
> --
> 1.8.3.4
>
> _______________________________________________
> 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] 8+ messages in thread
* [meta-networking][PATCH] stunnel: Add 4.56 version
@ 2013-08-22 19:07 Laszlo Papp
2013-09-04 7:47 ` Laszlo Papp
0 siblings, 1 reply; 8+ messages in thread
From: Laszlo Papp @ 2013-08-22 19:07 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Laszlo Papp <lpapp@kde.org>
---
meta-networking/recipes-support/stunnel/stunnel_4.56.bb | 14 ++++++++++++++
1 file changed, 14 insertions(+)
create mode 100644 meta-networking/recipes-support/stunnel/stunnel_4.56.bb
diff --git a/meta-networking/recipes-support/stunnel/stunnel_4.56.bb b/meta-networking/recipes-support/stunnel/stunnel_4.56.bb
new file mode 100644
index 0000000..0ee8cc8
--- /dev/null
+++ b/meta-networking/recipes-support/stunnel/stunnel_4.56.bb
@@ -0,0 +1,14 @@
+SUMMARY = "SSL encryption wrapper between remote client and local (inetd-startable) or remote server."
+SECTION = "net"
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://COPYING;md5=f41ebed8571077706fee0b860c4d6666"
+DEPENDS = "openssl"
+
+SRC_URI = "https://www.stunnel.org/downloads/${BP}.tar.gz"
+
+SRC_URI[md5sum] = "ac4c4a30bd7a55b6687cbd62d864054c"
+SRC_URI[sha256sum] = "9cae2cfbe26d87443398ce50d7d5db54e5ea363889d5d2ec8d2778a01c871293"
+
+inherit autotools
+
+EXTRA_OECONF += "--with-ssl='${STAGING_INCDIR}' --disable-fips"
--
1.8.3.4
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [meta-networking][PATCH] stunnel: Add 4.56 version
2013-08-22 19:07 Laszlo Papp
@ 2013-09-04 7:47 ` Laszlo Papp
0 siblings, 0 replies; 8+ messages in thread
From: Laszlo Papp @ 2013-09-04 7:47 UTC (permalink / raw)
To: openembedded-devel
Ping?
On Thu, Aug 22, 2013 at 8:07 PM, Laszlo Papp <lpapp@kde.org> wrote:
> Signed-off-by: Laszlo Papp <lpapp@kde.org>
> ---
> meta-networking/recipes-support/stunnel/stunnel_4.56.bb | 14
> ++++++++++++++
> 1 file changed, 14 insertions(+)
> create mode 100644 meta-networking/recipes-support/stunnel/
> stunnel_4.56.bb
>
> diff --git a/meta-networking/recipes-support/stunnel/stunnel_4.56.bbb/meta-networking/recipes-support/stunnel/
> stunnel_4.56.bb
> new file mode 100644
> index 0000000..0ee8cc8
> --- /dev/null
> +++ b/meta-networking/recipes-support/stunnel/stunnel_4.56.bb
> @@ -0,0 +1,14 @@
> +SUMMARY = "SSL encryption wrapper between remote client and local
> (inetd-startable) or remote server."
> +SECTION = "net"
> +LICENSE = "GPLv2"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=f41ebed8571077706fee0b860c4d6666"
> +DEPENDS = "openssl"
> +
> +SRC_URI = "https://www.stunnel.org/downloads/${BP}.tar.gz"
> +
> +SRC_URI[md5sum] = "ac4c4a30bd7a55b6687cbd62d864054c"
> +SRC_URI[sha256sum] =
> "9cae2cfbe26d87443398ce50d7d5db54e5ea363889d5d2ec8d2778a01c871293"
> +
> +inherit autotools
> +
> +EXTRA_OECONF += "--with-ssl='${STAGING_INCDIR}' --disable-fips"
> --
> 1.8.3.4
>
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [meta-networking][PATCH] stunnel: Add 4.56 version
@ 2013-09-05 5:06 Laszlo Papp
2013-09-05 13:09 ` Joe MacDonald
2013-09-05 13:13 ` Joe MacDonald
0 siblings, 2 replies; 8+ messages in thread
From: Laszlo Papp @ 2013-09-05 5:06 UTC (permalink / raw)
To: openembedded-devel
Seriously: ping?
On Wed, Sep 4, 2013 at 8:47 AM, Laszlo Papp <lpapp@kde.org> wrote:
> Ping?
>
>
> On Thu, Aug 22, 2013 at 8:07 PM, Laszlo Papp <lpapp@kde.org> wrote:
>
>> Signed-off-by: Laszlo Papp <lpapp@kde.org>
>> ---
>> meta-networking/recipes-support/stunnel/stunnel_4.56.bb | 14
>> ++++++++++++++
>> 1 file changed, 14 insertions(+)
>> create mode 100644 meta-networking/recipes-support/stunnel/
>> stunnel_4.56.bb
>>
>> diff --git a/meta-networking/recipes-support/stunnel/stunnel_4.56.bbb/meta-networking/recipes-support/stunnel/
>> stunnel_4.56.bb
>> new file mode 100644
>> index 0000000..0ee8cc8
>> --- /dev/null
>> +++ b/meta-networking/recipes-support/stunnel/stunnel_4.56.bb
>> @@ -0,0 +1,14 @@
>> +SUMMARY = "SSL encryption wrapper between remote client and local
>> (inetd-startable) or remote server."
>> +SECTION = "net"
>> +LICENSE = "GPLv2"
>> +LIC_FILES_CHKSUM = "file://COPYING;md5=f41ebed8571077706fee0b860c4d6666"
>> +DEPENDS = "openssl"
>> +
>> +SRC_URI = "https://www.stunnel.org/downloads/${BP}.tar.gz"
>> +
>> +SRC_URI[md5sum] = "ac4c4a30bd7a55b6687cbd62d864054c"
>> +SRC_URI[sha256sum] =
>> "9cae2cfbe26d87443398ce50d7d5db54e5ea363889d5d2ec8d2778a01c871293"
>> +
>> +inherit autotools
>> +
>> +EXTRA_OECONF += "--with-ssl='${STAGING_INCDIR}' --disable-fips"
>> --
>> 1.8.3.4
>>
>>
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [meta-networking][PATCH] stunnel: Add 4.56 version
2013-09-05 5:06 Laszlo Papp
@ 2013-09-05 13:09 ` Joe MacDonald
2013-09-05 13:10 ` Laszlo Papp
2013-09-05 13:13 ` Joe MacDonald
1 sibling, 1 reply; 8+ messages in thread
From: Joe MacDonald @ 2013-09-05 13:09 UTC (permalink / raw)
To: Laszlo Papp; +Cc: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 1979 bytes --]
[Re: [meta-networking][PATCH] stunnel: Add 4.56 version] On 13.09.05 (Thu 06:06) Laszlo Papp wrote:
> Seriously: ping?
I guess I should've replied directly to this rather than burying my
follow-up on it in another thread. Sorry. It's been merged and is in a
small queue of other fixes and updates I'm about to push.
-J.
>
>
> On Wed, Sep 4, 2013 at 8:47 AM, Laszlo Papp <lpapp@kde.org> wrote:
>
> Ping?
>
>
> On Thu, Aug 22, 2013 at 8:07 PM, Laszlo Papp <lpapp@kde.org> wrote:
>
> Signed-off-by: Laszlo Papp <lpapp@kde.org>
> ---
> meta-networking/recipes-support/stunnel/stunnel_4.56.bb | 14
> ++++++++++++++
> 1 file changed, 14 insertions(+)
> create mode 100644 meta-networking/recipes-support/stunnel/
> stunnel_4.56.bb
>
> diff --git a/meta-networking/recipes-support/stunnel/stunnel_4.56.bb b/
> meta-networking/recipes-support/stunnel/stunnel_4.56.bb
> new file mode 100644
> index 0000000..0ee8cc8
> --- /dev/null
> +++ b/meta-networking/recipes-support/stunnel/stunnel_4.56.bb
> @@ -0,0 +1,14 @@
> +SUMMARY = "SSL encryption wrapper between remote client and local
> (inetd-startable) or remote server."
> +SECTION = "net"
> +LICENSE = "GPLv2"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=
> f41ebed8571077706fee0b860c4d6666"
> +DEPENDS = "openssl"
> +
> +SRC_URI = "https://www.stunnel.org/downloads/${BP}.tar.gz"
> +
> +SRC_URI[md5sum] = "ac4c4a30bd7a55b6687cbd62d864054c"
> +SRC_URI[sha256sum] =
> "9cae2cfbe26d87443398ce50d7d5db54e5ea363889d5d2ec8d2778a01c871293"
> +
> +inherit autotools
> +
> +EXTRA_OECONF += "--with-ssl='${STAGING_INCDIR}' --disable-fips"
> --
> 1.8.3.4
>
>
>
>
>
--
-Joe MacDonald.
:wq
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [meta-networking][PATCH] stunnel: Add 4.56 version
2013-09-05 13:09 ` Joe MacDonald
@ 2013-09-05 13:10 ` Laszlo Papp
0 siblings, 0 replies; 8+ messages in thread
From: Laszlo Papp @ 2013-09-05 13:10 UTC (permalink / raw)
To: Joe MacDonald; +Cc: openembedded-devel
Thanks.
On Thu, Sep 5, 2013 at 2:09 PM, Joe MacDonald <joe@deserted.net> wrote:
> [Re: [meta-networking][PATCH] stunnel: Add 4.56 version] On 13.09.05 (Thu
> 06:06) Laszlo Papp wrote:
>
> > Seriously: ping?
>
> I guess I should've replied directly to this rather than burying my
> follow-up on it in another thread. Sorry. It's been merged and is in a
> small queue of other fixes and updates I'm about to push.
>
> -J.
>
> >
> >
> > On Wed, Sep 4, 2013 at 8:47 AM, Laszlo Papp <lpapp@kde.org> wrote:
> >
> > Ping?
> >
> >
> > On Thu, Aug 22, 2013 at 8:07 PM, Laszlo Papp <lpapp@kde.org> wrote:
> >
> > Signed-off-by: Laszlo Papp <lpapp@kde.org>
> > ---
> > meta-networking/recipes-support/stunnel/stunnel_4.56.bb | 14
> > ++++++++++++++
> > 1 file changed, 14 insertions(+)
> > create mode 100644 meta-networking/recipes-support/stunnel/
> > stunnel_4.56.bb
> >
> > diff --git a/meta-networking/recipes-support/stunnel/
> stunnel_4.56.bb b/
> > meta-networking/recipes-support/stunnel/stunnel_4.56.bb
> > new file mode 100644
> > index 0000000..0ee8cc8
> > --- /dev/null
> > +++ b/meta-networking/recipes-support/stunnel/stunnel_4.56.bb
> > @@ -0,0 +1,14 @@
> > +SUMMARY = "SSL encryption wrapper between remote client and
> local
> > (inetd-startable) or remote server."
> > +SECTION = "net"
> > +LICENSE = "GPLv2"
> > +LIC_FILES_CHKSUM = "file://COPYING;md5=
> > f41ebed8571077706fee0b860c4d6666"
> > +DEPENDS = "openssl"
> > +
> > +SRC_URI = "https://www.stunnel.org/downloads/${BP}.tar.gz"
> > +
> > +SRC_URI[md5sum] = "ac4c4a30bd7a55b6687cbd62d864054c"
> > +SRC_URI[sha256sum] =
> >
> "9cae2cfbe26d87443398ce50d7d5db54e5ea363889d5d2ec8d2778a01c871293"
> > +
> > +inherit autotools
> > +
> > +EXTRA_OECONF += "--with-ssl='${STAGING_INCDIR}' --disable-fips"
> > --
> > 1.8.3.4
> >
> >
> >
> >
> >
>
> --
> -Joe MacDonald.
> :wq
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [meta-networking][PATCH] stunnel: Add 4.56 version
2013-09-05 5:06 Laszlo Papp
2013-09-05 13:09 ` Joe MacDonald
@ 2013-09-05 13:13 ` Joe MacDonald
1 sibling, 0 replies; 8+ messages in thread
From: Joe MacDonald @ 2013-09-05 13:13 UTC (permalink / raw)
To: Laszlo Papp; +Cc: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 1794 bytes --]
[Re: [meta-networking][PATCH] stunnel: Add 4.56 version] On 13.09.05 (Thu 06:06) Laszlo Papp wrote:
> Seriously: ping?
Merged, thanks.
-J.
>
>
> On Wed, Sep 4, 2013 at 8:47 AM, Laszlo Papp <lpapp@kde.org> wrote:
>
> Ping?
>
>
> On Thu, Aug 22, 2013 at 8:07 PM, Laszlo Papp <lpapp@kde.org> wrote:
>
> Signed-off-by: Laszlo Papp <lpapp@kde.org>
> ---
> meta-networking/recipes-support/stunnel/stunnel_4.56.bb | 14
> ++++++++++++++
> 1 file changed, 14 insertions(+)
> create mode 100644 meta-networking/recipes-support/stunnel/
> stunnel_4.56.bb
>
> diff --git a/meta-networking/recipes-support/stunnel/stunnel_4.56.bb b/
> meta-networking/recipes-support/stunnel/stunnel_4.56.bb
> new file mode 100644
> index 0000000..0ee8cc8
> --- /dev/null
> +++ b/meta-networking/recipes-support/stunnel/stunnel_4.56.bb
> @@ -0,0 +1,14 @@
> +SUMMARY = "SSL encryption wrapper between remote client and local
> (inetd-startable) or remote server."
> +SECTION = "net"
> +LICENSE = "GPLv2"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=
> f41ebed8571077706fee0b860c4d6666"
> +DEPENDS = "openssl"
> +
> +SRC_URI = "https://www.stunnel.org/downloads/${BP}.tar.gz"
> +
> +SRC_URI[md5sum] = "ac4c4a30bd7a55b6687cbd62d864054c"
> +SRC_URI[sha256sum] =
> "9cae2cfbe26d87443398ce50d7d5db54e5ea363889d5d2ec8d2778a01c871293"
> +
> +inherit autotools
> +
> +EXTRA_OECONF += "--with-ssl='${STAGING_INCDIR}' --disable-fips"
> --
> 1.8.3.4
>
>
>
>
>
--
-Joe MacDonald.
:wq
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2013-09-05 13:13 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-22 17:28 [meta-networking][PATCH] stunnel: Add 4.56 version root@myhostname
2013-08-22 18:46 ` Martin Jansa
-- strict thread matches above, loose matches on Subject: below --
2013-08-22 19:07 Laszlo Papp
2013-09-04 7:47 ` Laszlo Papp
2013-09-05 5:06 Laszlo Papp
2013-09-05 13:09 ` Joe MacDonald
2013-09-05 13:10 ` Laszlo Papp
2013-09-05 13:13 ` Joe MacDonald
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.