All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-networking] [PATCH] spice: Upgrade 0.14.0 -> 0.14.1
@ 2018-09-04 11:09 He Zhe
  2018-09-04 11:22 ` Martin Jansa
  0 siblings, 1 reply; 7+ messages in thread
From: He Zhe @ 2018-09-04 11:09 UTC (permalink / raw)
  To: openembedded-devel

- Fix the following build error.

../config.h:65: error: "HAVE_STDLIB_H" redefined [-Werror]

jpeglib.h from libjpeg contains the same definition of HAVE_STDLIB_H
which is supposed to be overwritten. -Werror changes the warning to
an error. This patches deletes the definition in jpeglib.h

- Adjust location of spice-common source as new spice asks spice-common
to be put under "subprojects" directory.

Signed-off-by: He Zhe <zhe.he@windriver.com>
---
 meta-networking/recipes-support/spice/spice_git.bb | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/meta-networking/recipes-support/spice/spice_git.bb b/meta-networking/recipes-support/spice/spice_git.bb
index 38b8bf306..5c0b2ca2a 100644
--- a/meta-networking/recipes-support/spice/spice_git.bb
+++ b/meta-networking/recipes-support/spice/spice_git.bb
@@ -13,18 +13,19 @@ architectures."
 LICENSE = "BSD & LGPLv2.1+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c"
 
-PV = "0.14.0+git${SRCPV}"
+PV = "0.14.1+git${SRCPV}"
 
-SRCREV_spice = "f1050bfc76c9c4146257e087baf74e0b62d7d218"
-SRCREV_spice-common = "95743f40a2da39e0a19859c305e69e2c99d39e42"
+SRCREV_spice = "eaa07ef15cfc3bf57a69da2576af66f028787774"
+SRCREV_spice-common = "6b93b3fce8909b836ef1d1434d191900d8aa00be"
 
 SRCREV_FORMAT = "spice_spice-common"
 
 SRC_URI = " \
     git://anongit.freedesktop.org/spice/spice;name=spice \
-    git://anongit.freedesktop.org/spice/spice-common;destsuffix=git/spice-common;name=spice-common \
+    git://anongit.freedesktop.org/spice/spice-common;destsuffix=git/subprojects/spice-common;name=spice-common \
     file://0001-Convert-pthread_t-to-be-numeric.patch \
 "
+
 FOO = "\
     file://0001-build-allow-separated-src-and-build-dirs.patch \
 "
@@ -55,3 +56,7 @@ PACKAGECONFIG[xinerama] = "--enable-xinerama,--disable-xinerama,libxinerama,"
 COMPATIBLE_HOST = '(x86_64|i.86).*-linux'
 
 BBCLASSEXTEND = "native nativesdk"
+
+do_configure_append () {
+    sed -i -e '/#define HAVE_STDLIB_H/d' ${STAGING_DIR_HOST}/usr/include/jconfig.h
+}
-- 
2.11.0



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [meta-networking] [PATCH] spice: Upgrade 0.14.0 -> 0.14.1
  2018-09-04 11:09 [meta-networking] [PATCH] spice: Upgrade 0.14.0 -> 0.14.1 He Zhe
@ 2018-09-04 11:22 ` Martin Jansa
  2018-09-04 11:35   ` He Zhe
  0 siblings, 1 reply; 7+ messages in thread
From: Martin Jansa @ 2018-09-04 11:22 UTC (permalink / raw)
  To: zhe.he; +Cc: openembedded-devel

Wasn't this conflict with jpeglib.h already resolved in:
http://git.openembedded.org/openembedded-core/commit/?id=d1e09cb2521ccb9d02ced2d61abb4034cb04836d
?
it works for me.

On Tue, Sep 4, 2018 at 1:09 PM He Zhe <zhe.he@windriver.com> wrote:

> - Fix the following build error.
>
> ../config.h:65: error: "HAVE_STDLIB_H" redefined [-Werror]
>
> jpeglib.h from libjpeg contains the same definition of HAVE_STDLIB_H
> which is supposed to be overwritten. -Werror changes the warning to
> an error. This patches deletes the definition in jpeglib.h
>
> - Adjust location of spice-common source as new spice asks spice-common
> to be put under "subprojects" directory.
>
> Signed-off-by: He Zhe <zhe.he@windriver.com>
> ---
>  meta-networking/recipes-support/spice/spice_git.bb | 13 +++++++++----
>  1 file changed, 9 insertions(+), 4 deletions(-)
>
> diff --git a/meta-networking/recipes-support/spice/spice_git.bb
> b/meta-networking/recipes-support/spice/spice_git.bb
> index 38b8bf306..5c0b2ca2a 100644
> --- a/meta-networking/recipes-support/spice/spice_git.bb
> +++ b/meta-networking/recipes-support/spice/spice_git.bb
> @@ -13,18 +13,19 @@ architectures."
>  LICENSE = "BSD & LGPLv2.1+"
>  LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c"
>
> -PV = "0.14.0+git${SRCPV}"
> +PV = "0.14.1+git${SRCPV}"
>
> -SRCREV_spice = "f1050bfc76c9c4146257e087baf74e0b62d7d218"
> -SRCREV_spice-common = "95743f40a2da39e0a19859c305e69e2c99d39e42"
> +SRCREV_spice = "eaa07ef15cfc3bf57a69da2576af66f028787774"
> +SRCREV_spice-common = "6b93b3fce8909b836ef1d1434d191900d8aa00be"
>
>  SRCREV_FORMAT = "spice_spice-common"
>
>  SRC_URI = " \
>      git://anongit.freedesktop.org/spice/spice;name=spice \
> -    git://
> anongit.freedesktop.org/spice/spice-common;destsuffix=git/spice-common;name=spice-common
> \
> +    git://
> anongit.freedesktop.org/spice/spice-common;destsuffix=git/subprojects/spice-common;name=spice-common
> \
>      file://0001-Convert-pthread_t-to-be-numeric.patch \
>  "
> +
>  FOO = "\
>      file://0001-build-allow-separated-src-and-build-dirs.patch \
>  "
> @@ -55,3 +56,7 @@ PACKAGECONFIG[xinerama] =
> "--enable-xinerama,--disable-xinerama,libxinerama,"
>  COMPATIBLE_HOST = '(x86_64|i.86).*-linux'
>
>  BBCLASSEXTEND = "native nativesdk"
> +
> +do_configure_append () {
> +    sed -i -e '/#define HAVE_STDLIB_H/d'
> ${STAGING_DIR_HOST}/usr/include/jconfig.h
> +}
> --
> 2.11.0
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [meta-networking] [PATCH] spice: Upgrade 0.14.0 -> 0.14.1
  2018-09-04 11:22 ` Martin Jansa
