From Fedora Project Wiki

Revision as of 02:44, 3 September 2010 by Poelstra (talk | contribs) (Created page with '== Description == Changing comps == Action == 1. clone the comps repo <pre> $ git clone ssh://git.fedorahosted.org/git/comps </pre> 2. Create the new comps file for next relea...')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Description

Changing comps

Action

1. clone the comps repo

$ git clone ssh://git.fedorahosted.org/git/comps

2. Create the new comps file for next release:

$ cp comps-f14.xml.in comps-f15.xml.in

3. Edit Makefile to update comps-rawhide target

{{{
- -comps-rawhide: comps-f14.xml
- -       @mv comps-f14.xml comps-rawhide.xml
+comps-rawhide: comps-f15.xml
+       @mv comps-f15.xml comps-rawhide.xml
}}}

4. Add the new comps file to source control:

$ git add comps-f15.xml.in

5. Send it up:

$ git push

Verification

  • FIXME--anything to add here?

Consider Before Running

  • FIXME--anything to add here?