Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 1/5] documentation.conf: remove obsolete variable
@ 2018-04-04 13:40 Maxin B. John
  2018-04-04 13:40 ` [PATCH 2/5] python3-pygobject: remove duplication in inherit Maxin B. John
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Maxin B. John @ 2018-04-04 13:40 UTC (permalink / raw)
  To: openembedded-core

PRINC is no longer used and removed from documentation:

commit 7baadd86ee1386756e3bc3ef7fd02d5d1367068f
Author: Scott Rifenbark <scott.m.rifenbark@intel.com>
Date:   Mon May 18 09:25:51 2015 -0600

 ref-manual: Removed PRINC entry from the glossary

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 meta/conf/documentation.conf | 1 -
 1 file changed, 1 deletion(-)

diff --git a/meta/conf/documentation.conf b/meta/conf/documentation.conf
index 7834898..254f8f1 100644
--- a/meta/conf/documentation.conf
+++ b/meta/conf/documentation.conf
@@ -332,7 +332,6 @@ PR[doc] = "The revision of the recipe. The default value for this variable is 'r
 PREFERRED_PROVIDER[doc] = "If multiple recipes provide an item, this variable determines which recipe should be given preference."
 PREFERRED_VERSION[doc] = "If there are multiple versions of recipes available, this variable determines which recipe should be given preference."
 PREMIRRORS[doc] = "Specifies additional paths from which the OpenEmbedded build system gets source code."
-PRINC[doc] = "Causes the PR variable of .bbappend files to dynamically increment. This increment minimizes the impact of layer ordering. This variable defaults to '0'."
 PRIORITY[doc] = "Indicates the importance of a package.  The default value is 'optional'.  Other standard values are 'required', 'standard' and 'extra'."
 PROVIDES[doc] = "A list of aliases that a recipe also provides. These aliases are useful for satisfying dependencies of other recipes during the build as specified by DEPENDS."
 PRSERV_HOST[doc] = "The network based PR service host and port."
-- 
2.4.0



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

* [PATCH 2/5] python3-pygobject: remove duplication in inherit
  2018-04-04 13:40 [PATCH 1/5] documentation.conf: remove obsolete variable Maxin B. John
@ 2018-04-04 13:40 ` Maxin B. John
  2018-04-04 13:40 ` [PATCH 3/5] libcroco: " Maxin B. John
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Maxin B. John @ 2018-04-04 13:40 UTC (permalink / raw)
  To: openembedded-core

Since gnomebase class already inherits autotools and pkgconfig,
there is no need to repeat it here.

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 meta/recipes-devtools/python/python3-pygobject_3.28.1.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/python/python3-pygobject_3.28.1.bb b/meta/recipes-devtools/python/python3-pygobject_3.28.1.bb
index ad0117a..97286f4 100644
--- a/meta/recipes-devtools/python/python3-pygobject_3.28.1.bb
+++ b/meta/recipes-devtools/python/python3-pygobject_3.28.1.bb
@@ -3,7 +3,7 @@ SECTION = "devel/python"
 LICENSE = "LGPLv2.1"
 LIC_FILES_CHKSUM = "file://COPYING;md5=a916467b91076e631dd8edb7424769c7"
 
-inherit autotools pkgconfig gnomebase distutils3-base gobject-introspection upstream-version-is-even
+inherit gnomebase distutils3-base gobject-introspection upstream-version-is-even
 
 DEPENDS += "python3 glib-2.0"
 
-- 
2.4.0



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

* [PATCH 3/5] libcroco: remove duplication in inherit
  2018-04-04 13:40 [PATCH 1/5] documentation.conf: remove obsolete variable Maxin B. John
  2018-04-04 13:40 ` [PATCH 2/5] python3-pygobject: remove duplication in inherit Maxin B. John
