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 071881381F3 for ; Mon, 12 Nov 2012 21:41:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 005A021C021; Mon, 12 Nov 2012 21:41:31 +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 6B6CB21C021 for ; Mon, 12 Nov 2012 21:41:31 +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 614E933DA06 for ; Mon, 12 Nov 2012 21:41:30 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 70E67E5444 for ; Mon, 12 Nov 2012 21:41:28 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1352756441.b0e7bd4e00d6c05a3a23108a251b45df4516a2f9.dol-sen@gentoo> Subject: [gentoo-commits] proj/mirrorselect:master commit in: / X-VCS-Repository: proj/mirrorselect X-VCS-Files: setup.py X-VCS-Directories: / X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: b0e7bd4e00d6c05a3a23108a251b45df4516a2f9 X-VCS-Branch: master Date: Mon, 12 Nov 2012 21:41:28 +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: 8acbd356-ec5c-44a0-b6b9-b2b3dc659918 X-Archives-Hash: 766178c7c3e381d2919f3e725da52095 commit: b0e7bd4e00d6c05a3a23108a251b45df4516a2f9 Author: Brian Dolbec gentoo org> AuthorDate: Mon Nov 12 21:40:41 2012 +0000 Commit: Brian Dolbec gmail com> CommitDate: Mon Nov 12 21:40:41 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/mirrorselect.git;a=commit;h=b0e7bd4e remove some uneeded import and use. fix man page install. --- setup.py | 7 +++---- 1 files changed, 3 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index db82dd7..e21af96 100755 --- a/setup.py +++ b/setup.py @@ -7,7 +7,6 @@ from __future__ import print_function import re import sys from distutils import core, log -from glob import glob import os import io @@ -107,10 +106,10 @@ core.setup( % __version__, package_dir={'': 'mirrorselect'}, packages=packages, - package_data = test_data, - scripts=(glob('bin/*')), + #package_data = test_data, + scripts=(['bin/mirrorselect']), data_files=( - (os.path.join(os.sep, EPREFIX.lstrip(os.sep), 'usr/share/man/man8'), 'mirrorselect.8'), + (os.path.join(os.sep, EPREFIX.lstrip(os.sep), 'usr/share/man/man8'), ['mirrorselect.8']), ), cmdclass={ 'test': load_test(),