From 0f5197ca730617f9b5107302aa1922b32d81bab0 Mon Sep 17 00:00:00 2001 From: Release Managers Date: Fri, 7 Aug 2009 05:20:53 +0000 Subject: [PATCH] Add new RAs Add kfreebsd-i386, kfreebsd-amd64 --- britney.conf | 19 +++++++++---------- lib/update_out.py | 10 +++++----- 2 files changed, 14 insertions(+), 15 deletions(-) diff --git a/britney.conf b/britney.conf index 9abee09..8596b33 100644 --- a/britney.conf +++ b/britney.conf @@ -12,19 +12,19 @@ UPGRADE_OUTPUT = /srv/ftp.debian.org/testing/output/output.txt HEIDI_OUTPUT = /srv/ftp.debian.org/testing/output/HeidiResult # List of release architectures -ARCHITECTURES = i386 sparc alpha powerpc arm armel hppa ia64 mips mipsel s390 amd64 +ARCHITECTURES = i386 sparc alpha powerpc arm armel hppa ia64 mips mipsel s390 amd64 kfreebsd-i386 kfreebsd-amd64 # if you're not in this list, arch: all packages are allowed to break on you NOBREAKALL_ARCHES = i386 # if you're in this list, your packages may not stay in sync with the source -FUCKED_ARCHES = +FUCKED_ARCHES = kfreebsd-i386 kfreebsd-amd64 # if you're in this list, your uninstallability count may increase -BREAK_ARCHES = +BREAK_ARCHES = kfreebsd-i386 kfreebsd-amd64 # if you're in this list, you are a new architecture -NEW_ARCHES = +NEW_ARCHES = kfreebsd-i386 kfreebsd-amd64 # priorities and delays MINDAYS_LOW = 10 @@ -38,20 +38,19 @@ DEFAULT_URGENCY = low APPROVERS = ajt security-team ftpmaster vorlon # hint permissions -HINTS_AJT = ALL -HINTS_RMURRAY = ALL HINTS_VORLON = ALL HINTS_ABA = ALL HINTS_HE = ALL HINTS_LUK = ALL -HINTS_JOEYH = STANDARD force -HINTS_ADEODATO = STANDARD force +HINTS_ADEODATO = ALL HINTS_ZOBEL = STANDARD force -HINTS_PKERN = STANDARD +HINTS_PKERN = STANDARD force HINTS_MADCODER = STANDARD HINTS_NEILM = STANDARD +HINTS_ADSB = easy hint remove block unblock approve +HINTS_FAW = easy hint remove block unblock approve +HINTS_JURIJ = easy hint remove block unblock approve HINTS_FREEZE = block block-all -HINTS_FTPTEAM = block # support for old libraries in testing (smooth update) # use ALL to enable smooth updates for all the sections diff --git a/lib/update_out.py b/lib/update_out.py index c46515c..6aad1f2 100644 --- a/lib/update_out.py +++ b/lib/update_out.py @@ -25,8 +25,8 @@ testingupdatesdir = sys.argv[3] # Configuration information -expected_arches = 12 -allarches = [ 'i386', 'sparc', 'alpha', 'powerpc', 'arm', 'm68k', 'hppa', 'ia64', 'mips', 'mipsel', 's390', 'amd64' ] +expected_arches = 13 +allarches = [ 'i386', 'sparc', 'alpha', 'powerpc', 'armel', 'hppa', 'ia64', 'mips', 'mipsel', 's390', 'amd64' , 'kfreebsd-i386', 'kfreebsd-amd64'] mindays = { "low" : 10, "medium" : 5, "high" : 2, "critical" : 0, "emergency" : 0 } @@ -35,11 +35,11 @@ defaulturgency = "low" # if you're not in this list, arch: all packages are allowed to break on you nobreakarchallarches = ['i386'] # if you're in this list, your packages may not stay in sync with the source -fuckedarches = ['m68k', 'sparc'] +fuckedarches = ['kfreebsd-i386','kfreebsd-amd64'] # if you're in this list, your uninstallability count may increase -breakarches = ['m68k', 'sparc'] +breakarches = ['kfreebsd-i386','kfreebsd-amd64'] # new architectures -newarches = [] +newarches = ['kfreebsd-i386','kfreebsd-amd64'] allarches.sort() arches = [ x for x in allarches if x in nobreakarchallarches ]