All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-gplv2] [PATCH 1/3] conf/distro: Add disable-gplv3.inc
@ 2020-05-05 11:01 Richard Purdie
  2020-05-05 11:01 ` [meta-gplv2] [PATCH 2/3] disable-gplv3.inc: Disable glib-2.0 ptest python3-dbusmock dependency Richard Purdie
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Richard Purdie @ 2020-05-05 11:01 UTC (permalink / raw)
  To: yocto

We're finding meta-gplv2 needs configuration to work as intended. Rather
than teaching this to things like the project autobuilder, collect
the configuration inside an include file in the layer itself which
everyone can either use directly or refer to.

Initial population is from the autobuilder config currently used for
testing meta-gplv2.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
 conf/distro/include/disable-gplv3.inc | 2 ++
 1 file changed, 2 insertions(+)
 create mode 100644 conf/distro/include/disable-gplv3.inc

diff --git a/conf/distro/include/disable-gplv3.inc b/conf/distro/include/disable-gplv3.inc
new file mode 100644
index 0000000..45834b7
--- /dev/null
+++ b/conf/distro/include/disable-gplv3.inc
@@ -0,0 +1,2 @@
+INCOMPATIBLE_LICENSE = '*GPLv3'
+WARN_QA_remove = 'incompatible-license'
-- 
2.25.1


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

* [meta-gplv2] [PATCH 2/3] disable-gplv3.inc: Disable glib-2.0 ptest python3-dbusmock dependency
  2020-05-05 11:01 [meta-gplv2] [PATCH 1/3] conf/distro: Add disable-gplv3.inc Richard Purdie
@ 2020-05-05 11:01 ` Richard Purdie
  2020-05-05 11:01 ` [meta-gplv2] [PATCH 3/3] README: Document how to configure repo for sending patches Richard Purdie
       [not found] ` <160C1CDA4BC9B9E5.19004@lists.yoctoproject.org>
  2 siblings, 0 replies; 4+ messages in thread
From: Richard Purdie @ 2020-05-05 11:01 UTC (permalink / raw)
  To: yocto

The newly added dependency on python3-dbusmock in OE-Core is GPLv3
and would fail to work with this layer. Remove it in the config
for enabling the layer.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
 conf/distro/include/disable-gplv3.inc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/conf/distro/include/disable-gplv3.inc b/conf/distro/include/disable-gplv3.inc
index 45834b7..761be7d 100644
--- a/conf/distro/include/disable-gplv3.inc
+++ b/conf/distro/include/disable-gplv3.inc
@@ -1,2 +1,3 @@
 INCOMPATIBLE_LICENSE = '*GPLv3'
 WARN_QA_remove = 'incompatible-license'
+RDEPENDS_${PN}-ptest_remove_pn-glib-2.0 = "python3-dbusmock"
-- 
2.25.1


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

* [meta-gplv2] [PATCH 3/3] README: Document how to configure repo for sending patches
  2020-05-05 11:01 [meta-gplv2] [PATCH 1/3] conf/distro: Add disable-gplv3.inc Richard Purdie
  2020-05-05 11:01 ` [meta-gplv2] [PATCH 2/3] disable-gplv3.inc: Disable glib-2.0 ptest python3-dbusmock dependency Richard Purdie
@ 2020-05-05 11:01 ` Richard Purdie
       [not found] ` <160C1CDA4BC9B9E5.19004@lists.yoctoproject.org>
  2 siblings, 0 replies; 4+ messages in thread
From: Richard Purdie @ 2020-05-05 11:01 UTC (permalink / raw)
  To: yocto

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
 README | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/README b/README
index 4558a99..6a61331 100644
--- a/README
+++ b/README
@@ -27,3 +27,8 @@ intended target branch of the Git repository.
 
     Git repository: http://git.yoctoproject.org/cgit.cgi/meta-gplv2/
     Mailing list: yocto@yoctoproject.org
+
+This can be confiured within the repository with the commands:
+
+git config sendemail.to yocto@lists.yoctoproject.org
+git config format.subjectprefix "meta-gplv2] [PATCH"
-- 
2.25.1


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

* Re: [yocto] [meta-gplv2] [PATCH 3/3] README: Document how to configure repo for sending patches
       [not found] ` <160C1CDA4BC9B9E5.19004@lists.yoctoproject.org>
@ 2020-05-05 12:14   ` Richard Purdie
  0 siblings, 0 replies; 4+ messages in thread
From: Richard Purdie @ 2020-05-05 12:14 UTC (permalink / raw)
  To: yocto

On Tue, 2020-05-05 at 12:01 +0100, Richard Purdie via
lists.yoctoproject.org wrote:
> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
> ---
>  README | 5 +++++
>  1 file changed, 5 insertions(+)
> 
> diff --git a/README b/README
> index 4558a99..6a61331 100644
> --- a/README
> +++ b/README
> @@ -27,3 +27,8 @@ intended target branch of the Git repository.
>  
>      Git repository: http://git.yoctoproject.org/cgit.cgi/meta-gplv2/
>      Mailing list: yocto@yoctoproject.org
> +
> +This can be confiured within the repository with the commands:

configured. Tweaked in master-next.

Cheers,

Richard


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

end of thread, other threads:[~2020-05-05 12:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-05 11:01 [meta-gplv2] [PATCH 1/3] conf/distro: Add disable-gplv3.inc Richard Purdie
2020-05-05 11:01 ` [meta-gplv2] [PATCH 2/3] disable-gplv3.inc: Disable glib-2.0 ptest python3-dbusmock dependency Richard Purdie
2020-05-05 11:01 ` [meta-gplv2] [PATCH 3/3] README: Document how to configure repo for sending patches Richard Purdie
     [not found] ` <160C1CDA4BC9B9E5.19004@lists.yoctoproject.org>
2020-05-05 12:14   ` [yocto] " Richard Purdie

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.