@ 2018-09-04 11:35   ` He Zhe
  0 siblings, 0 replies; 7+ messages in thread
From: He Zhe @ 2018-09-04 11:35 UTC (permalink / raw)
  To: Martin Jansa; +Cc: openembedded-devel

Emm, this was merged just before I finished my fix...
Anyway 0.14.1 resolves new CVE, I'll send v2 without HAVE_STDLIB_H part.

Thanks,
Zhe

On 2018年09月04日 19:22, Martin Jansa wrote:
> Wasn't this conflict with jpeglib.h already resolved in:
> http://git.openembedded.org/openembedded-core/commit/?id=d1e09cb2521ccb9d02ced2d61abb4034cb04836d ?
> it works for me.
>
> On Tue, Sep 4, 2018 at 1:09 PM He Zhe <zhe.he@windriver.com <mailto:zhe.he@windriver.com>> wrote:
>
>     - Fix the following build error.
>
>     ../config.h:65: error: "HAVE_STDLIB_H" redefined [-Werror]
>
>     jpeglib.h from libjpeg contains the same definition of HAVE_STDLIB_H
>     which is supposed to be overwritten. -Werror changes the warning to
>     an error. This patches deletes the definition in jpeglib.h
>
>     - Adjust location of spice-common source as new spice asks spice-common
>     to be put under "subprojects" directory.
>
>     Signed-off-by: He Zhe <zhe.he@windriver.com <mailto:zhe.he@windriver.com>>
>     ---
>      meta-networking/recipes-support/spice/spice_git.bb <http://spice_git.bb> | 13 +++++++++----
>      1 file changed, 9 insertions(+), 4 deletions(-)
>
>     diff --git a/meta-networking/recipes-support/spice/spice_git.bb <http://spice_git.bb> b/meta-networking/recipes-support/spice/spice_git.bb <http://spice_git.bb>
>     index 38b8bf306..5c0b2ca2a 100644
>     --- a/meta-networking/recipes-support/spice/spice_git.bb <http://spice_git.bb>
>     +++ b/meta-networking/recipes-support/spice/spice_git.bb <http://spice_git.bb>
>     @@ -13,18 +13,19 @@ architectures."
>      LICENSE = "BSD & LGPLv2.1+"
>      LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c"
>
>     -PV = "0.14.0+git${SRCPV}"
>     +PV = "0.14.1+git${SRCPV}"
>
>     -SRCREV_spice = "f1050bfc76c9c4146257e087baf74e0b62d7d218"
>     -SRCREV_spice-common = "95743f40a2da39e0a19859c305e69e2c99d39e42"
>     +SRCREV_spice = "eaa07ef15cfc3bf57a69da2576af66f028787774"
>     +SRCREV_spice-common = "6b93b3fce8909b836ef1d1434d191900d8aa00be"
>
>      SRCREV_FORMAT = "spice_spice-common"
>
>      SRC_URI = " \
>          git://anongit.freedesktop.org/spice/spice;name=spice <http://anongit.freedesktop.org/spice/spice;name=spice> \
>     -    git://anongit.freedesktop.org/spice/spice-common;destsuffix=git/spice-common;name=spice-common <http://anongit.freedesktop.org/spice/spice-common;destsuffix=git/spice-common;name=spice-common> \
>     +    git://anongit.freedesktop.org/spice/spice-common;destsuffix=git/subprojects/spice-common;name=spice-common <http://anongit.freedesktop.org/spice/spice-common;destsuffix=git/subprojects/spice-common;name=spice-common> \
>          file://0001-Convert-pthread_t-to-be-numeric.patch \
>      "
>     +
>      FOO = "\
>          file://0001-build-allow-separated-src-and-build-dirs.patch \
>      "
>     @@ -55,3 +56,7 @@ PACKAGECONFIG[xinerama] = "--enable-xinerama,--disable-xinerama,libxinerama,"
>      COMPATIBLE_HOST = '(x86_64|i.86).*-linux'
>
>      BBCLASSEXTEND = "native nativesdk"
>     +
>     +do_configure_append () {
>     +    sed -i -e '/#define HAVE_STDLIB_H/d' ${STAGING_DIR_HOST}/usr/include/jconfig.h
>     +}
>     -- 
>     2.11.0
>
>     -- 
>     _______________________________________________
>     Openembedded-devel mailing list
>     Openembedded-devel@lists.openembedded.org <mailto:Openembedded-devel@lists.openembedded.org>
>     http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [meta-networking][PATCH] spice: Upgrade 0.14.0 -> 0.14.1
  2018-09-05  2:52   ` He Zhe
@ 2018-09-05  3:00     ` Khem Raj
  0 siblings, 0 replies; 7+ messages in thread
From: Khem Raj @ 2018-09-05  3:00 UTC (permalink / raw)
  To: zhe.he; +Cc: openembeded-devel

On Tue, Sep 4, 2018 at 7:52 PM He Zhe <zhe.he@windriver.com> wrote:
>
> Hi Raj,
>
> I tried to config it as nodistro+musl+clang, but got the following. Could you please help fix spice for clang by the way? Thanks.
>
> ERROR: clang-native-6.0.1+gitAUTOINC+5136df4d08_2f27999df4-r0 do_patch: Command Error: 'quilt --quiltrc /build/spice/tmp-musl/work/x86_64-linux/clang-native/6.0.1+gitAUTOINC+5136df4d08_2f27999df4-r0/recipe-sysroot-native/etc/quiltrc push' exited with 0  Output:
> Applying patch 0009-clang-Driver-Avoid-invalidated-iterator-in-insertTar.patch
> patching file tools/driver/driver.cpp
> Hunk #1 FAILED at 212.
> 1 out of 1 hunk FAILED -- rejects in file tools/driver/driver.cpp
> Patch 0009-clang-Driver-Avoid-invalidated-iterator-in-insertTar.patch can be reverse-applied
> ERROR: clang-native-6.0.1+gitAUTOINC+5136df4d08_2f27999df4-r0 do_patch: Function failed: patch_do_patch
> ERROR: Logfile of failure stored in: /build/spice/tmp-musl/work/x86_64-linux/clang-native/6.0.1+gitAUTOINC+5136df4d08_2f27999df4-r0/temp/log.do_patch.3654
> ERROR: Task (virtual:native:/meta-clang/recipes-devtools/clang/clang_git.bb:do_patch) failed with exit code '1'
>

user clang-7.0 branch

> Zhe
>
>
> On 2018年09月05日 04:56, Khem Raj wrote:
> > Fails to build ( with clang )
> > http://errors.yoctoproject.org/Errors/Details/190549/
> >
> > On Tue, Sep 4, 2018 at 4:57 AM He Zhe <zhe.he@windriver.com> wrote:
> >> Adjust location of spice-common source as new spice asks spice-common
> >> to be put under "subprojects" directory.
> >>
> >> Signed-off-by: He Zhe <zhe.he@windriver.com>
> >> ---
> >>  meta-networking/recipes-support/spice/spice_git.bb | 9 +++++----
> >>  1 file changed, 5 insertions(+), 4 deletions(-)
> >>
> >> diff --git a/meta-networking/recipes-support/spice/spice_git.bb b/meta-networking/recipes-support/spice/spice_git.bb
> >> index 38b8bf306..022a09e19 100644
> >> --- a/meta-networking/recipes-support/spice/spice_git.bb
> >> +++ b/meta-networking/recipes-support/spice/spice_git.bb
> >> @@ -13,18 +13,19 @@ architectures."
> >>  LICENSE = "BSD & LGPLv2.1+"
> >>  LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c"
> >>
> >> -PV = "0.14.0+git${SRCPV}"
> >> +PV = "0.14.1+git${SRCPV}"
> >>
> >> -SRCREV_spice = "f1050bfc76c9c4146257e087baf74e0b62d7d218"
> >> -SRCREV_spice-common = "95743f40a2da39e0a19859c305e69e2c99d39e42"
> >> +SRCREV_spice = "eaa07ef15cfc3bf57a69da2576af66f028787774"
> >> +SRCREV_spice-common = "6b93b3fce8909b836ef1d1434d191900d8aa00be"
> >>
> >>  SRCREV_FORMAT = "spice_spice-common"
> >>
> >>  SRC_URI = " \
> >>      git://anongit.freedesktop.org/spice/spice;name=spice \
> >> -    git://anongit.freedesktop.org/spice/spice-common;destsuffix=git/spice-common;name=spice-common \
> >> +    git://anongit.freedesktop.org/spice/spice-common;destsuffix=git/subprojects/spice-common;name=spice-common \
> >>      file://0001-Convert-pthread_t-to-be-numeric.patch \
> >>  "
> >> +
> >>  FOO = "\
> >>      file://0001-build-allow-separated-src-and-build-dirs.patch \
> >>  "
> >> --
> >> 2.11.0
> >>
> >> --
> >> _______________________________________________
> >> Openembedded-devel mailing list
> >> Openembedded-devel@lists.openembedded.org
> >> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [meta-networking][PATCH] spice: Upgrade 0.14.0 -> 0.14.1
  2018-09-04 20:56 ` Khem Raj
