Go to file
2010-10-31 08:37:29 -05:00
custom include fedora-livecd-desktop.ks and update haskell packages 2010-10-27 13:44:57 +10:00
l10n
snippets
templates
tools
AUTHORS
configure.ac Set master version to 15. 2010-10-12 22:27:31 -05:00
COPYING
fedora-aos.ks The master branch is back to using rawhide for a while. 2010-10-12 22:22:49 -05:00
fedora-install-fedora.ks Exclude all of btanks 2010-10-21 11:04:28 -07:00
fedora-live-base.ks The master branch is back to using rawhide for a while. 2010-10-12 22:22:49 -05:00
fedora-live-desktop.ks
fedora-live-mini.ks The master branch is back to using rawhide for a while. 2010-10-12 22:22:49 -05:00
fedora-live-minimization.ks
fedora-livecd-broffice.org.ks
fedora-livecd-design-suite.ks
fedora-livecd-desktop.ks
fedora-livecd-kde.ks -fprintd-pam , until related crashes in kdm are fixed (http://bugzilla.redhat.com/605156) 2010-10-24 17:39:45 -05:00
fedora-livecd-lxde.ks LXDE: include gnome-keyring-pam (#643435) 2010-10-26 17:40:57 +02:00
fedora-livecd-meego.ks
fedora-livecd-security.ks little fix - backgroundimage was not working 2010-10-28 21:31:50 +02:00
fedora-livecd-soas.ks soas: drop speak 2010-10-10 22:46:58 +01:00
fedora-livecd-xfce.ks
fedora-livedvd-electronic-lab.ks
fedora-livedvd-games.ks
fedora-virt-server.ks.in
INSTALL
install-sh
Makefile.am
missing
NEWS
README
spin-kickstarts.spec.in Build a new package for rawhide now that F14 is gold. 2010-10-31 08:37:29 -05: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

When kickstart files are added or removed, Makefile.am should be updated to
reflect the change.

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
aclocal
automake
autoconf
./configure
make dist
install -D -m 644 spin-kickstarts-*.tar.gz ~/rpmbuild/SOURCES
# Edit spin-kickstarts.spec if some changelog history needs to be included
install -D -m 644 spin-kickstarts.spec ~/rpmbuild/SPECS
rpmbuild -ba ~/rpmbuild/SPECS/spin-kickstarts.spec
# If the sprm gets published then publish the tar.gz file on fedorahosted
scp spin-kickstarts-*.tar.gz fedorahosted.org:spin-kickstarts
# Clean up the generated files:
git clean -f -d
# 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
#   Commit the changes with cvs commit
#   Make a new tag with make tag
#   Do the build with make build