From 0799b781ac02afd73f05cd1d4c7293c46b2982ce Mon Sep 17 00:00:00 2001
From: Tim Jaacks <tim.jaacks@garz-fricke.com>
Date: Tue, 22 Dec 2020 21:44:28 +0100
Subject: [PATCH] integrate_into_manifest: fix support for manifest projects
 with prefixed namespace

Previous solution did not work because lxml does not support XPath 2.0 syntax.
---
 integrate_into_manifest.py | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/integrate_into_manifest.py b/integrate_into_manifest.py
index 72d8f340..ebc844ed 100755
--- a/integrate_into_manifest.py
+++ b/integrate_into_manifest.py
@@ -54,17 +54,17 @@ def integrate_into_manifest(
         except FileNotFoundError:
             sys.exit("ERROR: file '%s' not found in manifest repo" % manifest_file)
 
-        # Find project references in manifest
-        # We're using XPath's substring function here to test if the name attribute
-        # ends on the project name. This adds suport for sub-projects as well
-        # (e.g."mygroup/myproject", when only "myproject" is given).
-        project_nodes = manifest.findall(
-            "project[substring(@name, string-length(@name)-string-length('%s')+1)='%s']"
-            % (project.path, project.path)
-        )
-        if not project_nodes:
+        # Find project reference in manifest
+        # We are using str.endswith() for this in order to support sub-projects as well
+        # (e.g."mygroup/myproject", when only "myproject" is given)
+        project_node = None
+        project_nodes = manifest.findall("project")
+        for node in project_nodes:
+            name = node.get("name")
+            if name is not None and name.endswith(project.path):
+                project_node = node
+        if project_node is None:
             sys.exit("ERROR: project '%s' not found in manifest" % project.path)
-        project_node = project_nodes[0]
 
         # Get current project revision from manifest
         old_revision = project_node.get("revision")
-- 
GitLab