@ 2018-09-05  2:52   ` He Zhe
  2018-09-05  3:00     ` Khem Raj
  0 siblings, 1 reply; 7+ messages in thread
From: He Zhe @ 2018-09-05  2:52 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembeded-devel

Hi Raj,

I tried to config it as nodistro+musl+clang, but got the following. Could you please help fix spice for clang by the way? Thanks.

ERROR: clang-native-6.0.1+gitAUTOINC+5136df4d08_2f27999df4-r0 do_patch: Command Error: 'quilt --quiltrc /build/spice/tmp-musl/work/x86_64-linux/clang-native/6.0.1+gitAUTOINC+5136df4d08_2f27999df4-r0/recipe-sysroot-native/etc/quiltrc push' exited with 0  Output:
Applying patch 0009-clang-Driver-Avoid-invalidated-iterator-in-insertTar.patch
patching file tools/driver/driver.cpp
Hunk #1 FAILED at 212.
1 out of 1 hunk FAILED -- rejects in file tools/driver/driver.cpp
Patch 0009-clang-Driver-Avoid-invalidated-iterator-in-insertTar.patch can be reverse-applied
ERROR: clang-native-6.0.1+gitAUTOINC+5136df4d08_2f27999df4-r0 do_patch: Function failed: patch_do_patch
ERROR: Logfile of failure stored in: /build/spice/tmp-musl/work/x86_64-linux/clang-native/6.0.1+gitAUTOINC+5136df4d08_2f27999df4-r0/temp/log.do_patch.3654
ERROR: Task (virtual:native:/meta-clang/recipes-devtools/clang/clang_git.bb:do_patch) failed with exit code '1'

