* [PATCH] base.bbclass: Deprecate the PRINC logic
@ 2014-03-05 14:20 Richard Purdie
2014-03-05 15:32 ` Otavio Salvador
0 siblings, 1 reply; 2+ messages in thread
From: Richard Purdie @ 2014-03-05 14:20 UTC (permalink / raw)
To: openembedded-core
The PRINC logic is now deprecated, the PR server should be used to handle
the automatic incrementing of the PR (package release) field. Add a warning
message to alert users to the change. The functionality will be removed
in the next release cycle.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass
index 3e9051c..27b5f53 100644
--- a/meta/classes/base.bbclass
+++ b/meta/classes/base.bbclass
@@ -456,8 +456,12 @@ python () {
appendVar('EXTRA_OECONF', extraconf)
# If PRINC is set, try and increase the PR value by the amount specified
+ # The PR server is now the preferred way to handle PR changes based on
+ # the checksum of the recipe (including bbappend). The PRINC is now
+ # obsolete. Return a warning to the user.
princ = d.getVar('PRINC', True)
if princ and princ != "0":
+ bb.warn("Use of PRINC was detected in the recipe %s (or one of its .bbappends)\nUse of PRINC is deprecated. The PR server should be used to automatically increment the PR. See: https://wiki.yoctoproject.org/wiki/PR_Service." % d.getVar("FILE", True))
pr = d.getVar('PR', True)
pr_prefix = re.search("\D+",pr)
prval = re.search("\d+",pr)
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] base.bbclass: Deprecate the PRINC logic
2014-03-05 14:20 [PATCH] base.bbclass: Deprecate the PRINC logic Richard Purdie
@ 2014-03-05 15:32 ` Otavio Salvador
0 siblings, 0 replies; 2+ messages in thread
From: Otavio Salvador @ 2014-03-05 15:32 UTC (permalink / raw)
To: Richard Purdie; +Cc: openembedded-core
On Wed, Mar 5, 2014 at 11:20 AM, Richard Purdie
<richard.purdie@linuxfoundation.org> wrote:
> The PRINC logic is now deprecated, the PR server should be used to handle
> the automatic incrementing of the PR (package release) field. Add a warning
> message to alert users to the change. The functionality will be removed
> in the next release cycle.
>
> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Acked-by: Otavio Salvador <otavio@ossystems.com.br>
--
Otavio Salvador O.S. Systems
http://www.ossystems.com.br http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854 Mobile: +1 (347) 903-9750
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-03-05 15:32 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-05 14:20 [PATCH] base.bbclass: Deprecate the PRINC logic Richard Purdie
2014-03-05 15:32 ` Otavio Salvador
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox