#!/usr/bin/env python3 # # Copyright (c) 2015 Jon Turney # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. # import os # # project constants # # Generally these are defaults for values settable via command line options # # base directory for maintainer upload directories HOMEDIR = '/sourceware/cygwin-staging/home' # base directory for automated build staging directories STAGINGDIR = '/sourceware/cygwin-staging/staging' # the 'release area', contains all released files, which are rsync'ed to mirrors FTP = '/var/ftp/pub/cygwin' # logs are emailed to these addresses if any errors occurred EMAILS = ','.join(list(map(lambda m: m[0] + '@' + m[1], zip(['corinna', 'Stromeko'], ['sourceware.org', 'NexGo.DE'])))) # every email we send is bcc'd to these addresses ALWAYS_BCC = 'jturney@sourceware.org' # these maintainers are 'trusted' # # they can: # - git push to any package repo # - upload any package # - untest any package # - vault any package # # (these people have sourceware shell access and cygwin group membership, so # they can do whatever they like directly, anyhow) TRUSTEDMAINT = '/'.join([ 'Achim Gratz', 'Corinna Vinschen', 'Jon Turney', 'Ken Brown', 'Marco Atzeri', ]) # architectures we support ARCHES = ['x86_64'] # architectures we no longer support ARCHIVED_ARCHES = ['x86'] # base directory for HTML output HTDOCS = '/www/sourceware/htdocs/cygwin/' # the list of packages with maintainers PKGMAINT = '/www/sourceware/htdocs/cygwin/cygwin-pkg-maint' # removed files archive directory VAULT = '/sourceware/snapshot-tmp/cygwin' # defaults for package freshness DEFAULT_KEEP_COUNT = 3 DEFAULT_KEEP_COUNT_TEST = 2 DEFAULT_KEEP_DAYS = 0 # different values to be used when we are not running on sourceware.org, but my # test system... if os.uname()[1] == 'tambora': EMAILS = 'debug' ALWAYS_BCC = '' # package compressions PACKAGE_COMPRESSIONS = ['bz2', 'gz', 'lzma', 'xz', 'zst'] PACKAGE_COMPRESSIONS_RE = r'\.(' + '|'.join(PACKAGE_COMPRESSIONS) + r')' # ideally we'd identify soversion packages via some explicit mark, or by # inspecting the contents (but that's expensive to do). for the moment, we # recognize soversion packages by the simple heuristic of looking at the package # name SOVERSION_PACKAGE_RE = r'^(lib|girepository-).*[\d_.]+$|^libflint$'