2008-05-31 12:49:28 +00:00
|
|
|
The master branch is where development takes place:
|
|
|
|
- it may contain kickstart files that are broken, or
|
|
|
|
- spin concepts that are in the process of being
|
|
|
|
approved by the Board (trademark approval), or
|
|
|
|
- spin concepts that are in the process of being
|
|
|
|
approved by the Spins SIG
|
|
|
|
|
|
|
|
The release specific branches contain spin concepts that:
|
|
|
|
- are approved (both by Board and Spin SIG)
|
|
|
|
- maintained for the remainder of the release cycle
|
2010-06-02 04:42:53 +00:00
|
|
|
|
2010-06-07 05:17:19 +00:00
|
|
|
When kickstart files are added or removed, Makefile.am should be updated to
|
|
|
|
reflect the change.
|
|
|
|
|
2010-06-02 04:42:53 +00:00
|
|
|
To rebuild the srpm for a new version or a new release without patches:
|
|
|
|
|
|
|
|
git clone ssh://git.fedorahosted.org/git/spin-kickstarts.git spin-kickstarts
|
|
|
|
cd spin-kickstarts
|
|
|
|
# If you need a specific branch other than master:
|
|
|
|
git checkout BRANCHNAME
|
|
|
|
# Edit configure.ac to update the version or release
|
|
|
|
# Edit spin-kickstarts.spec.in to update the change log
|
2010-07-27 11:13:40 +00:00
|
|
|
git commit -a
|
|
|
|
git push
|
2010-06-02 04:42:53 +00:00
|
|
|
aclocal
|
|
|
|
automake
|
|
|
|
autoconf
|
2010-06-07 05:19:47 +00:00
|
|
|
./configure
|
2010-06-02 04:42:53 +00:00
|
|
|
make dist
|
2010-06-07 06:10:47 +00:00
|
|
|
install -D -m 644 spin-kickstarts-*.tar.gz ~/rpmbuild/SOURCES
|
2010-06-07 05:17:19 +00:00
|
|
|
# Edit spin-kickstarts.spec if some changelog history needs to be included
|
2010-06-07 06:10:47 +00:00
|
|
|
install -D -m 644 spin-kickstarts.spec ~/rpmbuild/SPECS
|
2010-06-07 05:24:13 +00:00
|
|
|
rpmbuild -ba ~/rpmbuild/SPECS/spin-kickstarts.spec
|
2010-06-02 04:42:53 +00:00
|
|
|
# If the sprm gets published then publish the tar.gz file on fedorahosted
|
|
|
|
scp spin-kickstarts-*.tar.gz fedorahosted.org:spin-kickstarts
|
2010-06-07 05:17:19 +00:00
|
|
|
# Clean up the generated files:
|
2010-07-27 11:16:57 +00:00
|
|
|
git clean -f -d
|
2010-06-07 06:34:39 +00:00
|
|
|
# To update a branch of spin-kickstarts
|
|
|
|
# Make sure the branch is current (cvs up)
|
|
|
|
# Copy over the new spec file
|
|
|
|
# In each branch run make new-sources FILES=/pathto/spin-kickstarts-*.tar.gz
|
2010-06-07 07:06:11 +00:00
|
|
|
# Commit the changes with cvs commit
|
2010-06-07 06:34:39 +00:00
|
|
|
# Make a new tag with make tag
|
|
|
|
# Do the build with make build
|