(→Update Koji: change dist-fc7 to dist-f8) |
(→Pseudo Users for SIGs: collate and add i18n-team and haskell-sig) |
||
Line 140: | Line 140: | ||
The following pseudo users can be used with the packagedb so bugzilla and commits will CC the correct mailing lists or groups can triage their bugs effectively: | The following pseudo users can be used with the packagedb so bugzilla and commits will CC the correct mailing lists or groups can triage their bugs effectively: | ||
<pre> | <pre> | ||
anaconda-maint | anaconda-maint-list-redhat.com | anaconda-maint | anaconda-maint-list-redhat.com | ||
astronomy-sig | fedora-astronomy-list-redhat.com | |||
ctrl-center-team | control-center-maint-fedoraproject.org | |||
fonts-sig | fedora-fonts-bugs-list-redhat.com | |||
gecko-maint | gecko-maint-redhat.com | |||
hams-sig | fedora-hams@fedoraunity.org | |||
haskell-sig | fedora-haskell-list-redhat.com | |||
i18n-team | fedora-i18n-bugs-redhat.com | |||
kernel-maint | kernel-maint-redhat.com | kernel-maint | kernel-maint-redhat.com | ||
lvm-team | lvm-team-redhat.com | lvm-team | lvm-team-redhat.com | ||
orphan | extras-orphan-fedoraproject.org | |||
perl-sig | fedora-perl-devel-list-redhat.com | perl-sig | fedora-perl-devel-list-redhat.com | ||
retired | retired-packages-fedoraproject.org | retired | retired-packages-fedoraproject.org | ||
xen-maint | xen-maint-redhat.com | |||
xgl-maint | xgl-maint-redhat.com | |||
</pre> | </pre> |
Revision as of 23:22, 9 November 2008
Creating New Packages
CVSROOT=/cvs/pkgs cvs co CVSROOT cd CVSROOT/admin
Steps
See below for detail of invoking the scripts.
- Check Bugzilla Ticket to make sure it looks ok
- Add the package information to the packagedb with pkgdb-client
- Use pkgdb2branch to create the branches on the cvs server
4. Update koji.
Using pkgdb-client
Use pkgdb-client to update the pkgdb with new information. For instance, to add a new package:
pkgdb-client -u toshio -o terjeros -d 'Python module to extract EXIF information' -b FC-6 -b F-7 -b devel python-exif
To update that package later and add someone to the initialcclist do:
pkgdb-client -u toshio -c kevin python-exif
To add a new branch for a package:
pkgdb-client -u toshio -b F-8 -b EL-5 python-exif
To allow provenpackager to edit a branch:
pkgdb-client -u toshio -b devel -a provenpackager python-exif
To remove provenpackager commit rights on a branch:
pkgdb-client -u toshio -b EL-5 -b EL-4 -r provenpackager python-exif
More options can be found by running pkgdb-client --help
You must be in the cvsadmin group to use pkgdb-client. It can be run on a non-Fedora Infrastructure box if you set the PACKAGEDBURL environment variable to the public URL:
export PACKAGEDBURL=https://admin.fedoraproject.org/pkgdb
Using pkgdb2branch
Use pkgdb2branch.py to create cvs branches for a package. pkgdb2branch.py takes a list of package names on the command line and creates the branches in cvs that are specified in the packagedb. For instance:
./pkgdb2branch.py python-exif qa-assistant
Will create cvs branches specified in the packagedb for python-exif and qa-assistant.
pkgdb2branch can only be run from cvs-int.
Update Koji
Optionally you can synchronize pkgdb and koji by hand: it is done automatically hourly by a cronjob. There is a script for this in the admin/ directory of the CVSROOT module.
Since dist-f9+ inherits from dist-f8, and currently dist-f8 is the basis of our stack, it's easiest to just call:
./owner-sync-pkgdb dist-f8
Just run ./owners-sync-pkgdb
for a usage output.
This script requires that you have a properly configured koji client installed.
owner-sync-pkgdb requires the koji client libraries which are not available on cvs-int. So you need to run this from one of your machines.
addpackage
In the CVSROOT/admin checkout, there is a shell script called addpackage. It reads in and parses a New Package Request on stdin, and after checking, generates the new pkgdb entry and makes the branches. There are confirmation prompts along the way to check that each step is right.
You need to invoke the script with your cvsadmin FAS account name (NOT the new package owner's name):
./addpackage spot
Helper Scripts
These scripts are invoked by the scripts above, doing some of the heavy lifting. They should not ordinarily be called on their own.
mkbranchwrapper
/usr/local/bin/mkbranchwrapper is a shell script which takes a list of packages and branches. For instance:
mkbranchwrapper foo bar EL-4 EL-5 FC-6 F-7
will create modules foo and bar for devel if they don't exist and branch them for the other 4 branches passed to the script. If the devel branch exists then it just branches. If there is no branches passed the module is created in devel only.
mkbranchwrapper has to be run from cvs-int.
mkbranchwrapper is not used by any current programs. Use pkgdb2branch instead.
setup_package
setup_package creates a new blank module in devel only. It can be run from any host. To create a new package run
setup_package foo
setup_package needs to be called once for each package. it could be wrapped in a shell script similar to
#!/bin/bash PACKAGES="" for arg in $@; do PACKAGES="$PACKAGES $arg" done echo "packages=$PACKAGES" for package in $PACKAGES; do ~/bin/setup_package $package done
then call the script with all branches after it.
setup_package is currently called from pkgdb2branch.
Pseudo Users for SIGs
The following pseudo users can be used with the packagedb so bugzilla and commits will CC the correct mailing lists or groups can triage their bugs effectively:
anaconda-maint | anaconda-maint-list-redhat.com astronomy-sig | fedora-astronomy-list-redhat.com ctrl-center-team | control-center-maint-fedoraproject.org fonts-sig | fedora-fonts-bugs-list-redhat.com gecko-maint | gecko-maint-redhat.com hams-sig | fedora-hams@fedoraunity.org haskell-sig | fedora-haskell-list-redhat.com i18n-team | fedora-i18n-bugs-redhat.com kernel-maint | kernel-maint-redhat.com lvm-team | lvm-team-redhat.com orphan | extras-orphan-fedoraproject.org perl-sig | fedora-perl-devel-list-redhat.com retired | retired-packages-fedoraproject.org xen-maint | xen-maint-redhat.com xgl-maint | xgl-maint-redhat.com