Prepare for release
Drop the f8 file, add a rawhide ks file.
This commit is contained in:
parent
0d2d9e55f5
commit
5e0fad1742
11
Changelog
11
Changelog
@ -1,3 +1,14 @@
|
|||||||
|
* Tue Dec 04 Jesse Keating <jkeating@redhat.com>
|
||||||
|
- Make logged output reusable in shell
|
||||||
|
- Default to 670 for a CD size, so that we don't overflow
|
||||||
|
- More fixes around re-using an existing tree
|
||||||
|
|
||||||
|
* Mon Dec 03 Jesse Keating <jkeating@redhat.com>
|
||||||
|
- Enable repo includes/excludes.
|
||||||
|
- Disable TMPDIR usage, still broken.
|
||||||
|
- Put a constraint on flavor values
|
||||||
|
- Check for selinux enforcing and warn.
|
||||||
|
|
||||||
* Sun Dec 02 Jesse Keating <jkeating@redhat.com>
|
* Sun Dec 02 Jesse Keating <jkeating@redhat.com>
|
||||||
- Add a --force option to reuse an existing destdir
|
- Add a --force option to reuse an existing destdir
|
||||||
- Only overwrite dirs if --force is offered, clean out some specific dirs
|
- Only overwrite dirs if --force is offered, clean out some specific dirs
|
||||||
|
16
pungi.spec
16
pungi.spec
@ -1,7 +1,7 @@
|
|||||||
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
||||||
|
|
||||||
Name: pungi
|
Name: pungi
|
||||||
Version: 1.1.10
|
Version: 1.2.0
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Distribution compose tool
|
Summary: Distribution compose tool
|
||||||
|
|
||||||
@ -51,6 +51,20 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Dec 4 2007 Jesse Keating <jkeating@redhat.com> 1.2.0-1
|
||||||
|
- Make logged output reusable in shell
|
||||||
|
- Default to making split media of CD size
|
||||||
|
- Enable repo includes/excludes.
|
||||||
|
- Put a constraint on flavor values
|
||||||
|
- Check for selinux enforcing and warn.
|
||||||
|
- Add a --force option to reuse an existing destdir
|
||||||
|
- Only check for root if you're doing root level tasks (buildinstall)
|
||||||
|
- Figure out number of isos on the fly, based on tree size
|
||||||
|
- Remove -S -P options, as splittree and packageorder are now
|
||||||
|
called from createIsos, if needed.
|
||||||
|
- Use downloadPkgs() from yum instead of a homebrew download function.
|
||||||
|
- Add a callback to show download progress
|
||||||
|
|
||||||
* Thu Nov 22 2007 Jesse Keating <jkeating@redhat.com> - 1.1.10-1
|
* Thu Nov 22 2007 Jesse Keating <jkeating@redhat.com> - 1.1.10-1
|
||||||
- Print a usage if no options are passed
|
- Print a usage if no options are passed
|
||||||
- Correct a man page typo
|
- Correct a man page typo
|
||||||
|
@ -1,15 +1,13 @@
|
|||||||
# Kickstart file for composing the "Fedora" spin of Fedora 8
|
# Kickstart file for composing the "Fedora" spin of Fedora (rawhide)
|
||||||
|
|
||||||
# Use a part of 'iso' to define how large you want your isos.
|
# Use a part of 'iso' to define how large you want your isos.
|
||||||
# Only used when composing to more than one iso.
|
# Only used when composing to more than one iso.
|
||||||
|
# Default is 670 (megs), CD size.
|
||||||
#part iso --size=4998
|
#part iso --size=4998
|
||||||
|
|
||||||
# Add the repos you wish to use to compose here. At least one of them needs group data.
|
# Add the repos you wish to use to compose here. At least one of them needs group data.
|
||||||
repo --name=fedora --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
|
repo --name=rawhide --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide&arch=$basearch
|
||||||
repo --name=fedora-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-source-$releasever&arch=$basearch
|
repo --name=rawhide-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide-source&arch=$basearch
|
||||||
|
|
||||||
repo --name=updates --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f$releasever&arch=$basearch
|
|
||||||
repo --name=updates-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-source-f$releasever&arch=$basearch
|
|
||||||
|
|
||||||
# Package manifest for the compose. Uses repo group metadata to translate groups.
|
# Package manifest for the compose. Uses repo group metadata to translate groups.
|
||||||
# (@base is added by default unless you add --nobase to %packages)
|
# (@base is added by default unless you add --nobase to %packages)
|
||||||
@ -20,6 +18,7 @@ tcsh
|
|||||||
@base-x
|
@base-x
|
||||||
kernel*
|
kernel*
|
||||||
-kernel*-debug*
|
-kernel*-debug*
|
||||||
|
-kernel*-devel*
|
||||||
# Hardware stuff
|
# Hardware stuff
|
||||||
@hardware-support
|
@hardware-support
|
||||||
@dial-up
|
@dial-up
|
Loading…
Reference in New Issue
Block a user