All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 01/11] libxslt: update to 1.1.33
@ 2019-01-17 16:26 Alexander Kanavin
  2019-01-17 16:26 ` [PATCH 02/11] liburcu: upgrade 0.10.1 -> 0.10.2 Alexander Kanavin
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: Alexander Kanavin @ 2019-01-17 16:26 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../libxslt/libxslt/fix-rvts-handling.patch   | 80 -------------------
 .../{libxslt_1.1.32.bb => libxslt_1.1.33.bb}  |  8 +-
 2 files changed, 3 insertions(+), 85 deletions(-)
 delete mode 100644 meta/recipes-support/libxslt/libxslt/fix-rvts-handling.patch
 rename meta/recipes-support/libxslt/{libxslt_1.1.32.bb => libxslt_1.1.33.bb} (83%)

diff --git a/meta/recipes-support/libxslt/libxslt/fix-rvts-handling.patch b/meta/recipes-support/libxslt/libxslt/fix-rvts-handling.patch
deleted file mode 100644
index ea3ae51e937..00000000000
--- a/meta/recipes-support/libxslt/libxslt/fix-rvts-handling.patch
+++ /dev/null
@@ -1,80 +0,0 @@
-libxslt-1.1.32: Fix handling of RVTs returned from nested EXSLT functions
-
-[No upstream tracking] -- https://bugzilla.gnome.org/show_bug.cgi?id=792580
-
-Set the context variable to NULL when evaluating EXSLT functions.
-Fixes potential use-after-free errors or memory leaks.
-
-Upstream-Status: Backport [https://gitlab.gnome.org/GNOME/libxslt/commit/8bd32f7753ac253a54279a0b6a88d15a57076bb0]
-bug: 792580
-Signed-off-by: Andrej Valek <andrej.valek@siemens.com>
-
-diff --git a/libexslt/functions.c b/libexslt/functions.c
-index dc794e3..8511cb0 100644
---- a/libexslt/functions.c
-+++ b/libexslt/functions.c
-@@ -280,6 +280,7 @@ exsltFuncFunctionFunction (xmlXPathParserContextPtr ctxt, int nargs) {
-     exsltFuncFunctionData *func;
-     xmlNodePtr paramNode, oldInsert, fake;
-     int oldBase;
-+    void *oldCtxtVar;
-     xsltStackElemPtr params = NULL, param;
-     xsltTransformContextPtr tctxt = xsltXPathGetTransformContext(ctxt);
-     int i, notSet;
-@@ -418,11 +419,14 @@ exsltFuncFunctionFunction (xmlXPathParserContextPtr ctxt, int nargs) {
-     fake = xmlNewDocNode(tctxt->output, NULL,
- 			 (const xmlChar *)"fake", NULL);
-     oldInsert = tctxt->insert;
-+    oldCtxtVar = tctxt->contextVariable;
-     tctxt->insert = fake;
-+    tctxt->contextVariable = NULL;
-     xsltApplyOneTemplate (tctxt, tctxt->node,
- 			  func->content, NULL, NULL);
-     xsltLocalVariablePop(tctxt, tctxt->varsBase, -2);
-     tctxt->insert = oldInsert;
-+    tctxt->contextVariable = oldCtxtVar;
-     tctxt->varsBase = oldBase;	/* restore original scope */
-     if (params != NULL)
- 	xsltFreeStackElemList(params);
-diff --git a/tests/docs/bug-209.xml b/tests/docs/bug-209.xml
-new file mode 100644
-index 0000000..69d62f2
---- /dev/null
-+++ b/tests/docs/bug-209.xml
-@@ -0,0 +1 @@
-+<doc/>
-diff --git a/tests/general/bug-209.out b/tests/general/bug-209.out
-new file mode 100644
-index 0000000..e829790
---- /dev/null
-+++ b/tests/general/bug-209.out
-@@ -0,0 +1,2 @@
-+<?xml version="1.0"?>
-+<result/>
-diff --git a/tests/general/bug-209.xsl b/tests/general/bug-209.xsl
-new file mode 100644
-index 0000000..fe69ac6
---- /dev/null
-+++ b/tests/general/bug-209.xsl
-@@ -0,0 +1,21 @@
-+<xsl:stylesheet
-+    version="1.0"
-+    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-+    xmlns:func="http://exslt.org/functions"
-+    extension-element-prefixes="func">
-+
-+    <xsl:template match="/">
-+        <xsl:variable name="v" select="func:a()" />
-+        <xsl:copy-of select="$v"/>
-+    </xsl:template>
-+
-+    <func:function name="func:a">
-+        <func:result select="func:b()" />
-+    </func:function>
-+
-+    <func:function name="func:b">
-+        <func:result>
-+            <result/>
-+        </func:result>
-+    </func:function>
-+</xsl:stylesheet>
diff --git a/meta/recipes-support/libxslt/libxslt_1.1.32.bb b/meta/recipes-support/libxslt/libxslt_1.1.33.bb
similarity index 83%
rename from meta/recipes-support/libxslt/libxslt_1.1.32.bb
rename to meta/recipes-support/libxslt/libxslt_1.1.33.bb
index f0fa5e723ff..0e0c10d8168 100644
--- a/meta/recipes-support/libxslt/libxslt_1.1.32.bb
+++ b/meta/recipes-support/libxslt/libxslt_1.1.33.bb
@@ -8,12 +8,10 @@ LIC_FILES_CHKSUM = "file://Copyright;md5=0cd9a07afbeb24026c9b03aecfeba458"
 SECTION = "libs"
 DEPENDS = "libxml2"
 
-SRC_URI = "http://xmlsoft.org/sources/libxslt-${PV}.tar.gz \
-           file://fix-rvts-handling.patch \
-           "
+SRC_URI = "http://xmlsoft.org/sources/libxslt-${PV}.tar.gz"
 
-SRC_URI[md5sum] = "1fc72f98e98bf4443f1651165f3aa146"
-SRC_URI[sha256sum] = "526ecd0abaf4a7789041622c3950c0e7f2c4c8835471515fd77eec684a355460"
+SRC_URI[md5sum] = "b3bd254a03e46d58f8ad1e4559cd2c2f"
+SRC_URI[sha256sum] = "8e36605144409df979cab43d835002f63988f3dc94d5d3537c12796db90e38c8"
 
 UPSTREAM_CHECK_REGEX = "libxslt-(?P<pver>\d+(\.\d+)+)\.tar"
 
-- 
2.17.1



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

* [PATCH 02/11] liburcu: upgrade 0.10.1 -> 0.10.2
  2019-01-17 16:26 [PATCH 01/11] libxslt: update to 1.1.33 Alexander Kanavin
@ 2019-01-17 16:26 ` Alexander Kanavin
  2019-01-17 16:26 ` [PATCH 03/11] libfm-extra: upgrade 1.3.0.2 -> 1.3.1 Alexander Kanavin
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Alexander Kanavin @ 2019-01-17 16:26 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../liburcu/{liburcu_0.10.1.bb => liburcu_0.10.2.bb}          | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-support/liburcu/{liburcu_0.10.1.bb => liburcu_0.10.2.bb} (84%)

diff --git a/meta/recipes-support/liburcu/liburcu_0.10.1.bb b/meta/recipes-support/liburcu/liburcu_0.10.2.bb
similarity index 84%
rename from meta/recipes-support/liburcu/liburcu_0.10.1.bb
rename to meta/recipes-support/liburcu/liburcu_0.10.2.bb
index 5eb91e144b6..b4b6e2323dc 100644
--- a/meta/recipes-support/liburcu/liburcu_0.10.1.bb
+++ b/meta/recipes-support/liburcu/liburcu_0.10.2.bb
@@ -11,8 +11,8 @@ SRC_URI = "http://lttng.org/files/urcu/userspace-rcu-${PV}.tar.bz2 \
            file://Add-support-for-the-RISC-V-architecture.patch \
            "
 
-SRC_URI[md5sum] = "281a2f92fdc39c40ad6b76f6631fdbd7"
-SRC_URI[sha256sum] = "9c09220be4435dc27fcd22d291707b94b97f159e0c442fbcd60c168f8f79eb06"
+SRC_URI[md5sum] = "7c424c5183ec009d87e0f70c23e92f1b"
+SRC_URI[sha256sum] = "b3f6888daf6fe02c1f8097f4a0898e41b5fe9975e121dc792b9ddef4b17261cc"
 
 S = "${WORKDIR}/userspace-rcu-${PV}"
 inherit autotools multilib_header
-- 
2.17.1



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

* [PATCH 03/11] libfm-extra: upgrade 1.3.0.2 -> 1.3.1
  2019-01-17 16:26 [PATCH 01/11] libxslt: update to 1.1.33 Alexander Kanavin
  2019-01-17 16:26 ` [PATCH 02/11] liburcu: upgrade 0.10.1 -> 0.10.2 Alexander Kanavin
