summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2015-06-11 16:53:50 -0300
committerArnaldo Carvalho de Melo <acme@redhat.com>2015-06-11 16:53:50 -0300
commit2c94fc3e4a80850b1d5342091917702b33944448 (patch)
tree426423f077c0c5e911184642e3c5f174fd2a22af
parent0ff453fbc7f5c89e2622c27bfaf367945306d97a (diff)
downloadpython-linux-procfs-2c94fc3e4a80850b1d5342091917702b33944448.tar.gz
New release: 0.4.7v0.4.7
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r--MANIFEST1
-rw-r--r--rpm/SPECS/python-linux-procfs.spec11
-rwxr-xr-xsetup.py2
3 files changed, 12 insertions, 2 deletions
diff --git a/MANIFEST b/MANIFEST
index 2ea7c01..5e86f6b 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -1,6 +1,7 @@
MANIFEST
COPYING
Makefile
+pflags-cmd.py
procfs/__init__.py
procfs/procfs.py
procfs/sysctl.py
diff --git a/rpm/SPECS/python-linux-procfs.spec b/rpm/SPECS/python-linux-procfs.spec
index fc24f2d..a9fcba6 100644
--- a/rpm/SPECS/python-linux-procfs.spec
+++ b/rpm/SPECS/python-linux-procfs.spec
@@ -2,7 +2,7 @@
%{!?python_ver: %define python_ver %(%{__python} -c "import sys ; print sys.version[:3]")}
Name: python-linux-procfs
-Version: 0.4.6
+Version: 0.4.7
Release: 1%{?dist}
License: GPLv2
Summary: Linux /proc abstraction classes
@@ -25,12 +25,15 @@ Abstractions to extract information from the Linux kernel /proc files.
%install
rm -rf %{buildroot}
%{__python} setup.py install --skip-build --root %{buildroot}
+mkdir -p %{buildroot}%{_bindir}
+cp pflags-cmd.py %{buildroot}%{_bindir}/pflags
%clean
rm -rf %{buildroot}
%files
%defattr(0755,root,root,0755)
+%{_bindir}/pflags
%{python_sitelib}/procfs/
%defattr(0644,root,root,0755)
%if "%{python_ver}" >= "2.5"
@@ -39,6 +42,12 @@ rm -rf %{buildroot}
%doc COPYING
%changelog
+* Thu Jun 11 2015 Arnaldo Carvalho de Melo <acme@redhat.com> - 0.4.7-1
+- Fix pidstat.process_flag()
+- Introduce pflags utility
+- Parse IRQ affinities for !root
+- Add PF_NO_SETAFFINITY const
+
* Wed Jun 5 2013 Jiri Kastner <jkastner@redhat.com> - 0.4.6-1
- support for parsing cgroups
- support for parsing environ variables
diff --git a/setup.py b/setup.py
index f1ec1c7..35910dc 100755
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@ if isfile("MANIFEST"):
PYTHONLIB = join(get_python_lib(standard_lib=1, prefix=''), 'site-packages')
setup(name="python-linux-procfs",
- version = "0.4.6",
+ version = "0.4.7",
description = "Linux /proc abstraction classes",
author = "Arnaldo Carvalho de Melo",
author_email = "acme@redhat.com",