* [PATCH v3 0/4] YB2370: Build Appliance integrates a filemanager
@ 2013-08-23 13:42 Cristian Iorga
2013-08-23 13:42 ` [PATCH v3 1/4] xdg-utils: add runtime dependency on xprop Cristian Iorga
` (3 more replies)
0 siblings, 4 replies; 8+ messages in thread
From: Cristian Iorga @ 2013-08-23 13:42 UTC (permalink / raw)
To: openembedded-core
A filemanager has been integrated into BA in order to
manage file and folders resulted from distro building.
V3 patch set corrects the following mistakes:
* add the correct component names in commit messages;
* add sato theme, but also keep hicolor-icon-theme;
hicolor-icon-theme provides the skeleton structure for icons;
* fix the wrong user in recipes-graphics/builder shell script,
(regression introduced in a previous commit: 851163a7c672b5fb051fc0e7938ebd585bb33bf0);
The following changes since commit 199b1a8c7d7109d9b59d67bf4dcfeb03be07587a:
mkfontscale: This no longer needs a full libx11, xproto suffices (2013-08-22 18:30:06 +0100)
are available in the git repository at:
git://git.yoctoproject.org/poky-contrib ciorga/YB2370
http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ciorga/YB2370
Cristian Iorga (4):
xdg-utils: add runtime dependency on xprop
packagegroup-self-hosted: pcmanfm and xdg-utils integration
packagegroup-self-hosted: changing the icon theme to sato
recipes-graphics/builder: fix wrong user name
meta/recipes-core/packagegroups/packagegroup-self-hosted.bb | 4 ++++
meta/recipes-extended/xdg-utils/xdg-utils_1.1.0-rc1.bb | 1 +
meta/recipes-graphics/builder/files/builder_hob_start.sh | 2 +-
3 files changed, 6 insertions(+), 1 deletion(-)
--
1.8.1.2
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v3 1/4] xdg-utils: add runtime dependency on xprop
2013-08-23 13:42 [PATCH v3 0/4] YB2370: Build Appliance integrates a filemanager Cristian Iorga
@ 2013-08-23 13:42 ` Cristian Iorga
2013-08-23 15:09 ` Richard Purdie
2013-08-23 13:42 ` [PATCH v3 2/4] packagegroup-self-hosted: pcmanfm and xdg-utils integration Cristian Iorga
` (2 subsequent siblings)
3 siblings, 1 reply; 8+ messages in thread
From: Cristian Iorga @ 2013-08-23 13:42 UTC (permalink / raw)
To: openembedded-core
xprop is called by xdg-utils scripts.
Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
---
meta/recipes-extended/xdg-utils/xdg-utils_1.1.0-rc1.bb | 1 +
1 file changed, 1 insertion(+)
diff --git a/meta/recipes-extended/xdg-utils/xdg-utils_1.1.0-rc1.bb b/meta/recipes-extended/xdg-utils/xdg-utils_1.1.0-rc1.bb
index d5c7aa3..22247f7 100644
--- a/meta/recipes-extended/xdg-utils/xdg-utils_1.1.0-rc1.bb
+++ b/meta/recipes-extended/xdg-utils/xdg-utils_1.1.0-rc1.bb
@@ -23,3 +23,4 @@ SRC_URI[sha256sum] = "7b05558ae4bb8ede356863cae8c42e3e012aa421bf9d45130a570fd209
inherit autotools
+RDEPENDS_${PN} = "xprop"
--
1.8.1.2
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH v3 2/4] packagegroup-self-hosted: pcmanfm and xdg-utils integration
2013-08-23 13:42 [PATCH v3 0/4] YB2370: Build Appliance integrates a filemanager Cristian Iorga
2013-08-23 13:42 ` [PATCH v3 1/4] xdg-utils: add runtime dependency on xprop Cristian Iorga
@ 2013-08-23 13:42 ` Cristian Iorga
2013-08-23 13:47 ` [PATCH v3 2/4] packagegroup-self-hosted: pcmanfm and xdg-utils integration - no comment on the patch itself!! Iorga, Cristian
2013-08-23 13:42 ` [PATCH v3 3/4] packagegroup-self-hosted: changing the icon theme to sato Cristian Iorga
2013-08-23 13:42 ` [PATCH v3 4/4] recipes-graphics/builder: fix wrong user name Cristian Iorga
3 siblings, 1 reply; 8+ messages in thread
From: Cristian Iorga @ 2013-08-23 13:42 UTC (permalink / raw)
To: openembedded-core
PCManFm file manager is integrated in Build Appliance;
xdg-utils is also integrated for file
association support.
Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
---
meta/recipes-core/packagegroups/packagegroup-self-hosted.bb | 2 ++
1 file changed, 2 insertions(+)
diff --git a/meta/recipes-core/packagegroups/packagegroup-self-hosted.bb b/meta/recipes-core/packagegroups/packagegroup-self-hosted.bb
index 6a0722a..2d35c16 100644
--- a/meta/recipes-core/packagegroups/packagegroup-self-hosted.bb
+++ b/meta/recipes-core/packagegroups/packagegroup-self-hosted.bb
@@ -38,11 +38,13 @@ RDEPENDS_packagegroup-self-hosted-host-tools = "\
hdparm \
iptables \
lsb \
+ xdg-utils \
mc \
mc-fish \
mc-helpers \
mc-helpers-perl \
mc-helpers-python \
+ pcmanfm \
parted \
pseudo \
screen \
--
1.8.1.2
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH v3 3/4] packagegroup-self-hosted: changing the icon theme to sato
2013-08-23 13:42 [PATCH v3 0/4] YB2370: Build Appliance integrates a filemanager Cristian Iorga
2013-08-23 13:42 ` [PATCH v3 1/4] xdg-utils: add runtime dependency on xprop Cristian Iorga
2013-08-23 13:42 ` [PATCH v3 2/4] packagegroup-self-hosted: pcmanfm and xdg-utils integration Cristian Iorga
@ 2013-08-23 13:42 ` Cristian Iorga
2013-08-23 13:42 ` [PATCH v3 4/4] recipes-graphics/builder: fix wrong user name Cristian Iorga
3 siblings, 0 replies; 8+ messages in thread
From: Cristian Iorga @ 2013-08-23 13:42 UTC (permalink / raw)
To: openembedded-core
Hicolor icon theme does not properly displays icons for
folders in Build Appliance.
Sato icon theme is working correctly.
Also, settings-daemon needs to be added to image in order to
properly display folder icons.
Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
---
meta/recipes-core/packagegroups/packagegroup-self-hosted.bb | 2 ++
1 file changed, 2 insertions(+)
diff --git a/meta/recipes-core/packagegroups/packagegroup-self-hosted.bb b/meta/recipes-core/packagegroups/packagegroup-self-hosted.bb
index 2d35c16..429ade9 100644
--- a/meta/recipes-core/packagegroups/packagegroup-self-hosted.bb
+++ b/meta/recipes-core/packagegroups/packagegroup-self-hosted.bb
@@ -123,7 +123,9 @@ RDEPENDS_packagegroup-self-hosted-extended = "\
grep \
groff \
gzip \
+ settings-daemon \
hicolor-icon-theme \
+ sato-icon-theme \
libaio \
libusb1 \
libxml2 \
--
1.8.1.2
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH v3 4/4] recipes-graphics/builder: fix wrong user name
2013-08-23 13:42 [PATCH v3 0/4] YB2370: Build Appliance integrates a filemanager Cristian Iorga
` (2 preceding siblings ...)
2013-08-23 13:42 ` [PATCH v3 3/4] packagegroup-self-hosted: changing the icon theme to sato Cristian Iorga
@ 2013-08-23 13:42 ` Cristian Iorga
3 siblings, 0 replies; 8+ messages in thread
From: Cristian Iorga @ 2013-08-23 13:42 UTC (permalink / raw)
To: openembedded-core
Fix wrong inclusion of local username.
The right "builder" user is now used in
builder_hob_start shell script.
Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
---
meta/recipes-graphics/builder/files/builder_hob_start.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/recipes-graphics/builder/files/builder_hob_start.sh b/meta/recipes-graphics/builder/files/builder_hob_start.sh
index b3a0540..bef6878 100644
--- a/meta/recipes-graphics/builder/files/builder_hob_start.sh
+++ b/meta/recipes-graphics/builder/files/builder_hob_start.sh
@@ -13,7 +13,7 @@ export GIT_PROXY_COMMAND=/home/builder/poky/scripts/oe-git-proxy
pcmanfm -d&
#register folders to open with PCManFM filemanager
-if [ ! -d /home/ubik/tmp/.local/share/applications ]; then
+if [ ! -d /home/builder/.local/share/applications ]; then
mkdir -p /home/builder/.local/share/applications/
xdg-mime default pcmanfm.desktop inode/directory
fi
--
1.8.1.2
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v3 2/4] packagegroup-self-hosted: pcmanfm and xdg-utils integration - no comment on the patch itself!!
2013-08-23 13:42 ` [PATCH v3 2/4] packagegroup-self-hosted: pcmanfm and xdg-utils integration Cristian Iorga
@ 2013-08-23 13:47 ` Iorga, Cristian
0 siblings, 0 replies; 8+ messages in thread
From: Iorga, Cristian @ 2013-08-23 13:47 UTC (permalink / raw)
To: Iorga, Cristian, openembedded-core@lists.openembedded.org
There seems to be an issue with the create-pull-request script..
It will break the subject in two lines...
As such, at least under Outlook, the mail titles look strange.
Is this happening to other people also?
Regards,
Cristian
-----Original Message-----
From: openembedded-core-bounces@lists.openembedded.org [mailto:openembedded-core-bounces@lists.openembedded.org] On Behalf Of Cristian Iorga
Sent: Friday, August 23, 2013 4:42 PM
To: openembedded-core@lists.openembedded.org
Subject: [OE-core] [PATCH v3 2/4] packagegroup-self-hosted: pcmanfm and xdg-utils integration
PCManFm file manager is integrated in Build Appliance; xdg-utils is also integrated for file association support.
Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
---
meta/recipes-core/packagegroups/packagegroup-self-hosted.bb | 2 ++
1 file changed, 2 insertions(+)
diff --git a/meta/recipes-core/packagegroups/packagegroup-self-hosted.bb b/meta/recipes-core/packagegroups/packagegroup-self-hosted.bb
index 6a0722a..2d35c16 100644
--- a/meta/recipes-core/packagegroups/packagegroup-self-hosted.bb
+++ b/meta/recipes-core/packagegroups/packagegroup-self-hosted.bb
@@ -38,11 +38,13 @@ RDEPENDS_packagegroup-self-hosted-host-tools = "\
hdparm \
iptables \
lsb \
+ xdg-utils \
mc \
mc-fish \
mc-helpers \
mc-helpers-perl \
mc-helpers-python \
+ pcmanfm \
parted \
pseudo \
screen \
--
1.8.1.2
_______________________________________________
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v3 1/4] xdg-utils: add runtime dependency on xprop
2013-08-23 13:42 ` [PATCH v3 1/4] xdg-utils: add runtime dependency on xprop Cristian Iorga
@ 2013-08-23 15:09 ` Richard Purdie
2013-08-23 15:17 ` Iorga, Cristian
0 siblings, 1 reply; 8+ messages in thread
From: Richard Purdie @ 2013-08-23 15:09 UTC (permalink / raw)
To: Cristian Iorga; +Cc: openembedded-core
On Fri, 2013-08-23 at 16:42 +0300, Cristian Iorga wrote:
> xprop is called by xdg-utils scripts.
>
> Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
> ---
> meta/recipes-extended/xdg-utils/xdg-utils_1.1.0-rc1.bb | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/meta/recipes-extended/xdg-utils/xdg-utils_1.1.0-rc1.bb b/meta/recipes-extended/xdg-utils/xdg-utils_1.1.0-rc1.bb
> index d5c7aa3..22247f7 100644
> --- a/meta/recipes-extended/xdg-utils/xdg-utils_1.1.0-rc1.bb
> +++ b/meta/recipes-extended/xdg-utils/xdg-utils_1.1.0-rc1.bb
> @@ -23,3 +23,4 @@ SRC_URI[sha256sum] = "7b05558ae4bb8ede356863cae8c42e3e012aa421bf9d45130a570fd209
>
> inherit autotools
>
> +RDEPENDS_${PN} = "xprop"
Usually best to do += with these. I've tweaked it when applying.
Cheers,
Richard
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v3 1/4] xdg-utils: add runtime dependency on xprop
2013-08-23 15:09 ` Richard Purdie
@ 2013-08-23 15:17 ` Iorga, Cristian
0 siblings, 0 replies; 8+ messages in thread
From: Iorga, Cristian @ 2013-08-23 15:17 UTC (permalink / raw)
To: Richard Purdie; +Cc: openembedded-core@lists.openembedded.org
OK, thanks.
I thought that would be safer this way.
-----Original Message-----
From: Richard Purdie [mailto:richard.purdie@linuxfoundation.org]
Sent: Friday, August 23, 2013 6:09 PM
To: Iorga, Cristian
Cc: openembedded-core@lists.openembedded.org
Subject: Re: [OE-core] [PATCH v3 1/4] xdg-utils: add runtime dependency on xprop
On Fri, 2013-08-23 at 16:42 +0300, Cristian Iorga wrote:
> xprop is called by xdg-utils scripts.
>
> Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
> ---
> meta/recipes-extended/xdg-utils/xdg-utils_1.1.0-rc1.bb | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/meta/recipes-extended/xdg-utils/xdg-utils_1.1.0-rc1.bb b/meta/recipes-extended/xdg-utils/xdg-utils_1.1.0-rc1.bb
> index d5c7aa3..22247f7 100644
> --- a/meta/recipes-extended/xdg-utils/xdg-utils_1.1.0-rc1.bb
> +++ b/meta/recipes-extended/xdg-utils/xdg-utils_1.1.0-rc1.bb
> @@ -23,3 +23,4 @@ SRC_URI[sha256sum] = "7b05558ae4bb8ede356863cae8c42e3e012aa421bf9d45130a570fd209
>
> inherit autotools
>
> +RDEPENDS_${PN} = "xprop"
Usually best to do += with these. I've tweaked it when applying.
Cheers,
Richard
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2013-08-23 15:17 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-23 13:42 [PATCH v3 0/4] YB2370: Build Appliance integrates a filemanager Cristian Iorga
2013-08-23 13:42 ` [PATCH v3 1/4] xdg-utils: add runtime dependency on xprop Cristian Iorga
2013-08-23 15:09 ` Richard Purdie
2013-08-23 15:17 ` Iorga, Cristian
2013-08-23 13:42 ` [PATCH v3 2/4] packagegroup-self-hosted: pcmanfm and xdg-utils integration Cristian Iorga
2013-08-23 13:47 ` [PATCH v3 2/4] packagegroup-self-hosted: pcmanfm and xdg-utils integration - no comment on the patch itself!! Iorga, Cristian
2013-08-23 13:42 ` [PATCH v3 3/4] packagegroup-self-hosted: changing the icon theme to sato Cristian Iorga
2013-08-23 13:42 ` [PATCH v3 4/4] recipes-graphics/builder: fix wrong user name Cristian Iorga
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox