On 04/28/15 01:56, Mathy Vanhoef wrote:
This updates the dependency library to handle RC versions up to 39. For
example, coccinelle version "1.0.0" is now correctly treated as being higher
than version "1.0.0-rc24".

This one is duplicate to the patch Eliad submitted [1]. Any reason for choosing rc 40?

Regards,
Arend

[1] http://mid.gmane.org/1430126344-1068-1-git-send-email-el...@wizery.com

Signed-off-by: Mathy Vanhoef<vanho...@gmail.com>
---
  lib/bpreqs.py |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/bpreqs.py b/lib/bpreqs.py
index 6c46670..4399c6d 100644
--- a/lib/bpreqs.py
+++ b/lib/bpreqs.py
@@ -98,7 +98,7 @@ class Req:
                  if (rc == ""):
                      rc = 0
                  else:
-                    rc = int(rc) - 20
+                    rc = int(rc) - 40
                  extra = int(rc)
              else:
                  extra = int(rel_specs['EXTRAVERSION']) + 10

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

Reply via email to