initial commit
[ebuildfind.git] / commands / layman
blobb0aa4f5a25275d1eb5cdc220a44edc1a13982474
1 #!/usr/bin/python
2 ################################################################################
3 # LAYMAN - A UTILITY TO SELECT AND UPDATE GENTOO OVERLAYS
4 ################################################################################
5 # Distributed under the terms of the GNU General Public License v2
7 # Copyright:
8 # (c) 2005 Gunnar Wrobel
9 # Distributed under the terms of the GNU General Public License v2
11 # Author(s):
12 # Gunnar Wrobel <wrobel@gentoo.org>
15 __version__ = "$Id$"
17 #===============================================================================
19 # Dependencies
21 #-------------------------------------------------------------------------------
23 from layman.config import Config
24 from layman.action import Actions
26 #===============================================================================
28 # MAIN
30 #-------------------------------------------------------------------------------
32 def main():
34 Actions(Config())
36 if __name__ == "__main__":
37 main()