aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorGunnar Wrobel <p@rdus.de>2007-09-11 05:53:25 +0000
committerGunnar Wrobel <p@rdus.de>2007-09-11 05:53:25 +0000
commit387b74f15929efbdce79a6fbf12448f90bb83766 (patch)
treec3276ef615b29a6ead43338bd7e9a8d9405a60ea /bin
parentStart the layman repository. (diff)
downloadlayman-387b74f15929efbdce79a6fbf12448f90bb83766.tar.gz
layman-387b74f15929efbdce79a6fbf12448f90bb83766.tar.bz2
layman-387b74f15929efbdce79a6fbf12448f90bb83766.zip
Import layman.
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()