All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/11] more rss fixes
@ 2017-02-22 23:02 Andreas Müller
  2017-02-22 23:02 ` [PATCH 01/11] libsdl-mixer: add pkgconfig to inherit and unblacklist Andreas Müller
                   ` (10 more replies)
  0 siblings, 11 replies; 19+ messages in thread
From: Andreas Müller @ 2017-02-22 23:02 UTC (permalink / raw)
  To: openembedded-devel

* patchwork is in trouble atm -> use classic pull request
* 1-3 are resend - patchwork trouble I guess/hope
* some errors cannot be reproduced -> guesswork -> let me know in case of
  trouble
* (bad) habit: when touching recipes I check for updates - hope we don't face
  further mpd-like cases

The following changes since commit eb7979113cf1e8c7fb95f9cc2250ebfe7daba331:

  netcat-openbsd: fix implicit dependency on pkg-config (2017-02-22 21:39:16 +0100)

are available in the git repository at:

  https://github.com/schnitzeltony/meta-openembedded.git more-rss-fixes

for you to fetch changes up to 250c84bb4f57b8c7ac1b40d147f8f8dc795f80e4:

  libsdl-ttf: fix and unblacklist (2017-02-22 23:43:20 +0100)

----------------------------------------------------------------
Andreas Müller (11):
      libsdl-mixer: add pkgconfig to inherit and unblacklist
      libsdl2-mixer: add pkgconfig to inherit and unblacklist
      gtk-engines: add glib-2.0-native to DEPENDS an unblacklist
      gtkmathview: libxslt -> libxslt-native in DEPENDS and unblacklist
      abiword: unblacklist - gtkmathview is back
      fontforge: add gettext to inherit and unblacklist
      fontforge: update 20150824 -> 20161012
      postgresql: use gettext bbclass and aublacklist
      postgresql: update 9.4.10 -> 9.4.11
      libsdl2-ttf: add pkgconfig to inherit and unblacklist
      libsdl-ttf: fix and unblacklist

 meta-gnome/recipes-gnome/abiword/abiword_3.0.1.bb                                   |  2 --
 meta-gnome/recipes-gnome/gtk-engines/gtk-engines_2.20.2.bb                          |  4 +---
 meta-oe/recipes-extended/mml-widget/gtkmathview_0.8.0.bb                            |  4 +---
 meta-oe/recipes-graphics/fontforge/{fontforge_20150824.bb => fontforge_20161012.bb} |  8 +++-----
 meta-oe/recipes-multimedia/libsdl-mixer/libsdl-mixer_1.2.12.bb                      |  5 +----
 meta-oe/recipes-multimedia/libsdl-mixer/libsdl2-mixer_2.0.1.bb                      |  4 +---
 meta-oe/recipes-support/libsdl-ttf/libsdl-ttf_2.0.11.bb                             |  6 +++---
 meta-oe/recipes-support/libsdl-ttf/libsdl2-ttf_2.0.14.bb                            |  4 +---
 meta-oe/recipes-support/postgresql/postgresql.inc                                   |  4 ++--
 meta-oe/recipes-support/postgresql/postgresql_9.4.10.bb                             | 13 -------------
 meta-oe/recipes-support/postgresql/postgresql_9.4.11.bb                             | 11 +++++++++++
 11 files changed, 24 insertions(+), 41 deletions(-)
 rename meta-oe/recipes-graphics/fontforge/{fontforge_20150824.bb => fontforge_20161012.bb} (86%)
 delete mode 100644 meta-oe/recipes-support/postgresql/postgresql_9.4.10.bb
 create mode 100644 meta-oe/recipes-support/postgresql/postgresql_9.4.11.bb

-- 
2.9.3



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

* [PATCH 01/11] libsdl-mixer: add pkgconfig to inherit and unblacklist
  2017-02-22 23:02 [PATCH 00/11] more rss fixes Andreas Müller
@ 2017-02-22 23:02 ` Andreas Müller
  2017-02-22 23:02 ` [PATCH 02/11] libsdl2-mixer: " Andreas Müller
                   ` (9 subsequent siblings)
  10 siblings, 0 replies; 19+ messages in thread
From: Andreas Müller @ 2017-02-22 23:02 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
 meta-oe/recipes-multimedia/libsdl-mixer/libsdl-mixer_1.2.12.bb | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/meta-oe/recipes-multimedia/libsdl-mixer/libsdl-mixer_1.2.12.bb b/meta-oe/recipes-multimedia/libsdl-mixer/libsdl-mixer_1.2.12.bb
index 06623f8..c83fcc8 100644
--- a/meta-oe/recipes-multimedia/libsdl-mixer/libsdl-mixer_1.2.12.bb
+++ b/meta-oe/recipes-multimedia/libsdl-mixer/libsdl-mixer_1.2.12.bb
@@ -13,7 +13,7 @@ SRC_URI[sha256sum] = "1644308279a975799049e4826af2cfc787cad2abb11aa14562e402521f
 
 S = "${WORKDIR}/SDL_mixer-${PV}"
 
-inherit autotools-brokensep
+inherit autotools-brokensep pkgconfig
 
 EXTRA_AUTORECONF += "--include=acinclude"
 EXTRA_OECONF = "--disable-music-mp3 --enable-music-ogg --enable-music-ogg-tremor LIBS=-L${STAGING_LIBDIR}"
@@ -37,6 +37,3 @@ do_configure () {
         sed -i -e 's:-L/usr/lib:-L${STAGING_LIBDIR}:g' $i
     done
 }
-
-
-PNBLACKLIST[libsdl-mixer] ?= "Fails to build with RSS http://errors.yoctoproject.org/Errors/Details/130592/"
-- 
2.9.3



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

* [PATCH 02/11] libsdl2-mixer: add pkgconfig to inherit and unblacklist
  2017-02-22 23:02 [PATCH 00/11] more rss fixes Andreas Müller
  2017-02-22 23:02 ` [PATCH 01/11] libsdl-mixer: add pkgconfig to inherit and unblacklist Andreas Müller
