]> git.decadent.org.uk Git - dak.git/commitdiff
add notautomaitc: yes to experimental/**/Release
authorAnthony Towns <aj@azure.humbug.org.au>
Sat, 5 May 2001 07:20:57 +0000 (07:20 +0000)
committerAnthony Towns <aj@azure.humbug.org.au>
Sat, 5 May 2001 07:20:57 +0000 (07:20 +0000)
katie.conf
katie.conf-non-US
ziyi

index 73e4452421d5016097ac1a27db725d834530b806..b34e95d15ac742e272a00ebb18393f36fd22c023 100644 (file)
@@ -223,6 +223,7 @@ Suite
        Origin "Debian";
        Description "Experimental packages - not released; use at your own risk.";
        CodeName "experimental";
+       NotAutomatic "yes";
        OverrideCodeName "sid";
        OverrideSuite "unstable";
        Priority "0";
index 2b825221a92e6af661ff40d1cb7f0eba3299954f..5f5ba83d4c9895e6290692e863bdbedd59dac1f2 100644 (file)
@@ -210,6 +210,7 @@ Suite
 //     CodeName "experimental";
 //     OverrideCodeName "experimental";
 //     SingleOverrideFile "true";
+//     NotAutomatic "yes";
 //     Priority "0";
 //          Tree "project/experimental";
 //    };
diff --git a/ziyi b/ziyi
index e056f5039278d3571cd156d9afcd70957d38ef1b..731fea930b03503094b130155992323fa5ee5d76 100755 (executable)
--- a/ziyi
+++ b/ziyi
@@ -3,7 +3,7 @@
 # Create all the Release files
 
 # Copyright (C) 2001  Anthony Towns <ajt@debian.org>
-# $Id: ziyi,v 1.5 2001-04-24 05:16:22 ajt Exp $
+# $Id: ziyi,v 1.6 2001-05-05 07:20:57 ajt Exp $
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -116,6 +116,12 @@ def main ():
        label = SuiteBlock.get("Label", origin)
        version = SuiteBlock.get("Version", "")
        codename = SuiteBlock.get("CodeName", "")
+
+       if SuiteBlock.has_key("NotAutomatic"):
+           notautomatic = "yes"
+       else:
+           notautomatic = ""
+
        if SuiteBlock.has_key("Components"):
            components = SuiteBlock.SubTree("Components").List()
        else:
@@ -146,6 +152,8 @@ def main ():
        if codename != "":
            out.write("Codename: %s\n" % (codename))
        out.write("Date: %s\n" % (time.strftime("%a, %d %b %Y %H:%M:%S UTC", time.gmtime(time.time()))))
+       if notautomatic != "":
+           out.write("NotAutomatic: %s\n" % (notautomatic))
        out.write("Architectures: %s\n" % (string.join(filter(real_arch, SuiteBlock.SubTree("Architectures").List()))))
        if components != []:
             out.write("Components: %s\n" % (string.join(components)))
@@ -179,6 +187,8 @@ def main ():
                                    release.write("Component: %s\n" % (sec))
                                release.write("Origin: %s\n" % (origin))
                                release.write("Label: %s\n" % (label))
+                               if notautomatic != "":
+                                   release.write("NotAutomatic: %s\n" % (notautomatic))
                                release.write("Architecture: %s\n" % (arch))
                                release.close()
                            files.append("%s/binary-%s/Release" % (sec,arch))