@ 2019-01-17 16:26 ` Alexander Kanavin
  2019-01-17 16:26 ` [PATCH 04/11] libfm: " Alexander Kanavin
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Alexander Kanavin @ 2019-01-17 16:26 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../libfm/{libfm-extra_1.3.0.2.bb => libfm-extra_1.3.1.bb}    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-support/libfm/{libfm-extra_1.3.0.2.bb => libfm-extra_1.3.1.bb} (80%)

diff --git a/meta/recipes-support/libfm/libfm-extra_1.3.0.2.bb b/meta/recipes-support/libfm/libfm-extra_1.3.1.bb
similarity index 80%
rename from meta/recipes-support/libfm/libfm-extra_1.3.0.2.bb
rename to meta/recipes-support/libfm/libfm-extra_1.3.1.bb
index 734d010d319..85102a1a3d9 100644
--- a/meta/recipes-support/libfm/libfm-extra_1.3.0.2.bb
+++ b/meta/recipes-support/libfm/libfm-extra_1.3.1.bb
@@ -11,8 +11,8 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/pcmanfm/libfm-${PV}.tar.xz \
            file://0001-nls.m4-Take-it-from-gettext-0.15.patch \
           "
 
-SRC_URI[md5sum] = "02a024714d51e0d37afc7bd596a44f3b"
-SRC_URI[sha256sum] = "18d06f7996ce1cf8947df6e106bc0338c6ae0c4138c316f2501f6f6f435c7c72"
+SRC_URI[md5sum] = "c15ecd2c9317e2c385cd3f046d0b61ba"
+SRC_URI[sha256sum] = "96b1244bde41ca0eef0332cfb5c67bb16725dfd102128f3e6f74fadc13a1cfe4"
 
 S = "${WORKDIR}/libfm-${PV}"
 