@ 2017-02-22 23:02 ` Andreas Müller
  2017-02-22 23:02 ` [PATCH 03/11] gtk-engines: add glib-2.0-native to DEPENDS an unblacklist Andreas Müller
                   ` (8 subsequent siblings)
  10 siblings, 0 replies; 19+ messages in thread
From: Andreas Müller @ 2017-02-22 23:02 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
 meta-oe/recipes-multimedia/libsdl-mixer/libsdl2-mixer_2.0.1.bb | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/meta-oe/recipes-multimedia/libsdl-mixer/libsdl2-mixer_2.0.1.bb b/meta-oe/recipes-multimedia/libsdl-mixer/libsdl2-mixer_2.0.1.bb
index 3080d59..8276b44 100644
--- a/meta-oe/recipes-multimedia/libsdl-mixer/libsdl2-mixer_2.0.1.bb
+++ b/meta-oe/recipes-multimedia/libsdl-mixer/libsdl2-mixer_2.0.1.bb
@@ -11,7 +11,7 @@ SRC_URI[sha256sum] = "5a24f62a610249d744cbd8d28ee399d8905db7222bf3bdbc8a8b4a76e5
 
 S = "${WORKDIR}/SDL2_mixer-${PV}"
 
-inherit autotools-brokensep
+inherit autotools-brokensep pkgconfig
 
 EXTRA_AUTORECONF += "--include=acinclude"
 EXTRA_OECONF = "--disable-music-mp3 --enable-music-ogg --enable-music-ogg-tremor LIBS=-L${STAGING_LIBDIR}"
@@ -25,5 +25,3 @@ do_configure_prepend () {
         rm -f acinclude/$i
     done
 }
-
-PNBLACKLIST[libsdl2-mixer] ?= "Fails to build with RSS http://errors.yoctoproject.org/Errors/Details/130659/"
-- 
2.9.3



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

* [PATCH 03/11] gtk-engines: add glib-2.0-native to DEPENDS an unblacklist
  2017-02-22 23:02 [PATCH 00/11] more rss fixes Andreas Müller
  2017-02-22 23:02 ` [PATCH 01/11] libsdl-mixer: add pkgconfig to inherit and unblacklist Andreas Müller
  2017-02-22 23:02 ` [PATCH 02/11] libsdl2-mixer: " Andreas Müller
@ 2017-02-22 23:02 ` Andreas Müller
  2017-02-22 23:02 ` [PATCH 04/11] gtkmathview: libxslt -> libxslt-native in DEPENDS and unblacklist Andreas Müller
                   ` (7 subsequent siblings)
  10 siblings, 0 replies; 19+ messages in thread
From: Andreas Müller @ 2017-02-22 23:02 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
 meta-gnome/recipes-gnome/gtk-engines/gtk-engines_2.20.2.bb | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/meta-gnome/recipes-gnome/gtk-engines/gtk-engines_2.20.2.bb b/meta-gnome/recipes-gnome/gtk-engines/gtk-engines_2.20.2.bb
index 2a0022b..83aa749 100644
--- a/meta-gnome/recipes-gnome/gtk-engines/gtk-engines_2.20.2.bb
+++ b/meta-gnome/recipes-gnome/gtk-engines/gtk-engines_2.20.2.bb
@@ -6,7 +6,7 @@ LICENSE = "LGPLv2.1"
 LIC_FILES_CHKSUM = "file://COPYING;md5=2d5025d4aa3495befef8f17206a5b0a1"
 
 SECTION = "x11/base"
-DEPENDS = "intltool-native gtk+ gettext-native"
+DEPENDS = "intltool-native gtk+ gettext-native glib-2.0-native"
 
 PR = "r3"
 
@@ -53,5 +53,3 @@ SRC_URI += "file://glib-2.32.patch \
             file://substitute-tests.patch"
 SRC_URI[archive.md5sum] = "5deb287bc6075dc21812130604c7dc4f"
 SRC_URI[archive.sha256sum] = "15b680abca6c773ecb85253521fa100dd3b8549befeecc7595b10209d62d66b5"
-
-PNBLACKLIST[gtk-engines] ?= "Fails to build with RSS http://errors.yoctoproject.org/Errors/Details/130602/"
-- 
2.9.3



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

* [PATCH 04/11] gtkmathview: libxslt -> libxslt-native in DEPENDS and unblacklist
  2017-02-22 23:02 [PATCH 00/11] more rss fixes Andreas Müller
                   ` (2 preceding siblings ...)
  2017-02-22 23:02 ` [PATCH 03/11] gtk-engines: add glib-2.0-native to DEPENDS an unblacklist Andreas Müller
