[sysadmin-bin] add core,core-apps,apps categories



commit d69c27cce89643eb6fa34df802e6d7bf0919dcd0
Author: Olav Vitters <olav vitters nl>
Date:   Wed Jul 30 15:26:57 2014 +0200

    add core,core-apps,apps categories

 git/build-repo-list   |    9 +++++++--
 git/extract-doap-info |    3 +++
 git/validate-doap     |    9 +++------
 3 files changed, 13 insertions(+), 8 deletions(-)
---
diff --git a/git/build-repo-list b/git/build-repo-list
index 7f395f5..775d94d 100755
--- a/git/build-repo-list
+++ b/git/build-repo-list
@@ -15,9 +15,14 @@ GNOME = "http://api.gnome.org/doap-extensions#";
 # This is what GIT writes by default, we replace it with something better
 NO_DESCRIPTION = 'Unnamed repository; edit this file to name it for gitweb.'
 
-sectionlist = ('Administration Tools', 'Bindings', 'Desktop', 'Development Tools',
-             'Infrastructure', 'Platform', 'Productivity Tools', 'Other', 'Z_Deprecated', 'Z_Archived')
+sectionlist = ('Core', 'Core Apps', 'Apps', 'Infrastructure', 'Other',
+              # old and deprecated:
+               'Administration Tools', 'Bindings', 'Desktop', 'Development Tools',
+               'Platform', 'Productivity Tools', 'Z_Deprecated', 'Z_Archived')
 sectionmap = {
+    'core': 'Core',
+    'core-apps': 'Core Apps',
+    'apps': 'Apps',
     'admin': 'Administration Tools',
     'bindings': 'Bindings',
     'deprecated': 'Z_Deprecated',
diff --git a/git/extract-doap-info b/git/extract-doap-info
index 1bb3829..f305ca1 100755
--- a/git/extract-doap-info
+++ b/git/extract-doap-info
@@ -18,6 +18,9 @@ DOAP = "http://usefulinc.com/ns/doap#";
 GNOME = "http://api.gnome.org/doap-extensions#";
 
 groups = {
+    (GNOME + 'core'): 'Core',
+    (GNOME + 'core-apps'): 'Core Apps',
+    (GNOME + 'apps'): 'Apps',
     (GNOME + 'admin'): 'admin',
     (GNOME + 'bindings'): 'bindings',
     (GNOME + 'deprecated'): 'deprecated',
diff --git a/git/validate-doap b/git/validate-doap
index cdce595..7638452 100755
--- a/git/validate-doap
+++ b/git/validate-doap
@@ -17,14 +17,11 @@ FOAF = "http://xmlns.com/foaf/0.1/";
 GNOME = "http://api.gnome.org/doap-extensions#";
 
 groups = {
-    (GNOME + 'admin'): 'admin',
-    (GNOME + 'bindings'): 'platform',
+    (GNOME + 'core'): 'core',
+    (GNOME + 'core-apps'): 'core-apps',
+    (GNOME + 'apps'): 'apps',
     (GNOME + 'deprecated'): 'deprecated',
-    (GNOME + 'desktop'): 'desktop',
-    (GNOME + 'development'): 'development',
     (GNOME + 'infrastructure'): 'infrastructure',
-    (GNOME + 'platform'): 'platform',
-    (GNOME + 'productivity'): 'productivity'
     }
 
 def die(message):


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]