From 527760a1fd2bfae8da87289f284304b2e6d2a2ed Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Jul 25 2017 21:27:22 +0000 Subject: Merge #6919 `Setup for F27 mass rebuild` --- diff --git a/scripts/find_failures.py b/scripts/find_failures.py index c7b75db..8c658ff 100755 --- a/scripts/find_failures.py +++ b/scripts/find_failures.py @@ -17,9 +17,9 @@ import datetime # Set some variables # Some of these could arguably be passed in as args. -buildtag = 'f26-rebuild' # tag to check -desttag = 'f26' # Tag where fixed builds go -epoch = '2017-02-05 09:04:08.000000' # Date to check for failures from +buildtag = 'f27-rebuild' # tag to check +desttag = 'f27' # Tag where fixed builds go +epoch = '2017-07-25 20:27:50.000000' # Date to check for failures from failures = {} # dict of owners to lists of packages that failed. failed = [] # raw list of failed packages diff --git a/scripts/mass-rebuild.py b/scripts/mass-rebuild.py index 7c94273..9564d96 100755 --- a/scripts/mass-rebuild.py +++ b/scripts/mass-rebuild.py @@ -17,14 +17,14 @@ import operator # Set some variables # Some of these could arguably be passed in as args. -buildtag = 'f26-rebuild' # tag to build from -targets = ['f26-candidate', 'rawhide', 'f26'] # tag to build from -epoch = '2017-02-05 09:04:08.000000' # rebuild anything not built after this date +buildtag = 'f27-rebuild' # tag to build from +targets = ['f27-candidate', 'rawhide', 'f27'] # tag to build from +epoch = '2017-07-25 20:27:50.000000' # rebuild anything not built after this date user = 'Fedora Release Engineering ' -comment = '- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild' +comment = '- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild' workdir = os.path.expanduser('~/massbuild') enviro = os.environ -target = 'f26-rebuild' +target = 'f27-rebuild' pkg_skip_list = ['fedora-release', 'fedora-repos', 'generic-release', 'redhat-rpm-config', 'shim', 'shim-signed', 'kernel', 'linux-firmware', 'grub2', 'openh264'] diff --git a/scripts/need-rebuild.py b/scripts/need-rebuild.py index 7db85d7..970cb44 100755 --- a/scripts/need-rebuild.py +++ b/scripts/need-rebuild.py @@ -18,11 +18,11 @@ import sys # Set some variables # Some of these could arguably be passed in as args. -buildtag = 'f26-rebuild' # tag(s) to check -target = 'f26' -updates = 'f26-candidate' +buildtag = 'f27-rebuild' # tag(s) to check +target = 'f27' +updates = 'f27-candidate' rawhide = 'rawhide' # Change to dist-f13 after we branch -epoch = '2017-02-05 09:04:08.000000' # rebuild anything not built after this date +epoch = '2017-07-25 20:27:50.000000' # rebuild anything not built after this date tobuild = {} # dict of owners to lists of packages needing to be built unbuilt = [] # raw list of unbuilt packages newbuilds = {}