summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClark Williams <williams@redhat.com>2012-12-13 10:12:26 -0600
committerClark Williams <williams@redhat.com>2012-12-13 10:12:26 -0600
commit9c836c88614f90ddd8084be312fb7726086c2d08 (patch)
tree55795d7c61e2fe7d82ae3520c7e3116c644753d4
parentdc6e65517690aade2f1799e816e82b78d902fca3 (diff)
downloadrteval-9c836c88614f90ddd8084be312fb7726086c2d08.tar.gz
rteval-9c836c88614f90ddd8084be312fb7726086c2d08.tar.xz
rteval-9c836c88614f90ddd8084be312fb7726086c2d08.zip
update to v1.37
Signed-off-by: Clark Williams <williams@redhat.com>
-rw-r--r--rteval.spec7
-rw-r--r--rteval/rteval.py2
-rw-r--r--setup.py2
3 files changed, 8 insertions, 3 deletions
diff --git a/rteval.spec b/rteval.spec
index 8e61010..6903b8c 100644
--- a/rteval.spec
+++ b/rteval.spec
@@ -2,7 +2,7 @@
%{!?python_ver: %define python_ver %(%{__python} -c "import sys ; print sys.version[:3]")}
Name: rteval
-Version: 1.36
+Version: 1.37
Release: 1%{?dist}
Summary: Utility to evaluate system suitability for RT Linux
@@ -71,6 +71,11 @@ rm -rf $RPM_BUILD_ROOT
/usr/bin/rteval
%changelog
+* Thu Dec 13 2012 Clark Williams <williams@redhat.com> - 1.37-1
+- added module specific command line options
+- From Raphaƫl Beamonte <raphael.beamonte@gmail.com>:
+ - Change getcmdpath method to use only python calls to find paths
+
* Tue Oct 23 2012 Clark Williams <williams@redhat.com> - 1.36-1
- deal with system not having dmidecode python module
- make sure to cast priority parameter to int
diff --git a/rteval/rteval.py b/rteval/rteval.py
index a8954a0..a914578 100644
--- a/rteval/rteval.py
+++ b/rteval/rteval.py
@@ -94,7 +94,7 @@ def sigterm_handler(signum, frame):
class RtEval(object):
def __init__(self, cmdargs):
- self.version = "1.36"
+ self.version = "1.37"
self.load_modules = []
self.workdir = os.getcwd()
self.reportdir = os.getcwd()
diff --git a/setup.py b/setup.py
index f0dd6d9..4b074c3 100644
--- a/setup.py
+++ b/setup.py
@@ -9,7 +9,7 @@ import os
PYTHONLIB = join(get_python_lib(standard_lib=1, prefix=''), 'site-packages')
setup(name="rteval",
- version = "1.36",
+ version = "1.37",
description = "evaluate system performance for Realtime",
author = "Clark Williams",
author_email = "williams@redhat.com",