unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#33701] [PATCH staging 00/23] Glib/GTK+ updates
@ 2018-12-11  1:12 Marius Bakke
  2018-12-11  1:13 ` [bug#33701] [PATCH staging 01/23] gnu: cups-filters: Update to 1.21.5 Marius Bakke
                   ` (2 more replies)
  0 siblings, 3 replies; 29+ messages in thread
From: Marius Bakke @ 2018-12-11  1:12 UTC (permalink / raw)
  To: 33701

This late series adds around 1000 rebuilds to the current staging
branch.  They also bring many of the GNOME family libraries to the
latest upstream versions.

The good:
* Latest Ghostscript, Poppler, Harfbuzz, GnuTLS, and other
  security-critical libraries.  Some of these have changed
  build systems, or ABIs, so future patching is easier.
* Most/all regressions are already fixed.

The bad:
* GCC7 is now in the closure of cURL (via nghttp2).

The ugly:
* 37 files changed, 1225 insertions(+), 996 deletions(-)
* Total rebuild count for staging is around 4700 packages.

WDYT?

Marius Bakke (23):
  gnu: cups-filters: Update to 1.21.5.
  gnu: libjpeg-turbo: Update to 2.0.1.
  gnu: harfbuzz: Update to 2.2.0.
  gnu: poppler: Update to 0.72.0.
  gnu: D-Bus: Update to 1.12.12.
  gnu: glib: Remove obsolete variable.
  gnu: glib: Update to 2.56.3.
  gnu: pixman: Update to 0.36.0.
  gnu: cairo: Update to 1.16.0.
  gnu: libqmi: Update to 1.20.2.
  gnu: curl: Remove replacement for 7.62.0.
  gnu: ghostscript: Update to 9.26.
  gnu: icu4c: Update to 63.1.
  gnu: tzdata-for-tests: Update to 2018g.
  gnu: nghttp2: Update to 1.35.1.
  gnu: nettle: Update to 3.4.1.
  gnu: cyrus-sasl: Update to 2.1.27.
  gnu: jansson: Update to 2.12.
  gnu: GnuTLS: Update to 3.6.5.
  gnu: libuv: Update to 1.24.0.
  gnu: CMake: Update to 3.13.1.
  gnu: meson: Update to 0.49.0.
  gnu: glib-networking: Update to 2.59.1.

 gnu/local.mk                                  |  12 +-
 gnu/packages/base.scm                         |  18 +-
 gnu/packages/build-tools.scm                  |   4 +-
 gnu/packages/cmake.scm                        |   4 +-
 gnu/packages/cups.scm                         |   4 +-
 gnu/packages/curl.scm                         |  18 +-
 gnu/packages/cyrus-sasl.scm                   |   9 +-
 gnu/packages/emacs.scm                        |  10 +-
 gnu/packages/freedesktop.scm                  |   4 +-
 gnu/packages/ghostscript.scm                  |   8 +-
 gnu/packages/glib.scm                         |  11 +-
 gnu/packages/gnome.scm                        |  73 +--
 gnu/packages/gtk.scm                          |  10 +-
 gnu/packages/icu4c.scm                        |   4 +-
 gnu/packages/image.scm                        |   4 +-
 gnu/packages/inkscape.scm                     |  19 +-
 gnu/packages/libevent.scm                     |   4 +-
 gnu/packages/libreoffice.scm                  |  39 +-
 gnu/packages/nettle.scm                       |   4 +-
 .../patches/cairo-CVE-2016-9082.patch         | 122 -----
 .../patches/cairo-setjmp-wrapper.patch        |  78 ---
 .../patches/cyrus-sasl-CVE-2013-4122.patch    | 130 -----
 .../patches/ghostscript-CVE-2018-16509.patch  | 193 -------
 .../patches/ghostscript-bug-699708.patch      | 160 ------
 .../glib-networking-ssl-cert-file.patch       |  29 -
 .../patches/gnutls-skip-pkgconfig-test.patch  |  24 -
 .../patches/inkscape-poppler-compat3.patch    | 499 ++++++++++++++++++
 .../patches/poppler-CVE-2018-19149.patch      |  80 ---
 .../texlive-bin-luatex-poppler-compat.patch   | 318 +++++++++++
 .../texlive-bin-pdftex-poppler-compat.patch   | 188 +++++++
 .../texlive-bin-xetex-poppler-compat.patch    |  31 ++
 gnu/packages/pdf.scm                          |  13 +-
 gnu/packages/scribus.scm                      |  51 +-
 gnu/packages/tex.scm                          |  10 +-
 gnu/packages/tls.scm                          |  17 +-
 gnu/packages/web.scm                          |  15 +-
 gnu/packages/xdisorg.scm                      |   4 +-
 37 files changed, 1225 insertions(+), 996 deletions(-)
 delete mode 100644 gnu/packages/patches/cairo-CVE-2016-9082.patch
 delete mode 100644 gnu/packages/patches/cairo-setjmp-wrapper.patch
 delete mode 100644 gnu/packages/patches/cyrus-sasl-CVE-2013-4122.patch
 delete mode 100644 gnu/packages/patches/ghostscript-CVE-2018-16509.patch
 delete mode 100644 gnu/packages/patches/ghostscript-bug-699708.patch
 delete mode 100644 gnu/packages/patches/glib-networking-ssl-cert-file.patch
 delete mode 100644 gnu/packages/patches/gnutls-skip-pkgconfig-test.patch
 create mode 100644 gnu/packages/patches/inkscape-poppler-compat3.patch
 delete mode 100644 gnu/packages/patches/poppler-CVE-2018-19149.patch
 create mode 100644 gnu/packages/patches/texlive-bin-luatex-poppler-compat.patch
 create mode 100644 gnu/packages/patches/texlive-bin-pdftex-poppler-compat.patch
 create mode 100644 gnu/packages/patches/texlive-bin-xetex-poppler-compat.patch

