All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/9] poppler: upgrade 0.82.0 -> 0.84.0
@ 2020-01-09 21:05 Andreas Müller
  2020-01-09 21:05 ` [PATCH 2/9] xfce4-terminal: upgrade 0.8.9 -> 0.8.9.1 Andreas Müller
                   ` (8 more replies)
  0 siblings, 9 replies; 16+ messages in thread
From: Andreas Müller @ 2020-01-09 21:05 UTC (permalink / raw)
  To: openembedded-devel

From announcements:

Release 0.84.0:
core:
 * Fix crash when converting from Unicode to ASCII-7
 * Splash::scaleImageYdXu: Protect against crash if srcWidth is too big
 * JBIG2Stream: fix potential crash in malformed documents
 * JBIG2Stream: fix leak in reset() if called several times
 * Internal code improvements

utils:
 * pdfimages: Add error message if first page is larger then number of pages.
 * pdfinfo: Improved paper size recognition
 * pdfsig: Fix exit code when dumping signatures
 * pdftocairo: Error out when even/odd selects 0 pages
 * pdftohtml: Fix memory leak
 * pdftoppm: Add an option to scale before rotate
 * pdftoppm: Add -hide-annotations option
 * pdftoppm: Error out when even/odd selects 0 pages
 * pdftops: Improve -optimizecolorspace

qt5:
 * Code cleanups

glib:
 * Fix compiler warnings

Release 0.83.0:
core:
 * Improve when a file is recognized as Linearized
 * Improve const-ness of the code
 * Make code a bit more readable/maintanable
 * Fix uninitialized memory uses in broken files

utils:
 * pdffonts: Make code a bit more readable/maintanable
 * pdftohtml: Make code a bit more readable/maintanable

qt5:
 * Remove a bunch of unused internal functions
 * trUtf8 -> tr (less warnings)

build system:
 * make-glib-api-docs: switch to python3

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../recipes-support/poppler/poppler/basename-include.patch    | 4 ++--
 .../poppler/{poppler_0.82.0.bb => poppler_0.84.0.bb}          | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)
 rename meta-oe/recipes-support/poppler/{poppler_0.82.0.bb => poppler_0.84.0.bb} (93%)

diff --git a/meta-oe/recipes-support/poppler/poppler/basename-include.patch b/meta-oe/recipes-support/poppler/poppler/basename-include.patch
index c18a5f5c0..3d6d7a8f1 100644
--- a/meta-oe/recipes-support/poppler/poppler/basename-include.patch
+++ b/meta-oe/recipes-support/poppler/poppler/basename-include.patch
@@ -16,8 +16,8 @@ index 830c1c80..e93eb368 100644
 --- a/goo/gbasename.cc
 +++ b/goo/gbasename.cc
 @@ -46,6 +46,10 @@
- #include <stdlib.h>
- #include <string.h>
+ #include <cstdlib>
+ #include <cstring>
  
 +#if !defined(__GLIBC__)
 +#define basename(src) (strrchr(src,'/') ? strrchr(src,'/')+1 : src)
diff --git a/meta-oe/recipes-support/poppler/poppler_0.82.0.bb b/meta-oe/recipes-support/poppler/poppler_0.84.0.bb
similarity index 93%
rename from meta-oe/recipes-support/poppler/poppler_0.82.0.bb
rename to meta-oe/recipes-support/poppler/poppler_0.84.0.bb
index 37f859353..0f3e50571 100644
--- a/meta-oe/recipes-support/poppler/poppler_0.82.0.bb
+++ b/meta-oe/recipes-support/poppler/poppler_0.84.0.bb
@@ -6,8 +6,8 @@ SRC_URI = "http://poppler.freedesktop.org/${BP}.tar.xz \
            file://0001-Do-not-overwrite-all-our-build-flags.patch \
            file://basename-include.patch \
            "
-SRC_URI[md5sum] = "4d6106c2382c5e66072e0b355acc3640"
-SRC_URI[sha256sum] = "234f8e573ea57fb6a008e7c1e56bfae1af5d1adf0e65f47555e1ae103874e4df"
+SRC_URI[md5sum] = "e14a8aca8809908ad4364c32c17bcb92"
+SRC_URI[sha256sum] = "c7a130da743b38a548f7a21fe5940506fb1949f4ebdd3209f0e5b302fa139731"
 
 DEPENDS = "fontconfig zlib cairo lcms glib-2.0"
 
-- 
2.21.0



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

* [PATCH 2/9] xfce4-terminal: upgrade 0.8.9 -> 0.8.9.1
  2020-01-09 21:05 [PATCH 1/9] poppler: upgrade 0.82.0 -> 0.84.0 Andreas Müller
@ 2020-01-09 21:05 ` Andreas Müller
  2020-01-09 21:05 ` [PATCH 3/9] mutter: upgrade 3.34.2 -> 3.34.3 Andreas Müller
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 16+ messages in thread
From: Andreas Müller @ 2020-01-09 21:05 UTC (permalink / raw)
  To: openembedded-devel

This is a hotfix release for 0.8.9:

Release notes for 0.8.9.1
=========================
This is a bug-fix release featuring only one change.