@ 2017-02-22 23:02 ` Andreas Müller
  2017-02-22 23:02 ` [PATCH 05/11] abiword: unblacklist - gtkmathview is back Andreas Müller
                   ` (6 subsequent siblings)
  10 siblings, 0 replies; 19+ messages in thread
From: Andreas Müller @ 2017-02-22 23:02 UTC (permalink / raw)
  To: openembedded-devel

There is not exactly a chance to get a useful fedora system without libxslt for
test. So this is yet another guesswork.

Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
 meta-oe/recipes-extended/mml-widget/gtkmathview_0.8.0.bb | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/meta-oe/recipes-extended/mml-widget/gtkmathview_0.8.0.bb b/meta-oe/recipes-extended/mml-widget/gtkmathview_0.8.0.bb
index 1478c48..15935c8 100644
--- a/meta-oe/recipes-extended/mml-widget/gtkmathview_0.8.0.bb
+++ b/meta-oe/recipes-extended/mml-widget/gtkmathview_0.8.0.bb
@@ -1,5 +1,5 @@
 HOMEPAGE = "http://helm.cs.unibo.it/mml-widget/"
-DEPENDS = "t1lib gtk+ popt libxslt libxml2"
+DEPENDS = "t1lib gtk+ popt libxslt-native libxml2"
 
 LICENSE = "LGPLv3"
 LIC_FILES_CHKSUM = "file://COPYING;md5=6a6a8e020838b23406c81b19c1d46df6"
@@ -23,5 +23,3 @@ do_configure_append() {
     # avoid host polution inf pkg-config files
     sed -i "s:${STAGING_DIR_HOST}::g" `find -name '*.pc'`
 }
-
-PNBLACKLIST[gtkmathview] ?= "Fails to build with RSS http://errors.yoctoproject.org/Errors/Details/131636/"
-- 
2.9.3



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

* [PATCH 05/11] abiword: unblacklist - gtkmathview is back
  2017-02-22 23:02 [PATCH 00/11] more rss fixes Andreas Müller
                   ` (3 preceding siblings ...)
  2017-02-22 23:02 ` [PATCH 04/11] gtkmathview: libxslt -> libxslt-native in DEPENDS and unblacklist Andreas Müller
@ 2017-02-22 23:02 ` Andreas Müller
  2017-02-23 10:52   ` Martin Jansa
  2017-02-22 23:02 ` [PATCH 06/11] fontforge: add gettext to inherit and unblacklist Andreas Müller
                   ` (5 subsequent siblings)
  10 siblings, 1 reply; 19+ messages in thread
From: Andreas Müller @ 2017-02-22 23:02 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
 meta-gnome/recipes-gnome/abiword/abiword_3.0.1.bb | 2 --
 1 file changed, 2 deletions(-)

diff --git a/meta-gnome/recipes-gnome/abiword/abiword_3.0.1.bb b/meta-gnome/recipes-gnome/abiword/abiword_3.0.1.bb
index d021147..b08b994 100644
--- a/meta-gnome/recipes-gnome/abiword/abiword_3.0.1.bb
+++ b/meta-gnome/recipes-gnome/abiword/abiword_3.0.1.bb
@@ -125,5 +125,3 @@ python populate_packages_prepend () {
 }
 
 FILES_${PN}-plugin-openxml += "${datadir}/${PN}-${SHRT_VER}/omml_xslt"
-
-PNBLACKLIST[abiword] ?= "Depends on blacklisted gtkmathview"
-- 
2.9.3



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

* [PATCH 06/11] fontforge: add gettext to inherit and unblacklist
  2017-02-22 23:02 [PATCH 00/11] more rss fixes Andreas Müller
                   ` (4 preceding siblings ...)
  2017-02-22 23:02 ` [PATCH 05/11] abiword: unblacklist - gtkmathview is back Andreas Müller
@ 2017-02-22 23:02 ` Andreas Müller
  2017-02-22 23:02 ` [PATCH 07/11] fontforge: update 20150824 -> 20161012 Andreas Müller
                   ` (4 subsequent siblings)
  10 siblings, 0 replies; 19+ messages in thread
From: Andreas Müller @ 2017-02-22 23:02 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
 meta-oe/recipes-graphics/fontforge/fontforge_20150824.bb | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/meta-oe/recipes-graphics/fontforge/fontforge_20150824.bb b/meta-oe/recipes-graphics/fontforge/fontforge_20150824.bb
index 7d30312..75abd5c 100644
--- a/meta-oe/recipes-graphics/fontforge/fontforge_20150824.bb
+++ b/meta-oe/recipes-graphics/fontforge/fontforge_20150824.bb
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = " \
 DEPENDS = "glib-2.0 pango giflib tiff libxml2 jpeg python libtool uthash gnulib"
 DEPENDS_append_class-target = " libxi"
 
-inherit autotools pkgconfig pythonnative distro_features_check
+inherit autotools pkgconfig pythonnative distro_features_check gettext
 
 REQUIRED_DISTRO_FEATURES_append_class-target = " x11"
 
@@ -58,5 +58,3 @@ RDEPENDS_${PN}-python = "python"
 
 # for e.g kde's oxygen-fonts
 BBCLASSEXTEND = "native"
-
-PNBLACKLIST[fontforge] ?= "Fails to build with RSS http://errors.yoctoproject.org/Errors/Details/130639/"
-- 
2.9.3



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

* [PATCH 07/11] fontforge: update 20150824 -> 20161012
  2017-02-22 23:02 [PATCH 00/11] more rss fixes Andreas Müller
                   ` (5 preceding siblings ...)
  2017-02-22 23:02 ` [PATCH 06/11] fontforge: add gettext to inherit and unblacklist Andreas Müller
