Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/2] oe/recipeutils.py: get_recipe_upstream_info improvements
@ 2015-07-15  0:33 Aníbal Limón
  2015-07-15  0:33 ` [PATCH 1/2] oe/recipeutils.py: get_recipe_upstream_info update to get revision Aníbal Limón
  2015-07-15  0:33 ` [PATCH 2/2] recipeutils.py: get_recipe_pv_without_srcpv remove prefixes from pv Aníbal Limón
  0 siblings, 2 replies; 3+ messages in thread
From: Aníbal Limón @ 2015-07-15  0:33 UTC (permalink / raw)
  To: openembedded-core

This patch set uses the new latest_versionstring method that returns the
current revision of a version in SCM's this DEPENDS on,

http://lists.openembedded.org/pipermail/bitbake-devel/2015-July/006034.html

Aníbal Limón (2):
  oe/recipeutils.py: get_recipe_upstream_info update to get revision
  recipeutils.py: get_recipe_pv_without_srcpv remove prefixes from pv

 meta/lib/oe/recipeutils.py | 34 +++++++++++++++++++++-------------
 1 file changed, 21 insertions(+), 13 deletions(-)

-- 
1.9.1



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

* [PATCH 1/2] oe/recipeutils.py: get_recipe_upstream_info update to get revision
  2015-07-15  0:33 [PATCH 0/2] oe/recipeutils.py: get_recipe_upstream_info improvements Aníbal Limón
@ 2015-07-15  0:33 ` Aníbal Limón
  2015-07-15  0:33 ` [PATCH 2/2] recipeutils.py: get_recipe_pv_without_srcpv remove prefixes from pv Aníbal Limón
  1 sibling, 0 replies; 3+ messages in thread
From: Aníbal Limón @ 2015-07-15  0:33 UTC (permalink / raw)
  To: openembedded-core

Bitbake fetcher latest_versionstring now returns a tuple with (version,
 revision) that helps SCM's like git to build current upstream version.

[YOCTO #7605]

Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
---
 meta/lib/oe/recipeutils.py | 28 +++++++++++++++-------------
 1 file changed, 15 insertions(+), 13 deletions(-)

diff --git a/meta/lib/oe/recipeutils.py b/meta/lib/oe/recipeutils.py
index ab50686..f3da864 100644
--- a/meta/lib/oe/recipeutils.py
+++ b/meta/lib/oe/recipeutils.py
@@ -703,28 +703,30 @@ def get_recipe_upstream_version(rd):
     else:
         ud = bb.fetch2.FetchData(src_uri, rd)
         pupver = ud.method.latest_versionstring(ud, rd)
+        (upversion, revision) = pupver
 
+        # format git version version+gitAUTOINC+HASH
         if uri_type == 'git':
             (pv, pfx, sfx) = get_recipe_pv_without_srcpv(pv, uri_type)
 
-            revision = ud.method.latest_revision(ud, rd, ud.names[0])
+            # if contains revision but not upversion use current pv
+            if upversion == '' and revision:
+                upversion = pv
 
-            # if contains revision but not pupver use current pv
-            if pupver == '' and revision:
-                pupver = pv
-
-            if pupver != '':
-                tmp = pupver
-                pupver = ''
+            if upversion:
+                tmp = upversion
+                upversion = ''
 
                 if pfx:
-                    pupver = pfx
-                pupver = pupver + tmp
+                    upversion = pfx + tmp
+                else:
+                    upversion = tmp
+
                 if sfx:
-                    pupver = pupver + sfx + revision[:10]
+                    upversion = upversion + sfx + revision[:10]
 
-        if pupver != '':
-            ru['version'] = pupver
+        if upversion:
+            ru['version'] = upversion
             ru['type'] = 'A'
 
         ru['datetime'] = datetime.now()
-- 
1.9.1



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

* [PATCH 2/2] recipeutils.py: get_recipe_pv_without_srcpv remove prefixes from pv
  2015-07-15  0:33 [PATCH 0/2] oe/recipeutils.py: get_recipe_upstream_info improvements Aníbal Limón
  2015-07-15  0:33 ` [PATCH 1/2] oe/recipeutils.py: get_recipe_upstream_info update to get revision Aníbal Limón
@ 2015-07-15  0:33 ` Aníbal Limón
  1 sibling, 0 replies; 3+ messages in thread
From: Aníbal Limón @ 2015-07-15  0:33 UTC (permalink / raw)
  To: openembedded-core

Some recipes uses v or r prefixes in versions that makes wrong
comparisions over recipes like lz4 r123 > 128.

Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
---
 meta/lib/oe/recipeutils.py | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/meta/lib/oe/recipeutils.py b/meta/lib/oe/recipeutils.py
index f3da864..90dfba2 100644
--- a/meta/lib/oe/recipeutils.py
+++ b/meta/lib/oe/recipeutils.py
@@ -644,6 +644,12 @@ def get_recipe_pv_without_srcpv(pv, uri_type):
             pv = m.group('ver')
             pfx = m.group('pfx')
             sfx = m.group('sfx')
+    else:
+        regex = re.compile("(?P<pfx>(v|r|))(?P<ver>((\d+[\.\-_]*)+))")
+        m = regex.match(pv)
+        if m:
+            pv = m.group('ver')
+            pfx = m.group('pfx')
 
     return (pv, pfx, sfx)
 
-- 
1.9.1



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

end of thread, other threads:[~2015-07-15  0:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-15  0:33 [PATCH 0/2] oe/recipeutils.py: get_recipe_upstream_info improvements Aníbal Limón
2015-07-15  0:33 ` [PATCH 1/2] oe/recipeutils.py: get_recipe_upstream_info update to get revision Aníbal Limón
2015-07-15  0:33 ` [PATCH 2/2] recipeutils.py: get_recipe_pv_without_srcpv remove prefixes from pv Aníbal Limón

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