diff options
author | Nima Talebi <nima@autonomy.net.au> | 2009-05-23 13:24:02 +1000 |
---|---|---|
committer | Nima Talebi <nima@autonomy.net.au> | 2009-05-23 13:24:02 +1000 |
commit | 3acedf5a988eab36f238979548cc79545bd7dced (patch) | |
tree | 7d3f8bf32f56d7f94851b4c547a078d7ce930cdd | |
parent | 1bd60ee4c38615f2f1aac873d95cde0e6fae7b1e (diff) | |
download | python-dmidecode-3acedf5a988eab36f238979548cc79545bd7dced.tar.gz python-dmidecode-3acedf5a988eab36f238979548cc79545bd7dced.tar.xz python-dmidecode-3acedf5a988eab36f238979548cc79545bd7dced.zip |
Final cleanup
-rw-r--r-- | debian/changelog | 14 | ||||
-rw-r--r-- | debian/control | 1 | ||||
-rw-r--r-- | src/setup.py | 2 |
3 files changed, 13 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog index 9ee05db..84e3820 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,9 +3,17 @@ python-dmidecode (3.10.6-1) unstable; urgency=low * Introducing the XML extensions to python-dmidecode, by of David Sommerseth from Red Hat. A big thankyou to David, Red Hat, and other people from Red Hat that contributed (and are still contributing) time and knowledge - to this project. - - -- Nima Talebi <nima@it.net.au> Fri, 22 May 2009 20:28:08 +1000 + to this project. These changes are summarized as follows... + * Rewritten the internals to use libxml2 for (in memory) data storage. + * Added much more useful information into the XML data than what the original + data structured could held. + * Implemented mapping methods to dynamically map XML fields to Python + dictionaries. The mapping itself is defined in an XML file utilising XPath + expressions. + * Prepared python-dmidecode for a native XML implementation from Python using + libxml2. + + -- Nima Talebi <nima@it.net.au> Sat, 23 May 2009 13:19:25 +1000 python-dmidecode (2.10.6-1) unstable; urgency=low diff --git a/debian/control b/debian/control index 750aab2..4874563 100644 --- a/debian/control +++ b/debian/control @@ -25,6 +25,7 @@ Description: Python extension module for dmidecode Package: python-dmidecode-dbg Architecture: any Priority: extra +Section: debug Depends: python-dmidecode (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends}, python-dbg Provides: ${python:Provides} diff --git a/src/setup.py b/src/setup.py index 7596cba..8c6fb03 100644 --- a/src/setup.py +++ b/src/setup.py @@ -2,7 +2,7 @@ from distutils.core import setup, Extension setup( name = "python-dmidecode", - version = "3.10.5", + version = "3.10.6", description = "Python extension module for dmidecode", author = "Nima Talebi & David Sommerseth", author_email = "nima@it.net.au, davids@redhat.com", |