Go to file
2013-05-16 12:27:42 -07:00
custom
l10n
snippets
templates
tools
.gitignore
AUTHORS
configure.ac
COPYING
fedora-aos.ks
fedora-install-fedora.ks Drop web server environment specifically, and jboss from dev environment. 2013-05-16 13:37:30 -04:00
fedora-live-base.ks
fedora-live-design-suite.ks design: remove comments aside packages 2013-05-16 12:27:42 -07:00
fedora-live-desktop.ks desktop: Exclude system-config-printer 2013-05-10 22:34:56 +02:00
fedora-live-jam-kde.ks
fedora-live-kde-base.ks Revert "kde: Disable plasma-applet-updater too (#948099)" 2013-05-13 12:12:05 -05:00
fedora-live-kde.ks
fedora-live-mate-compiz.ks Try to bring down the size of the mate-compiz spin 2013-05-16 00:50:44 -04:00
fedora-live-mini.ks
fedora-live-minimization.ks
fedora-livecd-desktop.ks Drop the HighContrast icon theme cache from the desktop live cd 2013-05-10 22:34:55 +02:00
fedora-livecd-kde.ks
fedora-livecd-lxde.ks
fedora-livecd-mate-compiz.ks Try to bring down the size of the mate-compiz spin 2013-05-16 00:50:44 -04:00
fedora-livecd-security.ks
fedora-livecd-soas.ks
fedora-livecd-xfce.ks Move this rm to the right place. ;( 2013-05-11 11:44:13 -06:00
fedora-livedvd-electronic-lab.ks
fedora-livedvd-games.ks
fedora-livedvd-robotics.ks robotics: Remove the gnome-games-help exclude 2013-05-13 16:05:21 +02:00
fedora-livedvd-scientific-kde.ks
fedora-lxde-packages.ks LXDE: Save some space to meet 700 MiB target (#958427) 2013-05-13 18:15:14 +02:00
fedora-soas-packages.ks
fedora-virt-server.ks.in
fedora-xfce-packages.ks Drop firefox for now. Midori is the Xfce browser, folks can install firefox after install. 2013-05-13 10:13:54 -06:00
INSTALL
install-sh
Makefile.am
missing
NEWS
README
sources
spin-kickstarts.spec.in

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 (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