[Oval-commits] r381 - trunk/oval-infrastructure/src

Pavel Vinogradov blaze-guest at alioth.debian.org
Tue Sep 23 17:40:27 UTC 2008


Author: blaze-guest
Date: 2008-09-23 17:40:27 +0000 (Tue, 23 Sep 2008)
New Revision: 381

Added:
   trunk/oval-infrastructure/src/server-setup.py
Removed:
   trunk/oval-infrastructure/src/setup.py
Log:
Renmae setup file

Copied: trunk/oval-infrastructure/src/server-setup.py (from rev 380, trunk/oval-infrastructure/src/setup.py)
===================================================================
--- trunk/oval-infrastructure/src/server-setup.py	                        (rev 0)
+++ trunk/oval-infrastructure/src/server-setup.py	2008-09-23 17:40:27 UTC (rev 381)
@@ -0,0 +1,30 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+# 
+# Written by Pavel Vinogradov <Pavel.Vinogradov at nixdev.net>
+# Licensed under the GNU General Public License version 2.
+
+"""The oval-agent program for interact with oval-server daemon.
+
+This program used to interact with oval-server deamon, download OVAL 
+definitions, quering it and send reports back to server.
+
+"""
+
+import sys
+assert sys.version >= '2.4', "Install Python 2.4 or greater"
+from distutils.core import setup, Extension
+import oval
+
+setup(
+    name = "oval",
+    version = "%s" % oval.__version__,
+    author = "Pavel Vinogradov",
+    author_email = "<oval-devel at lists.alioth.debian.org>",
+    url = "http://oval.alioth.debian.org",
+    license = "GPL2",
+    
+    packages = ["oval.dba", "oval.dsa2oval", "oval.dsa2oval.definition", "oval.dsa2oval.parser", "oval.dsaSync", "oval.server", "oval" ],
+
+    scripts = ["oval-server.py", "dsa2oval.py", "oval-monitor.py"]
+    )

Deleted: trunk/oval-infrastructure/src/setup.py
===================================================================
--- trunk/oval-infrastructure/src/setup.py	2008-09-23 17:38:18 UTC (rev 380)
+++ trunk/oval-infrastructure/src/setup.py	2008-09-23 17:40:27 UTC (rev 381)
@@ -1,30 +0,0 @@
-#!/usr/bin/python
-# -*- coding: utf-8 -*-
-# 
-# Written by Pavel Vinogradov <Pavel.Vinogradov at nixdev.net>
-# Licensed under the GNU General Public License version 2.
-
-"""The oval-agent program for interact with oval-server daemon.
-
-This program used to interact with oval-server deamon, download OVAL 
-definitions, quering it and send reports back to server.
-
-"""
-
-import sys
-assert sys.version >= '2.4', "Install Python 2.4 or greater"
-from distutils.core import setup, Extension
-import oval
-
-setup(
-    name = "oval",
-    version = "%s" % oval.__version__,
-    author = "Pavel Vinogradov",
-    author_email = "<oval-devel at lists.alioth.debian.org>",
-    url = "http://oval.alioth.debian.org",
-    license = "GPL2",
-    
-    packages = ["oval.dba", "oval.dsa2oval", "oval.dsa2oval.definition", "oval.dsa2oval.parser", "oval.dsaSync", "oval.server", "oval" ],
-
-    scripts = ["oval-server.py", "dsa2oval.py", "oval-monitor.py"]
-    )




More information about the Oval-commits mailing list