summaryrefslogtreecommitdiff
path: root/morphlib/cachedir.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2011-09-29 14:21:29 +0100
committerLars Wirzenius <liw@liw.fi>2011-09-29 14:21:29 +0100
commitfebe4fdc0d1f1cfe902300b0b85bd990d88eef50 (patch)
treeaecf5bc830df44b0ee818e9bbc63e7d1f8631154 /morphlib/cachedir.py
parenta2c4584418bf71c7f7ee04e333e8f53375104e63 (diff)
downloadmorph-febe4fdc0d1f1cfe902300b0b85bd990d88eef50.tar.gz
Add trivial CacheDir.
Diffstat (limited to 'morphlib/cachedir.py')
-rw-r--r--morphlib/cachedir.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/morphlib/cachedir.py b/morphlib/cachedir.py
new file mode 100644
index 00000000..a8e8dec6
--- /dev/null
+++ b/morphlib/cachedir.py
@@ -0,0 +1,22 @@
+# Copyright (C) 2011 Codethink Limited
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+
+class CacheDir(object):
+
+ '''Manage Baserock cached binaries.'''
+
+ def __init__(self, dirname):
+ self.dirname = dirname