0.8.9.1
=======
- Fix "Open terminal here" functionality that was broken in release
0.8.9 (bug #16307)

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../{xfce4-terminal_0.8.9.bb => xfce4-terminal_0.8.9.1.bb}    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-xfce/recipes-apps/xfce4-terminal/{xfce4-terminal_0.8.9.bb => xfce4-terminal_0.8.9.1.bb} (70%)

diff --git a/meta-xfce/recipes-apps/xfce4-terminal/xfce4-terminal_0.8.9.bb b/meta-xfce/recipes-apps/xfce4-terminal/xfce4-terminal_0.8.9.1.bb
similarity index 70%
rename from meta-xfce/recipes-apps/xfce4-terminal/xfce4-terminal_0.8.9.bb
rename to meta-xfce/recipes-apps/xfce4-terminal/xfce4-terminal_0.8.9.1.bb
index 493758c18..4bdd4cbf2 100644
--- a/meta-xfce/recipes-apps/xfce4-terminal/xfce4-terminal_0.8.9.bb
+++ b/meta-xfce/recipes-apps/xfce4-terminal/xfce4-terminal_0.8.9.1.bb
@@ -8,7 +8,7 @@ inherit xfce-app
 FILES_${PN} += "${datadir}/xfce4 \
                 ${datadir}/gnome-control-center"
 
-SRC_URI[md5sum] = "cb40a6cc5b3e35fa4d68f1b702f11027"
-SRC_URI[sha256sum] = "247683a51a964cfaa6b1e92030afe9f782efebfcb550a464170b53eb94216795"
+SRC_URI[md5sum] = "cb995e4891a3c547bf133b31e4840d01"
+SRC_URI[sha256sum] = "0deb0d06e50a8a41fb00e2c3773f0793882cb9f073ae16ead887bb9681c514cd"
 
 RRECOMMENDS_${PN} += "vte-prompt"
-- 
2.21.0



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

* [PATCH 3/9] mutter: upgrade 3.34.2 -> 3.34.3
  2020-01-09 21:05 [PATCH 1/9] poppler: upgrade 0.82.0 -> 0.84.0 Andreas Müller
  2020-01-09 21:05 ` [PATCH 2/9] xfce4-terminal: upgrade 0.8.9 -> 0.8.9.1 Andreas Müller
@ 2020-01-09 21:05 ` Andreas Müller
  2020-01-09 21:05 ` [PATCH 4/9] gnome-shell: " Andreas Müller
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 16+ messages in thread
From: Andreas Müller @ 2020-01-09 21:05 UTC (permalink / raw)
  To: openembedded-devel

From announcement:

* Fix window recording on HiDPI [Pascal; !976]
* Fix top-left pixel being insensitive to clicks [Sebastian; #893]

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../mutter/{mutter_3.34.2.bb => mutter_3.34.3.bb}             | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-gnome/recipes-gnome/mutter/{mutter_3.34.2.bb => mutter_3.34.3.bb} (95%)

diff --git a/meta-gnome/recipes-gnome/mutter/mutter_3.34.2.bb b/meta-gnome/recipes-gnome/mutter/mutter_3.34.3.bb
similarity index 95%
rename from meta-gnome/recipes-gnome/mutter/mutter_3.34.2.bb
rename to meta-gnome/recipes-gnome/mutter/mutter_3.34.3.bb
index 992915bb7..9afa269ed 100644
--- a/meta-gnome/recipes-gnome/mutter/mutter_3.34.2.bb
+++ b/meta-gnome/recipes-gnome/mutter/mutter_3.34.3.bb
@@ -22,8 +22,8 @@ GNOMEBASEBUILDCLASS = "meson"
 
 inherit gnomebase gsettings gobject-introspection gettext upstream-version-is-even features_check
 
-SRC_URI[archive.md5sum] = "4515ccdb762a243d65757f5ab073d206"
-SRC_URI[archive.sha256sum] = "2d6f7763193766d4652d43d0d0de2e49e60ca571eca0a7f1e6341fbd67f90b2d"
+SRC_URI[archive.md5sum] = "c3ee46ae7b84d9d0e8dd3f9e04a61ab1"
+SRC_URI[archive.sha256sum] = "cdf57ddd0bc35db952b732b77c796760e65d1ce2f7df31273e5c8d4759ed4a89"
 SRC_URI += "file://0001-cogl-Fix-GLES2-fallback.patch"
 
 # x11 is still manadatory - see meson.build
-- 
2.21.0



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

* [PATCH 4/9] gnome-shell: upgrade 3.34.2 -> 3.34.3
  2020-01-09 21:05 [PATCH 1/9] poppler: upgrade 0.82.0 -> 0.84.0 Andreas Müller
  2020-01-09 21:05 ` [PATCH 2/9] xfce4-terminal: upgrade 0.8.9 -> 0.8.9.1 Andreas Müller
  2020-01-09 21:05 ` [PATCH 3/9] mutter: upgrade 3.34.2 -> 3.34.3 Andreas Müller
@ 2020-01-09 21:05 ` Andreas Müller
  2020-01-09 21:05 ` [PATCH 5/9] evolution-data-server: " Andreas Müller
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 16+ messages in thread
From: Andreas Müller @ 2020-01-09 21:05 UTC (permalink / raw)
  To: openembedded-devel

Frmo announcement:

* polkitAgent: Fix confirming via keyboard when password-less [Jonas; #2066]
* Misc. bug fixes and cleanups [Florian; !906]

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../{gnome-shell_3.34.2.bb => gnome-shell_3.34.3.bb}          | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-gnome/recipes-gnome/gnome-shell/{gnome-shell_3.34.2.bb => gnome-shell_3.34.3.bb} (91%)

diff --git a/meta-gnome/recipes-gnome/gnome-shell/gnome-shell_3.34.2.bb b/meta-gnome/recipes-gnome/gnome-shell/gnome-shell_3.34.3.bb
similarity index 91%
rename from meta-gnome/recipes-gnome/gnome-shell/gnome-shell_3.34.2.bb
rename to meta-gnome/recipes-gnome/gnome-shell/gnome-shell_3.34.3.bb
index cd8b3ad0a..463fbf46f 100644
--- a/meta-gnome/recipes-gnome/gnome-shell/gnome-shell_3.34.2.bb
+++ b/meta-gnome/recipes-gnome/gnome-shell/gnome-shell_3.34.3.bb
@@ -30,8 +30,8 @@ GTKDOC_MESON_OPTION = "gtk_doc"
 REQUIRED_DISTRO_FEATURES += "gobject-introspection-data"
 UNKNOWN_CONFIGURE_WHITELIST_append = " introspection"
 
-SRC_URI[archive.md5sum] = "b01d6772917148c81d472584f6b36c83"
-SRC_URI[archive.sha256sum] = "703264db2fafe02d1db53d701cb99a4a757c46e7569e7b9d690dda009fc03b4d"
+SRC_URI[archive.md5sum] = "a0f7d78f57616076890f0e3b7f12196a"
+SRC_URI[archive.sha256sum] = "2474bef386c5a47d7be285aa22e24125c46ba5f860a25a1a36a90de4e456bd8a"
 
 PACKAGECONFIG ??= "bluetooth nm ${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}"
 PACKAGECONFIG[bluetooth] = ",,gnome-bluetooth"
-- 
2.21.0



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

* [PATCH 5/9] evolution-data-server: upgrade 3.34.2 -> 3.34.3
  2020-01-09 21:05 [PATCH 1/9] poppler: upgrade 0.82.0 -> 0.84.0 Andreas Müller
                   ` (2 preceding siblings ...)
  2020-01-09 21:05 ` [PATCH 4/9] gnome-shell: " Andreas Müller
@ 2020-01-09 21:05 ` Andreas Müller
  2020-01-09 21:05 ` [PATCH 6/9] gjs: upgrade 1.58.3 -> 1.58.4 Andreas Müller
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 16+ messages in thread
From: Andreas Müller @ 2020-01-09 21:05 UTC (permalink / raw)
  To: openembedded-devel

From [1]:

Evolution-Data-Server 3.34.3 2020-01-03
---------------------------------------

Bug Fixes:
	I#177 - DAV: Ignore 404 responses on content refresh (Milan Crha)

Translations:
	Yi-Jyun Pan (zh_TW)

[1] http://ftp.gnome.org/pub/gnome/sources/evolution-data-server/3.34/evolution-data-server-3.34.3.news

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../evolution-data-server/evolution-data-server.inc         | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server.inc b/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server.inc
index 0e58b0cc2..1eae3df35 100644
--- a/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server.inc
+++ b/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server.inc
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=6a6e689d19255cf0557f3fe7d7068212 \
 
 inherit gnomebase upstream-version-is-even
 
-SRC_URI[archive.md5sum] = "7a0571ac358664c6e96accd3ac4cd245"
-SRC_URI[archive.sha256sum] = "3eb89f82eee042884a8d65737564fe48829c3ae187f067cbcdec2b088d2fe89b"
-PV = "3.34.2"
+SRC_URI[archive.md5sum] = "687d6d7242d60a8a3a3322eee6a45dca"
+SRC_URI[archive.sha256sum] = "d2dfac5ca76e05e872fbb06a57cae0dace64818c4dce1e906b0396888270c3a9"
+PV = "3.34.3"
 
-- 
2.21.0



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

* [PATCH 6/9] gjs: upgrade 1.58.3 -> 1.58.4
  2020-01-09 21:05 [PATCH 1/9] poppler: upgrade 0.82.0 -> 0.84.0 Andreas Müller
                   ` (3 preceding siblings ...)
  2020-01-09 21:05 ` [PATCH 5/9] evolution-data-server: " Andreas Müller
@ 2020-01-09 21:05 ` Andreas Müller
  2020-01-09 21:05 ` [PATCH 7/9] gnome-desktop3: upgrade 3.34.2 -> 3.34.3 Andreas Müller
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 16+ messages in thread
From: Andreas Müller @ 2020-01-09 21:05 UTC (permalink / raw)
  To: openembedded-devel

From [1]:

Version 1.58.4
--------------

- Now prints a warning when constructing an unregistered object inheriting from
  GObject (i.e. if you forgot to use GObject.registerClass.) In 1.58.2 this
  would throw an exception, which broke some existing code, so that change was
  reverted in 1.58.3. In this version the check is reinstated, but we log a
  warning instead of throwing an exception, so that people know to fix their
  code, but without breaking things.
  NOTE: In 1.64 (the next stable release) the warning will be changed back into
  an exception, because code with this problem can be subtly broken and cause
  unexpected errors elsewhere. So make sure to fix your code if you get this
  warning.

- Closed bugs and merge requests:
  * GSettings crash fixes [Andy Holmes, !373]

- Memory savings for Cairo objects [Philip Chimento, !374]

- Fix for crash in debug functions [Philip Chimento, !374]

[1] http://ftp.gnome.org/pub/gnome/sources/gjs/1.58/gjs-1.58.4.news

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 meta-gnome/recipes-gnome/gjs/{gjs_1.58.3.bb => gjs_1.58.4.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-gnome/recipes-gnome/gjs/{gjs_1.58.3.bb => gjs_1.58.4.bb} (87%)

diff --git a/meta-gnome/recipes-gnome/gjs/gjs_1.58.3.bb b/meta-gnome/recipes-gnome/gjs/gjs_1.58.4.bb
similarity index 87%
rename from meta-gnome/recipes-gnome/gjs/gjs_1.58.3.bb
rename to meta-gnome/recipes-gnome/gjs/gjs_1.58.4.bb
index ddd5196b2..eb7d323a6 100644
--- a/meta-gnome/recipes-gnome/gjs/gjs_1.58.3.bb
+++ b/meta-gnome/recipes-gnome/gjs/gjs_1.58.4.bb
@@ -11,8 +11,8 @@ DEPENDS = "mozjs gtk+3"
 
 inherit gnomebase gsettings gobject-introspection vala gettext features_check upstream-version-is-even
 
-SRC_URI[archive.md5sum] = "bce6dea9a6583a8b3c6af5854df76aaf"
-SRC_URI[archive.sha256sum] = "ca9fcd47b95ab0fc445301b2595e51fcea24d6f3cd87c190fe07006146d773ae"
+SRC_URI[archive.md5sum] = "385f4baa266991a08d3e425bc69ee962"
+SRC_URI[archive.sha256sum] = "261a3f666c771d7744965fe71b804fc2c3a3d46a8e3e8d4f7ed5ef97967ebd5f"
 SRC_URI += "file://0001-Disable-tests-on-host.patch"
 
 # gobject-introspection is mandatory and cannot be configured
-- 
2.21.0



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

* [PATCH 7/9] gnome-desktop3: upgrade 3.34.2 -> 3.34.3
  2020-01-09 21:05 [PATCH 1/9] poppler: upgrade 0.82.0 -> 0.84.0 Andreas Müller
                   ` (4 preceding siblings ...)
  2020-01-09 21:05 ` [PATCH 6/9] gjs: upgrade 1.58.3 -> 1.58.4 Andreas Müller
@ 2020-01-09 21:05 ` Andreas Müller
  2020-01-09 21:05 ` [PATCH 8/9] libsigc++-3: upgrade 3.0.0 -> 3.0.2 Andreas Müller
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 16+ messages in thread
From: Andreas Müller @ 2020-01-09 21:05 UTC (permalink / raw)
  To: openembedded-devel

From [1]:

==============
Version 3.34.3
==============

- seccomp is not supported ATM on riscv64 architecture, blacklist it for now (#128)

[1] http://ftp.gnome.org/pub/gnome/sources/gnome-desktop/3.34/gnome-desktop-3.34.3.news

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../0001-meson.build-Disable-libseccomp-for-all-archs.patch | 6 +++---
 .../{gnome-desktop3_3.34.2.bb => gnome-desktop3_3.34.3.bb}  | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)
 rename meta-gnome/recipes-gnome/gnome-desktop/{gnome-desktop3_3.34.2.bb => gnome-desktop3_3.34.3.bb} (88%)

diff --git a/meta-gnome/recipes-gnome/gnome-desktop/gnome-desktop/0001-meson.build-Disable-libseccomp-for-all-archs.patch b/meta-gnome/recipes-gnome/gnome-desktop/gnome-desktop/0001-meson.build-Disable-libseccomp-for-all-archs.patch
index e93d5b674..4b3894f05 100644
--- a/meta-gnome/recipes-gnome/gnome-desktop/gnome-desktop/0001-meson.build-Disable-libseccomp-for-all-archs.patch
+++ b/meta-gnome/recipes-gnome/gnome-desktop/gnome-desktop/0001-meson.build-Disable-libseccomp-for-all-archs.patch
@@ -18,14 +18,14 @@ Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
  1 file changed, 1 insertion(+), 6 deletions(-)
 
 diff --git a/meson.build b/meson.build
-index 83407b4..80eab84 100644
+index 2e7160d..f83677d 100644
 --- a/meson.build
 +++ b/meson.build
-@@ -53,12 +53,7 @@ udev_dep = dependency('libudev', required: get_option('udev'))
+@@ -58,12 +58,7 @@ udev_dep = dependency('libudev', required: get_option('udev'))
  host_os = host_machine.system()
  host_cpu = host_machine.cpu()
  supported_os = ['linux']
--unsupported_cpus = ['alpha', 'ia64', 'm68k', 'sh4', 'sparc', 'sparc64']
+-unsupported_cpus = ['alpha', 'ia64', 'm68k', 'riscv64', 'sh4', 'sparc', 'sparc64']
 -if supported_os.contains(host_os) and not unsupported_cpus.contains(host_cpu)
 -  seccomp_dep = dependency('libseccomp')
 -else
diff --git a/meta-gnome/recipes-gnome/gnome-desktop/gnome-desktop3_3.34.2.bb b/meta-gnome/recipes-gnome/gnome-desktop/gnome-desktop3_3.34.3.bb
similarity index 88%
rename from meta-gnome/recipes-gnome/gnome-desktop/gnome-desktop3_3.34.2.bb
rename to meta-gnome/recipes-gnome/gnome-desktop/gnome-desktop3_3.34.3.bb
index 19f73a6e5..cdd11aa90 100644
--- a/meta-gnome/recipes-gnome/gnome-desktop/gnome-desktop3_3.34.2.bb
+++ b/meta-gnome/recipes-gnome/gnome-desktop/gnome-desktop3_3.34.3.bb
@@ -14,8 +14,8 @@ inherit gnomebase itstool pkgconfig upstream-version-is-even gobject-introspecti
 REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
 UNKNOWN_CONFIGURE_WHITELIST_append = " introspection"
 
-SRC_URI[archive.md5sum] = "a0fda8ee9283536e281405e94af15776"
-SRC_URI[archive.sha256sum] = "4081ba619733da33ec6ba98cd52170ee99a90439709df4df333e5c9e631f28ed"
+SRC_URI[archive.md5sum] = "cdcd3006f55d8c8813315bef6f4f6b71"
+SRC_URI[archive.sha256sum] = "acc2efc847574fd21d8f200679f111c2b1eb5ae2c041e0034e7c18450a7d9c6d"
 
 SRC_URI += " \
     file://gnome-desktop-thumbnail-don-t-assume-time_t-is-long.patch \
-- 
2.21.0



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

* [PATCH 8/9] libsigc++-3: upgrade 3.0.0 -> 3.0.2
  2020-01-09 21:05 [PATCH 1/9] poppler: upgrade 0.82.0 -> 0.84.0 Andreas Müller
                   ` (5 preceding siblings ...)
  2020-01-09 21:05 ` [PATCH 7/9] gnome-desktop3: upgrade 3.34.2 -> 3.34.3 Andreas Müller
@ 2020-01-09 21:05 ` Andreas Müller
  2020-01-09 22:07   ` Khem Raj
  2020-01-09 21:05 ` [PATCH 9/9] libsigc++-3: let meson build Andreas Müller
  2020-01-09 22:01 ` [PATCH 1/9] poppler: upgrade 0.82.0 -> 0.84.0 Randy MacLeod
  8 siblings, 1 reply; 16+ messages in thread
From: Andreas Müller @ 2020-01-09 21:05 UTC (permalink / raw)
  To: openembedded-devel

From [1]:

3.0.2 (stable)

* Build: Meson build improvements.
  (Kjell Ahlstedt, Chun-Wei Fan)

From [2]:

3.0.1 (stable)

* Build:
  - Add meson build, alongside the existing autotools and CMake builds.
  (Kjell Ahlstedt, Chun-Wei Fan)
  - CMake: Fix the MSVC build, enable warnings, and disable unnecessary
  warnings, with MVSC.
  (Stuart Dootson)
* connection: Allow copying of empty connections.
  (Aigrind)
* sigc++/adaptors/bind.h: Make bind_functor::bound_ public.
  (Used by sigc::visitor::do_visit_each().
  (Kjell Ahlstedt) Bug #26
* test_limit_reference: Avoid virtual-move-assign warning
  (seen with g++ 9.2)
  (Murray Cumming)
* signal: slot_iterator_buf: Remove unused T_result default type
  (Murray Cumming)
* tests: Slight cleanups
  (Murray Cumming)
* Remove unused #ifdefed code.
  (Murray Cumming)

[1] http://ftp.gnome.org/pub/gnome/sources/libsigc++/3.0/libsigc++-3.0.2.news
[2] http://ftp.gnome.org/pub/gnome/sources/libsigc++/3.0/libsigc++-3.0.1.news

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../{libsigc++-3_3.0.0.bb => libsigc++-3_3.0.2.bb}            | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-core/libsigc++-2.0/{libsigc++-3_3.0.0.bb => libsigc++-3_3.0.2.bb} (77%)

diff --git a/meta-oe/recipes-core/libsigc++-2.0/libsigc++-3_3.0.0.bb b/meta-oe/recipes-core/libsigc++-2.0/libsigc++-3_3.0.2.bb
similarity index 77%
rename from meta-oe/recipes-core/libsigc++-2.0/libsigc++-3_3.0.0.bb
rename to meta-oe/recipes-core/libsigc++-2.0/libsigc++-3_3.0.2.bb
index 3c0330f50..0acdb3e98 100644
--- a/meta-oe/recipes-core/libsigc++-2.0/libsigc++-3_3.0.0.bb
+++ b/meta-oe/recipes-core/libsigc++-2.0/libsigc++-3_3.0.2.bb
@@ -6,8 +6,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=959bffe2993816eb32ec4bc1ec1d5875"
 DEPENDS = "mm-common"
 
 SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/libsigc++/3.0/libsigc++-${PV}.tar.xz"
-SRC_URI[md5sum] = "6ffe924f1d8624b5716468cde67dc03f"
-SRC_URI[sha256sum] = "50a0855c1eb26e6044ffe888dbe061938ab4241f96d8f3754ea7ead38ab8ed06"
+SRC_URI[md5sum] = "1f93f8ed4ead38e876157834b2c57c21"
+SRC_URI[sha256sum] = "4b77676de1e74774ec456bcc6ac6f04a2791a12cc1fe07f8305d4c3c86e2f339"
 
 S = "${WORKDIR}/libsigc++-${PV}"
 
-- 
2.21.0



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

* [PATCH 9/9] libsigc++-3: let meson build
  2020-01-09 21:05 [PATCH 1/9] poppler: upgrade 0.82.0 -> 0.84.0 Andreas Müller
                   ` (6 preceding siblings ...)
  2020-01-09 21:05 ` [PATCH 8/9] libsigc++-3: upgrade 3.0.0 -> 3.0.2 Andreas Müller
@ 2020-01-09 21:05 ` Andreas Müller
  2020-01-09 22:01 ` [PATCH 1/9] poppler: upgrade 0.82.0 -> 0.84.0 Randy MacLeod
  8 siblings, 0 replies; 16+ messages in thread
From: Andreas Müller @ 2020-01-09 21:05 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 meta-oe/recipes-core/libsigc++-2.0/libsigc++-3_3.0.2.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-core/libsigc++-2.0/libsigc++-3_3.0.2.bb b/meta-oe/recipes-core/libsigc++-2.0/libsigc++-3_3.0.2.bb
index 0acdb3e98..26bd02c7b 100644
--- a/meta-oe/recipes-core/libsigc++-2.0/libsigc++-3_3.0.2.bb
+++ b/meta-oe/recipes-core/libsigc++-2.0/libsigc++-3_3.0.2.bb
@@ -11,7 +11,7 @@ SRC_URI[sha256sum] = "4b77676de1e74774ec456bcc6ac6f04a2791a12cc1fe07f8305d4c3c86
 
 S = "${WORKDIR}/libsigc++-${PV}"
 
-inherit autotools
+inherit setuptools3 meson
 
 FILES_${PN}-dev += "${libdir}/sigc++-*/"
 FILES_${PN}-doc += "${datadir}/devhelp"
-- 
2.21.0



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

* Re: [PATCH 1/9] poppler: upgrade 0.82.0 -> 0.84.0
  2020-01-09 21:05 [PATCH 1/9] poppler: upgrade 0.82.0 -> 0.84.0 Andreas Müller
                   ` (7 preceding siblings ...)
  2020-01-09 21:05 ` [PATCH 9/9] libsigc++-3: let meson build Andreas Müller
@ 2020-01-09 22:01 ` Randy MacLeod
  2020-01-09 22:24   ` Andreas Müller
  8 siblings, 1 reply; 16+ messages in thread
From: Randy MacLeod @ 2020-01-09 22:01 UTC (permalink / raw)
  To: Andreas Müller, openembedded-devel; +Cc: matthew.zeng

On 1/9/20 4:05 PM, Andreas Müller wrote:
>  From announcements:
> 
> Release 0.84.0:
> core:
>   * Fix crash when converting from Unicode to ASCII-7
>   * Splash::scaleImageYdXu: Protect against crash if srcWidth is too big
>   * JBIG2Stream: fix potential crash in malformed documents
>   * JBIG2Stream: fix leak in reset() if called several times
>   * Internal code improvements
> 
> utils:
>   * pdfimages: Add error message if first page is larger then number of pages.
>   * pdfinfo: Improved paper size recognition
>   * pdfsig: Fix exit code when dumping signatures
>   * pdftocairo: Error out when even/odd selects 0 pages
>   * pdftohtml: Fix memory leak
>   * pdftoppm: Add an option to scale before rotate
>   * pdftoppm: Add -hide-annotations option
>   * pdftoppm: Error out when even/odd selects 0 pages
>   * pdftops: Improve -optimizecolorspace
> 
> qt5:
>   * Code cleanups
> 
> glib:
>   * Fix compiler warnings
> 
> Release 0.83.0:
> core:
>   * Improve when a file is recognized as Linearized
>   * Improve const-ness of the code
>   * Make code a bit more readable/maintanable
>   * Fix uninitialized memory uses in broken files
> 
> utils:
>   * pdffonts: Make code a bit more readable/maintanable
>   * pdftohtml: Make code a bit more readable/maintanable
> 
> qt5:
>   * Remove a bunch of unused internal functions
>   * trUtf8 -> tr (less warnings)
> 
> build system:
>   * make-glib-api-docs: switch to python3

Nice.

Andreas,

Have you by chance tried to add ptest coverage for poppler?
If not, Matthew may do that.


-- 
# Randy MacLeod
# Wind River Linux


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

* Re: [PATCH 8/9] libsigc++-3: upgrade 3.0.0 -> 3.0.2
  2020-01-09 21:05 ` [PATCH 8/9] libsigc++-3: upgrade 3.0.0 -> 3.0.2 Andreas Müller
@ 2020-01-09 22:07   ` Khem Raj
  2020-01-09 22:33     ` Andreas Müller
  0 siblings, 1 reply; 16+ messages in thread
From: Khem Raj @ 2020-01-09 22:07 UTC (permalink / raw)
  To: Andreas Müller; +Cc: openembeded-devel

you have good commit msg so I merged this with earlier patch proposed here

https://patchwork.openembedded.org/patch/168647/

On Thu, Jan 9, 2020 at 1:06 PM Andreas Müller <schnitzeltony@gmail.com> wrote:
>
> From [1]:
>
> 3.0.2 (stable)
>
> * Build: Meson build improvements.
>   (Kjell Ahlstedt, Chun-Wei Fan)
>
> From [2]:
>
> 3.0.1 (stable)
>
> * Build:
>   - Add meson build, alongside the existing autotools and CMake builds.
>   (Kjell Ahlstedt, Chun-Wei Fan)
>   - CMake: Fix the MSVC build, enable warnings, and disable unnecessary
>   warnings, with MVSC.
>   (Stuart Dootson)
> * connection: Allow copying of empty connections.
>   (Aigrind)
> * sigc++/adaptors/bind.h: Make bind_functor::bound_ public.
>   (Used by sigc::visitor::do_visit_each().
>   (Kjell Ahlstedt) Bug #26
> * test_limit_reference: Avoid virtual-move-assign warning
>   (seen with g++ 9.2)
>   (Murray Cumming)
> * signal: slot_iterator_buf: Remove unused T_result default type
>   (Murray Cumming)
> * tests: Slight cleanups
>   (Murray Cumming)
> * Remove unused #ifdefed code.
>   (Murray Cumming)
>
> [1] http://ftp.gnome.org/pub/gnome/sources/libsigc++/3.0/libsigc++-3.0.2.news
> [2] http://ftp.gnome.org/pub/gnome/sources/libsigc++/3.0/libsigc++-3.0.1.news
>
> Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
> ---
>  .../{libsigc++-3_3.0.0.bb => libsigc++-3_3.0.2.bb}            | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>  rename meta-oe/recipes-core/libsigc++-2.0/{libsigc++-3_3.0.0.bb => libsigc++-3_3.0.2.bb} (77%)
>
> diff --git a/meta-oe/recipes-core/libsigc++-2.0/libsigc++-3_3.0.0.bb b/meta-oe/recipes-core/libsigc++-2.0/libsigc++-3_3.0.2.bb
> similarity index 77%
> rename from meta-oe/recipes-core/libsigc++-2.0/libsigc++-3_3.0.0.bb
> rename to meta-oe/recipes-core/libsigc++-2.0/libsigc++-3_3.0.2.bb
> index 3c0330f50..0acdb3e98 100644
> --- a/meta-oe/recipes-core/libsigc++-2.0/libsigc++-3_3.0.0.bb
> +++ b/meta-oe/recipes-core/libsigc++-2.0/libsigc++-3_3.0.2.bb
> @@ -6,8 +6,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=959bffe2993816eb32ec4bc1ec1d5875"
>  DEPENDS = "mm-common"
>
>  SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/libsigc++/3.0/libsigc++-${PV}.tar.xz"
> -SRC_URI[md5sum] = "6ffe924f1d8624b5716468cde67dc03f"
> -SRC_URI[sha256sum] = "50a0855c1eb26e6044ffe888dbe061938ab4241f96d8f3754ea7ead38ab8ed06"
> +SRC_URI[md5sum] = "1f93f8ed4ead38e876157834b2c57c21"
> +SRC_URI[sha256sum] = "4b77676de1e74774ec456bcc6ac6f04a2791a12cc1fe07f8305d4c3c86e2f339"
>
>  S = "${WORKDIR}/libsigc++-${PV}"
>
> --
> 2.21.0
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


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

* Re: [PATCH 1/9] poppler: upgrade 0.82.0 -> 0.84.0
  2020-01-09 22:01 ` [PATCH 1/9] poppler: upgrade 0.82.0 -> 0.84.0 Randy MacLeod
@ 2020-01-09 22:24   ` Andreas Müller
  2020-01-13 20:20     ` Mingde (Matthew) Zeng
  0 siblings, 1 reply; 16+ messages in thread
From: Andreas Müller @ 2020-01-09 22:24 UTC (permalink / raw)
  To: Randy MacLeod; +Cc: openembeded-devel, matthew.zeng

On Thu, Jan 9, 2020 at 11:01 PM Randy MacLeod
<randy.macleod@windriver.com> wrote:
>
> On 1/9/20 4:05 PM, Andreas Müller wrote:
> >  From announcements:
> >
> > Release 0.84.0:
> > core:
> >   * Fix crash when converting from Unicode to ASCII-7
> >   * Splash::scaleImageYdXu: Protect against crash if srcWidth is too big
> >   * JBIG2Stream: fix potential crash in malformed documents
> >   * JBIG2Stream: fix leak in reset() if called several times
> >   * Internal code improvements
> >
> > utils:
> >   * pdfimages: Add error message if first page is larger then number of pages.
> >   * pdfinfo: Improved paper size recognition
> >   * pdfsig: Fix exit code when dumping signatures
> >   * pdftocairo: Error out when even/odd selects 0 pages
> >   * pdftohtml: Fix memory leak
> >   * pdftoppm: Add an option to scale before rotate
> >   * pdftoppm: Add -hide-annotations option
> >   * pdftoppm: Error out when even/odd selects 0 pages
> >   * pdftops: Improve -optimizecolorspace
> >
> > qt5:
> >   * Code cleanups
> >
> > glib:
> >   * Fix compiler warnings
> >
> > Release 0.83.0:
> > core:
> >   * Improve when a file is recognized as Linearized
> >   * Improve const-ness of the code
> >   * Make code a bit more readable/maintanable
> >   * Fix uninitialized memory uses in broken files
> >
> > utils:
> >   * pdffonts: Make code a bit more readable/maintanable
> >   * pdftohtml: Make code a bit more readable/maintanable
> >
> > qt5:
> >   * Remove a bunch of unused internal functions
> >   * trUtf8 -> tr (less warnings)
> >
> > build system:
> >   * make-glib-api-docs: switch to python3
>
> Nice.
>
> Andreas,
>
> Have you by chance tried to add ptest coverage for poppler?
> If not, Matthew may do that.
>
>
Have not done any ptest on this - just some runtime tests on target with evince

Andreas


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

* Re: [PATCH 8/9] libsigc++-3: upgrade 3.0.0 -> 3.0.2
  2020-01-09 22:07   ` Khem Raj
@ 2020-01-09 22:33     ` Andreas Müller
  0 siblings, 0 replies; 16+ messages in thread
From: Andreas Müller @ 2020-01-09 22:33 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembeded-devel

On Thu, Jan 9, 2020 at 11:07 PM Khem Raj <raj.khem@gmail.com> wrote:
>
> you have good commit msg so I merged this with earlier patch proposed here
>
> https://patchwork.openembedded.org/patch/168647/

missed that patch - sorry. I fell over this one by GNOME 3.34.3 [1]
and just cross-checked it against layerindex.

[1] https://download.gnome.org/core/3.34/3.34.3/sources/

Andreas


Andreas


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

* Re: [PATCH 1/9] poppler: upgrade 0.82.0 -> 0.84.0
  2020-01-09 22:24   ` Andreas Müller
@ 2020-01-13 20:20     ` Mingde (Matthew) Zeng
  2020-01-13 20:34       ` Randy MacLeod
  0 siblings, 1 reply; 16+ messages in thread
From: Mingde (Matthew) Zeng @ 2020-01-13 20:20 UTC (permalink / raw)
  To: openembeded-devel


>> Have you by chance tried to add ptest coverage for poppler?
>> If not, Matthew may do that.
>>
>>
> Have not done any ptest on this - just some runtime tests on target with evince
>
> Andreas

```
$ make test
Running tests...
Test project /home/mzeng/code/poppler/build
      Start  1: check_qt5_attachments
 1/21 Test  #1: check_qt5_attachments ............***Failed    2.47 sec
      Start  2: check_qt5_dateConversion
 2/21 Test  #2: check_qt5_dateConversion .........   Passed    0.58 sec
...
```

Poppler's `make test` runs tests from the `/build/qt5/tests` directory, which apparently are relying on qt5.

```
/****************************************************************************
** Meta object code from reading C++ file 'check_attachments.cpp'
**
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.14.0)
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/

#include <memory>
#include <QtCore/qbytearray.h>
#include <QtCore/qmetatype.h>
...
```

Is it worth it to write a ptest and sort out the meta-qt5 layer?

    Matthew


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

* Re: [PATCH 1/9] poppler: upgrade 0.82.0 -> 0.84.0
  2020-01-13 20:20     ` Mingde (Matthew) Zeng
@ 2020-01-13 20:34       ` Randy MacLeod
  2020-01-14  0:42         ` Randy MacLeod
  0 siblings, 1 reply; 16+ messages in thread
From: Randy MacLeod @ 2020-01-13 20:34 UTC (permalink / raw)
  To: Mingde (Matthew) Zeng, openembeded-devel

On 1/13/20 3:20 PM, Mingde (Matthew) Zeng wrote:
>>> Have you by chance tried to add ptest coverage for poppler?
>>> If not, Matthew may do that.
>>>
>>>
>> Have not done any ptest on this - just some runtime tests on target with evince
>>
>> Andreas
> ```
> $ make test
> Running tests...
> Test project /home/mzeng/code/poppler/build
>        Start  1: check_qt5_attachments
>   1/21 Test  #1: check_qt5_attachments ............***Failed    2.47 sec
>        Start  2: check_qt5_dateConversion
>   2/21 Test  #2: check_qt5_dateConversion .........   Passed    0.58 sec
> ...
> ```
>
> Poppler's `make test` runs tests from the `/build/qt5/tests` directory, which apparently are relying on qt5.
>
> ```
> /****************************************************************************
> ** Meta object code from reading C++ file 'check_attachments.cpp'
> **
> ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.14.0)
> **
> ** WARNING! All changes made in this file will be lost!
> *****************************************************************************/
>
> #include <memory>
> #include <QtCore/qbytearray.h>
> #include <QtCore/qmetatype.h>
> ...
> ```
>
> Is it worth it to write a ptest and sort out the meta-qt5 layer?

No, we can't have meta-openembedded packages depend
on meta-qt5 content.

The meta-oe layer only depends on oe-core (aka core):

http://cgit.openembedded.org/meta-openembedded/tree/meta-oe/conf/layer.conf#n30

Thanks for looking into it Matthew,

../Randy

>
>      Matthew


-- 
# Randy MacLeod
# Wind River Linux



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

* Re: [PATCH 1/9] poppler: upgrade 0.82.0 -> 0.84.0
  2020-01-13 20:34       ` Randy MacLeod
@ 2020-01-14  0:42         ` Randy MacLeod
  0 siblings, 0 replies; 16+ messages in thread
From: Randy MacLeod @ 2020-01-14  0:42 UTC (permalink / raw)
  To: Mingde (Matthew) Zeng, openembeded-devel

On 1/13/20 3:34 PM, Randy MacLeod wrote:
> On 1/13/20 3:20 PM, Mingde (Matthew) Zeng wrote:
>>>> Have you by chance tried to add ptest coverage for poppler?
>>>> If not, Matthew may do that.
>>>>
>>>>
>>> Have not done any ptest on this - just some runtime tests on target 
>>> with evince
>>>
>>> Andreas
>> ```
>> $ make test
>> Running tests...
>> Test project /home/mzeng/code/poppler/build
>>        Start  1: check_qt5_attachments
>>   1/21 Test  #1: check_qt5_attachments ............***Failed    2.47 sec
>>        Start  2: check_qt5_dateConversion
>>   2/21 Test  #2: check_qt5_dateConversion .........   Passed    0.58 sec
>> ...
>> ```
>>
>> Poppler's `make test` runs tests from the `/build/qt5/tests` 
>> directory, which apparently are relying on qt5.
>>
>> ```
>> /**************************************************************************** 
>>
>> ** Meta object code from reading C++ file 'check_attachments.cpp'
>> **
>> ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.14.0)
>> **
>> ** WARNING! All changes made in this file will be lost!
>> *****************************************************************************/ 
>>
>>
>> #include <memory>
>> #include <QtCore/qbytearray.h>
>> #include <QtCore/qmetatype.h>
>> ...
>> ```
>>
>> Is it worth it to write a ptest and sort out the meta-qt5 layer?
> 
> No, we can't have meta-openembedded packages depend
> on meta-qt5 content.
> 
> The meta-oe layer only depends on oe-core (aka core):
> 
> http://cgit.openembedded.org/meta-openembedded/tree/meta-oe/conf/layer.conf#n30 

Of course you could add the ptest code in a .bbappend in
the meta-qt5 layer but I won't ask you to do that.

Take a look at the bbappends in meta-qt5 if you are curious:
https://layers.openembedded.org/layerindex/branch/master/layer/meta-qt5/#appends

../Randy
> 
> 
> Thanks for looking into it Matthew,
> 
> ../Randy
> 
>>
>>      Matthew
> 
> 


-- 
# Randy MacLeod
# Wind River Linux


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

end of thread, other threads:[~2020-01-14  0:42 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-09 21:05 [PATCH 1/9] poppler: upgrade 0.82.0 -> 0.84.0 Andreas Müller
2020-01-09 21:05 ` [PATCH 2/9] xfce4-terminal: upgrade 0.8.9 -> 0.8.9.1 Andreas Müller
2020-01-09 21:05 ` [PATCH 3/9] mutter: upgrade 3.34.2 -> 3.34.3 Andreas Müller
2020-01-09 21:05 ` [PATCH 4/9] gnome-shell: " Andreas Müller
2020-01-09 21:05 ` [PATCH 5/9] evolution-data-server: " Andreas Müller
2020-01-09 21:05 ` [PATCH 6/9] gjs: upgrade 1.58.3 -> 1.58.4 Andreas Müller
2020-01-09 21:05 ` [PATCH 7/9] gnome-desktop3: upgrade 3.34.2 -> 3.34.3 Andreas Müller
2020-01-09 21:05 ` [PATCH 8/9] libsigc++-3: upgrade 3.0.0 -> 3.0.2 Andreas Müller
2020-01-09 22:07   ` Khem Raj
2020-01-09 22:33     ` Andreas Müller
2020-01-09 21:05 ` [PATCH 9/9] libsigc++-3: let meson build Andreas Müller
2020-01-09 22:01 ` [PATCH 1/9] poppler: upgrade 0.82.0 -> 0.84.0 Randy MacLeod
2020-01-09 22:24   ` Andreas Müller
2020-01-13 20:20     ` Mingde (Matthew) Zeng
2020-01-13 20:34       ` Randy MacLeod
2020-01-14  0:42         ` Randy MacLeod

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.