@ 2018-04-04 13:40 ` Maxin B. John
  2018-04-04 13:40 ` [PATCH 4/5] gcr: " Maxin B. John
  2018-04-04 13:40 ` [PATCH 5/5] librsvg: " Maxin B. John
  3 siblings, 0 replies; 5+ messages in thread
From: Maxin B. John @ 2018-04-04 13:40 UTC (permalink / raw)
  To: openembedded-core

Since gnomebase class already inherits autotools and pkgconfig,
there is no need to repeat it here.

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 meta/recipes-support/libcroco/libcroco_0.6.12.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-support/libcroco/libcroco_0.6.12.bb b/meta/recipes-support/libcroco/libcroco_0.6.12.bb
index 465ed15..d86ddd6 100644
--- a/meta/recipes-support/libcroco/libcroco_0.6.12.bb
+++ b/meta/recipes-support/libcroco/libcroco_0.6.12.bb
@@ -14,7 +14,7 @@ EXTRA_OECONF += "--enable-Bsymbolic=auto"
 
 BINCONFIG = "${bindir}/croco-0.6-config"
 
-inherit autotools pkgconfig gnomebase gtk-doc binconfig-disabled
+inherit gnomebase gtk-doc binconfig-disabled
 
 SRC_URI[archive.md5sum] = "bc0984fce078ba2ce29f9500c6b9ddce"
 SRC_URI[archive.sha256sum] = "ddc4b5546c9fb4280a5017e2707fbd4839034ed1aba5b7d4372212f34f84f860"
-- 
2.4.0



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

* [PATCH 4/5] gcr: remove duplication in inherit
  2018-04-04 13:40 [PATCH 1/5] documentation.conf: remove obsolete variable Maxin B. John
  2018-04-04 13:40 ` [PATCH 2/5] python3-pygobject: remove duplication in inherit Maxin B. John
  2018-04-04 13:40 ` [PATCH 3/5] libcroco: " Maxin B. John
@ 2018-04-04 13:40 ` Maxin B. John
  2018-04-04 13:40 ` [PATCH 5/5] librsvg: " Maxin B. John
  3 siblings, 0 replies; 5+ messages in thread
From: Maxin B. John @ 2018-04-04 13:40 UTC (permalink / raw)
  To: openembedded-core

Since gnomebase class already inherits autotools,
there is no need to repeat it here.

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 meta/recipes-gnome/gcr/gcr_3.20.0.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-gnome/gcr/gcr_3.20.0.bb b/meta/recipes-gnome/gcr/gcr_3.20.0.bb
index 4450e15..a68e0f6 100644
--- a/meta/recipes-gnome/gcr/gcr_3.20.0.bb
+++ b/meta/recipes-gnome/gcr/gcr_3.20.0.bb
@@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=55ca817ccb7d5b5b66355690e9abc605"
 DEPENDS = "intltool-native gtk+3 p11-kit glib-2.0 libgcrypt \
            ${@bb.utils.contains('GI_DATA_ENABLED', 'True', 'libxslt-native', '', d)}"
 
-inherit autotools gnomebase gtk-icon-cache gtk-doc distro_features_check upstream-version-is-even vala gobject-introspection
+inherit gnomebase gtk-icon-cache gtk-doc distro_features_check upstream-version-is-even vala gobject-introspection
 # depends on gtk+3, but also x11 through gtk+-x11
 REQUIRED_DISTRO_FEATURES = "x11"
 
-- 
2.4.0



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

* [PATCH 5/5] librsvg: remove duplication in inherit
  2018-04-04 13:40 [PATCH 1/5] documentation.conf: remove obsolete variable Maxin B. John
                   ` (2 preceding siblings ...)
  2018-04-04 13:40 ` [PATCH 4/5] gcr: " Maxin B. John
@ 2018-04-04 13:40 ` Maxin B. John
  3 siblings, 0 replies; 5+ messages in thread
From: Maxin B. John @ 2018-04-04 13:40 UTC (permalink / raw)
  To: openembedded-core

Since gnomebase class already inherits autotools and pkgconfig,
there is no need to repeat it here.

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 meta/recipes-gnome/librsvg/librsvg_2.40.20.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-gnome/librsvg/librsvg_2.40.20.bb b/meta/recipes-gnome/librsvg/librsvg_2.40.20.bb
index cf17730..e376d52 100644
--- a/meta/recipes-gnome/librsvg/librsvg_2.40.20.bb
+++ b/meta/recipes-gnome/librsvg/librsvg_2.40.20.bb
@@ -12,7 +12,7 @@ SECTION = "x11/utils"
 DEPENDS = "cairo gdk-pixbuf glib-2.0 libcroco libxml2 pango"
 BBCLASSEXTEND = "native"
 
-inherit autotools pkgconfig gnomebase gtk-doc pixbufcache upstream-version-is-even gobject-introspection
+inherit gnomebase gtk-doc pixbufcache upstream-version-is-even gobject-introspection
 
 SRC_URI += "file://gtk-option.patch"
 
-- 
2.4.0



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

end of thread, other threads:[~2018-04-04 13:40 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-04-04 13:40 [PATCH 1/5] documentation.conf: remove obsolete variable Maxin B. John
2018-04-04 13:40 ` [PATCH 2/5] python3-pygobject: remove duplication in inherit Maxin B. John
2018-04-04 13:40 ` [PATCH 3/5] libcroco: " Maxin B. John
2018-04-04 13:40 ` [PATCH 4/5] gcr: " Maxin B. John
2018-04-04 13:40 ` [PATCH 5/5] librsvg: " Maxin B. John

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