-- 
2.17.1



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

* [PATCH 04/11] libfm: upgrade 1.3.0.2 -> 1.3.1
  2019-01-17 16:26 [PATCH 01/11] libxslt: update to 1.1.33 Alexander Kanavin
  2019-01-17 16:26 ` [PATCH 02/11] liburcu: upgrade 0.10.1 -> 0.10.2 Alexander Kanavin
  2019-01-17 16:26 ` [PATCH 03/11] libfm-extra: upgrade 1.3.0.2 -> 1.3.1 Alexander Kanavin
@ 2019-01-17 16:26 ` Alexander Kanavin
  2019-01-17 16:26 ` [PATCH 05/11] pcmanfm: upgrade 1.3.0 " Alexander Kanavin
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Alexander Kanavin @ 2019-01-17 16:26 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../libfm/{libfm_1.3.0.2.bb => libfm_1.3.1.bb}                | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-support/libfm/{libfm_1.3.0.2.bb => libfm_1.3.1.bb} (93%)

diff --git a/meta/recipes-support/libfm/libfm_1.3.0.2.bb b/meta/recipes-support/libfm/libfm_1.3.1.bb
similarity index 93%
rename from meta/recipes-support/libfm/libfm_1.3.0.2.bb
rename to meta/recipes-support/libfm/libfm_1.3.1.bb
index 62d6a51e871..65a6f8e78c3 100644
--- a/meta/recipes-support/libfm/libfm_1.3.0.2.bb
+++ b/meta/recipes-support/libfm/libfm_1.3.1.bb
@@ -16,8 +16,8 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/pcmanfm/libfm-${PV}.tar.xz \
            file://0001-Do-not-add-library-path-to-avoid-host-contamination.patch \
            "
 
-SRC_URI[md5sum] = "02a024714d51e0d37afc7bd596a44f3b"
-SRC_URI[sha256sum] = "18d06f7996ce1cf8947df6e106bc0338c6ae0c4138c316f2501f6f6f435c7c72"
+SRC_URI[md5sum] = "c15ecd2c9317e2c385cd3f046d0b61ba"
+SRC_URI[sha256sum] = "96b1244bde41ca0eef0332cfb5c67bb16725dfd102128f3e6f74fadc13a1cfe4"
 
 inherit autotools pkgconfig gtk-doc gettext distro_features_check
 ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}"
-- 
2.17.1



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

* [PATCH 05/11] pcmanfm: upgrade 1.3.0 -> 1.3.1
  2019-01-17 16:26 [PATCH 01/11] libxslt: update to 1.1.33 Alexander Kanavin
                   ` (2 preceding siblings ...)
  2019-01-17 16:26 ` [PATCH 04/11] libfm: " Alexander Kanavin
@ 2019-01-17 16:26 ` Alexander Kanavin
  2019-01-17 16:26 ` [PATCH 06/11] mobile-broadband-provider-info: upgrade 20170310 -> 20190116 Alexander Kanavin
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Alexander Kanavin @ 2019-01-17 16:26 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../pcmanfm/{pcmanfm_1.3.0.bb => pcmanfm_1.3.1.bb}            | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-sato/pcmanfm/{pcmanfm_1.3.0.bb => pcmanfm_1.3.1.bb} (90%)

diff --git a/meta/recipes-sato/pcmanfm/pcmanfm_1.3.0.bb b/meta/recipes-sato/pcmanfm/pcmanfm_1.3.1.bb
similarity index 90%
rename from meta/recipes-sato/pcmanfm/pcmanfm_1.3.0.bb
rename to meta/recipes-sato/pcmanfm/pcmanfm_1.3.1.bb
index 356da02d235..a5e3a1ad334 100644
--- a/meta/recipes-sato/pcmanfm/pcmanfm_1.3.0.bb
+++ b/meta/recipes-sato/pcmanfm/pcmanfm_1.3.1.bb
@@ -16,8 +16,8 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/pcmanfm/pcmanfm-${PV}.tar.xz \
 	   file://emblem-symbolic-link.png \
 	   file://no-desktop.patch"
 
-SRC_URI[md5sum] = "827838f7f6b17dc97e1690c07da8fdb3"
-SRC_URI[sha256sum] = "5a693e9bf3f3294f0ee7264c1c1a600a88ee27d1572e7dd5c4b0e84aa7778ffb"
+SRC_URI[md5sum] = "d32ad2c9c7c52bff2004bbc120b53420"
+SRC_URI[sha256sum] = "6804043b3ee3a703edde41c724946174b505fe958703eadbd7e0876ece836855"
 
 UPSTREAM_CHECK_URI = "http://sourceforge.net/projects/pcmanfm/files/PCManFM%20%2B%20Libfm%20%28tarball%20release%29/PCManFM/"
 
