after your SRPM was approved you can import it into Fedora CVS:
$ cd ~/cvs $ fedora-cvs <package_name> $ cd <package_name> $ ./common/cvs-import.sh <LOCAL_PATH_OF_SRPM> $ cd devel $ cvs up $ make tag $ make build
if you have some problems with make tag, you could use:
$ TAG_OPTS=-F make tag build
if you would like to publish your new package also in stable fedora release,you need to follow the same steps from
$ cd <package_name> $ ./common/cvs-import.sh -b F-11 <LOCAL_PATH_OF_SRPM> $ cd devel $ cvs up $ make tag $ make build
where F-11 is folder of Fedora 11. You could repeat it for other release
$ cd ../F-8 (for Fedora 8)
$ cd ../F-9 (for Fedora 9)
etc.
and after you need to request a package update on
more details on…