Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH] libyui
@ 2017-11-29  5:10 zhengrq
  2017-11-29  5:32 ` ✗ patchtest: failure for libyui Patchwork
  2017-11-29  6:47 ` [PATCH] libyui Alexander Kanavin
  0 siblings, 2 replies; 7+ messages in thread
From: zhengrq @ 2017-11-29  5:10 UTC (permalink / raw)
  To: openembedded-core

Add a new recipe libyui.

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>
---
 meta/recipes-graphics/libyui/libyui_git.bb | 36 ++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)
 create mode 100644 meta/recipes-graphics/libyui/libyui_git.bb

diff --git a/meta/recipes-graphics/libyui/libyui_git.bb b/meta/recipes-graphics/libyui/libyui_git.bb
new file mode 100644
index 0000000..3edb0c6
--- /dev/null
+++ b/meta/recipes-graphics/libyui/libyui_git.bb
@@ -0,0 +1,36 @@
+SUMMARY = "Libyui is a widget abstraction library providing Qt, GTK and ncurses frontends."
+LICENSE = "LGPLv3"
+LIC_FILES_CHKSUM = "file://COPYING.gpl-3;md5=d32239bcb673463ab874e80d47fae504 \
+                    file://COPYING.lgpl-2.1;md5=4fbd65380cdd255951079008b364516c \
+                    file://COPYING.lgpl-3;md5=e6a600fd5e1d9cbde2d983680233ad02 \
+                   "
+
+SRC_URI = "git://github.com/libyui/libyui.git \
+           "
+
+PV = "3.3.3+git"
+SRCREV = "f4ccea39f6b6f37eabd0a4df49db5f9bcb3c013a"
+
+S = "${WORKDIR}/git"
+
+inherit cmake gettext pkgconfig
+
+DEPENDS += "boost"
+
+BBCLASSEXTEND = "nativesdk"
+
+RDEPENDS_${PN} += "boost"
+
+do_configure_prepend () {
+        cp ${S}/buildtools/CMakeLists.common ${S}/CMakeLists.txt
+}
+
+do_install_append () {
+        rm -rf ${D}${datadir}/libyui
+        if [ ${libdir} = "/usr/lib" ]; then
+            mv ${D}/usr/lib64 ${D}/usr/lib
+        fi
+}
+
+FILES_${PN}-dev = "${libdir}/* ${includedir}/yui*"
+
-- 
2.7.4





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

* ✗ patchtest: failure for libyui
  2017-11-29  5:10 [PATCH] libyui zhengrq
@ 2017-11-29  5:32 ` Patchwork
  2017-11-29  6:47 ` [PATCH] libyui Alexander Kanavin
  1 sibling, 0 replies; 7+ messages in thread
From: Patchwork @ 2017-11-29  5:32 UTC (permalink / raw)
  To: Zheng Ruoqin; +Cc: openembedded-core

== Series Details ==

Series: libyui
Revision: 1
URL   : https://patchwork.openembedded.org/series/9994/
State : failure

== Summary ==


Thank you for submitting this patch series to OpenEmbedded Core. This is
an automated response. Several tests have been executed on the proposed
series by patchtest resulting in the following failures:



* Patch            libyui
 Issue             Shortlog does not follow expected format [test_shortlog_format] 
  Suggested fix    Commit shortlog (first line of commit message) should follow the format "<target>: <summary>"



If you believe any of these test results are incorrect, please reply to the
mailing list (openembedded-core@lists.openembedded.org) raising your concerns.
Otherwise we would appreciate you correcting the issues and submitting a new
version of the patchset if applicable. Please ensure you add/increment the
version number when sending the new version (i.e. [PATCH] -> [PATCH v2] ->
[PATCH v3] -> ...).

---
Guidelines:     https://www.openembedded.org/wiki/Commit_Patch_Message_Guidelines
Test framework: http://git.yoctoproject.org/cgit/cgit.cgi/patchtest
Test suite:     http://git.yoctoproject.org/cgit/cgit.cgi/patchtest-oe



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

* Re: [PATCH] libyui
  2017-11-29  5:10 [PATCH] libyui zhengrq
  2017-11-29  5:32 ` ✗ patchtest: failure for libyui Patchwork
@ 2017-11-29  6:47 ` Alexander Kanavin
  2017-12-04  2:01   ` Zheng, Ruoqin
  1 sibling, 1 reply; 7+ messages in thread
From: Alexander Kanavin @ 2017-11-29  6:47 UTC (permalink / raw)
  To: zhengrq, openembedded-core

On 11/29/2017 07:10 AM, zhengrq wrote:
> Add a new recipe libyui.


Add why? What does it do? Why should it be in oe-core?

Alex


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

* Re: [PATCH] libyui
  2017-11-29  6:47 ` [PATCH] libyui Alexander Kanavin
@ 2017-12-04  2:01   ` Zheng, Ruoqin
  2017-12-04 10:17     ` Burton, Ross
  0 siblings, 1 reply; 7+ messages in thread
From: Zheng, Ruoqin @ 2017-12-04  2:01 UTC (permalink / raw)
  To: Alexander Kanavin, openembedded-core@lists.openembedded.org

Hi Alex:
   I attend to make dnfdragora(which is a gui for dnf) used in oe-core, and libyui is the depend of dnfdragora.

--------------------------------------------------
Zheng Ruoqin
Nanjing Fujitsu Nanda Software Tech. Co., Ltd.(FNST)
ADDR.: No.6 Wenzhu Road, Software Avenue,
       Nanjing, 210012, China
MAIL : zhengrq.fnst@cn.fujistu.com


-----Original Message-----
From: Alexander Kanavin [mailto:alexander.kanavin@linux.intel.com] 
Sent: Wednesday, November 29, 2017 2:48 PM
To: Zheng, Ruoqin/郑 若钦 <zhengrq.fnst@cn.fujitsu.com>; openembedded-core@lists.openembedded.org
Subject: Re: [OE-core] [PATCH] libyui

On 11/29/2017 07:10 AM, zhengrq wrote:
> Add a new recipe libyui.


Add why? What does it do? Why should it be in oe-core?

Alex





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

* Re: [PATCH] libyui
  2017-12-04  2:01   ` Zheng, Ruoqin
@ 2017-12-04 10:17     ` Burton, Ross
  2017-12-07  1:26       ` Zheng, Ruoqin
  0 siblings, 1 reply; 7+ messages in thread
From: Burton, Ross @ 2017-12-04 10:17 UTC (permalink / raw)
  To: Zheng, Ruoqin; +Cc: openembedded-core@lists.openembedded.org

[-- Attachment #1: Type: text/plain, Size: 1193 bytes --]

Again, it sounds like this should be in another layer.

Ross

On 4 December 2017 at 02:01, Zheng, Ruoqin <zhengrq.fnst@cn.fujitsu.com>
wrote:

> Hi Alex:
>    I attend to make dnfdragora(which is a gui for dnf) used in oe-core,
> and libyui is the depend of dnfdragora.
>
> --------------------------------------------------
> Zheng Ruoqin
> Nanjing Fujitsu Nanda Software Tech. Co., Ltd.(FNST)
> ADDR.: No.6 Wenzhu Road, Software Avenue,
>        Nanjing, 210012, China
> MAIL : zhengrq.fnst@cn.fujistu.com
>
>
> -----Original Message-----
> From: Alexander Kanavin [mailto:alexander.kanavin@linux.intel.com]
> Sent: Wednesday, November 29, 2017 2:48 PM
> To: Zheng, Ruoqin/郑 若钦 <zhengrq.fnst@cn.fujitsu.com>;
> openembedded-core@lists.openembedded.org
> Subject: Re: [OE-core] [PATCH] libyui
>
> On 11/29/2017 07:10 AM, zhengrq wrote:
> > Add a new recipe libyui.
>
>
> Add why? What does it do? Why should it be in oe-core?
>
> Alex
>
>
>
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>

[-- Attachment #2: Type: text/html, Size: 2067 bytes --]

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

* Re: [PATCH] libyui
  2017-12-04 10:17     ` Burton, Ross
@ 2017-12-07  1:26       ` Zheng, Ruoqin
  2017-12-07  1:44         ` Khem Raj
  0 siblings, 1 reply; 7+ messages in thread
From: Zheng, Ruoqin @ 2017-12-07  1:26 UTC (permalink / raw)
  To: Burton, Ross; +Cc: openembedded-core@lists.openembedded.org

