Gentoo Archives: gentoo-commits

From: Devan Franchini <twitch153@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/layman:master commit in: /
Date: Sun, 08 Feb 2015 00:33:40
Message-Id: 1423342118.ec902975e0bf8f252fcf276744cd91bb715e6573.twitch153@gentoo
1 commit: ec902975e0bf8f252fcf276744cd91bb715e6573
2 Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 7 19:13:29 2015 +0000
4 Commit: Devan Franchini <twitch153 <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 7 20:48:38 2015 +0000
6 URL: http://sources.gentoo.org/gitweb/?p=proj/layman.git;a=commit;h=ec902975
7
8 setup.py: Fix indentention
9
10 ---
11 setup.py | 15 +++++++++++----
12 1 file changed, 11 insertions(+), 4 deletions(-)
13
14 diff --git a/setup.py b/setup.py
15 index 21a387a..bca2481 100755
16 --- a/setup.py
17 +++ b/setup.py
18 @@ -55,12 +55,19 @@ setup(name = 'layman',
19 author = 'Brian Dolbec, Gunnar Wrobel (original author retired)',
20 author_email = 'dolsen@gentoo',
21 url = 'http://layman.sourceforge.net/, ' +\
22 +setup(
23 + name = 'layman',
24 + version = VERSION,
25 + description = 'Python script for retrieving gentoo overlays',
26 + author = 'Brian Dolbec, Gunnar Wrobel (original author retired)',
27 + author_email = 'dolsen@gentoo',
28 + url = 'http://layman.sourceforge.net/, ' +\
29 'http://git.overlays.gentoo.org/gitweb/?p=proj/layman.git;a=summary',
30 - packages = ['layman', 'layman.config_modules',
31 + packages = ['layman', 'layman.config_modules',
32 'layman.config_modules.makeconf', 'layman.config_modules.reposconf',
33 'layman.overlays', 'layman.overlays.modules',
34 ] + modules,
35 - scripts = ['bin/layman', 'bin/layman-overlay-maker',
36 + scripts = ['bin/layman', 'bin/layman-overlay-maker',
37 'bin/layman-mounter', 'bin/layman-updater'],
38 - license = 'GPL',
39 - )
40 + license = 'GPL',
41 + )