[prev in list] [next in list] [prev in thread] [next in thread] 

List:       linux-backports
Subject:    [PATCH] backports: fix coccinelle version check
From:       Eliad Peller <eliad () wizery ! com>
Date:       2015-04-27 9:19:04
Message-ID: 1430126344-1068-1-git-send-email-eliad () wizery ! com
[Download RAW message or body]

bpreqs.py assumes the max rc level is 20. However,
backports currently requires coccinelle 1.0.0-rc24
(which is the latest rc before 1.0.0).

This resulted in 1.0.0-rc24 getting higher weight
than 1.0.0, which failed the dependency check.

Fix it by increasing the max rc to 25 (and use
a constant for it)

Signed-off-by: Eliad Peller <eliad@wizery.com>
---
 lib/bpreqs.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/lib/bpreqs.py b/lib/bpreqs.py
index 6c46670..1325fd2 100644
--- a/lib/bpreqs.py
+++ b/lib/bpreqs.py
@@ -78,6 +78,8 @@ class Req:
             sys.stdout.write("You are using for version: %s\n" % \
                stdout.split()[version_pos])
             sys.stdout.write("Specifically your idx, element: %s\n" % ([[i, x] for \
i, x in enumerate(stdout.split())][version_pos]))  return stdout.split()[version_pos]
+
+    MAX_RC = 25
     def __compute_rel_weight(self, rel_specs):
         weight = 0
         extra = 0
@@ -98,7 +100,7 @@ class Req:
                 if (rc == ""):
                     rc = 0
                 else:
-                    rc = int(rc) - 20
+                    rc = int(rc) - (Req.MAX_RC + 1)
                 extra = int(rc)
             else:
                 extra = int(rel_specs['EXTRAVERSION']) + 10
-- 
1.8.5.2.229.g4448466.dirty

--
To unsubscribe from this list: send the line "unsubscribe backports" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic