* [meta-xfce 00/11] various updates
@ 2011-09-21 6:11 Andreas Müller
2011-09-21 6:11 ` [meta-xfce 01/11] xfce4-dev-tools: add native support Andreas Müller
` (11 more replies)
0 siblings, 12 replies; 18+ messages in thread
From: Andreas Müller @ 2011-09-21 6:11 UTC (permalink / raw)
To: openembedded-devel
* xfce4-dev-tools mainly contain autoconf extensions -> native
* bump to latest mainline versions
* xfce4-notifyd added
The recipes were build tested and run tested on overo.
Andreas Müller (11):
xfce4-dev-tools: add native support
garcon: DEPENDS xfce4-dev-tools -> xfce4-dev-tools-native
libxfce4util: DEPENDS xfce4-dev-tools -> xfce4-dev-tools-native
xfce-utils: add openssh-misc to RDEPENDS_${PN}
xfce4-session: Bump to version 4.8.2
garcon: Bump to version 0.1.9
libxfce4util: Bump to version 4.8.2
gtk-xfce-engine: Bump to version 2.9.0 & minor cleanup
xfdesktop: Bump to version 4.8.3 & recreate patch
xfce4-notifyd: Add initial recipe with version 0.2.2
task-xfce-base: add xfce4-notifyd
.../xfce4-notifyd/xfce4-notifyd_0.2.2.bb | 21 ++++++++++++++++++++
.../garcon/{garcon_0.1.8.bb => garcon_0.1.9.bb} | 6 ++--
...ce-engine_2.8.1.bb => gtk-xfce-engine_2.9.0.bb} | 7 +++--
...libxfce4util_4.8.1.bb => libxfce4util_4.8.2.bb} | 6 ++--
meta-xfce/recipes-xfce/tasks/task-xfce-base.bb | 2 +
.../recipes-xfce/xfce-utils/xfce-utils_4.8.2.bb | 4 +-
.../xfce4-dev-tools/xfce4-dev-tools_4.8.0.bb | 7 +++++-
.../xfce4-session/relative-symlinks-docs.patch | 11 ----------
...ce4-session_4.8.1.bb => xfce4-session_4.8.2.bb} | 9 +------
.../xfdesktop/relative-symlinks-docs.patch | 11 ++++++---
.../{xfdesktop_4.8.2.bb => xfdesktop_4.8.3.bb} | 4 +-
11 files changed, 52 insertions(+), 36 deletions(-)
create mode 100644 meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.2.2.bb
rename meta-xfce/recipes-xfce/garcon/{garcon_0.1.8.bb => garcon_0.1.9.bb} (52%)
rename meta-xfce/recipes-xfce/gtk-xfce-engine/{gtk-xfce-engine_2.8.1.bb => gtk-xfce-engine_2.9.0.bb} (60%)
rename meta-xfce/recipes-xfce/libxfce4util/{libxfce4util_4.8.1.bb => libxfce4util_4.8.2.bb} (53%)
delete mode 100644 meta-xfce/recipes-xfce/xfce4-session/xfce4-session/relative-symlinks-docs.patch
rename meta-xfce/recipes-xfce/xfce4-session/{xfce4-session_4.8.1.bb => xfce4-session_4.8.2.bb} (77%)
rename meta-xfce/recipes-xfce/xfdesktop/{xfdesktop_4.8.2.bb => xfdesktop_4.8.3.bb} (73%)
--
1.7.4.4
^ permalink raw reply [flat|nested] 18+ messages in thread
* [meta-xfce 01/11] xfce4-dev-tools: add native support
2011-09-21 6:11 [meta-xfce 00/11] various updates Andreas Müller
@ 2011-09-21 6:11 ` Andreas Müller
2011-09-21 7:10 ` Koen Kooi
2011-09-21 6:11 ` [meta-xfce 02/11] garcon: DEPENDS xfce4-dev-tools -> xfce4-dev-tools-native Andreas Müller
` (10 subsequent siblings)
11 siblings, 1 reply; 18+ messages in thread
From: Andreas Müller @ 2011-09-21 6:11 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Andreas Müller <schnitzeltony@gmx.de>
---
.../xfce4-dev-tools/xfce4-dev-tools_4.8.0.bb | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/meta-xfce/recipes-xfce/xfce4-dev-tools/xfce4-dev-tools_4.8.0.bb b/meta-xfce/recipes-xfce/xfce4-dev-tools/xfce4-dev-tools_4.8.0.bb
index 3df67ee..3985a0e 100644
--- a/meta-xfce/recipes-xfce/xfce4-dev-tools/xfce4-dev-tools_4.8.0.bb
+++ b/meta-xfce/recipes-xfce/xfce4-dev-tools/xfce4-dev-tools_4.8.0.bb
@@ -3,10 +3,15 @@ SECTION = "x11/libs"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=9ac2e7cff1ddaf48b6eab6028f23ef88"
-PR = "r0"
+PR = "r1"
+
+BBCLASSEXTEND = "native"
inherit xfce
+# inherited SRC_URI does not work for native
+SRC_URI = "http://archive.xfce.org/src/xfce/xfce4-dev-tools/${@'${PV}'[0:3]}/xfce4-dev-tools-${PV}.tar.bz2"
+
do_install_append() {
install -d ${D}${datadir}/aclocal
install -m 644 m4macros/*.m4 ${D}${datadir}/aclocal/
--
1.7.4.4
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [meta-xfce 02/11] garcon: DEPENDS xfce4-dev-tools -> xfce4-dev-tools-native
2011-09-21 6:11 [meta-xfce 00/11] various updates Andreas Müller
2011-09-21 6:11 ` [meta-xfce 01/11] xfce4-dev-tools: add native support Andreas Müller
@ 2011-09-21 6:11 ` Andreas Müller
2011-09-21 6:11 ` [meta-xfce 03/11] libxfce4util: " Andreas Müller
` (9 subsequent siblings)
11 siblings, 0 replies; 18+ messages in thread
From: Andreas Müller @ 2011-09-21 6:11 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Andreas Müller <schnitzeltony@gmx.de>
---
meta-xfce/recipes-xfce/garcon/garcon_0.1.8.bb | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/meta-xfce/recipes-xfce/garcon/garcon_0.1.8.bb b/meta-xfce/recipes-xfce/garcon/garcon_0.1.8.bb
index 63825fe..344f2d4 100644
--- a/meta-xfce/recipes-xfce/garcon/garcon_0.1.8.bb
+++ b/meta-xfce/recipes-xfce/garcon/garcon_0.1.8.bb
@@ -2,7 +2,7 @@ DESCRIPTION="Xfce Menu Library"
SECTION = "x11/libs"
LICENSE = "LGPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=04a01abcbdabffae1ca26335a293276b"
-DEPENDS = "glib-2.0 xfce4-dev-tools"
+DEPENDS = "glib-2.0 xfce4-dev-tools-native"
PR = "r0"
--
1.7.4.4
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [meta-xfce 03/11] libxfce4util: DEPENDS xfce4-dev-tools -> xfce4-dev-tools-native
2011-09-21 6:11 [meta-xfce 00/11] various updates Andreas Müller
2011-09-21 6:11 ` [meta-xfce 01/11] xfce4-dev-tools: add native support Andreas Müller
2011-09-21 6:11 ` [meta-xfce 02/11] garcon: DEPENDS xfce4-dev-tools -> xfce4-dev-tools-native Andreas Müller
@ 2011-09-21 6:11 ` Andreas Müller
2011-09-21 6:11 ` [meta-xfce 04/11] xfce-utils: add openssh-misc to RDEPENDS_${PN} Andreas Müller
` (8 subsequent siblings)
11 siblings, 0 replies; 18+ messages in thread
From: Andreas Müller @ 2011-09-21 6:11 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Andreas Müller <schnitzeltony@gmx.de>
---
.../libxfce4util/libxfce4util_4.8.1.bb | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/meta-xfce/recipes-xfce/libxfce4util/libxfce4util_4.8.1.bb b/meta-xfce/recipes-xfce/libxfce4util/libxfce4util_4.8.1.bb
index 5d94b6c..bda79dd 100644
--- a/meta-xfce/recipes-xfce/libxfce4util/libxfce4util_4.8.1.bb
+++ b/meta-xfce/recipes-xfce/libxfce4util/libxfce4util_4.8.1.bb
@@ -2,7 +2,7 @@ DESCRIPTION = "Basic utility library for Xfce4"
SECTION = "x11/libs"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=252890d9eee26aab7b432e8b8a616475"
-DEPENDS = "intltool-native xfce4-dev-tools glib-2.0"
+DEPENDS = "intltool-native xfce4-dev-tools-native glib-2.0"
PR = "r0"
--
1.7.4.4
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [meta-xfce 04/11] xfce-utils: add openssh-misc to RDEPENDS_${PN}
2011-09-21 6:11 [meta-xfce 00/11] various updates Andreas Müller
` (2 preceding siblings ...)
2011-09-21 6:11 ` [meta-xfce 03/11] libxfce4util: " Andreas Müller
@ 2011-09-21 6:11 ` Andreas Müller
2011-09-21 7:12 ` Koen Kooi
2011-09-21 6:11 ` [meta-xfce 05/11] xfce4-session: Bump to version 4.8.2 Andreas Müller
` (7 subsequent siblings)
11 siblings, 1 reply; 18+ messages in thread
From: Andreas Müller @ 2011-09-21 6:11 UTC (permalink / raw)
To: openembedded-devel
log message was: /etc/xdg/xfce4/xinitrc: line 171: ssh-agent: command not found
Signed-off-by: Andreas Müller <schnitzeltony@gmx.de>
---
.../recipes-xfce/xfce-utils/xfce-utils_4.8.2.bb | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta-xfce/recipes-xfce/xfce-utils/xfce-utils_4.8.2.bb b/meta-xfce/recipes-xfce/xfce-utils/xfce-utils_4.8.2.bb
index e36b6a7..418e3c0 100644
--- a/meta-xfce/recipes-xfce/xfce-utils/xfce-utils_4.8.2.bb
+++ b/meta-xfce/recipes-xfce/xfce-utils/xfce-utils_4.8.2.bb
@@ -3,9 +3,9 @@ SECTION = "x11"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=9ac2e7cff1ddaf48b6eab6028f23ef88"
DEPENDS = "gtk+ virtual/libx11 dbus libxfce4util libxfce4ui"
-RDEPENDS_${PN} = "xrdb"
+RDEPENDS_${PN} = "xrdb openssh-misc"
-PR = "r0"
+PR = "r1"
inherit xfce
--
1.7.4.4
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [meta-xfce 05/11] xfce4-session: Bump to version 4.8.2
2011-09-21 6:11 [meta-xfce 00/11] various updates Andreas Müller
` (3 preceding siblings ...)
2011-09-21 6:11 ` [meta-xfce 04/11] xfce-utils: add openssh-misc to RDEPENDS_${PN} Andreas Müller
@ 2011-09-21 6:11 ` Andreas Müller
2011-09-21 6:11 ` [meta-xfce 06/11] garcon: Bump to version 0.1.9 Andreas Müller
` (6 subsequent siblings)
11 siblings, 0 replies; 18+ messages in thread
From: Andreas Müller @ 2011-09-21 6:11 UTC (permalink / raw)
To: openembedded-devel
relative-symlinks-docs.patch is now mainline [1]
[1] http://git.xfce.org/xfce/xfce4-session/commit/?id=00159a379b8b192615137e59b66d5317493f57f3
Signed-off-by: Andreas Müller <schnitzeltony@gmx.de>
---
.../xfce4-session/relative-symlinks-docs.patch | 11 -----------
...ce4-session_4.8.1.bb => xfce4-session_4.8.2.bb} | 9 ++-------
2 files changed, 2 insertions(+), 18 deletions(-)
delete mode 100644 meta-xfce/recipes-xfce/xfce4-session/xfce4-session/relative-symlinks-docs.patch
rename meta-xfce/recipes-xfce/xfce4-session/{xfce4-session_4.8.1.bb => xfce4-session_4.8.2.bb} (77%)
diff --git a/meta-xfce/recipes-xfce/xfce4-session/xfce4-session/relative-symlinks-docs.patch b/meta-xfce/recipes-xfce/xfce4-session/xfce4-session/relative-symlinks-docs.patch
deleted file mode 100644
index fb78c57..0000000
--- a/meta-xfce/recipes-xfce/xfce4-session/xfce4-session/relative-symlinks-docs.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/doc/manual/Makefile.am 2010-09-08 18:37:19.000000000 +0200
-+++ b/doc/manual/Makefile.am 2011-07-17 23:17:28.602626999 +0200
-@@ -20,7 +20,7 @@
- done; \
- if test x"$$lang" != x"C" -a ! -d $(srcdir)/images/$$lang; then \
- echo "--- Creating symlink to C images for $$lang"; \
-- ln -sf $(docdir)/html/C/images $(DESTDIR)$(docdir)/html/$$lang/images; \
-+ ln -sf ../C/images $(DESTDIR)$(docdir)/html/$$lang/images; \
- fi \
- fi \
- done;
diff --git a/meta-xfce/recipes-xfce/xfce4-session/xfce4-session_4.8.1.bb b/meta-xfce/recipes-xfce/xfce4-session/xfce4-session_4.8.2.bb
similarity index 77%
rename from meta-xfce/recipes-xfce/xfce4-session/xfce4-session_4.8.1.bb
rename to meta-xfce/recipes-xfce/xfce4-session/xfce4-session_4.8.2.bb
index bedd35f..65b1add 100644
--- a/meta-xfce/recipes-xfce/xfce4-session/xfce4-session_4.8.1.bb
+++ b/meta-xfce/recipes-xfce/xfce4-session/xfce4-session_4.8.2.bb
@@ -9,11 +9,6 @@ PR = "r0"
inherit xfce
-# SRC_URI must follow inherited one
-SRC_URI += " \
- file://relative-symlinks-docs.patch \
-"
-
# protect from frightening message that xfce might not work correctly
pkg_postinst_${PN} () {
echo 127.0.0.1 ${MACHINE} >> /etc/hosts
@@ -28,5 +23,5 @@ FILES_${PN}-dbg += "${libdir}/xfce4/*/*/.debug"
FILES_${PN}-dev += "${libdir}/xfce4/*/*/*.*a"
-SRC_URI[md5sum] = "478080ff666fdd36786a243829663efd"
-SRC_URI[sha256sum] = "1df52a77d87ed4d27b4f40a2f03a0b6334422d64bdc4e31b9aac22e25e68b829"
+SRC_URI[md5sum] = "48780cbcf784ab64debc9312f17765f2"
+SRC_URI[sha256sum] = "31bca2a559e05a8a859f150394a901517e5842414ef171a85c5da234e344c0d0"
--
1.7.4.4
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [meta-xfce 06/11] garcon: Bump to version 0.1.9
2011-09-21 6:11 [meta-xfce 00/11] various updates Andreas Müller
` (4 preceding siblings ...)
2011-09-21 6:11 ` [meta-xfce 05/11] xfce4-session: Bump to version 4.8.2 Andreas Müller
@ 2011-09-21 6:11 ` Andreas Müller
2011-09-21 6:11 ` [meta-xfce 07/11] libxfce4util: Bump to version 4.8.2 Andreas Müller
` (5 subsequent siblings)
11 siblings, 0 replies; 18+ messages in thread
From: Andreas Müller @ 2011-09-21 6:11 UTC (permalink / raw)
To: openembedded-devel
Added libxfce4util to DEPENDS see [1]
[1] http://mail.xfce.org/pipermail/xfce/2011-September/029145.html
Signed-off-by: Andreas Müller <schnitzeltony@gmx.de>
---
.../garcon/{garcon_0.1.8.bb => garcon_0.1.9.bb} | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
rename meta-xfce/recipes-xfce/garcon/{garcon_0.1.8.bb => garcon_0.1.9.bb} (52%)
diff --git a/meta-xfce/recipes-xfce/garcon/garcon_0.1.8.bb b/meta-xfce/recipes-xfce/garcon/garcon_0.1.9.bb
similarity index 52%
rename from meta-xfce/recipes-xfce/garcon/garcon_0.1.8.bb
rename to meta-xfce/recipes-xfce/garcon/garcon_0.1.9.bb
index 344f2d4..e99cb4d 100644
--- a/meta-xfce/recipes-xfce/garcon/garcon_0.1.8.bb
+++ b/meta-xfce/recipes-xfce/garcon/garcon_0.1.9.bb
@@ -2,7 +2,7 @@ DESCRIPTION="Xfce Menu Library"
SECTION = "x11/libs"
LICENSE = "LGPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=04a01abcbdabffae1ca26335a293276b"
-DEPENDS = "glib-2.0 xfce4-dev-tools-native"
+DEPENDS = "glib-2.0 xfce4-dev-tools-native libxfce4util"
PR = "r0"
@@ -10,5 +10,5 @@ inherit xfce
FILES_${PN} += " ${datadir}/desktop-directories"
-SRC_URI[md5sum] = "18fbf523ed2865dfaccdfb40b4b20b05"
-SRC_URI[sha256sum] = "955a05e72ebbadc8207bb7b2c7349e71830dbdd596dbba3ea3665f0ecfb9cf63"
+SRC_URI[md5sum] = "a3ca1e54ad731c98f688900f6398fc20"
+SRC_URI[sha256sum] = "485e23c8ec1af0d3af423aa244e05467dd2f96afbb66efc70ca7689222cf31d5"
--
1.7.4.4
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [meta-xfce 07/11] libxfce4util: Bump to version 4.8.2
2011-09-21 6:11 [meta-xfce 00/11] various updates Andreas Müller
` (5 preceding siblings ...)
2011-09-21 6:11 ` [meta-xfce 06/11] garcon: Bump to version 0.1.9 Andreas Müller
@ 2011-09-21 6:11 ` Andreas Müller
2011-09-21 6:11 ` [meta-xfce 08/11] gtk-xfce-engine: Bump to version 2.9.0 & minor cleanup Andreas Müller
` (4 subsequent siblings)
11 siblings, 0 replies; 18+ messages in thread
From: Andreas Müller @ 2011-09-21 6:11 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Andreas Müller <schnitzeltony@gmx.de>
---
...libxfce4util_4.8.1.bb => libxfce4util_4.8.2.bb} | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
rename meta-xfce/recipes-xfce/libxfce4util/{libxfce4util_4.8.1.bb => libxfce4util_4.8.2.bb} (67%)
diff --git a/meta-xfce/recipes-xfce/libxfce4util/libxfce4util_4.8.1.bb b/meta-xfce/recipes-xfce/libxfce4util/libxfce4util_4.8.2.bb
similarity index 67%
rename from meta-xfce/recipes-xfce/libxfce4util/libxfce4util_4.8.1.bb
rename to meta-xfce/recipes-xfce/libxfce4util/libxfce4util_4.8.2.bb
index bda79dd..a9819fb 100644
--- a/meta-xfce/recipes-xfce/libxfce4util/libxfce4util_4.8.1.bb
+++ b/meta-xfce/recipes-xfce/libxfce4util/libxfce4util_4.8.2.bb
@@ -10,5 +10,5 @@ inherit xfce
EXTRA_OECONF += "--with-broken-putenv=yes"
-SRC_URI[md5sum] = "2be3af4c7db5ad293a7525e1021e6f0f"
-SRC_URI[sha256sum] = "732aeb4f845fb92efb5487e49662f5b8544ea5feb9f1e4bd7629e726aaa70c81"
+SRC_URI[md5sum] = "3376a77637a4292a863027d595548ee2"
+SRC_URI[sha256sum] = "05a149841575cb961588742c8c9795c6f0d09f27d59546dd8a933b010d2ac816"
--
1.7.4.4
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [meta-xfce 08/11] gtk-xfce-engine: Bump to version 2.9.0 & minor cleanup
2011-09-21 6:11 [meta-xfce 00/11] various updates Andreas Müller
` (6 preceding siblings ...)
2011-09-21 6:11 ` [meta-xfce 07/11] libxfce4util: Bump to version 4.8.2 Andreas Müller
@ 2011-09-21 6:11 ` Andreas Müller
2011-09-21 7:15 ` Koen Kooi
2011-09-21 6:11 ` [meta-xfce 09/11] xfdesktop: Bump to version 4.8.3 & recreate patch Andreas Müller
` (3 subsequent siblings)
11 siblings, 1 reply; 18+ messages in thread
From: Andreas Müller @ 2011-09-21 6:11 UTC (permalink / raw)
To: openembedded-devel
* Added xfce4-dev-tools-native to DEPENDS error message was
| gtk-xfce-engine-2.9.0/configure: line 12041: syntax error near unexpected token `GTK,'
| gtk-xfce-engine-2.9.0/configure: line 12041: `XDT_CHECK_PACKAGE(GTK, gtk+-2.0, 2.20.0)'
* Added cairo to RDEPENDS_${PN} see [1]
[1] http://mail.xfce.org/pipermail/xfce/2011-September/029144.html
Signed-off-by: Andreas Müller <schnitzeltony@gmx.de>
---
...ce-engine_2.8.1.bb => gtk-xfce-engine_2.9.0.bb} | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
rename meta-xfce/recipes-xfce/gtk-xfce-engine/{gtk-xfce-engine_2.8.1.bb => gtk-xfce-engine_2.9.0.bb} (60%)
diff --git a/meta-xfce/recipes-xfce/gtk-xfce-engine/gtk-xfce-engine_2.8.1.bb b/meta-xfce/recipes-xfce/gtk-xfce-engine/gtk-xfce-engine_2.9.0.bb
similarity index 60%
rename from meta-xfce/recipes-xfce/gtk-xfce-engine/gtk-xfce-engine_2.8.1.bb
rename to meta-xfce/recipes-xfce/gtk-xfce-engine/gtk-xfce-engine_2.9.0.bb
index 91239bf..3585bcb 100644
--- a/meta-xfce/recipes-xfce/gtk-xfce-engine/gtk-xfce-engine_2.8.1.bb
+++ b/meta-xfce/recipes-xfce/gtk-xfce-engine/gtk-xfce-engine_2.9.0.bb
@@ -2,7 +2,8 @@ DESCRIPTION = "XFCE theme for GTK"
SECTION = "x11/libs"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
-DEPENDS += "gtk+"
+DEPENDS = "gtk+ xfce4-dev-tools-native"
+RDEPENDS_${PN} = "cairo"
PR = "r0"
@@ -12,5 +13,5 @@ FILES_${PN} += "${libdir}/gtk-2.0/*/engines \
${datadir}/themes/"
FILES_${PN}-dbg += "${libdir}/gtk-2.0/*/engines/.debug"
-SRC_URI[md5sum] = "8a6527b61b0554cda11d06f66a567314"
-SRC_URI[sha256sum] = "7cb0a52d74cded5c6a86894babd214de723bcf68771195db6d94acf5161be617"
+SRC_URI[md5sum] = "e2bc76ab5093ff8472e728e6d6ad5da2"
+SRC_URI[sha256sum] = "55604002526c800539f2a8a79e7df3bf23717f45e4bfab31c154c8d01caf3af7"
--
1.7.4.4
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [meta-xfce 09/11] xfdesktop: Bump to version 4.8.3 & recreate patch
2011-09-21 6:11 [meta-xfce 00/11] various updates Andreas Müller
` (7 preceding siblings ...)
2011-09-21 6:11 ` [meta-xfce 08/11] gtk-xfce-engine: Bump to version 2.9.0 & minor cleanup Andreas Müller
@ 2011-09-21 6:11 ` Andreas Müller
2011-09-21 6:11 ` [meta-xfce 10/11] xfce4-notifyd: Add initial recipe with version 0.2.2 Andreas Müller
` (2 subsequent siblings)
11 siblings, 0 replies; 18+ messages in thread
From: Andreas Müller @ 2011-09-21 6:11 UTC (permalink / raw)
To: openembedded-devel
New version of relative-symlinks-docs.patch was sent to xfce-buglist [1]
[1] https://bugzilla.xfce.org/show_bug.cgi?id=7977
Signed-off-by: Andreas Müller <schnitzeltony@gmx.de>
---
.../xfdesktop/relative-symlinks-docs.patch | 11 +++++++----
.../{xfdesktop_4.8.2.bb => xfdesktop_4.8.3.bb} | 4 ++--
2 files changed, 9 insertions(+), 6 deletions(-)
rename meta-xfce/recipes-xfce/xfdesktop/{xfdesktop_4.8.2.bb => xfdesktop_4.8.3.bb} (73%)
diff --git a/meta-xfce/recipes-xfce/xfdesktop/xfdesktop/relative-symlinks-docs.patch b/meta-xfce/recipes-xfce/xfdesktop/xfdesktop/relative-symlinks-docs.patch
index fa70f6e..751d7a6 100644
--- a/meta-xfce/recipes-xfce/xfdesktop/xfdesktop/relative-symlinks-docs.patch
+++ b/meta-xfce/recipes-xfce/xfdesktop/xfdesktop/relative-symlinks-docs.patch
@@ -1,11 +1,14 @@
-From 90e191cc4719172aa84e6a8ae694a6f2d6ee8989 Mon Sep 17 00:00:00 2001
-From: Andreas Mueller <schnitzeltony@gmx.de>
-Date: Fri, 22 Jul 2011 00:05:15 +0200
+From 5039e7834fff94f8393963ea8dbad81fa95ef810 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmx.de>
+Date: Fri, 16 Sep 2011 21:09:05 +0200
Subject: [PATCH] docs: On installation create relative paths in symlinks to
images
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
-Signed-off-by: Andreas Mueller <schnitzeltony@gmx.de>
+Signed-off-by: Andreas Müller <schnitzeltony@gmx.de>
---
doc/manual/Makefile.am | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/meta-xfce/recipes-xfce/xfdesktop/xfdesktop_4.8.2.bb b/meta-xfce/recipes-xfce/xfdesktop/xfdesktop_4.8.3.bb
similarity index 73%
rename from meta-xfce/recipes-xfce/xfdesktop/xfdesktop_4.8.2.bb
rename to meta-xfce/recipes-xfce/xfdesktop/xfdesktop_4.8.3.bb
index c3be330..2866280 100644
--- a/meta-xfce/recipes-xfce/xfdesktop/xfdesktop_4.8.2.bb
+++ b/meta-xfce/recipes-xfce/xfdesktop/xfdesktop_4.8.3.bb
@@ -15,5 +15,5 @@ SRC_URI += " \
FILES_${PN} += "${datadir}/xfce4/backdrops"
-SRC_URI[md5sum] = "ed25d59f478afda552d121e96657d16f"
-SRC_URI[sha256sum] = "9d0a48c4e9ed6723a3f9a1c5303e2bbe9b04a3b483c52472da46881df4595e71"
+SRC_URI[md5sum] = "617c667c469698e8c974e38412cb484c"
+SRC_URI[sha256sum] = "e58460f52ae96c389402f6db62c46db61cd51cdb550a42bd97c0ab2a5b62f424"
--
1.7.4.4
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [meta-xfce 10/11] xfce4-notifyd: Add initial recipe with version 0.2.2
2011-09-21 6:11 [meta-xfce 00/11] various updates Andreas Müller
` (8 preceding siblings ...)
2011-09-21 6:11 ` [meta-xfce 09/11] xfdesktop: Bump to version 4.8.3 & recreate patch Andreas Müller
@ 2011-09-21 6:11 ` Andreas Müller
2011-09-21 6:12 ` [meta-xfce 11/11] task-xfce-base: add xfce4-notifyd Andreas Müller
2011-09-21 7:01 ` [meta-xfce 00/11] various updates Koen Kooi
11 siblings, 0 replies; 18+ messages in thread
From: Andreas Müller @ 2011-09-21 6:11 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Andreas Müller <schnitzeltony@gmx.de>
---
.../xfce4-notifyd/xfce4-notifyd_0.2.2.bb | 21 ++++++++++++++++++++
1 files changed, 21 insertions(+), 0 deletions(-)
create mode 100644 meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.2.2.bb
diff --git a/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.2.2.bb b/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.2.2.bb
new file mode 100644
index 0000000..4fea1de
--- /dev/null
+++ b/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.2.2.bb
@@ -0,0 +1,21 @@
+DESCRIPTION = "Easily themable notification daemon with transparency effects"
+HOMEPAGE = "http://goodies.xfce.org/projects/applications/xfce4-notifyd"
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
+DEPENDS = "libxfce4util libxfce4ui xfconf gtk+ dbus dbus-glib"
+
+PR = "r0"
+
+inherit xfce
+
+# SRC_URI must follow inherited one
+SRC_URI = "http://archive.xfce.org/src/apps/${PN}/${@'${PV}'[0:3]}/${PN}-${PV}.tar.bz2"
+
+FILES_${PN} += " \
+ ${libdir}/xfce4/notifyd \
+ ${datadir}/themes \
+ ${datadir}/dbus-1 \
+"
+
+SRC_URI[md5sum] = "8687fb7a0f270231ada265e363b6ffcc"
+SRC_URI[sha256sum] = "b66e68dfc2164bcf479acd3c7e8b6f83065d23aef988535e2db3506d06a39168"
--
1.7.4.4
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [meta-xfce 11/11] task-xfce-base: add xfce4-notifyd
2011-09-21 6:11 [meta-xfce 00/11] various updates Andreas Müller
` (9 preceding siblings ...)
2011-09-21 6:11 ` [meta-xfce 10/11] xfce4-notifyd: Add initial recipe with version 0.2.2 Andreas Müller
@ 2011-09-21 6:12 ` Andreas Müller
2011-09-21 7:01 ` [meta-xfce 00/11] various updates Koen Kooi
11 siblings, 0 replies; 18+ messages in thread
From: Andreas Müller @ 2011-09-21 6:12 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Andreas Müller <schnitzeltony@gmx.de>
---
meta-xfce/recipes-xfce/tasks/task-xfce-base.bb | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/meta-xfce/recipes-xfce/tasks/task-xfce-base.bb b/meta-xfce/recipes-xfce/tasks/task-xfce-base.bb
index 7589f6d..782f30c 100644
--- a/meta-xfce/recipes-xfce/tasks/task-xfce-base.bb
+++ b/meta-xfce/recipes-xfce/tasks/task-xfce-base.bb
@@ -29,6 +29,8 @@ RDEPENDS_${PN} = " \
xfce4-panel-plugin-tasklist \
xfce4-panel-plugin-windowmenu \
xfce4-settings \
+ \
+ xfce4-notifyd \
xfce-terminal \
thunar \
thunar-volman \
--
1.7.4.4
^ permalink raw reply related [flat|nested] 18+ messages in thread
* Re: [meta-xfce 00/11] various updates
2011-09-21 6:11 [meta-xfce 00/11] various updates Andreas Müller
` (10 preceding siblings ...)
2011-09-21 6:12 ` [meta-xfce 11/11] task-xfce-base: add xfce4-notifyd Andreas Müller
@ 2011-09-21 7:01 ` Koen Kooi
11 siblings, 0 replies; 18+ messages in thread
From: Koen Kooi @ 2011-09-21 7:01 UTC (permalink / raw)
To: openembedded-devel
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Op 21-09-11 08:11, Andreas Müller schreef:
> * xfce4-dev-tools mainly contain autoconf extensions -> native * bump to
> latest mainline versions * xfce4-notifyd added
>
> The recipes were build tested and run tested on overo.
>
> Andreas Müller (11): xfce4-dev-tools: add native support garcon: DEPENDS
> xfce4-dev-tools -> xfce4-dev-tools-native libxfce4util: DEPENDS
> xfce4-dev-tools -> xfce4-dev-tools-native xfce-utils: add openssh-misc to
> RDEPENDS_${PN} xfce4-session: Bump to version 4.8.2 garcon: Bump to
> version 0.1.9 libxfce4util: Bump to version 4.8.2 gtk-xfce-engine: Bump
> to version 2.9.0 & minor cleanup xfdesktop: Bump to version 4.8.3 &
> recreate patch xfce4-notifyd: Add initial recipe with version 0.2.2
> task-xfce-base: add xfce4-notifyd
Do you have a git repo were there can be pulled from?
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)
iD8DBQFOeYusMkyGM64RGpERAsJoAJ9rneOoFcu2WwjWRWlBnC3hBmPVVwCgj7j9
YTeGg0rmZwI578nPmy2bSIM=
=+x1d
-----END PGP SIGNATURE-----
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [meta-xfce 01/11] xfce4-dev-tools: add native support
2011-09-21 6:11 ` [meta-xfce 01/11] xfce4-dev-tools: add native support Andreas Müller
@ 2011-09-21 7:10 ` Koen Kooi
2011-09-21 20:36 ` Andreas Müller
0 siblings, 1 reply; 18+ messages in thread
From: Koen Kooi @ 2011-09-21 7:10 UTC (permalink / raw)
To: openembedded-devel
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Op 21-09-11 08:11, Andreas Müller schreef:
>
> Signed-off-by: Andreas Müller <schnitzeltony@gmx.de> ---
> .../xfce4-dev-tools/xfce4-dev-tools_4.8.0.bb | 7 ++++++-
> +# inherited SRC_URI does not work for native +SRC_URI =
> "http://archive.xfce.org/src/xfce/xfce4-dev-tools/${@'${PV}'[0:3]}/xfce4-dev-tools-${PV}.tar.bz2"
>
>
+
Could give this patch a try?
diff --git a/meta-xfce/classes/xfce.bbclass b/meta-xfce/classes/xfce.bbclass
index a5a35bb..5b12cba 100644
- --- a/meta-xfce/classes/xfce.bbclass
+++ b/meta-xfce/classes/xfce.bbclass
@@ -1,5 +1,5 @@
HOMEPAGE = "http://www.xfce.org"
- -SRC_URI =
"http://archive.xfce.org/src/xfce/${PN}/${@'${PV}'[0:3]}/${PN}-${PV}.tar.bz2"
+SRC_URI =
"http://archive.xfce.org/src/xfce/${BPN}/${@'${PV}'[0:3]}/${BPN}-${PV}.tar.bz2"
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)
iD8DBQFOeY3zMkyGM64RGpERAqVIAJ9dfSvnib4GMDVIYN56r7LAmHnagACfe+J4
8IrtEAkO2ytHnJ1PdYK/tWg=
=X5tl
-----END PGP SIGNATURE-----
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [meta-xfce 04/11] xfce-utils: add openssh-misc to RDEPENDS_${PN}
2011-09-21 6:11 ` [meta-xfce 04/11] xfce-utils: add openssh-misc to RDEPENDS_${PN} Andreas Müller
@ 2011-09-21 7:12 ` Koen Kooi
0 siblings, 0 replies; 18+ messages in thread
From: Koen Kooi @ 2011-09-21 7:12 UTC (permalink / raw)
To: openembedded-devel
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Op 21-09-11 08:11, Andreas Müller schreef:
> log message was: /etc/xdg/xfce4/xinitrc: line 171: ssh-agent: command not
> found
>
> Signed-off-by: Andreas Müller <schnitzeltony@gmx.de> ---
> .../recipes-xfce/xfce-utils/xfce-utils_4.8.2.bb | 4 ++-- 1 files
> changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/meta-xfce/recipes-xfce/xfce-utils/xfce-utils_4.8.2.bb
> b/meta-xfce/recipes-xfce/xfce-utils/xfce-utils_4.8.2.bb index
> e36b6a7..418e3c0 100644 ---
> a/meta-xfce/recipes-xfce/xfce-utils/xfce-utils_4.8.2.bb +++
> b/meta-xfce/recipes-xfce/xfce-utils/xfce-utils_4.8.2.bb @@ -3,9 +3,9 @@
> SECTION = "x11" LICENSE = "GPLv2" LIC_FILES_CHKSUM =
> "file://COPYING;md5=9ac2e7cff1ddaf48b6eab6028f23ef88" DEPENDS = "gtk+
> virtual/libx11 dbus libxfce4util libxfce4ui" -RDEPENDS_${PN} = "xrdb"
> +RDEPENDS_${PN} = "xrdb openssh-misc"
While we are changing that RDEPENDS* belongs below the do_install section if
we were to follow the OE style guide. It being next to DEPENDS is due to
historical reasons, which aren't valid anymore.
regards,
Koen
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)
iD8DBQFOeY5QMkyGM64RGpERAtobAJ96ezTnnVuD8rTOEAslKBsaoixtnwCgpVWb
FUTGaB9/mHYTQ+xmrtWWEYU=
=wg5Y
-----END PGP SIGNATURE-----
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [meta-xfce 08/11] gtk-xfce-engine: Bump to version 2.9.0 & minor cleanup
2011-09-21 6:11 ` [meta-xfce 08/11] gtk-xfce-engine: Bump to version 2.9.0 & minor cleanup Andreas Müller
@ 2011-09-21 7:15 ` Koen Kooi
2011-09-21 20:38 ` Andreas Müller
0 siblings, 1 reply; 18+ messages in thread
From: Koen Kooi @ 2011-09-21 7:15 UTC (permalink / raw)
To: openembedded-devel
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Op 21-09-11 08:11, Andreas Müller schreef:
> * Added xfce4-dev-tools-native to DEPENDS error message was |
> gtk-xfce-engine-2.9.0/configure: line 12041: syntax error near unexpected
> token `GTK,' | gtk-xfce-engine-2.9.0/configure: line 12041:
> `XDT_CHECK_PACKAGE(GTK, gtk+-2.0, 2.20.0)' * Added cairo to
> RDEPENDS_${PN} see [1]
>
> [1] http://mail.xfce.org/pipermail/xfce/2011-September/029144.html
Cairo is a library, so the shlib resolver should pick it up automagically,
isn't it doing that?
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)
iD8DBQFOeY8CMkyGM64RGpERAvbUAKCgspKj7SxillxZ4FhaBZSrE7VgUwCfTASW
h+Ds9Xa5Nuy9hCmlshYuVJY=
=6W1g
-----END PGP SIGNATURE-----
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [meta-xfce 01/11] xfce4-dev-tools: add native support
2011-09-21 7:10 ` Koen Kooi
@ 2011-09-21 20:36 ` Andreas Müller
0 siblings, 0 replies; 18+ messages in thread
From: Andreas Müller @ 2011-09-21 20:36 UTC (permalink / raw)
To: openembedded-devel
On Wednesday, September 21, 2011 09:10:43 AM Koen Kooi wrote:
> Op 21-09-11 08:11, Andreas Müller schreef:
> > Signed-off-by: Andreas Müller <schnitzeltony@gmx.de> ---
> > .../xfce4-dev-tools/xfce4-dev-tools_4.8.0.bb | 7 ++++++-
> >
> > +# inherited SRC_URI does not work for native +SRC_URI =
> > "http://archive.xfce.org/src/xfce/xfce4-dev-tools/${@'${PV}'[0:3]}/xfce4-
> > dev-tools-${PV}.tar.bz2"
>
> +
>
> Could give this patch a try?
>
> diff --git a/meta-xfce/classes/xfce.bbclass
> b/meta-xfce/classes/xfce.bbclass index a5a35bb..5b12cba 100644
> --- a/meta-xfce/classes/xfce.bbclass
> +++ b/meta-xfce/classes/xfce.bbclass
> @@ -1,5 +1,5 @@
> HOMEPAGE = "http://www.xfce.org"
> -SRC_URI =
> "http://archive.xfce.org/src/xfce/${PN}/${@'${PV}'[0:3]}/${PN}-${PV}.tar.bz
> 2" +SRC_URI =
> "http://archive.xfce.org/src/xfce/${BPN}/${@'${PV}'[0:3]}/${BPN}-${PV}.tar.
> bz2"
>
Thanks for teaching me what BPN is for :-)
Andreas
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [meta-xfce 08/11] gtk-xfce-engine: Bump to version 2.9.0 & minor cleanup
2011-09-21 7:15 ` Koen Kooi
@ 2011-09-21 20:38 ` Andreas Müller
0 siblings, 0 replies; 18+ messages in thread
From: Andreas Müller @ 2011-09-21 20:38 UTC (permalink / raw)
To: openembedded-devel
On Wednesday, September 21, 2011 09:15:14 AM Koen Kooi wrote:
> Op 21-09-11 08:11, Andreas Müller schreef:
> > * Added xfce4-dev-tools-native to DEPENDS error message was |
> > gtk-xfce-engine-2.9.0/configure: line 12041: syntax error near unexpected
> > token `GTK,' | gtk-xfce-engine-2.9.0/configure: line 12041:
> > `XDT_CHECK_PACKAGE(GTK, gtk+-2.0, 2.20.0)' * Added cairo to
> > RDEPENDS_${PN} see [1]
> >
> > [1] http://mail.xfce.org/pipermail/xfce/2011-September/029144.html
>
> Cairo is a library, so the shlib resolver should pick it up automagically,
> isn't it doing that?
>
no error - wanted to be a good boy - will remove
Andreas
^ permalink raw reply [flat|nested] 18+ messages in thread
end of thread, other threads:[~2011-09-21 20:39 UTC | newest]
Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-21 6:11 [meta-xfce 00/11] various updates Andreas Müller
2011-09-21 6:11 ` [meta-xfce 01/11] xfce4-dev-tools: add native support Andreas Müller
2011-09-21 7:10 ` Koen Kooi
2011-09-21 20:36 ` Andreas Müller
2011-09-21 6:11 ` [meta-xfce 02/11] garcon: DEPENDS xfce4-dev-tools -> xfce4-dev-tools-native Andreas Müller
2011-09-21 6:11 ` [meta-xfce 03/11] libxfce4util: " Andreas Müller
2011-09-21 6:11 ` [meta-xfce 04/11] xfce-utils: add openssh-misc to RDEPENDS_${PN} Andreas Müller
2011-09-21 7:12 ` Koen Kooi
2011-09-21 6:11 ` [meta-xfce 05/11] xfce4-session: Bump to version 4.8.2 Andreas Müller
2011-09-21 6:11 ` [meta-xfce 06/11] garcon: Bump to version 0.1.9 Andreas Müller
2011-09-21 6:11 ` [meta-xfce 07/11] libxfce4util: Bump to version 4.8.2 Andreas Müller
2011-09-21 6:11 ` [meta-xfce 08/11] gtk-xfce-engine: Bump to version 2.9.0 & minor cleanup Andreas Müller
2011-09-21 7:15 ` Koen Kooi
2011-09-21 20:38 ` Andreas Müller
2011-09-21 6:11 ` [meta-xfce 09/11] xfdesktop: Bump to version 4.8.3 & recreate patch Andreas Müller
2011-09-21 6:11 ` [meta-xfce 10/11] xfce4-notifyd: Add initial recipe with version 0.2.2 Andreas Müller
2011-09-21 6:12 ` [meta-xfce 11/11] task-xfce-base: add xfce4-notifyd Andreas Müller
2011-09-21 7:01 ` [meta-xfce 00/11] various updates Koen Kooi
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.