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 859121381F3 for ; Wed, 11 Sep 2013 15:00:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 57616E0ABB; Wed, 11 Sep 2013 15:00:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DAFAAE0AA0 for ; Wed, 11 Sep 2013 15:00:00 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D635E33EC4B for ; Wed, 11 Sep 2013 14:59:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 8A642E545C for ; Wed, 11 Sep 2013 14:59:58 +0000 (UTC) From: "André Erdmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "André Erdmann" Message-ID: <1378911575.fd50a559a1f04d6d8bbb27bee6f3fe6c23622624.dywi@gentoo> Subject: [gentoo-commits] proj/R_overlay:master commit in: / X-VCS-Repository: proj/R_overlay X-VCS-Files: setup.py X-VCS-Directories: / X-VCS-Committer: dywi X-VCS-Committer-Name: André Erdmann X-VCS-Revision: fd50a559a1f04d6d8bbb27bee6f3fe6c23622624 X-VCS-Branch: master Date: Wed, 11 Sep 2013 14:59:58 +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: 95f88d31-458c-4fa7-b028-ab83ba516e38 X-Archives-Hash: d3963f5157ba9c24612eaf3870c0e817 commit: fd50a559a1f04d6d8bbb27bee6f3fe6c23622624 Author: André Erdmann mailerd de> AuthorDate: Wed Sep 11 14:59:35 2013 +0000 Commit: André Erdmann mailerd de> CommitDate: Wed Sep 11 14:59:35 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/R_overlay.git;a=commit;h=fd50a559 setup.py: use scripts from bin/install/ --- setup.py | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/setup.py b/setup.py index 184360a..9c9772e 100755 --- a/setup.py +++ b/setup.py @@ -1,8 +1,13 @@ #!/usr/bin/python # -*- coding: utf-8 -*- +import os.path +import glob + from setuptools import setup, find_packages +SCRIPT_DIR = os.path.join ( "bin", "install" ) + setup ( name = 'R_Overlay', version = '0.2.5', @@ -11,14 +16,7 @@ setup ( author_email = 'dywi@mailerd.de', license = 'GPLv2+', url = 'http://git.overlays.gentoo.org/gitweb/?p=proj/R_overlay.git;a=summary', - entry_points = { - 'console_scripts': [ - 'roverlay = roverlay.defaultscript:main_installed', - 'roverlay-sh = roverlay.defaultscript:run_shell_main_installed', - #'roverlay-exec = roverlay.defaultscript:run_script_main_installed', - 'roverlay-status = roverlay.status:main_installed', - ] - }, + scripts = glob.glob ( SCRIPT_DIR + os.path.sep + "?*" ), packages = find_packages ( exclude=[ 'tests', 'tests.*' ] ), classifiers = [ #'Development Status :: 3 - Alpha',