-- 
2.20.0

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

end of thread, other threads:[~2018-12-12 20:58 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-11  1:12 [bug#33701] [PATCH staging 00/23] Glib/GTK+ updates Marius Bakke
2018-12-11  1:13 ` [bug#33701] [PATCH staging 01/23] gnu: cups-filters: Update to 1.21.5 Marius Bakke
2018-12-11  1:13   ` [bug#33701] [PATCH staging 02/23] gnu: libjpeg-turbo: Update to 2.0.1 Marius Bakke
2018-12-11  1:13   ` [bug#33701] [PATCH staging 03/23] gnu: harfbuzz: Update to 2.2.0 Marius Bakke
2018-12-11  1:13   ` [bug#33701] [PATCH staging 04/23] gnu: poppler: Update to 0.72.0 Marius Bakke
2018-12-12  1:08     ` Leo Famulari
2018-12-11  1:13   ` [bug#33701] [PATCH staging 05/23] gnu: D-Bus: Update to 1.12.12 Marius Bakke
2018-12-11  1:13   ` [bug#33701] [PATCH staging 06/23] gnu: glib: Remove obsolete variable Marius Bakke
2018-12-11  1:14   ` [bug#33701] [PATCH staging 07/23] gnu: glib: Update to 2.56.3 Marius Bakke
2018-12-11  1:14   ` [bug#33701] [PATCH staging 08/23] gnu: pixman: Update to 0.36.0 Marius Bakke
2018-12-11  1:14   ` [bug#33701] [PATCH staging 09/23] gnu: cairo: Update to 1.16.0 Marius Bakke
2018-12-11  1:14   ` [bug#33701] [PATCH staging 10/23] gnu: libqmi: Update to 1.20.2 Marius Bakke
2018-12-11  1:14   ` [bug#33701] [PATCH staging 11/23] gnu: curl: Remove replacement for 7.62.0 Marius Bakke
2018-12-11  1:14   ` [bug#33701] [PATCH staging 12/23] gnu: ghostscript: Update to 9.26 Marius Bakke
2018-12-12  1:07     ` Leo Famulari
2018-12-11  1:14   ` [bug#33701] [PATCH staging 13/23] gnu: icu4c: Update to 63.1 Marius Bakke
2018-12-11  1:14   ` [bug#33701] [PATCH staging 14/23] gnu: tzdata-for-tests: Update to 2018g Marius Bakke
2018-12-11  1:14   ` [bug#33701] [PATCH staging 15/23] gnu: nghttp2: Update to 1.35.1 Marius Bakke
2018-12-11  1:14   ` [bug#33701] [PATCH staging 16/23] gnu: nettle: Update to 3.4.1 Marius Bakke
2018-12-11  1:14   ` [bug#33701] [PATCH staging 17/23] gnu: cyrus-sasl: Update to 2.1.27 Marius Bakke
2018-12-11  1:14   ` [bug#33701] [PATCH staging 18/23] gnu: jansson: Update to 2.12 Marius Bakke
2018-12-11  1:14   ` [bug#33701] [PATCH staging 19/23] gnu: GnuTLS: Update to 3.6.5 Marius Bakke
2018-12-11  1:14   ` [bug#33701] [PATCH staging 20/23] gnu: libuv: Update to 1.24.0 Marius Bakke
2018-12-11  1:14   ` [bug#33701] [PATCH staging 21/23] gnu: CMake: Update to 3.13.1 Marius Bakke
2018-12-11  1:14   ` [bug#33701] [PATCH staging 22/23] gnu: meson: Update to 0.49.0 Marius Bakke
2018-12-11  1:14   ` [bug#33701] [PATCH staging 23/23] gnu: glib-networking: Update to 2.59.1 Marius Bakke
2018-12-11 20:42 ` [bug#33701] [PATCH staging 00/23] Glib/GTK+ updates Marius Bakke
2018-12-12  1:05 ` Leo Famulari
2018-12-12 20:57   ` bug#33701: " Marius Bakke

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).