diff options
Diffstat (limited to 'layman/bin/layman')
-rw-r--r-- | layman/bin/layman | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/layman/bin/layman b/layman/bin/layman new file mode 100644 index 0000000..a484aed --- /dev/null +++ b/layman/bin/layman @@ -0,0 +1,36 @@ +#!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 +# +#------------------------------------------------------------------------------- + +import sys, os, os.path + +#=============================================================================== +# +# MAIN +# +#------------------------------------------------------------------------------- + +def main(): + + pass + +if __name__ == "__main__": + main() |