-- 
2.17.1



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

* [PATCH 06/11] mobile-broadband-provider-info: upgrade 20170310 -> 20190116
  2019-01-17 16:26 [PATCH 01/11] libxslt: update to 1.1.33 Alexander Kanavin
                   ` (3 preceding siblings ...)
  2019-01-17 16:26 ` [PATCH 05/11] pcmanfm: upgrade 1.3.0 " Alexander Kanavin
@ 2019-01-17 16:26 ` Alexander Kanavin
  2019-01-17 16:26 ` [PATCH 07/11] vala: update to 0.42.4 Alexander Kanavin
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Alexander Kanavin @ 2019-01-17 16:26 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../multilibfix.patch                          | 18 ------------------
 .../mobile-broadband-provider-info_git.bb      |  8 +++-----
 2 files changed, 3 insertions(+), 23 deletions(-)
 delete mode 100644 meta/recipes-connectivity/mobile-broadband-provider-info/mobile-broadband-provider-info/multilibfix.patch

diff --git a/meta/recipes-connectivity/mobile-broadband-provider-info/mobile-broadband-provider-info/multilibfix.patch b/meta/recipes-connectivity/mobile-broadband-provider-info/mobile-broadband-provider-info/multilibfix.patch
deleted file mode 100644
index 7e97e8ec356..00000000000
--- a/meta/recipes-connectivity/mobile-broadband-provider-info/mobile-broadband-provider-info/multilibfix.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-The mobile-broadband-provider-info.pc file is installed into a non-arch directory
-yet contains libdir which can vary depending on which multilib is configured.
-The .pc file does not require libdir so remove this to fix multilib builds.
-
-Upstream-Status: Backport [8109fcd3c7299fae859fb891ff416927581a9955]
-Signed-off-by: Zhixiong Chi <zhixiong.chi@windriver.com>
-
-Index: git/mobile-broadband-provider-info.pc.in
-===================================================================
---- git.orig/mobile-broadband-provider-info.pc.in	2018-08-07 13:09:31.811364063 +0800
-+++ git/mobile-broadband-provider-info.pc.in	2018-08-10 17:49:25.645288320 +0800
-@@ -1,6 +1,5 @@
- prefix=@prefix@
- exec_prefix=@exec_prefix@
--libdir=@libdir@
- datarootdir = @datarootdir@
- pkgdatadir=${datarootdir}/@PACKAGE@
- includedir=@includedir@
diff --git a/meta/recipes-connectivity/mobile-broadband-provider-info/mobile-broadband-provider-info_git.bb b/meta/recipes-connectivity/mobile-broadband-provider-info/mobile-broadband-provider-info_git.bb
index 7f1dd78c14e..77adcebbae7 100644
--- a/meta/recipes-connectivity/mobile-broadband-provider-info/mobile-broadband-provider-info_git.bb
+++ b/meta/recipes-connectivity/mobile-broadband-provider-info/mobile-broadband-provider-info_git.bb
@@ -3,13 +3,11 @@ HOMEPAGE = "http://live.gnome.org/NetworkManager/MobileBroadband/ServiceProvider
 SECTION = "network"
 LICENSE = "PD"
 LIC_FILES_CHKSUM = "file://COPYING;md5=87964579b2a8ece4bc6744d2dc9a8b04"
-SRCREV = "befcbbc9867e742ac16415660b0b7521218a530c"
-PV = "20170310"
+SRCREV = "c7def60ba50d9cc30a90f69f89d7e82243501e86"
+PV = "20190116"
 PE = "1"
 
-SRC_URI = "git://gitlab.gnome.org/GNOME/mobile-broadband-provider-info.git;protocol=https \
-           file://multilibfix.patch \
-"
+SRC_URI = "git://gitlab.gnome.org/GNOME/mobile-broadband-provider-info.git;protocol=https"
 S = "${WORKDIR}/git"
 
 inherit autotools
-- 
2.17.1



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

* [PATCH 07/11] vala: update to 0.42.4
  2019-01-17 16:26 [PATCH 01/11] libxslt: update to 1.1.33 Alexander Kanavin
                   ` (4 preceding siblings ...)
  2019-01-17 16:26 ` [PATCH 06/11] mobile-broadband-provider-info: upgrade 20170310 -> 20190116 Alexander Kanavin
@ 2019-01-17 16:26 ` Alexander Kanavin
  2019-01-17 16:26 ` [PATCH 08/11] powertop: update to 2.10 Alexander Kanavin
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Alexander Kanavin @ 2019-01-17 16:26 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../vala/vala/disable-graphviz.patch          | 30 ++++++++++---------
 .../vala/{vala_0.42.3.bb => vala_0.42.4.bb}   |  4 +--
 2 files changed, 18 insertions(+), 16 deletions(-)
 rename meta/recipes-devtools/vala/{vala_0.42.3.bb => vala_0.42.4.bb} (64%)