Zhe


On 2018年09月05日 04:56, Khem Raj wrote:
> Fails to build ( with clang )
> http://errors.yoctoproject.org/Errors/Details/190549/
>
> On Tue, Sep 4, 2018 at 4:57 AM He Zhe <zhe.he@windriver.com> wrote:
>> Adjust location of spice-common source as new spice asks spice-common
>> to be put under "subprojects" directory.
>>
>> Signed-off-by: He Zhe <zhe.he@windriver.com>
>> ---
>>  meta-networking/recipes-support/spice/spice_git.bb | 9 +++++----
>>  1 file changed, 5 insertions(+), 4 deletions(-)
>>
>> diff --git a/meta-networking/recipes-support/spice/spice_git.bb b/meta-networking/recipes-support/spice/spice_git.bb
>> index 38b8bf306..022a09e19 100644
>> --- a/meta-networking/recipes-support/spice/spice_git.bb
>> +++ b/meta-networking/recipes-support/spice/spice_git.bb
>> @@ -13,18 +13,19 @@ architectures."
>>  LICENSE = "BSD & LGPLv2.1+"
>>  LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c"
>>
>> -PV = "0.14.0+git${SRCPV}"
>> +PV = "0.14.1+git${SRCPV}"
>>
>> -SRCREV_spice = "f1050bfc76c9c4146257e087baf74e0b62d7d218"
>> -SRCREV_spice-common = "95743f40a2da39e0a19859c305e69e2c99d39e42"
>> +SRCREV_spice = "eaa07ef15cfc3bf57a69da2576af66f028787774"
>> +SRCREV_spice-common = "6b93b3fce8909b836ef1d1434d191900d8aa00be"
>>
>>  SRCREV_FORMAT = "spice_spice-common"
>>
>>  SRC_URI = " \
>>      git://anongit.freedesktop.org/spice/spice;name=spice \
>> -    git://anongit.freedesktop.org/spice/spice-common;destsuffix=git/spice-common;name=spice-common \
>> +    git://anongit.freedesktop.org/spice/spice-common;destsuffix=git/subprojects/spice-common;name=spice-common \
>>      file://0001-Convert-pthread_t-to-be-numeric.patch \
>>  "
>> +
>>  FOO = "\
>>      file://0001-build-allow-separated-src-and-build-dirs.patch \
>>  "
>> --
>> 2.11.0
>>
>> --
>> _______________________________________________
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [meta-networking][PATCH] spice: Upgrade 0.14.0 -> 0.14.1
  2018-09-04 11:56 [meta-networking][PATCH] " He Zhe
@ 2018-09-04 20:56 ` Khem Raj
  2018-09-05  2:52   ` He Zhe
  0 siblings, 1 reply; 7+ messages in thread
From: Khem Raj @ 2018-09-04 20:56 UTC (permalink / raw)
  To: zhe.he; +Cc: openembeded-devel

Fails to build ( with clang )
http://errors.yoctoproject.org/Errors/Details/190549/

