diff options
| -rw-r--r-- | meta/recipes-gnome/epiphany/epiphany_3.26.5.1.bb (renamed from meta/recipes-gnome/epiphany/epiphany_3.24.3.bb) | 15 | ||||
| -rw-r--r-- | meta/recipes-gnome/epiphany/files/0001-bookmarks-Check-for-return-value-of-fread.patch | 32 | ||||
| -rw-r--r-- | meta/recipes-gnome/epiphany/files/0001-yelp.m4-drop-the-check-for-itstool.patch | 33 | ||||
| -rw-r--r-- | meta/recipes-gnome/epiphany/files/0002-help-meson.build-disable-the-use-of-yelp.patch | 34 |
4 files changed, 40 insertions, 74 deletions
diff --git a/meta/recipes-gnome/epiphany/epiphany_3.24.3.bb b/meta/recipes-gnome/epiphany/epiphany_3.26.5.1.bb index c507d23ae9..eee53c6015 100644 --- a/meta/recipes-gnome/epiphany/epiphany_3.24.3.bb +++ b/meta/recipes-gnome/epiphany/epiphany_3.26.5.1.bb | |||
| @@ -6,20 +6,17 @@ DEPENDS = "libsoup-2.4 webkitgtk gtk+3 iso-codes avahi libnotify gcr \ | |||
| 6 | gsettings-desktop-schemas gnome-desktop3 libxml2-native \ | 6 | gsettings-desktop-schemas gnome-desktop3 libxml2-native \ |
| 7 | glib-2.0 glib-2.0-native json-glib" | 7 | glib-2.0 glib-2.0-native json-glib" |
| 8 | 8 | ||
| 9 | GNOMEBASEBUILDCLASS = "meson" | ||
| 9 | inherit gnomebase gsettings distro_features_check upstream-version-is-even gettext | 10 | inherit gnomebase gsettings distro_features_check upstream-version-is-even gettext |
| 10 | REQUIRED_DISTRO_FEATURES = "x11" | 11 | REQUIRED_DISTRO_FEATURES = "x11" |
| 11 | 12 | ||
| 12 | SRC_URI += "file://0001-yelp.m4-drop-the-check-for-itstool.patch \ | 13 | SRC_URI = "${GNOME_MIRROR}/${GNOMEBN}/${@gnome_verdir("${PV}")}/${GNOMEBN}-${PV}.tar.${GNOME_COMPRESS_TYPE};name=archive \ |
| 13 | file://0001-bookmarks-Check-for-return-value-of-fread.patch \ | 14 | file://0002-help-meson.build-disable-the-use-of-yelp.patch \ |
| 14 | " | 15 | " |
| 15 | SRC_URI[archive.md5sum] = "c0221aec6a08935e6854eaa9de9451ef" | 16 | SRC_URI[archive.md5sum] = "8c2062debde6377320596e2685bb1732" |
| 16 | SRC_URI[archive.sha256sum] = "fef51676310d9f37e18c9b2d778254232eb17cccd988c2d1ecf42c7b2963a154" | 17 | SRC_URI[archive.sha256sum] = "4b2f1c48e6f50793ff205d9215add5596ab5c7ebf4cef76907868fcd5a029221" |
| 17 | 18 | ||
| 18 | EXTRA_OECONF += " --with-distributor-name=${DISTRO} --enable-debug=no" | 19 | EXTRA_OEMESON += " -Ddistributor_name=${DISTRO}" |
| 19 | |||
| 20 | do_configure_prepend() { | ||
| 21 | sed -i -e s:help::g ${S}/Makefile.am | ||
| 22 | } | ||
| 23 | 20 | ||
| 24 | FILES_${PN} += "${datadir}/dbus-1 ${datadir}/gnome-shell/search-providers" | 21 | FILES_${PN} += "${datadir}/dbus-1 ${datadir}/gnome-shell/search-providers" |
| 25 | RDEPENDS_${PN} = "iso-codes adwaita-icon-theme" | 22 | RDEPENDS_${PN} = "iso-codes adwaita-icon-theme" |
diff --git a/meta/recipes-gnome/epiphany/files/0001-bookmarks-Check-for-return-value-of-fread.patch b/meta/recipes-gnome/epiphany/files/0001-bookmarks-Check-for-return-value-of-fread.patch deleted file mode 100644 index ddcd39400c..0000000000 --- a/meta/recipes-gnome/epiphany/files/0001-bookmarks-Check-for-return-value-of-fread.patch +++ /dev/null | |||
| @@ -1,32 +0,0 @@ | |||
| 1 | From aa2176be32eed2578da82f34d31148f934c11c34 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Khem Raj <raj.khem@gmail.com> | ||
| 3 | Date: Wed, 28 Jun 2017 17:03:45 -0700 | ||
| 4 | Subject: [PATCH] bookmarks: Check for return value of fread() | ||
| 5 | |||
| 6 | Fixes below compiler error | ||
| 7 | ignoring return value of 'fread', declared with attribute warn_unused_result | ||
| 8 | |||
| 9 | Upstream-Status: Pending | ||
| 10 | |||
| 11 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 12 | --- | ||
| 13 | src/bookmarks/ephy-bookmark.c | 3 ++- | ||
| 14 | 1 file changed, 2 insertions(+), 1 deletion(-) | ||
| 15 | |||
| 16 | diff --git a/src/bookmarks/ephy-bookmark.c b/src/bookmarks/ephy-bookmark.c | ||
| 17 | index ff0239b..8633ce4 100644 | ||
| 18 | --- a/src/bookmarks/ephy-bookmark.c | ||
| 19 | +++ b/src/bookmarks/ephy-bookmark.c | ||
| 20 | @@ -217,7 +217,8 @@ ephy_bookmark_init (EphyBookmark *self) | ||
| 21 | bytes = g_malloc (num_bytes); | ||
| 22 | |||
| 23 | fp = fopen ("/dev/urandom", "r"); | ||
| 24 | - fread (bytes, sizeof (guint8), num_bytes, fp); | ||
| 25 | + if (fread (bytes, sizeof (guint8), num_bytes, fp) != num_bytes) | ||
| 26 | + g_warning("Unable to read data from /dev/urandom\n"); | ||
| 27 | |||
| 28 | self->id = g_malloc0 (ID_LEN + 1); | ||
| 29 | for (gsize i = 0; i < num_bytes; i++) { | ||
| 30 | -- | ||
| 31 | 2.13.2 | ||
| 32 | |||
diff --git a/meta/recipes-gnome/epiphany/files/0001-yelp.m4-drop-the-check-for-itstool.patch b/meta/recipes-gnome/epiphany/files/0001-yelp.m4-drop-the-check-for-itstool.patch deleted file mode 100644 index 2585d7f741..0000000000 --- a/meta/recipes-gnome/epiphany/files/0001-yelp.m4-drop-the-check-for-itstool.patch +++ /dev/null | |||
| @@ -1,33 +0,0 @@ | |||
| 1 | From 30f03a256efe375a4d5c3a24bf4168ebf380e3ab Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Alexander Kanavin <alex.kanavin@gmail.com> | ||
| 3 | Date: Thu, 30 Jul 2015 15:13:23 +0300 | ||
| 4 | Subject: [PATCH] yelp.m4: drop the check for itstool | ||
| 5 | |||
| 6 | It isn't used for anything during build, so there's no need to provide | ||
| 7 | it as a recipe. | ||
| 8 | |||
| 9 | Upstream-Status: Inappropriate [tarball-specific issue] | ||
| 10 | --- | ||
| 11 | m4/yelp.m4 | 6 ------ | ||
| 12 | 1 file changed, 6 deletions(-) | ||
| 13 | |||
| 14 | diff --git a/m4/yelp.m4 b/m4/yelp.m4 | ||
| 15 | index 5db847f..1b6ede4 100644 | ||
| 16 | --- a/m4/yelp.m4 | ||
| 17 | +++ b/m4/yelp.m4 | ||
| 18 | @@ -27,12 +27,6 @@ AC_ARG_WITH([help-dir], | ||
| 19 | HELP_DIR="$with_help_dir" | ||
| 20 | AC_SUBST(HELP_DIR) | ||
| 21 | |||
| 22 | -AC_ARG_VAR([ITSTOOL], [Path to the `itstool` command]) | ||
| 23 | -AC_CHECK_PROG([ITSTOOL], [itstool], [itstool]) | ||
| 24 | -if test x"$ITSTOOL" = x; then | ||
| 25 | - AC_MSG_ERROR([itstool not found]) | ||
| 26 | -fi | ||
| 27 | - | ||
| 28 | AC_ARG_VAR([XMLLINT], [Path to the `xmllint` command]) | ||
| 29 | AC_CHECK_PROG([XMLLINT], [xmllint], [xmllint]) | ||
| 30 | if test x"$XMLLINT" = x; then | ||
| 31 | -- | ||
| 32 | 2.1.4 | ||
| 33 | |||
diff --git a/meta/recipes-gnome/epiphany/files/0002-help-meson.build-disable-the-use-of-yelp.patch b/meta/recipes-gnome/epiphany/files/0002-help-meson.build-disable-the-use-of-yelp.patch new file mode 100644 index 0000000000..249517d8f9 --- /dev/null +++ b/meta/recipes-gnome/epiphany/files/0002-help-meson.build-disable-the-use-of-yelp.patch | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | From fc314fc3a66c92fe73e1a0cea4f49d11b29e1f45 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Alexander Kanavin <alex.kanavin@gmail.com> | ||
| 3 | Date: Wed, 31 Jan 2018 15:50:38 +0200 | ||
| 4 | Subject: [PATCH 2/2] help/meson.build: disable the use of yelp | ||
| 5 | |||
| 6 | In particular this avoids calling itstool which oe-core doesn't provide. | ||
| 7 | |||
| 8 | Upstream-Status: Inappropriate [oe-core specific] | ||
| 9 | Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> | ||
| 10 | --- | ||
| 11 | help/meson.build | 10 +++++----- | ||
| 12 | 1 file changed, 5 insertions(+), 5 deletions(-) | ||
| 13 | |||
| 14 | diff --git a/help/meson.build b/help/meson.build | ||
| 15 | index f720add..cbfeb1e 100644 | ||
| 16 | --- a/help/meson.build | ||
| 17 | +++ b/help/meson.build | ||
| 18 | @@ -46,8 +46,8 @@ help_linguas = [ | ||
| 19 | 'sv' | ||
| 20 | ] | ||
| 21 | |||
| 22 | -gnome.yelp(meson.project_name(), | ||
| 23 | - sources: help_files, | ||
| 24 | - media: help_media, | ||
| 25 | - languages: help_linguas, | ||
| 26 | -) | ||
| 27 | +#gnome.yelp(meson.project_name(), | ||
| 28 | +# sources: help_files, | ||
| 29 | +# media: help_media, | ||
| 30 | +# languages: help_linguas, | ||
| 31 | +#) | ||
| 32 | -- | ||
| 33 | 2.15.1 | ||
| 34 | |||
