fedora-kickstarts/README

45 lines
1.7 KiB
Plaintext
Raw Normal View History

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
git commit -a
git push
2010-06-02 04:42:53 +00:00
aclocal
automake
autoconf
./configure
2010-06-02 04:42:53 +00:00
make dist
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
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
# To update a branch of spin-kickstarts
# Make sure the branch is current (git pull)
# Copy over the new spec file
# In each branch run make new-sources FILES=/pathto/spin-kickstarts-*.tar.gz
# Commit the changes with git commit -a
# Make a new tag with make tag
# Do the build with make build