summaryrefslogtreecommitdiff
path: root/lib/thandy/packagesys/ThpPackages.py
diff options
context:
space:
mode:
authorTomas Touceda <chiiph@gentoo.org>2011-06-22 09:13:59 -0300
committerTomas Touceda <chiiph@gentoo.org>2011-06-22 09:13:59 -0300
commit54665d3d4871ec3c23bb69d699f7bf6a6079f419 (patch)
tree7e0b137fe22540916fb3cea21be9264d5f726f2d /lib/thandy/packagesys/ThpPackages.py
parent5974512b79234882c59eab75669440628a6a8142 (diff)
Creates basic structure to start the thp checker
Diffstat (limited to 'lib/thandy/packagesys/ThpPackages.py')
-rw-r--r--lib/thandy/packagesys/ThpPackages.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/thandy/packagesys/ThpPackages.py b/lib/thandy/packagesys/ThpPackages.py
new file mode 100644
index 0000000..10392e4
--- /dev/null
+++ b/lib/thandy/packagesys/ThpPackages.py
@@ -0,0 +1,17 @@
+# Copyright 2011 The Tor Project, Inc. See LICENSE for licensing information.
+
+import logging
+import os
+
+import thandy.util
+import thandy.packagesys.PackageSystem as PS
+import thandy.packagesys.PackageDB as PDB
+
+class ThpDB(object):
+ pass
+
+class ThpChecker(PS.Checker):
+ pass
+
+class ThpInstaller(PS.Installer):
+ pass