@ 2017-02-22 23:02 ` Andreas Müller
  2017-02-22 23:02 ` [PATCH 08/11] postgresql: use gettext bbclass and aublacklist Andreas Müller
                   ` (3 subsequent siblings)
  10 siblings, 0 replies; 19+ messages in thread
From: Andreas Müller @ 2017-02-22 23:02 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
 .../fontforge/{fontforge_20150824.bb => fontforge_20161012.bb}        | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-graphics/fontforge/{fontforge_20150824.bb => fontforge_20161012.bb} (96%)

diff --git a/meta-oe/recipes-graphics/fontforge/fontforge_20150824.bb b/meta-oe/recipes-graphics/fontforge/fontforge_20161012.bb
similarity index 96%
rename from meta-oe/recipes-graphics/fontforge/fontforge_20150824.bb
rename to meta-oe/recipes-graphics/fontforge/fontforge_20161012.bb
index 75abd5c..1c3376d 100644
--- a/meta-oe/recipes-graphics/fontforge/fontforge_20150824.bb
+++ b/meta-oe/recipes-graphics/fontforge/fontforge_20161012.bb
@@ -14,8 +14,8 @@ inherit autotools pkgconfig pythonnative distro_features_check gettext
 REQUIRED_DISTRO_FEATURES_append_class-target = " x11"
 
 SRC_URI = "git://github.com/${BPN}/${BPN}.git"
-# tag 20150824
-SRCREV = "07d5ccff2704f8a56f1b3cc6695a4e31f85f88e6"
+# tag 20161012
+SRCREV = "072edb0235cd163d6c3391da9cc3754c3c66f47a"
 S = "${WORKDIR}/git"
 
 EXTRA_OECONF_append_class-native = " with_x=no"
-- 
2.9.3



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

* [PATCH 08/11] postgresql: use gettext bbclass and aublacklist
  2017-02-22 23:02 [PATCH 00/11] more rss fixes Andreas Müller
                   ` (6 preceding siblings ...)
  2017-02-22 23:02 ` [PATCH 07/11] fontforge: update 20150824 -> 20161012 Andreas Müller
@ 2017-02-22 23:02 ` Andreas Müller
  2017-02-22 23:02 ` [PATCH 09/11] postgresql: update 9.4.10 -> 9.4.11 Andreas Müller
                   ` (2 subsequent siblings)
  10 siblings, 0 replies; 19+ messages in thread
From: Andreas Müller @ 2017-02-22 23:02 UTC (permalink / raw)
  To: openembedded-devel

Although I reomeve gettext related packages from my build machine, I could not
reproduce error mentioned. Let's hope my asumption is good enough.

Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
 meta-oe/recipes-support/postgresql/postgresql.inc       | 4 ++--
 meta-oe/recipes-support/postgresql/postgresql_9.4.10.bb | 2 --
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/meta-oe/recipes-support/postgresql/postgresql.inc b/meta-oe/recipes-support/postgresql/postgresql.inc
index 314c23d..dd41188 100644
--- a/meta-oe/recipes-support/postgresql/postgresql.inc
+++ b/meta-oe/recipes-support/postgresql/postgresql.inc
@@ -19,7 +19,7 @@ DESCRIPTION = "\
 "
 HOMEPAGE = "http://www.postgresql.com"
 LICENSE = "BSD"
-DEPENDS = "zlib readline tzcode-native gettext-native"
+DEPENDS = "zlib readline tzcode-native"
 
 ARM_INSTRUCTION_SET = "arm"
 
@@ -37,7 +37,7 @@ LEAD_SONAME = "libpq.so"
 # LDFLAGS for shared libraries
 export LDFLAGS_SL = "${LDFLAGS}"
 
-inherit autotools pkgconfig perlnative pythonnative useradd update-rc.d systemd
+inherit autotools pkgconfig perlnative pythonnative useradd update-rc.d systemd gettext
 
 CFLAGS += "-I${STAGING_INCDIR}/${PYTHON_DIR} -I${STAGING_INCDIR}/tcl8.6"
 
diff --git a/meta-oe/recipes-support/postgresql/postgresql_9.4.10.bb b/meta-oe/recipes-support/postgresql/postgresql_9.4.10.bb
index 4787e57..5498350 100644
--- a/meta-oe/recipes-support/postgresql/postgresql_9.4.10.bb
+++ b/meta-oe/recipes-support/postgresql/postgresql_9.4.10.bb
@@ -9,5 +9,3 @@ SRC_URI += "\
 
 SRC_URI[md5sum] = "1171df0426fe4da5a29f6cdaf2e8b812"
 SRC_URI[sha256sum] = "7061678bed1981c681ce54c76b98b6ec17743f090a9775104a45e7e1a8826ecf"
-
-PNBLACKLIST[postgresql] ?= "Fails to build with RSS http://errors.yoctoproject.org/Errors/Details/131632/"
-- 
2.9.3



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

* [PATCH 09/11] postgresql: update 9.4.10 -> 9.4.11
  2017-02-22 23:02 [PATCH 00/11] more rss fixes Andreas Müller
                   ` (7 preceding siblings ...)
  2017-02-22 23:02 ` [PATCH 08/11] postgresql: use gettext bbclass and aublacklist Andreas Müller