On Tue, Sep 4, 2018 at 4:57 AM He Zhe <zhe.he@windriver.com> wrote:
>
> Adjust location of spice-common source as new spice asks spice-common
> to be put under "subprojects" directory.
>
> Signed-off-by: He Zhe <zhe.he@windriver.com>
> ---
>  meta-networking/recipes-support/spice/spice_git.bb | 9 +++++----
>  1 file changed, 5 insertions(+), 4 deletions(-)
>
> diff --git a/meta-networking/recipes-support/spice/spice_git.bb b/meta-networking/recipes-support/spice/spice_git.bb
> index 38b8bf306..022a09e19 100644
> --- a/meta-networking/recipes-support/spice/spice_git.bb
> +++ b/meta-networking/recipes-support/spice/spice_git.bb
> @@ -13,18 +13,19 @@ architectures."
>  LICENSE = "BSD & LGPLv2.1+"
>  LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c"
>
> -PV = "0.14.0+git${SRCPV}"
> +PV = "0.14.1+git${SRCPV}"
>
> -SRCREV_spice = "f1050bfc76c9c4146257e087baf74e0b62d7d218"
> -SRCREV_spice-common = "95743f40a2da39e0a19859c305e69e2c99d39e42"
> +SRCREV_spice = "eaa07ef15cfc3bf57a69da2576af66f028787774"
> +SRCREV_spice-common = "6b93b3fce8909b836ef1d1434d191900d8aa00be"
>
>  SRCREV_FORMAT = "spice_spice-common"
>
>  SRC_URI = " \
>      git://anongit.freedesktop.org/spice/spice;name=spice \
> -    git://anongit.freedesktop.org/spice/spice-common;destsuffix=git/spice-common;name=spice-common \
> +    git://anongit.freedesktop.org/spice/spice-common;destsuffix=git/subprojects/spice-common;name=spice-common \
>      file://0001-Convert-pthread_t-to-be-numeric.patch \
>  "
> +
>  FOO = "\
>      file://0001-build-allow-separated-src-and-build-dirs.patch \
>  "
> --
> 2.11.0
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [meta-networking][PATCH] spice: Upgrade 0.14.0 -> 0.14.1
@ 2018-09-04 11:56 He Zhe
  2018-09-04 20:56 ` Khem Raj
  0 siblings, 1 reply; 7+ messages in thread
From: He Zhe @ 2018-09-04 11:56 UTC (permalink / raw)
  To: openembedded-devel

Adjust location of spice-common source as new spice asks spice-common
to be put under "subprojects" directory.

Signed-off-by: He Zhe <zhe.he@windriver.com>
---
 meta-networking/recipes-support/spice/spice_git.bb | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/meta-networking/recipes-support/spice/spice_git.bb b/meta-networking/recipes-support/spice/spice_git.bb
index 38b8bf306..022a09e19 100644
--- a/meta-networking/recipes-support/spice/spice_git.bb
+++ b/meta-networking/recipes-support/spice/spice_git.bb
@@ -13,18 +13,19 @@ architectures."
 LICENSE = "BSD & LGPLv2.1+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c"
 
-PV = "0.14.0+git${SRCPV}"
+PV = "0.14.1+git${SRCPV}"
 
-SRCREV_spice = "f1050bfc76c9c4146257e087baf74e0b62d7d218"
-SRCREV_spice-common = "95743f40a2da39e0a19859c305e69e2c99d39e42"
+SRCREV_spice = "eaa07ef15cfc3bf57a69da2576af66f028787774"
+SRCREV_spice-common = "6b93b3fce8909b836ef1d1434d191900d8aa00be"
 
 SRCREV_FORMAT = "spice_spice-common"
 
 SRC_URI = " \
     git://anongit.freedesktop.org/spice/spice;name=spice \
-    git://anongit.freedesktop.org/spice/spice-common;destsuffix=git/spice-common;name=spice-common \
+    git://anongit.freedesktop.org/spice/spice-common;destsuffix=git/subprojects/spice-common;name=spice-common \
     file://0001-Convert-pthread_t-to-be-numeric.patch \
 "
+
 FOO = "\
     file://0001-build-allow-separated-src-and-build-dirs.patch \
 "
-- 
2.11.0



^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2018-09-05  3:00 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-04 11:09 [meta-networking] [PATCH] spice: Upgrade 0.14.0 -> 0.14.1 He Zhe
2018-09-04 11:22 ` Martin Jansa
2018-09-04 11:35   ` He Zhe
2018-09-04 11:56 [meta-networking][PATCH] " He Zhe
2018-09-04 20:56 ` Khem Raj
2018-09-05  2:52   ` He Zhe
2018-09-05  3:00     ` Khem Raj

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.