All of lore.kernel.org
 help / color / mirror / Atom feed
From: Martin Jansa <martin.jansa@gmail.com>
To: Saul Wold <sgw@linux.intel.com>
Cc: openembedded-core@lists.openembedded.org
Subject: Re: [PATCH 10/10] curl: Convert CURLGNUTL to PACKAGECONFIG
Date: Thu, 25 Sep 2014 21:27:22 +0200	[thread overview]
Message-ID: <20140925192722.GP25706@jama> (raw)
In-Reply-To: <e33bb2eefbdda30378a55346ff60fb0fb90baff2.1403654908.git.sgw@linux.intel.com>

[-- Attachment #1: Type: text/plain, Size: 3582 bytes --]

On Tue, Jun 24, 2014 at 05:13:20PM -0700, Saul Wold wrote:
> This will allow for easier configuration of curl for SSL vs gnutls
> 
> [YOCTO #6329]
> 
> Signed-off-by: Saul Wold <sgw@linux.intel.com>
> ---
>  meta/recipes-support/curl/curl_7.37.0.bb | 18 +++++++-----------
>  1 file changed, 7 insertions(+), 11 deletions(-)
> 
> diff --git a/meta/recipes-support/curl/curl_7.37.0.bb b/meta/recipes-support/curl/curl_7.37.0.bb
> index 1dc4ff3..f6b05a7 100644
> --- a/meta/recipes-support/curl/curl_7.37.0.bb
> +++ b/meta/recipes-support/curl/curl_7.37.0.bb
> @@ -23,6 +23,13 @@ SRC_URI[sha256sum] = "24502492de3168b0556d8e1a06f14f7589e57b204917d602a572e14239
>  
>  inherit autotools pkgconfig binconfig multilib_header
>  
> +PACKAGECONFIG ??= "gnutls ${@bb.utils.contains("DISTRO_FEATURES", "ipv6", "ipv6", "", d)}"
> +PACKAGECONFIG_class-native = "ipv6 ssl"
> +PACKAGECONFIG_class-nativesdk = "ipv6"
> +PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
> +PACKAGECONFIG[ssl] =  "--with-ssl, --without-ssl, ,"
> +PACKAGECONFIG[gnutls] =  "--with-gnutls=${STAGING_LIBDIR}/../, --without-gnutls, gnutls,"

Can you look into this floating dependency?

curl-7.37.1: libcurl rdepends on rtmpdump, but it isn't a build dependency? [build-deps]

It seems to spread into more packages (maybe not all through curl):
curlpp-0.7.3: libcurlpp rdepends on rtmpdump, but it isn't a build dependency? [build-deps]
gst-plugins-bad-0.10.23: gst-plugins-bad-curl rdepends on rtmpdump, but it isn't a build dependency? [build-deps]
gst-plugins-bad-0.10.23: gst-plugins-bad-rtmp rdepends on rtmpdump, but it isn't a build dependency? [build-deps]
gst-plugins-bad-0.10.23: gst-plugins-bad-rtmp rdepends on libcrypto, but it isn't a build dependency? [build-deps]
gst-plugins-bad-0.10.23: gst-plugins-bad-rtmp rdepends on libssl, but it isn't a build dependency? [build-deps]
gstreamer1.0-plugins-bad-1.4.1: gstreamer1.0-plugins-bad-curl rdepends on rtmpdump, but it isn't a build dependency? [build-deps]
libetpan-0.57: libetpan rdepends on rtmpdump, but it isn't a build dependency? [build-deps]
liboauth-1.0.3: liboauth rdepends on rtmpdump, but it isn't a build dependency? [build-deps]
strongswan-5.2.0: strongswan rdepends on rtmpdump, but it isn't a build dependency? [build-deps]

> +
>  EXTRA_OECONF = "--with-zlib=${STAGING_LIBDIR}/../ \
>                  --without-libssh2 \
>                  --with-random=/dev/urandom \
> @@ -31,19 +38,8 @@ EXTRA_OECONF = "--with-zlib=${STAGING_LIBDIR}/../ \
>                  --disable-ldap \
>                  --disable-ldaps \
>                  --with-ca-bundle=${sysconfdir}/ssl/certs/ca-certificates.crt \
> -                ${CURLGNUTLS} \
>                  "
>  
> -CURLGNUTLS = " --with-gnutls=${STAGING_LIBDIR}/../ --without-ssl"
> -CURLGNUTLS_class-native = "--without-gnutls --with-ssl"
> -CURLGNUTLS_class-nativesdk = "--without-gnutls --without-ssl"
> -
> -PACKAGECONFIG ??= "${@bb.utils.contains("DISTRO_FEATURES", "ipv6", "ipv6", "", d)}"
> -PACKAGECONFIG_class-native = "ipv6"
> -PACKAGECONFIG_class-nativesdk = "ipv6"
> -
> -PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
> -
>  do_configure_prepend() {
>  	sed -i s:OPT_GNUTLS/bin:OPT_GNUTLS:g ${S}/configure.ac
>  }
> -- 
> 1.8.3.1
> 
> -- 
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]

  reply	other threads:[~2014-09-25 19:26 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-06-25  0:13 [PATCH 00/10] Updates and a bug fix Saul Wold
2014-06-25  0:13 ` [PATCH 01/10] sqlite3: Update to 3.8.5.0 Saul Wold
2014-06-25  0:13 ` [PATCH 02/10] libusb1: Update to 1.0.19 Saul Wold
2014-06-25  0:13 ` [PATCH 03/10] liburcu: Update to 0.8.4 Saul Wold
2014-06-27  9:56   ` Enrico Scholz
2014-06-27 10:12     ` Richard Purdie
2014-06-27 10:39       ` Enrico Scholz
2014-06-25  0:13 ` [PATCH 04/10] gnupg: Update to 2.0.23 Saul Wold
2014-06-25  0:13 ` [PATCH 05/10] curl: Update to 7.37 Saul Wold
2014-06-25  0:13 ` [PATCH 06/10] xcb-util-renderutil: Update to version 0.3.9 Saul Wold
2014-06-25  0:13 ` [PATCH 07/10] man-pages: Update to 3.69 Saul Wold
2014-06-25  0:13 ` [PATCH 08/10] mobile-broadband-provider-info: Update SRCREV Saul Wold
2014-06-25  0:13 ` [PATCH 09/10] ca-certificates: Update to 20140325 Saul Wold
2014-06-25  0:13 ` [PATCH 10/10] curl: Convert CURLGNUTL to PACKAGECONFIG Saul Wold
2014-09-25 19:27   ` Martin Jansa [this message]
2014-09-25 22:44     ` Burton, Ross

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20140925192722.GP25706@jama \
    --to=martin.jansa@gmail.com \
    --cc=openembedded-core@lists.openembedded.org \
    --cc=sgw@linux.intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.