@ 2017-02-22 23:02 ` Andreas Müller
  2017-02-22 23:02 ` [PATCH 10/11] libsdl2-ttf: add pkgconfig to inherit and unblacklist Andreas Müller
  2017-02-22 23:02 ` [PATCH 11/11] libsdl-ttf: fix " Andreas Müller
  10 siblings, 0 replies; 19+ messages in thread
From: Andreas Müller @ 2017-02-22 23:02 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
 meta-oe/recipes-support/postgresql/postgresql_9.4.10.bb | 11 -----------
 meta-oe/recipes-support/postgresql/postgresql_9.4.11.bb | 11 +++++++++++
 2 files changed, 11 insertions(+), 11 deletions(-)
 delete mode 100644 meta-oe/recipes-support/postgresql/postgresql_9.4.10.bb
 create mode 100644 meta-oe/recipes-support/postgresql/postgresql_9.4.11.bb

diff --git a/meta-oe/recipes-support/postgresql/postgresql_9.4.10.bb b/meta-oe/recipes-support/postgresql/postgresql_9.4.10.bb
deleted file mode 100644
index 5498350..0000000
--- a/meta-oe/recipes-support/postgresql/postgresql_9.4.10.bb
+++ /dev/null
@@ -1,11 +0,0 @@
-require postgresql.inc
-
-LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=3a9c1120056a102a8c8c4013cd828dce"
-
-SRC_URI += "\
-    file://remove.autoconf.version.check.patch \
-    file://not-check-libperl.patch \
-"
-
-SRC_URI[md5sum] = "1171df0426fe4da5a29f6cdaf2e8b812"
-SRC_URI[sha256sum] = "7061678bed1981c681ce54c76b98b6ec17743f090a9775104a45e7e1a8826ecf"
diff --git a/meta-oe/recipes-support/postgresql/postgresql_9.4.11.bb b/meta-oe/recipes-support/postgresql/postgresql_9.4.11.bb
new file mode 100644
index 0000000..e4d2eda
--- /dev/null
+++ b/meta-oe/recipes-support/postgresql/postgresql_9.4.11.bb
@@ -0,0 +1,11 @@
+require postgresql.inc
+
+LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=81b69ddb31a8be66baafd14a90146ee2"
+
+SRC_URI += "\
+    file://remove.autoconf.version.check.patch \
+    file://not-check-libperl.patch \
+"
+
+SRC_URI[md5sum] = "2fee03f2034034dbfcb3321a0bb0f829"
+SRC_URI[sha256sum] = "e3eb51d045c180b03d2de1f0c3af9356e10be49448e966ca01dfc2c6d1cc9d23"
-- 
2.9.3



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

* [PATCH 10/11] libsdl2-ttf: add pkgconfig to inherit and unblacklist
  2017-02-22 23:02 [PATCH 00/11] more rss fixes Andreas Müller
                   ` (8 preceding siblings ...)
  2017-02-22 23:02 ` [PATCH 09/11] postgresql: update 9.4.10 -> 9.4.11 Andreas Müller
@ 2017-02-22 23:02 ` Andreas Müller
  2017-02-22 23:02 ` [PATCH 11/11] libsdl-ttf: fix " Andreas Müller
  10 siblings, 0 replies; 19+ messages in thread
From: Andreas Müller @ 2017-02-22 23:02 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
 meta-oe/recipes-support/libsdl-ttf/libsdl2-ttf_2.0.14.bb | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/meta-oe/recipes-support/libsdl-ttf/libsdl2-ttf_2.0.14.bb b/meta-oe/recipes-support/libsdl-ttf/libsdl2-ttf_2.0.14.bb
index da74fba..f2441f9 100644
--- a/meta-oe/recipes-support/libsdl-ttf/libsdl2-ttf_2.0.14.bb
+++ b/meta-oe/recipes-support/libsdl-ttf/libsdl2-ttf_2.0.14.bb
@@ -13,7 +13,7 @@ SRC_URI[sha256sum] = "34db5e20bcf64e7071fe9ae25acaa7d72bdc4f11ab3ce59acc768ab62f
 
 S = "${WORKDIR}/SDL2_ttf-${PV}"
 
-inherit autotools
+inherit autotools pkgconfig
 
 do_configure_prepend() {
     touch ${S}/NEWS ${S}/README ${S}/AUTHORS ${S}/ChangeLog
@@ -25,5 +25,3 @@ do_configure_prepend() {
         rm -f ${S}/acinclude/$i
     done
 }
-
-PNBLACKLIST[libsdl2-ttf] ?= "Fails to build with RSS http://errors.yoctoproject.org/Errors/Details/130656/"
-- 
2.9.3



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

* [PATCH 11/11] libsdl-ttf: fix and unblacklist
  2017-02-22 23:02 [PATCH 00/11] more rss fixes Andreas Müller
                   ` (9 preceding siblings ...)
  2017-02-22 23:02 ` [PATCH 10/11] libsdl2-ttf: add pkgconfig to inherit and unblacklist Andreas Müller
@ 2017-02-22 23:02 ` Andreas Müller
  10 siblings, 0 replies; 19+ messages in thread
From: Andreas Müller @ 2017-02-22 23:02 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
 meta-oe/recipes-support/libsdl-ttf/libsdl-ttf_2.0.11.bb | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta-oe/recipes-support/libsdl-ttf/libsdl-ttf_2.0.11.bb b/meta-oe/recipes-support/libsdl-ttf/libsdl-ttf_2.0.11.bb
index 091d6ef..d8b378f 100644
--- a/meta-oe/recipes-support/libsdl-ttf/libsdl-ttf_2.0.11.bb
+++ b/meta-oe/recipes-support/libsdl-ttf/libsdl-ttf_2.0.11.bb
@@ -12,7 +12,9 @@ SRC_URI[sha256sum] = "724cd895ecf4da319a3ef164892b72078bd92632a5d812111261cde248
 
 S = "${WORKDIR}/SDL_ttf-${PV}"
 
