Default the flavor to blank.
This commit is contained in:
parent
72fdba8821
commit
ae78aea673
@ -1,3 +1,6 @@
|
||||
* Tue Aug 28 2007 Jesse Keating <jkeating@redhat.com>
|
||||
- Default flavor to blank.
|
||||
|
||||
* Mon Aug 27 2007 Jesse Keating <jkeating@redhat.com>
|
||||
- Set up arch in __init__.py as it's needed for logging
|
||||
- Add support for $releasever in repo uris.
|
||||
|
4
pungi
4
pungi
@ -153,14 +153,14 @@ if __name__ == '__main__':
|
||||
today = time.strftime('%Y%m%d', time.localtime())
|
||||
|
||||
def get_arguments():
|
||||
parser = OptionParser(version="%prog 1.0.0")
|
||||
parser = OptionParser(version="%prog 1.0.1")
|
||||
|
||||
# Pulled in from config file to be cli options as part of pykickstart conversion
|
||||
parser.add_option("--name", default="Fedora", dest="name",
|
||||
help='the name for your distribution (defaults to "Fedora")')
|
||||
parser.add_option("--ver", default=today, dest="ver",
|
||||
help='the version of your distribution (defaults to datestamp)')
|
||||
parser.add_option("--flavor", dest="flavor",
|
||||
parser.add_option("--flavor", default="", dest="flavor",
|
||||
help='the flavor of your distribution spin (optional)')
|
||||
parser.add_option("--destdir", default=".", dest="destdir",
|
||||
help='destination directory (defaults to current directory)')
|
||||
|
14
pungi.spec
14
pungi.spec
@ -1,12 +1,12 @@
|
||||
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
||||
|
||||
Name: pungi
|
||||
Version: 1.0.0
|
||||
Release: 1%{?dist}
|
||||
Version: 1.0.1
|
||||
Release: 1%{?dist}.1
|
||||
Summary: Distribution compose tool
|
||||
|
||||
Group: Development/Tools
|
||||
License: GPL
|
||||
License: GPLv2
|
||||
URL: http://hosted.fedoraproject.org/projects/pungi
|
||||
Source0: http://linux.duke.edu/projects/%{name}/release/%{name}-%{version}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
@ -48,7 +48,13 @@ rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
|
||||
%changelog
|
||||
* Mon Aug 27 2007 Jesse Keating <jkeating@redhat.com>
|
||||
* Tue Aug 28 2007 Jesse Keating <jkeating@redhat.com> - 1.0.1-1
|
||||
- Default flavor to blank.
|
||||
|
||||
* Mon Aug 27 2007 Jesse Keating <jkeating@redhat.com> - 1.0.0-2
|
||||
- Fix the licensing tag.
|
||||
|
||||
* Mon Aug 27 2007 Jesse Keating <jkeating@redhat.com> - 1.0.0-1
|
||||
- Add support for $releasever in repo uris.
|
||||
- Add a kickstart file usable for composing Fedora 8 "Fedora"
|
||||
- Fix bugs with $basearch and mirrorlist usage.
|
||||
|
Loading…
Reference in New Issue
Block a user