[Oval-commits] r230 - in trunk/oval-agent: . debian

Pavel Vinogradov blaze-guest at alioth.debian.org
Fri Aug 24 12:33:29 UTC 2007


Author: blaze-guest
Date: 2007-08-24 12:33:29 +0000 (Fri, 24 Aug 2007)
New Revision: 230

Modified:
   trunk/oval-agent/debian/changelog
   trunk/oval-agent/debian/rules
   trunk/oval-agent/oval-agent.py
   trunk/oval-agent/setup.py
Log:
Use new module name

Modified: trunk/oval-agent/debian/changelog
===================================================================
--- trunk/oval-agent/debian/changelog	2007-08-24 11:54:33 UTC (rev 229)
+++ trunk/oval-agent/debian/changelog	2007-08-24 12:33:29 UTC (rev 230)
@@ -1,5 +1,7 @@
 oval-agent (0.2) unstable; urgency=low
 
+  [ Pavel Vinogradov ]
   * Initial Release. (Closes: #111111)
+  * Fix installing issues
 
- -- Pavel Vinogradov <Pavel.Vinogradov at nixdev.net>  Thu, 23 Aug 2007 17:37:09 +0500
+ -- Pavel Vinogardov <blaze at nixdev.istu.ru>  Fri, 24 Aug 2007 21:03:27 +0500

Modified: trunk/oval-agent/debian/rules
===================================================================
--- trunk/oval-agent/debian/rules	2007-08-24 11:54:33 UTC (rev 229)
+++ trunk/oval-agent/debian/rules	2007-08-24 12:33:29 UTC (rev 230)
@@ -25,7 +25,7 @@
 clean:
 	dh_testdir
 	dh_testroot
-	rm -rf build/ ovalHttpClient/*.pyc *.pyc
+	rm -rf build/ ovalClient/*.pyc *.pyc
 	rm -f build_stamp
 	dh_clean 
 
@@ -39,7 +39,7 @@
 	install -m644 oval-agent.cfg $(CURDIR)/debian/oval-agent/etc/oval/oval-agent.conf
 
 	# Remove the generated .pyc files
-	( cd debian/oval-agent/usr/share/python-support/oval-agent/ovalHttpClient && \
+	( cd debian/oval-agent/usr/share/python-support/oval-agent/ovalClient && \
 	  rm -f *.pyc )
 
 # Build architecture-independent files here.

Modified: trunk/oval-agent/oval-agent.py
===================================================================
--- trunk/oval-agent/oval-agent.py	2007-08-24 11:54:33 UTC (rev 229)
+++ trunk/oval-agent/oval-agent.py	2007-08-24 12:33:29 UTC (rev 230)
@@ -13,7 +13,7 @@
 import os, logging, sys
 import getopt
 import traceback, exceptions
-from ovalHttpClient import ovalHttpClient
+from ovalClient import ovalHttpClient
 
 class configNotFoundError (Exception):
 	pass

Modified: trunk/oval-agent/setup.py
===================================================================
--- trunk/oval-agent/setup.py	2007-08-24 11:54:33 UTC (rev 229)
+++ trunk/oval-agent/setup.py	2007-08-24 12:33:29 UTC (rev 230)
@@ -14,17 +14,17 @@
 import sys
 assert sys.version >= '2', "Install Python 2.0 or greater"
 from distutils.core import setup, Extension
-import ovalHttpClient
+import ovalClient
 
 setup(
-    name = "ovalHttpClient",
-    version = ovalHttpClient.version,
+    name = "ovalClient",
+    version = ovalClient.version,
     author = "Pavel Vinogradov",
     author_email = "<oval-devel at lists.alioth.debian.org>",
     url = "http://oval.alioth.debian.org",
     license = "GPL",
     
-    packages = ["ovalHttpClient", ],
+    packages = ["ovalClient"],
 
-    scripts = ["oval-agent.py", ]
+    scripts = ["oval-agent.py"]
     )




More information about the Oval-commits mailing list