python-2.3 check
authorgenone <genone@gentoo.org>
Wed, 8 Dec 2004 10:52:43 +0000 (10:52 -0000)
committergenone <genone@gentoo.org>
Wed, 8 Dec 2004 10:52:43 +0000 (10:52 -0000)
svn path=/; revision=180

trunk/ChangeLog
trunk/src/glsa-check/glsa-check
trunk/src/glsa-check/glsa.py

index d7a6a79e5718cf3e7d714e7dab88a640141d7b78..6b9dc6d712ac1846ecf47ee7fe3ca57c683655da 100644 (file)
@@ -1,9 +1,11 @@
 2004-12-08 Marius Mauch <genone@gentoo.org>
        * equery: implemented the --category option
        * glsa-check: fixed the bug where it wanted to unnecessary merge masked packages
-       * glsa-check: Added a check to verify that all non-option arguments are valid GLSAs
+       * glsa-check: added a check to verify that all non-option arguments are valid GLSAs
        * glsa.py: changed the outfile parameter in Glsa.dump() to outstream so we don't
                   have to open/close a file which breaks pipes
+       * glsa.py: checks now for python versions below 2.3 and throws an exception
+       
 2004-11-29 Karl Trygve Kalleberg <karltk@gentoo.org>
        * branched v0-3-0: major rework in equery is in progess. the main
        branch is reserved for minor and incremental fixups.
index 751a65826c508453e2f2607d829d09a599026d0e..b245b555244f23f904922e80f696408ff4aa95e1 100644 (file)
@@ -11,7 +11,7 @@ from getopt import getopt,GetoptError
 
 __program__ = "glsa-check"
 __author__ = "Marius Mauch <genone@gentoo.org>"
-__version__ = "0.4"
+__version__ = "0.5"
 
 optionmap = [
 ["-l", "--list", "list all unapplied GLSA"],
index feef19fcecc728c7d291c695da5dfcb761b1da07..6759d50d02c48769397208b8e9a055c26b31a6cc 100644 (file)
@@ -16,6 +16,10 @@ __author__ = "Marius Mauch <genone@gentoo.org>"
 import os, sys, urllib, time, string, codecs, re
 import xml.dom.minidom
 
+if sys.version_info[0:2] < (2,3):
+       raise NotImplementedError("Python versions below 2.3 have broken XML code " \
+                                                               +"and are not supported")
+
 sys.path.insert(0, "/usr/lib/portage/pym")     # to find portage.py
 
 import portage