We need the submodule groups in a later patch.

Signed-off-by: Stefan Beller <sbel...@google.com>
---
 submodule-config.c | 15 +++++++++++++++
 submodule-config.h |  2 ++
 2 files changed, 17 insertions(+)

diff --git a/submodule-config.c b/submodule-config.c
index a32259e..245a0f6 100644
--- a/submodule-config.c
+++ b/submodule-config.c
@@ -60,6 +60,10 @@ static void free_one_config(struct submodule_entry *entry)
 {
        free((void *) entry->config->path);
        free((void *) entry->config->name);
+       if (entry->config->labels) {
+               string_list_clear(entry->config->labels, 0);
+               free(entry->config->labels);
+       }
        free(entry->config);
 }
 
@@ -184,6 +188,7 @@ static struct submodule *lookup_or_create_by_name(struct 
submodule_cache *cache,
        submodule->update = NULL;
        submodule->fetch_recurse = RECURSE_SUBMODULES_NONE;
        submodule->ignore = NULL;
+       submodule->labels = NULL;
 
        hashcpy(submodule->gitmodules_sha1, gitmodules_sha1);
 
@@ -324,6 +329,16 @@ static int parse_specific_submodule_config(const char 
*subsection, int subsectio
                        free((void *) submodule->update);
                        submodule->update = xstrdup(value);
                }
+       } else if (!strcmp(key, "label")) {
+               if (!value)
+                       ret = config_error_nonbool(var);
+               else {
+                       if (!submodule->labels) {
+                               submodule->labels = 
xmalloc(sizeof(*submodule->labels));
+                               string_list_init(submodule->labels, 1);
+                       }
+                       string_list_insert(submodule->labels, value);
+               }
        }
 
        return ret;
diff --git a/submodule-config.h b/submodule-config.h
index d9bbf9a..df73fd7 100644
--- a/submodule-config.h
+++ b/submodule-config.h
@@ -17,6 +17,8 @@ struct submodule {
        const char *update;
        /* the sha1 blob id of the responsible .gitmodules file */
        unsigned char gitmodules_sha1[20];
+       /* sorted, not as on disk */
+       struct string_list *labels;
 };
 
 int parse_fetch_recurse_submodules_arg(const char *opt, const char *arg);
-- 
2.7.0.rc0.42.g77a36b9.dirty

--
To unsubscribe from this list: send the line "unsubscribe git" 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