diff --git a/meta/recipes-devtools/vala/vala/disable-graphviz.patch b/meta/recipes-devtools/vala/vala/disable-graphviz.patch
index 477504dca3a..e521bc854b3 100644
--- a/meta/recipes-devtools/vala/vala/disable-graphviz.patch
+++ b/meta/recipes-devtools/vala/vala/disable-graphviz.patch
@@ -1,4 +1,4 @@
-From 57f6b661d7865e8cecd17be36fab68f7f8447998 Mon Sep 17 00:00:00 2001
+From b2723ff18b70c67c8a7fab5375a7f3c442d49790 Mon Sep 17 00:00:00 2001
 From: Rico Tzschichholz <ricotz@ubuntu.com>
 Date: Wed, 6 Sep 2017 18:52:55 +0200
 Subject: [PATCH] libvaladoc: Allow disabling the graphviz dependency of
@@ -10,10 +10,10 @@ Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
 Upstream-Status: Submitted [bugzilla link above]
 
 ---
- configure.ac                          | 60 +++++++++++++++++++----------------
- libvaladoc/Makefile.am                | 25 +++++++++++----
- libvaladoc/html/basicdoclet.vala      |  8 +++++
- libvaladoc/html/htmlmarkupwriter.vala |  4 +++
+ configure.ac                          | 60 ++++++++++++++-------------
+ libvaladoc/Makefile.am                | 25 ++++++++---
+ libvaladoc/html/basicdoclet.vala      |  8 ++++
+ libvaladoc/html/htmlmarkupwriter.vala |  4 ++
  4 files changed, 63 insertions(+), 34 deletions(-)
 
 diff --git a/configure.ac b/configure.ac
@@ -88,10 +88,10 @@ index 730c72d..af81986 100644
  
  AC_PATH_PROG([XSLTPROC], [xsltproc], :)
 diff --git a/libvaladoc/Makefile.am b/libvaladoc/Makefile.am
-index 384292f..cce50d8 100644
+index f3f790e..3c5dc4c 100644
 --- a/libvaladoc/Makefile.am
 +++ b/libvaladoc/Makefile.am
-@@ -126,10 +126,6 @@ libvaladoc_la_VALASOURCES = \
+@@ -128,10 +128,6 @@ libvaladoc_la_VALASOURCES = \
  	content/tablerow.vala \
  	content/taglet.vala \
  	content/text.vala \
@@ -102,7 +102,7 @@ index 384292f..cce50d8 100644
  	parser/manyrule.vala \
  	parser/oneofrule.vala \
  	parser/optionalrule.vala \
-@@ -156,13 +152,24 @@ libvaladoc_la_VALASOURCES = \
+@@ -158,13 +154,24 @@ libvaladoc_la_VALASOURCES = \
  	highlighter/codetoken.vala \
  	highlighter/highlighter.vala \
  	html/basicdoclet.vala \
@@ -128,18 +128,20 @@ index 384292f..cce50d8 100644
  libvaladoc@PACKAGE_SUFFIX@_la_SOURCES = \
  	libvaladoc.vala.stamp \
  	$(libvaladoc_la_VALASOURCES:.vala=.c) \
-@@ -182,9 +189,9 @@ libvaladoc.vala.stamp: $(libvaladoc_la_VALASOURCES)
+@@ -184,11 +191,11 @@ libvaladoc.vala.stamp: $(libvaladoc_la_VALASOURCES)
  		--library valadoc \
  		--vapi valadoc@PACKAGE_SUFFIX@.vapi \
  		--vapidir $(top_srcdir)/vapi --pkg gmodule-2.0 \
 -		--vapidir $(top_srcdir)/vapi --pkg libgvc \
  		--vapidir $(top_srcdir)/gee --pkg gee \
  		--vapidir $(top_srcdir)/vala --pkg vala \
+ 		--vapidir $(top_srcdir)/ccode --pkg ccode \
+ 		--vapidir $(top_srcdir)/codegen --pkg codegen \
 +		$(LIBGVC_PKG) \
  		--pkg config \
  		$(filter %.vala %.c,$^)
  	touch $@
-@@ -211,6 +218,9 @@ nodist_pkgconfig_DATA = valadoc@PACKAGE_SUFFIX@.pc
+@@ -217,6 +224,9 @@ nodist_pkgconfig_DATA = valadoc@PACKAGE_SUFFIX@.pc
  
  valadoc@PACKAGE_SUFFIX@.pc: valadoc.pc
  	cp $< $@
@@ -149,7 +151,7 @@ index 384292f..cce50d8 100644
  
  vapidir = $(datadir)/vala/vapi
  dist_vapi_DATA = valadoc@PACKAGE_SUFFIX@.vapi
-@@ -218,6 +228,9 @@ nodist_vapi_DATA = valadoc@PACKAGE_SUFFIX@.deps
+@@ -224,6 +234,9 @@ nodist_vapi_DATA = valadoc@PACKAGE_SUFFIX@.deps
  
  valadoc@PACKAGE_SUFFIX@.deps: valadoc.deps
  	cp $< $@
@@ -160,7 +162,7 @@ index 384292f..cce50d8 100644
  EXTRA_DIST = \
  	$(libvaladoc_la_VALASOURCES) \
 diff --git a/libvaladoc/html/basicdoclet.vala b/libvaladoc/html/basicdoclet.vala
