blob: e91f21898dc325945361607104298cb33b323361 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# -*- coding: utf-8 -*-
__all__ = [
'config',
'description',
'description_tree',
'ebuild',
'fetch',
'overlay'
]
__author__ = 'Rafael Goncalves Martins'
__email__ = 'rafael@rafaelmartins.eng.br'
__description__ = """\
A tool that generates and installs ebuilds for Octave-Forge packages "on-the-fly"
to Gentoo Linux, using Portage.
"""
__url__ = 'http://rafaelmartins.eng.br/en-us/projects/g-octave/' # not done yet :(
__copyright__ = '(c) 2009 %s' % __author__
__license__ = 'GPLv2'
__version__ = 'tip'
|