From 4090f302f28f7f0d63cc9439d03a6fad7af5bc87 Mon Sep 17 00:00:00 2001 From: Clark Williams Date: Tue, 23 Oct 2012 12:15:50 -0500 Subject: update to v1.36 Signed-off-by: Clark Williams --- rteval.spec | 10 +++++++++- rteval/rteval.py | 2 +- setup.py | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/rteval.spec b/rteval.spec index 2e6737c..8e61010 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.35 +Version: 1.36 Release: 1%{?dist} Summary: Utility to evaluate system suitability for RT Linux @@ -71,6 +71,14 @@ rm -rf $RPM_BUILD_ROOT /usr/bin/rteval %changelog +* Tue Oct 23 2012 Clark Williams - 1.36-1 +- deal with system not having dmidecode python module +- make sure to cast priority parameter to int +- from Raphaƫl Beamonte : + - Rewrite of the get_kthreads method to make it cross-distribution + - Adds getcmdpath method to use which to locate the used commands + - Rewrite of the get_services method to make it cross-distribution + * Mon Apr 2 2012 Clark Williams - 1.35-1 - fix thinko where SIGINT and SIGTERM handlers were commented out diff --git a/rteval/rteval.py b/rteval/rteval.py index 829a49b..beba49f 100644 --- a/rteval/rteval.py +++ b/rteval/rteval.py @@ -88,7 +88,7 @@ def sigterm_handler(signum, frame): class RtEval(object): def __init__(self, cmdargs): - self.version = "1.35" + self.version = "1.36" self.load_modules = [] self.workdir = os.getcwd() self.reportdir = os.getcwd() diff --git a/setup.py b/setup.py index 85f1d8d..f0dd6d9 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.35", + version = "1.36", description = "evaluate system performance for Realtime", author = "Clark Williams", author_email = "williams@redhat.com", -- cgit