-index 37c731c..e0326ef 100644
+index 192e488..ec09602 100644
 --- a/libvaladoc/html/basicdoclet.vala
 +++ b/libvaladoc/html/basicdoclet.vala
 @@ -46,7 +46,11 @@ public abstract class Valadoc.Html.BasicDoclet : Api.Visitor, Doclet {
@@ -185,7 +187,7 @@ index 37c731c..e0326ef 100644
  	}
  
  
-@@ -1025,6 +1031,7 @@ public abstract class Valadoc.Html.BasicDoclet : Api.Visitor, Doclet {
+@@ -1026,6 +1032,7 @@ public abstract class Valadoc.Html.BasicDoclet : Api.Visitor, Doclet {
  	}
  
  	protected void write_image_block (Api.Node element) {
@@ -193,7 +195,7 @@ index 37c731c..e0326ef 100644
  		if (element is Class || element is Interface || element is Struct) {
  			unowned string format = (settings.use_svg_images ? "svg" : "png");
  			var chart = new Charts.Hierarchy (image_factory, element);
-@@ -1044,6 +1051,7 @@ public abstract class Valadoc.Html.BasicDoclet : Api.Visitor, Doclet {
+@@ -1045,6 +1052,7 @@ public abstract class Valadoc.Html.BasicDoclet : Api.Visitor, Doclet {
  									   this.get_img_path_html (element, format)});
  			writer.add_usemap (chart);
  		}
diff --git a/meta/recipes-devtools/vala/vala_0.42.3.bb b/meta/recipes-devtools/vala/vala_0.42.4.bb
similarity index 64%
rename from meta/recipes-devtools/vala/vala_0.42.3.bb
rename to meta/recipes-devtools/vala/vala_0.42.4.bb
index 0d11ff6ba76..49ffc41bc36 100644
--- a/meta/recipes-devtools/vala/vala_0.42.3.bb
+++ b/meta/recipes-devtools/vala/vala_0.42.4.bb
@@ -6,5 +6,5 @@ SRC_URI += " file://0001-git-version-gen-don-t-append-dirty-if-we-re-not-in-g.pa
 	     file://0001-Disable-valadoc.patch \
 "
 
-SRC_URI[md5sum] = "6fdd6fadbef27e3dd05086d6a3220556"
-SRC_URI[sha256sum] = "5fc73dd1e683dc7391bb96d02b2f671aa8289411a48611a05265629e0048587d"
+SRC_URI[md5sum] = "f34cb465a164ba7f1f2e7fea31f36d13"
+SRC_URI[sha256sum] = "b528906d080ac5b6043285a82c194c988e495c70da71ae19c1fc7811509f4f1e"
-- 
2.17.1



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

* [PATCH 08/11] powertop: update to 2.10
  2019-01-17 16:26 [PATCH 01/11] libxslt: update to 1.1.33 Alexander Kanavin
                   ` (5 preceding siblings ...)
  2019-01-17 16:26 ` [PATCH 07/11] vala: update to 0.42.4 Alexander Kanavin
@ 2019-01-17 16:26 ` Alexander Kanavin
  2019-01-17 16:26 ` [PATCH 09/11] ed: upgrade 1.14.2 -> 1.15 Alexander Kanavin
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Alexander Kanavin @ 2019-01-17 16:26 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../powertop/{powertop_2.9.bb => powertop_2.10.bb}          | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta/recipes-kernel/powertop/{powertop_2.9.bb => powertop_2.10.bb} (80%)

diff --git a/meta/recipes-kernel/powertop/powertop_2.9.bb b/meta/recipes-kernel/powertop/powertop_2.10.bb
similarity index 80%
rename from meta/recipes-kernel/powertop/powertop_2.9.bb
rename to meta/recipes-kernel/powertop/powertop_2.10.bb
index 4fe5447a03c..d943ba9f6e6 100644
--- a/meta/recipes-kernel/powertop/powertop_2.9.bb
+++ b/meta/recipes-kernel/powertop/powertop_2.10.bb
@@ -6,11 +6,11 @@ DEPENDS = "ncurses libnl pciutils"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e"
 
-SRC_URI = "http://01.org/sites/default/files/downloads/powertop/powertop-v${PV}.tar.gz \
+SRC_URI = "http://01.org/sites/default/files/downloads/powertop-v${PV}.tar.gz \
 "
 
-SRC_URI[md5sum] = "583518c5c4434c6e9b9c58c3920950b6"
-SRC_URI[sha256sum] = "aa7fb7d8e9a00f05e7d8a7a2866d85929741e0d03a5bf40cab22d2021c959250"
+SRC_URI[md5sum] = "a69bd55901cf919cc564187402ea2c9c"
+SRC_URI[sha256sum] = "d3b7459eaba7d01c8841dd33a3b4d369416c01e9bd8951b0d88234cf18fe4a75"
 
 UPSTREAM_CHECK_URI = "https://01.org/powertop/downloads"
 UPSTREAM_CHECK_REGEX = "powertop-[v]?(?P<pver>\d+(\.\d+)+)\.tar"
-- 
2.17.1



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

* [PATCH 09/11] ed: upgrade 1.14.2 -> 1.15
  2019-01-17 16:26 [PATCH 01/11] libxslt: update to 1.1.33 Alexander Kanavin
                   ` (6 preceding siblings ...)
  2019-01-17 16:26 ` [PATCH 08/11] powertop: update to 2.10 Alexander Kanavin
@ 2019-01-17 16:26 ` Alexander Kanavin
  2019-01-17 16:26 ` [PATCH 10/11] libsecret: upgrade 0.18.6 -> 0.18.7 Alexander Kanavin
  2019-01-17 16:26 ` [PATCH 11/11] gobject-introspection: upgrade 1.58.2 -> 1.58.3 Alexander Kanavin
  9 siblings, 0 replies; 11+ messages in thread
From: Alexander Kanavin @ 2019-01-17 16:26 UTC (permalink / raw)
  To: openembedded-core

License-Update: copyright years updated
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 meta/recipes-extended/ed/{ed_1.14.2.bb => ed_1.15.bb} | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)
 rename meta/recipes-extended/ed/{ed_1.14.2.bb => ed_1.15.bb} (68%)

diff --git a/meta/recipes-extended/ed/ed_1.14.2.bb b/meta/recipes-extended/ed/ed_1.15.bb
similarity index 68%
rename from meta/recipes-extended/ed/ed_1.14.2.bb
rename to meta/recipes-extended/ed/ed_1.15.bb
index 87d03b10b1d..c79310325f5 100644
--- a/meta/recipes-extended/ed/ed_1.14.2.bb
+++ b/meta/recipes-extended/ed/ed_1.15.bb
@@ -3,8 +3,9 @@ HOMEPAGE = "http://www.gnu.org/software/ed/"
 
 LICENSE = "GPLv3+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=0c7051aef9219dc7237f206c5c4179a7 \
-                    file://ed.h;endline=20;md5=4e36b7a40e137f42aee718165590d125 \
-                    file://main.c;endline=17;md5=c5b8f78f115df187af76868a2aead16a"
+                    file://ed.h;endline=20;md5=8af8e7dc7275dca05ce6c9e7ece7aec8 \
+                    file://main.c;endline=17;md5=d4dd6a62c502712358ca18551f978781 \
+                    "
 
 SECTION = "base"
 
@@ -15,8 +16,8 @@ bindir = "${base_bindir}"
 SRC_URI = "${GNU_MIRROR}/ed/${BP}.tar.lz"
 UPSTREAM_CHECK_URI = "${GNU_MIRROR}/ed/"
 
-SRC_URI[md5sum] = "273d04778b2a51f7c3cbfcd2001876bf"
-SRC_URI[sha256sum] = "f57962ba930d70d02fc71d6be5c5f2346b16992a455ab9c43be7061dec9810db"
+SRC_URI[md5sum] = "d3aaeb5eb032142948d7a2f98a24899b"
+SRC_URI[sha256sum] = "ad4489c0ad7a108c514262da28e6c2a426946fb408a3977ef1ed34308bdfd174"
 
 EXTRA_OEMAKE = "-e MAKEFLAGS="
 
-- 
2.17.1



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

* [PATCH 10/11] libsecret: upgrade 0.18.6 -> 0.18.7
  2019-01-17 16:26 [PATCH 01/11] libxslt: update to 1.1.33 Alexander Kanavin
                   ` (7 preceding siblings ...)
  2019-01-17 16:26 ` [PATCH 09/11] ed: upgrade 1.14.2 -> 1.15 Alexander Kanavin
@ 2019-01-17 16:26 ` Alexander Kanavin
  2019-01-17 16:26 ` [PATCH 11/11] gobject-introspection: upgrade 1.58.2 -> 1.58.3 Alexander Kanavin
  9 siblings, 0 replies; 11+ messages in thread
From: Alexander Kanavin @ 2019-01-17 16:26 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../libsecret/{libsecret_0.18.6.bb => libsecret_0.18.7.bb}    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-gnome/libsecret/{libsecret_0.18.6.bb => libsecret_0.18.7.bb} (81%)

diff --git a/meta/recipes-gnome/libsecret/libsecret_0.18.6.bb b/meta/recipes-gnome/libsecret/libsecret_0.18.7.bb
similarity index 81%
rename from meta/recipes-gnome/libsecret/libsecret_0.18.6.bb
rename to meta/recipes-gnome/libsecret/libsecret_0.18.7.bb
index 518c71feb17..0061b880533 100644
--- a/meta/recipes-gnome/libsecret/libsecret_0.18.6.bb
+++ b/meta/recipes-gnome/libsecret/libsecret_0.18.7.bb
@@ -8,8 +8,8 @@ DEPENDS += "glib-2.0 libgcrypt gettext-native intltool-native"
 
 PACKAGECONFIG[manpages] = "--enable-manpages, --disable-manpages, libxslt-native xmlto-native"
 
-SRC_URI[archive.md5sum] = "c6cf132a56bd346fbf49a43abb02e5c2"
-SRC_URI[archive.sha256sum] = "5efbc890ba41a323ffe0599cd260fd12bd8eb62a04aa1bd1b2762575d253d66f"
+SRC_URI[archive.md5sum] = "376153ece17081eb5410870e0dc5c031"
+SRC_URI[archive.sha256sum] = "0d66fe1fc4561b3e046ee281d7c5a703a9baac88a8c4fb42ebc739d31dabd487"
 
 # http://errors.yoctoproject.org/Errors/Details/20228/
 ARM_INSTRUCTION_SET_armv4 = "arm"
-- 
2.17.1



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

* [PATCH 11/11] gobject-introspection: upgrade 1.58.2 -> 1.58.3
  2019-01-17 16:26 [PATCH 01/11] libxslt: update to 1.1.33 Alexander Kanavin
                   ` (8 preceding siblings ...)
  2019-01-17 16:26 ` [PATCH 10/11] libsecret: upgrade 0.18.6 -> 0.18.7 Alexander Kanavin
@ 2019-01-17 16:26 ` Alexander Kanavin
  9 siblings, 0 replies; 11+ messages in thread
From: Alexander Kanavin @ 2019-01-17 16:26 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 ...-Relocate-the-repository-directory-for-native-builds.patch | 2 +-
 ...ntrospection_1.58.2.bb => gobject-introspection_1.58.3.bb} | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
 rename meta/recipes-gnome/gobject-introspection/{gobject-introspection_1.58.2.bb => gobject-introspection_1.58.3.bb} (98%)

diff --git a/meta/recipes-gnome/gobject-introspection/gobject-introspection/0001-Relocate-the-repository-directory-for-native-builds.patch b/meta/recipes-gnome/gobject-introspection/gobject-introspection/0001-Relocate-the-repository-directory-for-native-builds.patch
index 4017d445f75..a91d22afa7c 100644
--- a/meta/recipes-gnome/gobject-introspection/gobject-introspection/0001-Relocate-the-repository-directory-for-native-builds.patch
+++ b/meta/recipes-gnome/gobject-introspection/gobject-introspection/0001-Relocate-the-repository-directory-for-native-builds.patch
@@ -1,4 +1,4 @@
-From 47a596165e253edb45eb48a35e50f488182e13fd Mon Sep 17 00:00:00 2001
+From 7ea8c83d84a05f686128e652a5447fb5f6fb68be Mon Sep 17 00:00:00 2001
 From: Sascha Silbe <x-yo17@se-silbe.de>
 Date: Fri, 8 Jun 2018 13:55:10 +0200
 Subject: [PATCH] Relocate the repository directory for native builds
diff --git a/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.58.2.bb b/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.58.3.bb
similarity index 98%
rename from meta/recipes-gnome/gobject-introspection/gobject-introspection_1.58.2.bb
rename to meta/recipes-gnome/gobject-introspection/gobject-introspection_1.58.3.bb
index d00f3bd3441..4ff9b7bf4bc 100644
--- a/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.58.2.bb
+++ b/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.58.3.bb
@@ -23,8 +23,8 @@ SRC_URI = "${GNOME_MIRROR}/${BPN}/${@oe.utils.trim_version("${PV}", 2)}/${BPN}-$
            file://0001-Port-cross-compilation-support-to-meson.patch \
            "
 
-SRC_URI[md5sum] = "8479d6c543173721ce948484d0cd1d64"
-SRC_URI[sha256sum] = "2a5e0f69459af7ca4c41b8f4e19d9c80ddf877834bb0e7fdd420e2495ae2eda8"
+SRC_URI[md5sum] = "182432c1f33886be8f4da073218b597d"
+SRC_URI[sha256sum] = "025b632bbd944dcf11fc50d19a0ca086b83baf92b3e34936d008180d28cdc3c8"
 
 SRC_URI_append_class-native = " file://0001-Relocate-the-repository-directory-for-native-builds.patch"
 
-- 
2.17.1



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

end of thread, other threads:[~2019-01-17 16:27 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-17 16:26 [PATCH 01/11] libxslt: update to 1.1.33 Alexander Kanavin
2019-01-17 16:26 ` [PATCH 02/11] liburcu: upgrade 0.10.1 -> 0.10.2 Alexander Kanavin
2019-01-17 16:26 ` [PATCH 03/11] libfm-extra: upgrade 1.3.0.2 -> 1.3.1 Alexander Kanavin
2019-01-17 16:26 ` [PATCH 04/11] libfm: " Alexander Kanavin
2019-01-17 16:26 ` [PATCH 05/11] pcmanfm: upgrade 1.3.0 " Alexander Kanavin
2019-01-17 16:26 ` [PATCH 06/11] mobile-broadband-provider-info: upgrade 20170310 -> 20190116 Alexander Kanavin
2019-01-17 16:26 ` [PATCH 07/11] vala: update to 0.42.4 Alexander Kanavin
2019-01-17 16:26 ` [PATCH 08/11] powertop: update to 2.10 Alexander Kanavin
2019-01-17 16:26 ` [PATCH 09/11] ed: upgrade 1.14.2 -> 1.15 Alexander Kanavin
2019-01-17 16:26 ` [PATCH 10/11] libsecret: upgrade 0.18.6 -> 0.18.7 Alexander Kanavin
2019-01-17 16:26 ` [PATCH 11/11] gobject-introspection: upgrade 1.58.2 -> 1.58.3 Alexander Kanavin

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.