prep for dist
This commit is contained in:
parent
69bf86d8a6
commit
0e7a34a453
@ -1,3 +1,6 @@
|
|||||||
|
* Fri May 25 2007 Jesse Keating <jkeating@redhat.com>
|
||||||
|
- Handle the cdsize variable correctly
|
||||||
|
|
||||||
* Thu May 24 2007 Jesse Keating <jkeating@redhat.com>
|
* Thu May 24 2007 Jesse Keating <jkeating@redhat.com>
|
||||||
- Use a package checksum to verify cached download
|
- Use a package checksum to verify cached download
|
||||||
- Use the right flavor in the Everything configs
|
- Use the right flavor in the Everything configs
|
||||||
|
4
pungi
4
pungi
@ -28,7 +28,7 @@ def main():
|
|||||||
sourcedir = "source"
|
sourcedir = "source"
|
||||||
debugdir = "debug"
|
debugdir = "debug"
|
||||||
isodir = "iso"
|
isodir = "iso"
|
||||||
cdsize = "685.0"
|
cdsize = 685.0
|
||||||
relnotefilere = "eula.txt fedora.css GPL README-BURNING-ISOS-en_US.txt RELEASE-NOTES-en_US.html ^RPM-GPG"
|
relnotefilere = "eula.txt fedora.css GPL README-BURNING-ISOS-en_US.txt RELEASE-NOTES-en_US.html ^RPM-GPG"
|
||||||
relnotedirre = "images stylesheet-images"
|
relnotedirre = "images stylesheet-images"
|
||||||
relnotepkgs = "fedora-release fedora-release-notes"
|
relnotepkgs = "fedora-release fedora-release-notes"
|
||||||
@ -144,7 +144,7 @@ if __name__ == '__main__':
|
|||||||
import sys
|
import sys
|
||||||
|
|
||||||
def get_arguments():
|
def get_arguments():
|
||||||
parser = OptionParser(version="%prog 0.3.5")
|
parser = OptionParser(version="%prog 0.3.6")
|
||||||
parser.add_option("--destdir", default="*CONFFILE*", dest="destdir",
|
parser.add_option("--destdir", default="*CONFFILE*", dest="destdir",
|
||||||
help='destination directory (defaults to current directory)')
|
help='destination directory (defaults to current directory)')
|
||||||
parser.add_option("-c", "--conf", default='/etc/pungi/pungi.conf', dest="config",
|
parser.add_option("-c", "--conf", default='/etc/pungi/pungi.conf', dest="config",
|
||||||
|
@ -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: 0.3.5
|
Version: 0.3.6
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Distribution compose tool
|
Summary: Distribution compose tool
|
||||||
|
|
||||||
@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri May 25 2007 Jesse Keating <jkeating@redhat.coM> - 0.3.6-1
|
||||||
|
- Handle the cdsize variable correctly
|
||||||
|
|
||||||
* Thu May 24 2007 Jesse Keating <jkeating@redhat.coM> - 0.3.5-1
|
* Thu May 24 2007 Jesse Keating <jkeating@redhat.coM> - 0.3.5-1
|
||||||
- Use the right flavor in the Everything configs
|
- Use the right flavor in the Everything configs
|
||||||
|
|
||||||
|
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='0.3.5',
|
version='0.3.6',
|
||||||
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