Description
At each alpha freeze we branch the pending release away from devel/ which allows rawhide to move on while the pending release goes into bugfix and polish mode.
Action
PackageDB
Mass branching in the pkgdb is the first step. It should be done near the time that the cvs branches are created so as not to confuse packagers. However, it does not cause an outage so it should be done ahead of time.
First, someone needs to add the new release to the PackageDB. See this section
Then a cvsadmin needs to either start the mass branching process from the command line or by pushing a button on a web page. The web page method is to browse to https://admin.fedoraproject.org/pkgdb/collections/ login, and then click the "Branch All" button.
The command line method is to run:
pkgdb-client mass-branch -b F-13
Whichever method you choose, the command will start the mass branch process on the server and then return with a message that the branching is in progress.
When the branching is finished, you will receive an email that tells you of any unbranched packages as well as all the packages that were branched.
If something fails spectacularly, it is safe to try mass branching again at a later time. If only a few cleanups a re needed it might be better to do that with the regular branch commands.
CVS
The following work is performed on cvs01
Disable logins to cvs
sudo crontab -u toshio -e
- Comment out the gen-acl.sh cron job
CVSROOT=/cvs/pkgs cvs co CVSROOT
cp CVSROOT/admin/avail CVSROOT/admin/avail.bak
- edit CVSROOT/admin/avail and comment out everything below the cvsadmins acl:
unavail | | rpms avail | @cvsadmin | rpms ## Fedora SPARC team #avail | @fedora-sparc | rpms ## Fedora IA64 team #avail | @fedora-ia64 | rpms ## Fedora S390 team #avail | @fedora-s390 | rpms # # #avail | dwmw2,@provenpackager | rpms/0xFFFF [...]
- cvs commit your changes
Disable logging
CVSROOT=/cvs/pkgs cvs co CVSROOT
- edit CVSROOT/loginfo and comment out all of the lines
- <cvs commit the change to the repository
Create the branch directory
Similarly to /cvs/pkgs/devel, the branch directory /cvs/pkgs/F-13 will automatically be populated with symlinks to /cvs/pkgs/rpms/*/F-13. This should be automatically handled by the mkbranch script in CVSROOT/admin/mkbranch.
mkdir /cvs/pkgs/F-13 chmod g+w /cvs/pkgs/F-13
Make cvs branches
Run pkgdb2branch.py to put the files and directories on the cvs server. The --branch-for option was designed with this use case in mind::
./pkgdb2branch.py --branch-for=F-13
If for some reason that doesn't work, you can try this alternative:
cat pkglist.txt|./pkgdb2branch.py -c -
where pkglist.txt is a list of all the packages to branch.
Now turn everything back on.
Update branches file in common
The branches file in cvs/pkgs/common/branches dictates where builds go from cvs branches. This needs to be updated once the branching is done.
Regen ACLs
As a final step, refresh the acls file with all the new F-10 branches:
sudo -u toshio /usr/local/bin/genacls.sh
Update preupgrade releases.txt
File a ticket with Infrastructure to modify the mirrors/releases.txt file to include pointers to the new release, for use by preupgrade.
Update AutoQA repoinfo.conf
The AutoQA project maintains a config file (repoinfo.conf
) that describes available package repositories and their inheritance. In order to have automated testing of Branched package builds, the repoinfo.conf
file needs to be updated. Please file an autoqa ticket to modify the repoinfo.conf
file to include pointers to the new release.
Getting a List of Unbranched Packages
After mass branching you may want to run sanity checks to see if there were packages that weren't successfully branched. There's a script on the cvs server that can help you do this. The script needs to be run first on the cvs server and then on a machine with the kojiclient libraries installed (your local workstation should be fine.).
On cvs1: CVSROOT=/pkgs/cvs cvs co CVSROOT CVSROOT/admin/find-unbranched cvs F-12 > unbranched On your workstation: scp cvs1.fedoraproject.org:CVSROOT/admin/find-unbranched . scp cvs1.fedoraproject.org:unbranched . ./find-unbranched compare F-12 unbranched
Notes on Optimization
- If we could enhance the mail notification script for cvs to detect mass branching then we wouldn't need to close cvs during mass branching requests. (Currently, the rate for this is 3 pkgs/minute purely for the cvs portion (pkgdb information is cached at this point.))
Consider Before Running
- FIXME
- Produce an updated mock package ~1 week before mass branching, with a push to stable day-and-date with the branch availability. Should this be added to the rel-eng task schedule? --pfrields 15:20, 3 March 2010 (UTC)
- Make sure preupgrade knows about the new branch (not sure what exactly is involved with that). Should this be added here, too ? --mclasen 15:34, 3 March 2010 (UTC)