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