summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorGunnar Wrobel <p@rdus.de>2007-09-11 09:53:28 +0000
committerGunnar Wrobel <p@rdus.de>2007-09-11 09:53:28 +0000
commit23ca74c79892f40e7330b30d01715fdd5408831c (patch)
tree70b64c6b620e49a87f4e0cc4ce4082c0ca42dd4f /bin
parent53ec348a897d392ae7123efa77d7d5cc3455e19e (diff)
parent6bdbcac18c2b91e0304c65d06278da471e16c92b (diff)
downloadlayman-23ca74c79892f40e7330b30d01715fdd5408831c.tar.gz
layman-23ca74c79892f40e7330b30d01715fdd5408831c.tar.bz2
layman-23ca74c79892f40e7330b30d01715fdd5408831c.zip
Moved layman to trunk again.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/layman37
1 files changed, 37 insertions, 0 deletions
diff --git a/bin/layman b/bin/layman
new file mode 100755
index 0000000..3080c05
--- /dev/null
+++ b/bin/layman
@@ -0,0 +1,37 @@
+#!python
+################################################################################
+# LAYMAN - A UTILITY TO SELECT AND UPDATE GENTOO OVERLAYS
+################################################################################
+# Distributed under the terms of the GNU General Public License v2
+#
+# Copyright:
+# (c) 2005 Gunnar Wrobel
+# Distributed under the terms of the GNU General Public License v2
+#
+# Author(s):
+# Gunnar Wrobel <wrobel@gentoo.org>
+#
+
+__version__ = "$Id$"
+
+#===============================================================================
+#
+# Dependencies
+#
+#-------------------------------------------------------------------------------
+
+from layman.config import Config
+from layman.action import Actions
+
+#===============================================================================
+#
+# MAIN
+#
+#-------------------------------------------------------------------------------
+
+def main():
+
+ Actions(Config())
+
+if __name__ == "__main__":
+ main()