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 7583C138A2F for ; Tue, 19 Aug 2014 08:56:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3B7AEE08B1; Tue, 19 Aug 2014 08:56:53 +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 B7BFDE08B1 for ; Tue, 19 Aug 2014 08:56:52 +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 B60D633FD30 for ; Tue, 19 Aug 2014 08:56:51 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C12233B97 for ; Tue, 19 Aug 2014 01:49:05 +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: <1408229018.98fd8fc9294db5e3758199e4ccaf94832aad7de2.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: 98fd8fc9294db5e3758199e4ccaf94832aad7de2 X-VCS-Branch: master Date: Tue, 19 Aug 2014 01:49:05 +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: c95c8c32-e159-4a8e-a104-7356686797e7 X-Archives-Hash: c9d3baf49b7efa316d6f585d9917279b Message-ID: <20140819014905.Vq828SnOCcjsHr_92kZ1QFF_hJeJ-5AzvGHhLFEJJ6o@z> commit: 98fd8fc9294db5e3758199e4ccaf94832aad7de2 Author: Devan Franchini gentoo org> AuthorDate: Sat Aug 16 22:43:38 2014 +0000 Commit: Devan Franchini gentoo org> CommitDate: Sat Aug 16 22:43:38 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/layman.git;a=commit;h=98fd8fc9 setup.py: Adds new utility scripts to setup --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 666744a..9ec217f 100755 --- a/setup.py +++ b/setup.py @@ -35,6 +35,7 @@ setup(name = 'layman', 'layman.config_modules.makeconf', 'layman.config_modules.reposconf', 'layman.overlays', 'layman.overlays.modules', ] + modules, - scripts = ['bin/layman', 'bin/layman-updater'], + scripts = ['bin/layman', 'bin/layman-overlay-maker', + 'bin/layman-mounter', 'bin/layman-updater'], license = 'GPL', )