* [PATCH 0/5] updates and fixes again
@ 2015-08-27 14:53 Andreas Müller
2015-08-27 14:53 ` [PATCH 1/5] fontforge: update to 20150824 Andreas Müller
` (4 more replies)
0 siblings, 5 replies; 10+ messages in thread
From: Andreas Müller @ 2015-08-27 14:53 UTC (permalink / raw)
To: openembedded-devel
Note: xfce4-icon-theme patch is OK I've checked meanwhile
The following changes since commit 985fca448f2593f5e5aeba07656eb8f2dad60183:
dhcp: fix parsing warning (2015-08-24 14:06:58 +0200)
are available in the git repository at:
git://github.com/schnitzeltony/meta-openembedded.git patches1
for you to fetch changes up to 8402dae17d7b30c74fccc666acd13a2b3598292c:
gnome-disk-utility: fix build for libnotify 0.7.x (2015-08-27 16:44:42 +0200)
----------------------------------------------------------------
Andreas Müller (4):
fontforge: update to 20150824
rodent-icon-theme: add RPROVIDES/RREPLACE/RCONFLICTS for xfce4-icon-theme
xfce4-notifyd: fix build for libnotify 0.7.x
gnome-disk-utility: fix build for libnotify 0.7.x
Martin Jansa (1):
xfce4-icon-theme: remove
meta-gnome/recipes-gnome/gnome-disk-utility/gnome-disk-utility/0002-Require-libnotify-0.6.1.patch | 49 +++++++++++++++++++++++
meta-gnome/recipes-gnome/gnome-disk-utility/gnome-disk-utility_2.32.0.bb | 1 +
meta-oe/recipes-graphics/fontforge/{fontforge_20141126.bb => fontforge_20150824.bb} | 11 +++---
meta-xfce/recipes-apps/xfce4-notifyd/files/0001-Restore-libnotify-version-7.0.0-compatibility.patch | 152 ------------------------------------------------------------------------
meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.2.4.bb | 1 -
meta-xfce/recipes-art/rodent-icon-theme/rodent-icon-theme_5.0.bb | 5 +++
meta-xfce/recipes-art/xfce4-icon-theme/xfce4-icon-theme_4.4.3.bb | 14 -------
7 files changed, 61 insertions(+), 172 deletions(-)
create mode 100644 meta-gnome/recipes-gnome/gnome-disk-utility/gnome-disk-utility/0002-Require-libnotify-0.6.1.patch
rename meta-oe/recipes-graphics/fontforge/{fontforge_20141126.bb => fontforge_20150824.bb} (77%)
delete mode 100644 meta-xfce/recipes-apps/xfce4-notifyd/files/0001-Restore-libnotify-version-7.0.0-compatibility.patch
delete mode 100644 meta-xfce/recipes-art/xfce4-icon-theme/xfce4-icon-theme_4.4.3.bb
--
2.1.0
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 1/5] fontforge: update to 20150824
2015-08-27 14:53 [PATCH 0/5] updates and fixes again Andreas Müller
@ 2015-08-27 14:53 ` Andreas Müller
2015-08-27 14:59 ` Alexander Kanavin
2015-08-27 14:53 ` [PATCH 2/5] xfce4-icon-theme: remove Andreas Müller
` (3 subsequent siblings)
4 siblings, 1 reply; 10+ messages in thread
From: Andreas Müller @ 2015-08-27 14:53 UTC (permalink / raw)
To: openembedded-devel
* LICENSE was rewrittem stating out more clearly that huge parts were initially
licensed under BSD clause 3 - so add that licence.
* Follow suggestion not to use github release tarballs [1] and use git as
source.
[1] http://lists.openembedded.org/pipermail/openembedded-devel/2015-August/102843.html
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
.../{fontforge_20141126.bb => fontforge_20150824.bb} | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
rename meta-oe/recipes-graphics/fontforge/{fontforge_20141126.bb => fontforge_20150824.bb} (77%)
diff --git a/meta-oe/recipes-graphics/fontforge/fontforge_20141126.bb b/meta-oe/recipes-graphics/fontforge/fontforge_20150824.bb
similarity index 77%
rename from meta-oe/recipes-graphics/fontforge/fontforge_20141126.bb
rename to meta-oe/recipes-graphics/fontforge/fontforge_20150824.bb
index a2d6cc6..eb58d8f 100644
--- a/meta-oe/recipes-graphics/fontforge/fontforge_20141126.bb
+++ b/meta-oe/recipes-graphics/fontforge/fontforge_20150824.bb
@@ -1,9 +1,9 @@
SUMMARY = "A font editor"
HOMEPAGE = "http://fontforge.github.io/en-US/"
-LICENSE = "GPLv3"
+LICENSE = "BSD-3-Clause & GPLv3"
LIC_FILES_CHKSUM = " \
file://COPYING.gplv3;md5=d32239bcb673463ab874e80d47fae504 \
- file://LICENSE;md5=71d636ba7678baa1573e1b531041386e \
+ file://LICENSE;md5=3f922b42ed0033fa0fd4cd3268f6429c \
"
inherit autotools pkgconfig pythonnative distro_features_check
@@ -12,9 +12,10 @@ DEPENDS = "glib-2.0 pango giflib tiff libxml2 jpeg python libtool"
DEPENDS_append_class-target = " libxi"
REQUIRED_DISTRO_FEATURES_append_class-target = " x11"
-SRC_URI = "https://github.com/${BPN}/${BPN}/archive/${PV}.tar.gz"
-SRC_URI[md5sum] = "0d6f5112c4e5689087339a94aceadf77"
-SRC_URI[sha256sum] = "9c90c640023463c0b2b97b87575a014fcf44f688c3763f4cd136d3c267092106"
+SRC_URI = "git://github.com/${BPN}/${BPN}.git"
+# tag 20150824
+SRCREV = "07d5ccff2704f8a56f1b3cc6695a4e31f85f88e6"
+S = "${WORKDIR}/git"
EXTRA_OECONF_append_class-native = " with_x=no --disable-python-extension --disable-python-scripting"
--
2.1.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 2/5] xfce4-icon-theme: remove
2015-08-27 14:53 [PATCH 0/5] updates and fixes again Andreas Müller
2015-08-27 14:53 ` [PATCH 1/5] fontforge: update to 20150824 Andreas Müller
@ 2015-08-27 14:53 ` Andreas Müller
2015-08-27 14:53 ` [PATCH 3/5] rodent-icon-theme: add RPROVIDES/RREPLACE/RCONFLICTS for xfce4-icon-theme Andreas Müller
` (2 subsequent siblings)
4 siblings, 0 replies; 10+ messages in thread
From: Andreas Müller @ 2015-08-27 14:53 UTC (permalink / raw)
To: openembedded-devel
From: Martin Jansa <martin.jansa@gmail.com>
* replaced by rodent-icon-theme
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
.../recipes-art/xfce4-icon-theme/xfce4-icon-theme_4.4.3.bb | 14 --------------
1 file changed, 14 deletions(-)
delete mode 100644 meta-xfce/recipes-art/xfce4-icon-theme/xfce4-icon-theme_4.4.3.bb
diff --git a/meta-xfce/recipes-art/xfce4-icon-theme/xfce4-icon-theme_4.4.3.bb b/meta-xfce/recipes-art/xfce4-icon-theme/xfce4-icon-theme_4.4.3.bb
deleted file mode 100644
index 1e4b06b..0000000
--- a/meta-xfce/recipes-art/xfce4-icon-theme/xfce4-icon-theme_4.4.3.bb
+++ /dev/null
@@ -1,14 +0,0 @@
-SUMMARY = "xfce4 icon theme rodent"
-SECTION = "x11/wm"
-LICENSE = "GPLv2"
-LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
-
-DEPENDS = "intltool-native xfce4-dev-tools-native"
-
-inherit xfce
-
-SRC_URI = "http://archive.xfce.org/src/art/${BPN}/${@'${PV}'[0:3]}/${BP}.tar.bz2"
-SRC_URI[md5sum] = "73ce2977b84f634a6a6c5d9c27e336db"
-SRC_URI[sha256sum] = "d4786692d56b8a563f66a5f260f1f13ade11e86c78cbcb25a9f9a5fc47cf66fa"
-
-FILES_${PN} += "${datadir}/xfce4/mime"
--
2.1.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 3/5] rodent-icon-theme: add RPROVIDES/RREPLACE/RCONFLICTS for xfce4-icon-theme
2015-08-27 14:53 [PATCH 0/5] updates and fixes again Andreas Müller
2015-08-27 14:53 ` [PATCH 1/5] fontforge: update to 20150824 Andreas Müller
2015-08-27 14:53 ` [PATCH 2/5] xfce4-icon-theme: remove Andreas Müller
@ 2015-08-27 14:53 ` Andreas Müller
2015-08-27 14:53 ` [PATCH 4/5] xfce4-notifyd: fix build for libnotify 0.7.x Andreas Müller
2015-08-27 14:53 ` [PATCH 5/5] gnome-disk-utility: " Andreas Müller
4 siblings, 0 replies; 10+ messages in thread
From: Andreas Müller @ 2015-08-27 14:53 UTC (permalink / raw)
To: openembedded-devel
rodent-icon-theme is successor of xfce4-icon-theme
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
meta-xfce/recipes-art/rodent-icon-theme/rodent-icon-theme_5.0.bb | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/meta-xfce/recipes-art/rodent-icon-theme/rodent-icon-theme_5.0.bb b/meta-xfce/recipes-art/rodent-icon-theme/rodent-icon-theme_5.0.bb
index 130e032..40ba340 100644
--- a/meta-xfce/recipes-art/rodent-icon-theme/rodent-icon-theme_5.0.bb
+++ b/meta-xfce/recipes-art/rodent-icon-theme/rodent-icon-theme_5.0.bb
@@ -9,3 +9,8 @@ SRC_URI[md5sum] = "4b097d344a160d6497c6498985c8df15"
SRC_URI[sha256sum] = "6ed00d16faa1f55b3bb7b13862de1d7f5cfd978b93e42487ded21595d0dbe208"
FILES_${PN} += "${datadir}/icons"
+
+RREPLACES_${PN} += "xfce4-icon-theme"
+RPROVIDES_${PN} += "xfce4-icon-theme"
+RCONFLICTS_${PN} += "xfce4-icon-theme"
+
--
2.1.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 4/5] xfce4-notifyd: fix build for libnotify 0.7.x
2015-08-27 14:53 [PATCH 0/5] updates and fixes again Andreas Müller
` (2 preceding siblings ...)
2015-08-27 14:53 ` [PATCH 3/5] rodent-icon-theme: add RPROVIDES/RREPLACE/RCONFLICTS for xfce4-icon-theme Andreas Müller
@ 2015-08-27 14:53 ` Andreas Müller
2015-08-27 14:53 ` [PATCH 5/5] gnome-disk-utility: " Andreas Müller
4 siblings, 0 replies; 10+ messages in thread
From: Andreas Müller @ 2015-08-27 14:53 UTC (permalink / raw)
To: openembedded-devel
the patch included during last commit only made latest xfce4-notifyd work with
old version of libnotify. I expected it to work also for libnotify 0.7.x but
that failed so remove the patch.
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
...ore-libnotify-version-7.0.0-compatibility.patch | 152 ---------------------
.../xfce4-notifyd/xfce4-notifyd_0.2.4.bb | 1 -
2 files changed, 153 deletions(-)
delete mode 100644 meta-xfce/recipes-apps/xfce4-notifyd/files/0001-Restore-libnotify-version-7.0.0-compatibility.patch
diff --git a/meta-xfce/recipes-apps/xfce4-notifyd/files/0001-Restore-libnotify-version-7.0.0-compatibility.patch b/meta-xfce/recipes-apps/xfce4-notifyd/files/0001-Restore-libnotify-version-7.0.0-compatibility.patch
deleted file mode 100644
index 9e61a0e..0000000
--- a/meta-xfce/recipes-apps/xfce4-notifyd/files/0001-Restore-libnotify-version-7.0.0-compatibility.patch
+++ /dev/null
@@ -1,152 +0,0 @@
-From ebfbe9358068716ed7f39e253bce4d13e696bc9b Mon Sep 17 00:00:00 2001
-From: Ivailo Monev <xakepa10@gmail.com>
-Date: Wed, 11 Dec 2013 13:18:13 +0000
-Subject: [PATCH 1/1] Restore libnotify version < 7.0.0 compatibility
-
-Upstream-Status: Pending [1]
-
-[1] https://mail.xfce.org/pipermail/xfce/2013-December/032733.html
-
-Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
----
- Makefile.am | 4 +++-
- configure.ac | 2 +-
- tests/test-actions.c | 7 ++++++-
- tests/test-positioning.c | 7 ++++++-
- tests/test-text.c | 21 ++++++++++++++++++---
- xfce4-notifyd-config/main.c | 7 ++++++-
- 6 files changed, 40 insertions(+), 8 deletions(-)
-
-diff --git a/Makefile.am b/Makefile.am
-index df81bea..034d6c1 100644
---- a/Makefile.am
-+++ b/Makefile.am
-@@ -271,9 +271,11 @@ noinst_PROGRAMS = \
-
- tests_cflags = \
- -I$(top_srcdir) \
-- $(LIBNOTIFY_CFLAGS)
-+ $(LIBNOTIFY_CFLAGS) \
-+ $(common_cflags)
-
- tests_ldadd = \
-+ $(common_ldadd) \
- $(LIBNOTIFY_LIBS)
-
- tests_test_actions_SOURCES = tests/test-actions.c
-diff --git a/configure.ac b/configure.ac
-index cf5258f..9d2e8a7 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -67,7 +67,7 @@ XDT_CHECK_PACKAGE([XFCONF], [libxfconf-0], [0.1.0svn-r26876])
- XDT_CHECK_PACKAGE([GTK], [gtk+-2.0], [2.14.0])
- XDT_CHECK_PACKAGE([DBUS], [dbus-1], [1.0.0])
- XDT_CHECK_PACKAGE([DBUS_GLIB], [dbus-glib-1], [0.72])
--XDT_CHECK_PACKAGE([LIBNOTIFY], [libnotify], [0.7.0])
-+XDT_CHECK_PACKAGE([LIBNOTIFY], [libnotify], [0.5.0])
-
- AC_PATH_PROG([DBUS_BINDING_TOOL], [dbus-binding-tool])
- AS_IF([test -z "$DBUS_BINDING_TOOL"],
-diff --git a/tests/test-actions.c b/tests/test-actions.c
-index a7f6494..4cdf882 100644
---- a/tests/test-actions.c
-+++ b/tests/test-actions.c
-@@ -106,7 +106,12 @@ int main (int argc, char **argv)
-
- notification = notify_notification_new ("Action!",
- "Click my shiny actions",
-- NULL);
-+ NULL
-+#if NOTIFY_CHECK_VERSION > (0, 6, 9)
-+ );
-+#else
-+ ,NULL);
-+#endif
-
- notify_notification_add_action (notification,
- "action1",
-diff --git a/tests/test-positioning.c b/tests/test-positioning.c
-index 4478a92..2a90c6e 100644
---- a/tests/test-positioning.c
-+++ b/tests/test-positioning.c
-@@ -60,7 +60,12 @@ int main (int argc, char **argv)
-
- notification = notify_notification_new (summary,
- body,
-- NULL);
-+ NULL
-+#if NOTIFY_CHECK_VERSION > (0, 6, 9)
-+ );
-+#else
-+ ,NULL);
-+#endif
-
- if (!notify_notification_show (notification, NULL))
- {
-diff --git a/tests/test-text.c b/tests/test-text.c
-index 7500cb2..ac95931 100644
---- a/tests/test-text.c
-+++ b/tests/test-text.c
-@@ -40,7 +40,12 @@ int main (int argc, char **argv)
-
- notification = notify_notification_new ("Test text support",
- "Does it work?",
-- NULL);
-+ NULL
-+#if NOTIFY_CHECK_VERSION > (0, 6, 9)
-+ );
-+#else
-+ ,NULL);
-+#endif
-
- if (!notify_notification_show (notification, NULL))
- {
-@@ -56,7 +61,12 @@ int main (int argc, char **argv)
-
- notification = notify_notification_new ("Summary only support",
- NULL,
-- NULL);
-+ NULL
-+#if NOTIFY_CHECK_VERSION > (0, 6, 9)
-+ );
-+#else
-+ ,NULL);
-+#endif
-
- if (!notify_notification_show (notification, NULL))
- {
-@@ -75,7 +85,12 @@ int main (int argc, char **argv)
- "<b>Bold</b>\n"
- "<u>Underlined</u>\n"
- "<a href=\"http://www.xfce.org\">Xfce Web site</a>",
-- NULL);
-+ NULL
-+#if NOTIFY_CHECK_VERSION > (0, 6, 9)
-+ );
-+#else
-+ ,NULL);
-+#endif
-
- if (!notify_notification_show (notification, NULL))
- {
-diff --git a/xfce4-notifyd-config/main.c b/xfce4-notifyd-config/main.c
-index 5977749..eff4994 100644
---- a/xfce4-notifyd-config/main.c
-+++ b/xfce4-notifyd-config/main.c
-@@ -56,7 +56,12 @@ xfce_notifyd_config_show_notification_preview(GtkWindow *parent_window)
- notification =
- notify_notification_new(_("Notification Preview"),
- _("This is how notifications will look like"),
-- "xfce4-notifyd");
-+ "xfce4-notifyd"
-+#if NOTIFY_CHECK_VERSION > (0, 6, 9)
-+ );
-+#else
-+ ,NULL);
-+#endif
-
- notify_notification_add_action(notification,
- "button",
---
-1.9.3
-
diff --git a/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.2.4.bb b/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.2.4.bb
index 9d0e198..5f874ad 100644
--- a/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.2.4.bb
+++ b/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.2.4.bb
@@ -8,7 +8,6 @@ inherit xfce-app
SRC_URI[md5sum] = "094be6f29206aac8299f27084e284e88"
SRC_URI[sha256sum] = "8c7ed62f9496816d1391281f77d1b32216f9bf6fd22fbe4f6f3f4e07a6bbced0"
-SRC_URI += "file://0001-Restore-libnotify-version-7.0.0-compatibility.patch"
do_compile_prepend() {
mkdir -p xfce4-notifyd
--
2.1.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 5/5] gnome-disk-utility: fix build for libnotify 0.7.x
2015-08-27 14:53 [PATCH 0/5] updates and fixes again Andreas Müller
` (3 preceding siblings ...)
2015-08-27 14:53 ` [PATCH 4/5] xfce4-notifyd: fix build for libnotify 0.7.x Andreas Müller
@ 2015-08-27 14:53 ` Andreas Müller
4 siblings, 0 replies; 10+ messages in thread
From: Andreas Müller @ 2015-08-27 14:53 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
.../0002-Require-libnotify-0.6.1.patch | 49 ++++++++++++++++++++++
.../gnome-disk-utility_2.32.0.bb | 1 +
2 files changed, 50 insertions(+)
create mode 100644 meta-gnome/recipes-gnome/gnome-disk-utility/gnome-disk-utility/0002-Require-libnotify-0.6.1.patch
diff --git a/meta-gnome/recipes-gnome/gnome-disk-utility/gnome-disk-utility/0002-Require-libnotify-0.6.1.patch b/meta-gnome/recipes-gnome/gnome-disk-utility/gnome-disk-utility/0002-Require-libnotify-0.6.1.patch
new file mode 100644
index 0000000..0bc9707
--- /dev/null
+++ b/meta-gnome/recipes-gnome/gnome-disk-utility/gnome-disk-utility/0002-Require-libnotify-0.6.1.patch
@@ -0,0 +1,49 @@
+From f8dea8dd411cba10a54ec083c3d5c9d641ec36c0 Mon Sep 17 00:00:00 2001
+From: William Jon McCann <jmccann@redhat.com>
+Date: Tue, 12 Oct 2010 00:12:49 -0400
+Subject: [PATCH] Require libnotify 0.6.1
+
+https://bugzilla.gnome.org/show_bug.cgi?id=631940
+
+Upstream-Status: Backport [1]
+
+[1] https://git.gnome.org/browse/gnome-disk-utility/commit/?id=f8dea8dd411cba10a54ec083c3d5c9d641ec36c0
+
+Signed-off-by: David Zeuthen <davidz@redhat.com>
+---
+ configure.ac | 2 +-
+ src/notification/notification-main.c | 5 +----
+ 2 files changed, 2 insertions(+), 5 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index c61212e..3790fcf 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -128,7 +128,7 @@ DBUS_GLIB_REQUIRED=0.74
+ GNOME_KEYRING_REQUIRED=2.22
+ GTK2_REQUIRED=2.20.0
+ UNIQUE_REQUIRED=1.0
+-LIBNOTIFY_REQUIRED=0.3.0
++LIBNOTIFY_REQUIRED=0.6.1
+ NAUTILUS_REQUIRED=2.24.0
+ AVAHI_UI_REQUIRED=0.6.25
+
+diff --git a/src/notification/notification-main.c b/src/notification/notification-main.c
+index 18e9672..b6a713f 100644
+--- a/src/notification/notification-main.c
++++ b/src/notification/notification-main.c
+@@ -535,10 +535,7 @@ update_status_icon (NotificationData *data)
+ _("A hard disk may be failing"),
+ /* Translators: This is used as the text of the notification*/
+ _("One or more hard disks report health problems. Click the icon to get more information."),
+- "gtk-dialog-warning",
+- NULL);
+- notify_notification_attach_to_status_icon (data->ata_smart_notification,
+- data->status_icon);
++ "gtk-dialog-warning");
+ notify_notification_set_urgency (data->ata_smart_notification, NOTIFY_URGENCY_CRITICAL);
+ notify_notification_set_timeout (data->ata_smart_notification, NOTIFY_EXPIRES_NEVER);
+ show_notification (data);
+--
+2.1.0
+
diff --git a/meta-gnome/recipes-gnome/gnome-disk-utility/gnome-disk-utility_2.32.0.bb b/meta-gnome/recipes-gnome/gnome-disk-utility/gnome-disk-utility_2.32.0.bb
index 2c526c8..cfc5f77 100644
--- a/meta-gnome/recipes-gnome/gnome-disk-utility/gnome-disk-utility_2.32.0.bb
+++ b/meta-gnome/recipes-gnome/gnome-disk-utility/gnome-disk-utility_2.32.0.bb
@@ -16,6 +16,7 @@ SRC_URI += "\
file://fix-dbus-interfaces.patch \
file://sysrooted-pkg-config.patch \
file://0001-Add-support-for-DeviceAutomountHint.patch \
+ file://0002-Require-libnotify-0.6.1.patch \
"
EXTRA_OECONF += "--disable-scrollkeeper"
--
2.1.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH 1/5] fontforge: update to 20150824
2015-08-27 14:53 ` [PATCH 1/5] fontforge: update to 20150824 Andreas Müller
@ 2015-08-27 14:59 ` Alexander Kanavin
2015-08-27 15:10 ` Andreas Müller
0 siblings, 1 reply; 10+ messages in thread
From: Alexander Kanavin @ 2015-08-27 14:59 UTC (permalink / raw)
To: openembedded-devel
On 08/27/2015 05:53 PM, Andreas Müller wrote:
> --- a/meta-oe/recipes-graphics/fontforge/fontforge_20141126.bb
> +++ b/meta-oe/recipes-graphics/fontforge/fontforge_20150824.bb
> @@ -1,9 +1,9 @@
> SUMMARY = "A font editor"
> HOMEPAGE = "http://fontforge.github.io/en-US/"
Oe-core has liberation-fonts package which apparently can not be updated
because newer versions depend on fontforge. Would you be interested in
moving fontforge to oe-core and updating liberation-fonts?
Alex
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 1/5] fontforge: update to 20150824
2015-08-27 14:59 ` Alexander Kanavin
@ 2015-08-27 15:10 ` Andreas Müller
2015-08-27 15:28 ` Paul Eggleton
0 siblings, 1 reply; 10+ messages in thread
From: Andreas Müller @ 2015-08-27 15:10 UTC (permalink / raw)
To: openembedded-devel@lists.openembedded.org
On Thu, Aug 27, 2015 at 4:59 PM, Alexander Kanavin
<alexander.kanavin@linux.intel.com> wrote:
> On 08/27/2015 05:53 PM, Andreas Müller wrote:
>>
>> --- a/meta-oe/recipes-graphics/fontforge/fontforge_20141126.bb
>> +++ b/meta-oe/recipes-graphics/fontforge/fontforge_20150824.bb
>> @@ -1,9 +1,9 @@
>> SUMMARY = "A font editor"
>> HOMEPAGE = "http://fontforge.github.io/en-US/"
>
>
> Oe-core has liberation-fonts package which apparently can not be updated
> because newer versions depend on fontforge. Would you be interested in
> moving fontforge to oe-core and updating liberation-fonts?
>
>
> Alex
>
LOL: I've tried that long time ago - maybe you should try with your
magic @intel.com
[1] http://lists.openembedded.org/pipermail/openembedded-core/2015-February/101757.html
Andreas
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 1/5] fontforge: update to 20150824
2015-08-27 15:10 ` Andreas Müller
@ 2015-08-27 15:28 ` Paul Eggleton
2015-08-28 10:57 ` Alexander Kanavin
0 siblings, 1 reply; 10+ messages in thread
From: Paul Eggleton @ 2015-08-27 15:28 UTC (permalink / raw)
To: Andreas Müller; +Cc: Alexander Kanavin, openembedded-devel
On Thursday 27 August 2015 17:10:21 Andreas Müller wrote:
> On Thu, Aug 27, 2015 at 4:59 PM, Alexander Kanavin
>
> <alexander.kanavin@linux.intel.com> wrote:
> > On 08/27/2015 05:53 PM, Andreas Müller wrote:
> >> --- a/meta-oe/recipes-graphics/fontforge/fontforge_20141126.bb
> >> +++ b/meta-oe/recipes-graphics/fontforge/fontforge_20150824.bb
> >> @@ -1,9 +1,9 @@
> >>
> >> SUMMARY = "A font editor"
> >> HOMEPAGE = "http://fontforge.github.io/en-US/"
> >
> > Oe-core has liberation-fonts package which apparently can not be updated
> > because newer versions depend on fontforge. Would you be interested in
> > moving fontforge to oe-core and updating liberation-fonts?
>
> LOL: I've tried that long time ago - maybe you should try with your
> magic @intel.com
A different person asking doesn't make the idea any more palatable (not to me,
at least...)
Since this wasn't explored earlier though, if we absolutely must upgrade
liberation-fonts and there really is no alternative to distributing this font
other than to build it from source then we're left with little choice, but are
both of those things true?
Cheers,
Paul
--
Paul Eggleton
Intel Open Source Technology Centre
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 1/5] fontforge: update to 20150824
2015-08-27 15:28 ` Paul Eggleton
@ 2015-08-28 10:57 ` Alexander Kanavin
0 siblings, 0 replies; 10+ messages in thread
From: Alexander Kanavin @ 2015-08-28 10:57 UTC (permalink / raw)
To: openembedded-devel
On 08/27/2015 06:28 PM, Paul Eggleton wrote:
> A different person asking doesn't make the idea any more palatable (not to me,
> at least...)
>
> Since this wasn't explored earlier though, if we absolutely must upgrade
> liberation-fonts and there really is no alternative to distributing this font
> other than to build it from source then we're left with little choice, but are
> both of those things true?
I haven't explored the situation in detail; I've only seen the
RECIPE_NO_UPDATE_REASON that someone else added, and took what it says
at face value: it is desirable to update the fonts, but absence of
fontforge in oe-core prevents it.
Alex
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2015-08-28 10:55 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-27 14:53 [PATCH 0/5] updates and fixes again Andreas Müller
2015-08-27 14:53 ` [PATCH 1/5] fontforge: update to 20150824 Andreas Müller
2015-08-27 14:59 ` Alexander Kanavin
2015-08-27 15:10 ` Andreas Müller
2015-08-27 15:28 ` Paul Eggleton
2015-08-28 10:57 ` Alexander Kanavin
2015-08-27 14:53 ` [PATCH 2/5] xfce4-icon-theme: remove Andreas Müller
2015-08-27 14:53 ` [PATCH 3/5] rodent-icon-theme: add RPROVIDES/RREPLACE/RCONFLICTS for xfce4-icon-theme Andreas Müller
2015-08-27 14:53 ` [PATCH 4/5] xfce4-notifyd: fix build for libnotify 0.7.x Andreas Müller
2015-08-27 14:53 ` [PATCH 5/5] gnome-disk-utility: " 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.