From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id ED844138A1A for ; Sun, 8 Feb 2015 00:33:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1691BE0C7E; Sun, 8 Feb 2015 00:33:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 70302E0C7F for ; Sun, 8 Feb 2015 00:33:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 929FE34071F for ; Sun, 8 Feb 2015 00:33:37 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CB2E511493 for ; Sun, 8 Feb 2015 00:33:34 +0000 (UTC) From: "Devan Franchini" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Devan Franchini" Message-ID: <1423342118.ec902975e0bf8f252fcf276744cd91bb715e6573.twitch153@gentoo> Subject: [gentoo-commits] proj/layman:master commit in: / X-VCS-Repository: proj/layman X-VCS-Files: setup.py X-VCS-Directories: / X-VCS-Committer: twitch153 X-VCS-Committer-Name: Devan Franchini X-VCS-Revision: ec902975e0bf8f252fcf276744cd91bb715e6573 X-VCS-Branch: master Date: Sun, 8 Feb 2015 00:33:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: f8b1ae64-58e8-476a-8582-006250b445d1 X-Archives-Hash: 8d76167416773f88c7f898c2f31fd118 commit: ec902975e0bf8f252fcf276744cd91bb715e6573 Author: Brian Dolbec gentoo org> AuthorDate: Sat Feb 7 19:13:29 2015 +0000 Commit: Devan Franchini gentoo org> CommitDate: Sat Feb 7 20:48:38 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/layman.git;a=commit;h=ec902975 setup.py: Fix indentention --- setup.py | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 21a387a..bca2481 100755 --- a/setup.py +++ b/setup.py @@ -55,12 +55,19 @@ setup(name = 'layman', author = 'Brian Dolbec, Gunnar Wrobel (original author retired)', author_email = 'dolsen@gentoo', url = 'http://layman.sourceforge.net/, ' +\ +setup( + name = 'layman', + version = VERSION, + description = 'Python script for retrieving gentoo overlays', + author = 'Brian Dolbec, Gunnar Wrobel (original author retired)', + author_email = 'dolsen@gentoo', + url = 'http://layman.sourceforge.net/, ' +\ 'http://git.overlays.gentoo.org/gitweb/?p=proj/layman.git;a=summary', - packages = ['layman', 'layman.config_modules', + packages = ['layman', 'layman.config_modules', 'layman.config_modules.makeconf', 'layman.config_modules.reposconf', 'layman.overlays', 'layman.overlays.modules', ] + modules, - scripts = ['bin/layman', 'bin/layman-overlay-maker', + scripts = ['bin/layman', 'bin/layman-overlay-maker', 'bin/layman-mounter', 'bin/layman-updater'], - license = 'GPL', - ) + license = 'GPL', + )