-inherit autotools
+inherit autotools pkgconfig
+
+LDFLAGS += "-lm"
 
 do_configure_prepend() {
     # make autoreconf happy
@@ -25,5 +27,3 @@ do_configure_prepend() {
         rm -f ${S}/acinclude/$i
     done
 }
-
-PNBLACKLIST[libsdl-ttf] ?= "Fails to build with RSS http://errors.yoctoproject.org/Errors/Details/130598/"
-- 
2.9.3



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

* Re: [PATCH 05/11] abiword: unblacklist - gtkmathview is back
  2017-02-22 23:02 ` [PATCH 05/11] abiword: unblacklist - gtkmathview is back Andreas Müller
@ 2017-02-23 10:52   ` Martin Jansa
  2017-02-23 12:20     ` Andreas Müller
  0 siblings, 1 reply; 19+ messages in thread
From: Martin Jansa @ 2017-02-23 10:52 UTC (permalink / raw)
  To: Andreas Müller; +Cc: openembedded-devel

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

On Thu, Feb 23, 2017 at 12:02:44AM +0100, Andreas Müller wrote:
> Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>

Thanks for another round of fixes!

All looks good except this one, see:
http://logs.nslu2-linux.org/buildlogs/oe/world/pyro/log.report.20170223_005128.log

> ---
>  meta-gnome/recipes-gnome/abiword/abiword_3.0.1.bb | 2 --
>  1 file changed, 2 deletions(-)
> 
> diff --git a/meta-gnome/recipes-gnome/abiword/abiword_3.0.1.bb b/meta-gnome/recipes-gnome/abiword/abiword_3.0.1.bb
> index d021147..b08b994 100644
> --- a/meta-gnome/recipes-gnome/abiword/abiword_3.0.1.bb
> +++ b/meta-gnome/recipes-gnome/abiword/abiword_3.0.1.bb
> @@ -125,5 +125,3 @@ python populate_packages_prepend () {
>  }
>  
>  FILES_${PN}-plugin-openxml += "${datadir}/${PN}-${SHRT_VER}/omml_xslt"
> -
> -PNBLACKLIST[abiword] ?= "Depends on blacklisted gtkmathview"
> -- 
> 2.9.3
> 
> -- 
> _______________________________________________
> 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: 201 bytes --]

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

* Re: [PATCH 05/11] abiword: unblacklist - gtkmathview is back
  2017-02-23 10:52   ` Martin Jansa
@ 2017-02-23 12:20     ` Andreas Müller
  2017-02-23 12:59       ` Martin Jansa
  0 siblings, 1 reply; 19+ messages in thread
From: Andreas Müller @ 2017-02-23 12:20 UTC (permalink / raw)
  To: Martin Jansa; +Cc: openembedded-devel@lists.openembedded.org

On Thu, Feb 23, 2017 at 11:52 AM, Martin Jansa <martin.jansa@gmail.com> wrote:
> On Thu, Feb 23, 2017 at 12:02:44AM +0100, Andreas Müller wrote:
>> Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
>
> Thanks for another round of fixes!
>
> All looks good except this one, see:
> http://logs.nslu2-linux.org/buildlogs/oe/world/pyro/log.report.20170223_005128.log
>
The link does not tell why abiword's do_configure fails - can you give details?

Andreas


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

* Re: [PATCH 05/11] abiword: unblacklist - gtkmathview is back
  2017-02-23 12:20     ` Andreas Müller
@ 2017-02-23 12:59       ` Martin Jansa
  2017-02-23 13:31         ` Andreas Müller
  0 siblings, 1 reply; 19+ messages in thread
From: Martin Jansa @ 2017-02-23 12:59 UTC (permalink / raw)
  To: Andreas Müller; +Cc: openembedded-devel@lists.openembedded.org

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

On Thu, Feb 23, 2017 at 01:20:05PM +0100, Andreas Müller wrote:
> On Thu, Feb 23, 2017 at 11:52 AM, Martin Jansa <martin.jansa@gmail.com> wrote:
> > On Thu, Feb 23, 2017 at 12:02:44AM +0100, Andreas Müller wrote:
> >> Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
> >
> > Thanks for another round of fixes!
> >
> > All looks good except this one, see:
> > http://logs.nslu2-linux.org/buildlogs/oe/world/pyro/log.report.20170223_005128.log
> >
> The link does not tell why abiword's do_configure fails - can you give details?

The link shows:
http://errors.yoctoproject.org/Errors/Build/32829/
which leads to:
http://errors.yoctoproject.org/Errors/Details/133989/

configure: error: Package requirements (
  fribidi >= 0.10.4
  glib-2.0 >= 2.6.0 gthread-2.0 >= 2.6.0 gobject-2.0 >= 2.6.0
  libgsf-1 >= 1.14.18
  wv-1.0 >= 1.2.0
  libxslt
  gio-2.0 
  cairo-pdf cairo-ps pangocairo
  gtk+-2.0 >= 2.12.0 gtk+-unix-print-2.0 librsvg-2.0 >= 2.16.0 cairo-fc
 x11) were not met:

No package 'libxslt' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables DEPS_CFLAGS

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

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

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

* Re: [PATCH 05/11] abiword: unblacklist - gtkmathview is back
  2017-02-23 12:59       ` Martin Jansa
@ 2017-02-23 13:31         ` Andreas Müller
  2017-02-23 14:32           ` Martin Jansa
  0 siblings, 1 reply; 19+ messages in thread
From: Andreas Müller @ 2017-02-23 13:31 UTC (permalink / raw)
  To: Martin Jansa; +Cc: openembedded-devel@lists.openembedded.org

On Thu, Feb 23, 2017 at 1:59 PM, Martin Jansa <martin.jansa@gmail.com> wrote:
> On Thu, Feb 23, 2017 at 01:20:05PM +0100, Andreas Müller wrote:
>> On Thu, Feb 23, 2017 at 11:52 AM, Martin Jansa <martin.jansa@gmail.com> wrote:
>> > On Thu, Feb 23, 2017 at 12:02:44AM +0100, Andreas Müller wrote:
>> >> Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
>> >
>> > Thanks for another round of fixes!
>> >
>> > All looks good except this one, see:
>> > http://logs.nslu2-linux.org/buildlogs/oe/world/pyro/log.report.20170223_005128.log
>> >
>> The link does not tell why abiword's do_configure fails - can you give details?
>
> The link shows:
> http://errors.yoctoproject.org/Errors/Build/32829/
> which leads to:
> http://errors.yoctoproject.org/Errors/Details/133989/
>
> configure: error: Package requirements (
>   fribidi >= 0.10.4
>   glib-2.0 >= 2.6.0 gthread-2.0 >= 2.6.0 gobject-2.0 >= 2.6.0
>   libgsf-1 >= 1.14.18
>   wv-1.0 >= 1.2.0
>   libxslt
>   gio-2.0
>   cairo-pdf cairo-ps pangocairo
>   gtk+-2.0 >= 2.12.0 gtk+-unix-print-2.0 librsvg-2.0 >= 2.16.0 cairo-fc
>  x11) were not met:
>
> No package 'libxslt' found
>
Thanks - have overseen the links. This is the 'fedora is useless
without libxslt' problem - will send out V2 for abiword.

Andreas


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

* Re: [PATCH 05/11] abiword: unblacklist - gtkmathview is back
  2017-02-23 13:31         ` Andreas Müller
@ 2017-02-23 14:32           ` Martin Jansa
  2017-02-23 15:07             ` Andreas Müller
  0 siblings, 1 reply; 19+ messages in thread
From: Martin Jansa @ 2017-02-23 14:32 UTC (permalink / raw)
  To: Andreas Müller; +Cc: openembedded-devel@lists.openembedded.org

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

On Thu, Feb 23, 2017 at 02:31:37PM +0100, Andreas Müller wrote:
> On Thu, Feb 23, 2017 at 1:59 PM, Martin Jansa <martin.jansa@gmail.com> wrote:
> > On Thu, Feb 23, 2017 at 01:20:05PM +0100, Andreas Müller wrote:
> >> On Thu, Feb 23, 2017 at 11:52 AM, Martin Jansa <martin.jansa@gmail.com> wrote:
> >> > On Thu, Feb 23, 2017 at 12:02:44AM +0100, Andreas Müller wrote:
> >> >> Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
> >> >
> >> > Thanks for another round of fixes!
> >> >
> >> > All looks good except this one, see:
> >> > http://logs.nslu2-linux.org/buildlogs/oe/world/pyro/log.report.20170223_005128.log
> >> >
> >> The link does not tell why abiword's do_configure fails - can you give details?
> >
> > The link shows:
> > http://errors.yoctoproject.org/Errors/Build/32829/
> > which leads to:
> > http://errors.yoctoproject.org/Errors/Details/133989/
> >
> > configure: error: Package requirements (
> >   fribidi >= 0.10.4
> >   glib-2.0 >= 2.6.0 gthread-2.0 >= 2.6.0 gobject-2.0 >= 2.6.0
> >   libgsf-1 >= 1.14.18
> >   wv-1.0 >= 1.2.0
> >   libxslt
> >   gio-2.0
> >   cairo-pdf cairo-ps pangocairo
> >   gtk+-2.0 >= 2.12.0 gtk+-unix-print-2.0 librsvg-2.0 >= 2.16.0 cairo-fc
> >  x11) were not met:
> >
> > No package 'libxslt' found
> >
> Thanks - have overseen the links. This is the 'fedora is useless
> without libxslt' problem - will send out V2 for abiword.

Thanks!

Isn't this the libxslt for target? I wonder why you're having issues
reproducing these failures when our builds should be very similar with
RSS.

Of course missing glib-2.0-native dependency is different case, but
target libxslt? Does it silently fallback to host's libxslt?

Regards,

> 
> Andreas

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

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

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

* Re: [PATCH 05/11] abiword: unblacklist - gtkmathview is back
  2017-02-23 14:32           ` Martin Jansa
@ 2017-02-23 15:07             ` Andreas Müller
  2017-02-23 17:16               ` Andreas Müller
  0 siblings, 1 reply; 19+ messages in thread
From: Andreas Müller @ 2017-02-23 15:07 UTC (permalink / raw)
  To: Martin Jansa; +Cc: openembedded-devel@lists.openembedded.org

On Thu, Feb 23, 2017 at 3:32 PM, Martin Jansa <martin.jansa@gmail.com> wrote:
> On Thu, Feb 23, 2017 at 02:31:37PM +0100, Andreas Müller wrote:
>> On Thu, Feb 23, 2017 at 1:59 PM, Martin Jansa <martin.jansa@gmail.com> wrote:
>> > On Thu, Feb 23, 2017 at 01:20:05PM +0100, Andreas Müller wrote:
>> >> On Thu, Feb 23, 2017 at 11:52 AM, Martin Jansa <martin.jansa@gmail.com> wrote:
>> >> > On Thu, Feb 23, 2017 at 12:02:44AM +0100, Andreas Müller wrote:
>> >> >> Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
>> >> >
>> >> > Thanks for another round of fixes!
>> >> >
>> >> > All looks good except this one, see:
>> >> > http://logs.nslu2-linux.org/buildlogs/oe/world/pyro/log.report.20170223_005128.log
>> >> >
>> >> The link does not tell why abiword's do_configure fails - can you give details?
>> >
>> > The link shows:
>> > http://errors.yoctoproject.org/Errors/Build/32829/
>> > which leads to:
>> > http://errors.yoctoproject.org/Errors/Details/133989/
>> >
>> > configure: error: Package requirements (
>> >   fribidi >= 0.10.4
>> >   glib-2.0 >= 2.6.0 gthread-2.0 >= 2.6.0 gobject-2.0 >= 2.6.0
>> >   libgsf-1 >= 1.14.18
>> >   wv-1.0 >= 1.2.0
>> >   libxslt
>> >   gio-2.0
>> >   cairo-pdf cairo-ps pangocairo
>> >   gtk+-2.0 >= 2.12.0 gtk+-unix-print-2.0 librsvg-2.0 >= 2.16.0 cairo-fc
>> >  x11) were not met:
>> >
>> > No package 'libxslt' found
>> >
>> Thanks - have overseen the links. This is the 'fedora is useless
>> without libxslt' problem - will send out V2 for abiword.
>
> Thanks!
>
> Isn't this the libxslt for target? I wonder why you're having issues
> reproducing these failures when our builds should be very similar with
> RSS.
>
> Of course missing glib-2.0-native dependency is different case, but
> target libxslt? Does it silently fallback to host's libxslt?
>
You are right - this is different - wonder what made me build without
errors. In configure.ac libxslt is searched by PKG_CHECK_MODULES
(->pkg-config). I ran on my build machine:

| pkg-config --cflags libxslt
| -> Package libxslt was not found in the pkg-config search path.

And the recipe has pkgconfig in inherit - strange.

Have morty-like environment active at the moment - so I cannot check
now. But this needs further investigation.

Andreas


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

* Re: [PATCH 05/11] abiword: unblacklist - gtkmathview is back
  2017-02-23 15:07             ` Andreas Müller
@ 2017-02-23 17:16               ` Andreas Müller
  0 siblings, 0 replies; 19+ messages in thread
From: Andreas Müller @ 2017-02-23 17:16 UTC (permalink / raw)
  To: Martin Jansa; +Cc: openembedded-devel@lists.openembedded.org

On Thu, Feb 23, 2017 at 4:07 PM, Andreas Müller
<schnitzeltony@googlemail.com> wrote:
> On Thu, Feb 23, 2017 at 3:32 PM, Martin Jansa <martin.jansa@gmail.com> wrote:
>> On Thu, Feb 23, 2017 at 02:31:37PM +0100, Andreas Müller wrote:
>>> On Thu, Feb 23, 2017 at 1:59 PM, Martin Jansa <martin.jansa@gmail.com> wrote:
>>> > On Thu, Feb 23, 2017 at 01:20:05PM +0100, Andreas Müller wrote:
>>> >> On Thu, Feb 23, 2017 at 11:52 AM, Martin Jansa <martin.jansa@gmail.com> wrote:
>>> >> > On Thu, Feb 23, 2017 at 12:02:44AM +0100, Andreas Müller wrote:
>>> >> >> Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
>>> >> >
>>> >> > Thanks for another round of fixes!
>>> >> >
>>> >> > All looks good except this one, see:
>>> >> > http://logs.nslu2-linux.org/buildlogs/oe/world/pyro/log.report.20170223_005128.log
>>> >> >
>>> >> The link does not tell why abiword's do_configure fails - can you give details?
>>> >
>>> > The link shows:
>>> > http://errors.yoctoproject.org/Errors/Build/32829/
>>> > which leads to:
>>> > http://errors.yoctoproject.org/Errors/Details/133989/
>>> >
>>> > configure: error: Package requirements (
>>> >   fribidi >= 0.10.4
>>> >   glib-2.0 >= 2.6.0 gthread-2.0 >= 2.6.0 gobject-2.0 >= 2.6.0
>>> >   libgsf-1 >= 1.14.18
>>> >   wv-1.0 >= 1.2.0
>>> >   libxslt
>>> >   gio-2.0
>>> >   cairo-pdf cairo-ps pangocairo
>>> >   gtk+-2.0 >= 2.12.0 gtk+-unix-print-2.0 librsvg-2.0 >= 2.16.0 cairo-fc
>>> >  x11) were not met:
>>> >
>>> > No package 'libxslt' found
>>> >
>>> Thanks - have overseen the links. This is the 'fedora is useless
>>> without libxslt' problem - will send out V2 for abiword.
>>
>> Thanks!
>>
>> Isn't this the libxslt for target? I wonder why you're having issues
>> reproducing these failures when our builds should be very similar with
>> RSS.
>>
>> Of course missing glib-2.0-native dependency is different case, but
>> target libxslt? Does it silently fallback to host's libxslt?
>>
> You are right - this is different - wonder what made me build without
> errors. In configure.ac libxslt is searched by PKG_CHECK_MODULES
> (->pkg-config). I ran on my build machine:
>
> | pkg-config --cflags libxslt
> | -> Package libxslt was not found in the pkg-config search path.
>
> And the recipe has pkgconfig in inherit - strange.
>
> Have morty-like environment active at the moment - so I cannot check
> now. But this needs further investigation.
>
One big difference on my machine compared to your autobuilder: I have
meta-office in my layers. That causes different
depemndencies/pacakgeconfigs. I bet removing meta-office will lead me
to this error.

Andreas


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

end of thread, other threads:[~2017-02-23 17:16 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-22 23:02 [PATCH 00/11] more rss fixes Andreas Müller
2017-02-22 23:02 ` [PATCH 01/11] libsdl-mixer: add pkgconfig to inherit and unblacklist Andreas Müller
2017-02-22 23:02 ` [PATCH 02/11] libsdl2-mixer: " Andreas Müller
2017-02-22 23:02 ` [PATCH 03/11] gtk-engines: add glib-2.0-native to DEPENDS an unblacklist Andreas Müller
2017-02-22 23:02 ` [PATCH 04/11] gtkmathview: libxslt -> libxslt-native in DEPENDS and unblacklist Andreas Müller
2017-02-22 23:02 ` [PATCH 05/11] abiword: unblacklist - gtkmathview is back Andreas Müller
2017-02-23 10:52   ` Martin Jansa
2017-02-23 12:20     ` Andreas Müller
2017-02-23 12:59       ` Martin Jansa
2017-02-23 13:31         ` Andreas Müller
2017-02-23 14:32           ` Martin Jansa
2017-02-23 15:07             ` Andreas Müller
2017-02-23 17:16               ` Andreas Müller
2017-02-22 23:02 ` [PATCH 06/11] fontforge: add gettext to inherit and unblacklist Andreas Müller
2017-02-22 23:02 ` [PATCH 07/11] fontforge: update 20150824 -> 20161012 Andreas Müller
2017-02-22 23:02 ` [PATCH 08/11] postgresql: use gettext bbclass and aublacklist Andreas Müller
2017-02-22 23:02 ` [PATCH 09/11] postgresql: update 9.4.10 -> 9.4.11 Andreas Müller
2017-02-22 23:02 ` [PATCH 10/11] libsdl2-ttf: add pkgconfig to inherit and unblacklist Andreas Müller
2017-02-22 23:02 ` [PATCH 11/11] libsdl-ttf: fix " Andreas Müller

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.