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

[dak/master 7/9] Remove use of Component in dak.conf, use db instead



Signed-off-by: Mark Hymers <mhy@debian.org>
---
 config/backports/dak.conf       |   22 ----------------------
 config/debian-security/dak.conf |   23 -----------------------
 config/debian/dak.conf          |   21 ---------------------
 daklib/utils.py                 |    7 ++++---
 4 files changed, 4 insertions(+), 69 deletions(-)

diff --git a/config/backports/dak.conf b/config/backports/dak.conf
index f420927..a9f4886 100644
--- a/config/backports/dak.conf
+++ b/config/backports/dak.conf
@@ -293,28 +293,6 @@ Archive
   };
 };
 
-Component
-{
-  main
-  {
-	Description "Main";
-	MeetsDFSG "true";
-  };
-
-  contrib
-  {
-	Description "Contrib";
-	MeetsDFSG "true";
-  };
-
-  non-free
-  {
-     Description "Software that fails to meet the DFSG";
-     MeetsDFSG "false";
-  };
-
-};
-
 Section
 {
   admin;
diff --git a/config/debian-security/dak.conf b/config/debian-security/dak.conf
index a5f7473..fb23848 100644
--- a/config/debian-security/dak.conf
+++ b/config/debian-security/dak.conf
@@ -304,29 +304,6 @@ Archive
 
 };
 
-Component
-{
-
-  updates/main
-  {
-	Description "Main (updates)";
-	MeetsDFSG "true";
-  };
-
-  updates/contrib
-  {
-	Description "Contrib (updates)";
-	MeetsDFSG "true";
-  };
-
-  updates/non-free
-  {
-	Description "Software that fails to meet the DFSG";
-	MeetsDFSG "false";
-  };
-
-};
-
 ComponentMappings
 {
  "main updates/main";
diff --git a/config/debian/dak.conf b/config/debian/dak.conf
index bdbdf2c..293df65 100644
--- a/config/debian/dak.conf
+++ b/config/debian/dak.conf
@@ -383,27 +383,6 @@ Archive
   };
 };
 
-Component
-{
-  main
-  {
-	Description "Main";
-	MeetsDFSG "true";
-  };
-
-  contrib
-  {
-	Description "Contrib";
-	MeetsDFSG "true";
-  };
-
-  non-free
-  {
-	Description "Software that fails to meet the DFSG";
-	MeetsDFSG "false";
-  };
-};
-
 Urgency
 {
   Default "low";
diff --git a/daklib/utils.py b/daklib/utils.py
index fd4d7bb..413bcb6 100755
--- a/daklib/utils.py
+++ b/daklib/utils.py
@@ -143,10 +143,11 @@ def extract_component_from_section(section):
 
     # Expand default component
     if component == "":
-        if Cnf.has_key("Component::%s" % section):
-            component = section
-        else:
+        comp = get_component(section)
+        if comp is None:
             component = "main"
+        else:
+            component = comp.componant_name
 
     return (section, component)
 
-- 
1.7.2.5



Reply to: