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 136161386F1 for ; Sun, 9 Aug 2015 03:44:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 17900141EA; Sun, 9 Aug 2015 03:44:30 +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 B6466141EA for ; Sun, 9 Aug 2015 03:44:29 +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 9BE013407A3 for ; Sun, 9 Aug 2015 03:44:28 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D08B8C5 for ; Sun, 9 Aug 2015 03:44:26 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1439091852.e7a58972b32d87edcc5c6c30ab4340dcf923bb19.robbat2@gentoo> Subject: [gentoo-commits] proj/gentoo-keys:master commit in: gkeys/ X-VCS-Repository: proj/gentoo-keys X-VCS-Files: gkeys/setup.py X-VCS-Directories: gkeys/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: e7a58972b32d87edcc5c6c30ab4340dcf923bb19 X-VCS-Branch: master Date: Sun, 9 Aug 2015 03:44:26 +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: cd282298-e574-43ef-8dde-b7cef4433c0d X-Archives-Hash: 75aa4e815423dee78418d304c27fe8cc commit: e7a58972b32d87edcc5c6c30ab4340dcf923bb19 Author: Robin H. Johnson gentoo org> AuthorDate: Sun Aug 9 03:44:12 2015 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Sun Aug 9 03:44:12 2015 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-keys.git/commit/?id=e7a58972 Fix setup.py for gkeys-gpg tool. Signed-off-by: Robin H. Johnson gentoo.org> gkeys/setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gkeys/setup.py b/gkeys/setup.py index 12a3632..7563230 100755 --- a/gkeys/setup.py +++ b/gkeys/setup.py @@ -83,8 +83,8 @@ setup( maintainer_email='gkeys@gentoo.org', url="https://wiki.gentoo.org/wiki/Project:Gentoo-keys", download_url='', - packages=['gkeys'], - scripts=['bin/gkeys'], + packages=['gkeys', 'gkeysgpg'], + scripts=['bin/gkeys', 'bin/gkeys-gpg'], data_files=[ (os.path.join(os.sep, EPREFIX.lstrip(os.sep), 'etc/gkeys/'), ['etc/gkeys.conf']), (os.path.join(os.sep, EPREFIX.lstrip(os.sep), 'etc/gkeys/'), ['etc/gkeys.conf.sample']),