[-- Attachment #1: Type: text/plain, Size: 1956 bytes --]

Hi Ross!
         Where should I put this recipe?
--------------------------------------------------
Zheng Ruoqin
Nanjing Fujitsu Nanda Software Tech. Co., Ltd.(FNST)
ADDR.: No.6 Wenzhu Road, Software Avenue,
       Nanjing, 210012, China
MAIL : zhengrq.fnst@cn.fujistu.com

From: Burton, Ross [mailto:ross.burton@intel.com]
Sent: Monday, December 04, 2017 6:17 PM
To: Zheng, Ruoqin/郑 若钦 <zhengrq.fnst@cn.fujitsu.com>
Cc: Alexander Kanavin <alexander.kanavin@linux.intel.com>; openembedded-core@lists.openembedded.org
Subject: Re: [OE-core] [PATCH] libyui

Again, it sounds like this should be in another layer.

Ross

On 4 December 2017 at 02:01, Zheng, Ruoqin <zhengrq.fnst@cn.fujitsu.com<mailto:zhengrq.fnst@cn.fujitsu.com>> wrote:
Hi Alex:
   I attend to make dnfdragora(which is a gui for dnf) used in oe-core, and libyui is the depend of dnfdragora.

--------------------------------------------------
Zheng Ruoqin
Nanjing Fujitsu Nanda Software Tech. Co., Ltd.(FNST)
ADDR.: No.6 Wenzhu Road, Software Avenue,
       Nanjing, 210012, China
MAIL : zhengrq.fnst@cn.fujistu.com<mailto:zhengrq.fnst@cn.fujistu.com>


-----Original Message-----
From: Alexander Kanavin [mailto:alexander.kanavin@linux.intel.com<mailto:alexander.kanavin@linux.intel.com>]
Sent: Wednesday, November 29, 2017 2:48 PM
To: Zheng, Ruoqin/郑 若钦 <zhengrq.fnst@cn.fujitsu.com<mailto:zhengrq.fnst@cn.fujitsu.com>>; openembedded-core@lists.openembedded.org<mailto:openembedded-core@lists.openembedded.org>
Subject: Re: [OE-core] [PATCH] libyui

On 11/29/2017 07:10 AM, zhengrq wrote:
> Add a new recipe libyui.


Add why? What does it do? Why should it be in oe-core?

Alex




--
_______________________________________________
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org<mailto:Openembedded-core@lists.openembedded.org>
http://lists.openembedded.org/mailman/listinfo/openembedded-core




[-- Attachment #2: Type: text/html, Size: 7146 bytes --]

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

* Re: [PATCH] libyui
  2017-12-07  1:26       ` Zheng, Ruoqin
@ 2017-12-07  1:44         ` Khem Raj
  0 siblings, 0 replies; 7+ messages in thread
From: Khem Raj @ 2017-12-07  1:44 UTC (permalink / raw)
  To: Zheng, Ruoqin; +Cc: openembedded-core@lists.openembedded.org

[-- Attachment #1: Type: text/plain, Size: 2183 bytes --]

Meta-oe

On Wed, Dec 6, 2017 at 5:26 PM Zheng, Ruoqin <zhengrq.fnst@cn.fujitsu.com>
wrote:

> Hi Ross!
>
>          Where should I put this recipe?
>
> --------------------------------------------------
>
> Zheng Ruoqin
>
> Nanjing Fujitsu Nanda Software Tech. Co., Ltd.(FNST)
>
> ADDR.: No.6 Wenzhu Road, Software Avenue,
>
>        Nanjing, 210012, China
>
> MAIL : zhengrq.fnst@cn.fujistu.com
>
>
>
> *From:* Burton, Ross [mailto:ross.burton@intel.com]
> *Sent:* Monday, December 04, 2017 6:17 PM
> *To:* Zheng, Ruoqin/郑 若钦 <zhengrq.fnst@cn.fujitsu.com>
> *Cc:* Alexander Kanavin <alexander.kanavin@linux.intel.com>;
> openembedded-core@lists.openembedded.org
>
>
> *Subject:* Re: [OE-core] [PATCH] libyui
>
>
>
> Again, it sounds like this should be in another layer.
>
>
>
> Ross
>
>
>
> On 4 December 2017 at 02:01, Zheng, Ruoqin <zhengrq.fnst@cn.fujitsu.com>
> wrote:
>
> Hi Alex:
>    I attend to make dnfdragora(which is a gui for dnf) used in oe-core,
> and libyui is the depend of dnfdragora.
>
> --------------------------------------------------
> Zheng Ruoqin
> Nanjing Fujitsu Nanda Software Tech. Co., Ltd.(FNST)
> ADDR.: No.6 Wenzhu Road, Software Avenue,
>        Nanjing, 210012, China
> MAIL : zhengrq.fnst@cn.fujistu.com
>
>
>
> -----Original Message-----
> From: Alexander Kanavin [mailto:alexander.kanavin@linux.intel.com]
> Sent: Wednesday, November 29, 2017 2:48 PM
> To: Zheng, Ruoqin/郑 若钦 <zhengrq.fnst@cn.fujitsu.com>;
> openembedded-core@lists.openembedded.org
> Subject: Re: [OE-core] [PATCH] libyui
>
> On 11/29/2017 07:10 AM, zhengrq wrote:
> > Add a new recipe libyui.
>
>
> Add why? What does it do? Why should it be in oe-core?
>
> Alex
>
>
>
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>

[-- Attachment #2: Type: text/html, Size: 7198 bytes --]

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

end of thread, other threads:[~2017-12-07  1:44 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-11-29  5:10 [PATCH] libyui zhengrq
2017-11-29  5:32 ` ✗ patchtest: failure for libyui Patchwork
2017-11-29  6:47 ` [PATCH] libyui Alexander Kanavin
2017-12-04  2:01   ` Zheng, Ruoqin
2017-12-04 10:17     ` Burton, Ross
2017-12-07  1:26       ` Zheng, Ruoqin
2017-12-07  1:44         ` Khem Raj

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox