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 296BE1389E2 for ; Wed, 24 Dec 2014 19:59:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 88DBAE090A; Wed, 24 Dec 2014 19:59:34 +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 B1CC6E0908 for ; Wed, 24 Dec 2014 19:59:33 +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 015EF3405FA for ; Wed, 24 Dec 2014 19:59:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 54B4FD495 for ; Wed, 24 Dec 2014 19:59:30 +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: <1419451065.8cb7883522dbbf3ba588376b7a5746644fe84309.dol-sen@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: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 8cb7883522dbbf3ba588376b7a5746644fe84309 X-VCS-Branch: master Date: Wed, 24 Dec 2014 19:59:30 +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: 0772a711-6b40-4c41-8723-ee96fb714a4a X-Archives-Hash: f25aaab590bd942727c14f5ad03e0446 commit: 8cb7883522dbbf3ba588376b7a5746644fe84309 Author: Brian Dolbec gentoo org> AuthorDate: Wed Dec 24 19:57:45 2014 +0000 Commit: Brian Dolbec gmail com> CommitDate: Wed Dec 24 19:57:45 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=8cb78835 gkeys/setup.py: Fix gkeys.conf path, comment out gkeys.conf --- gkeys/setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gkeys/setup.py b/gkeys/setup.py index 20b346e..52b75fa 100755 --- a/gkeys/setup.py +++ b/gkeys/setup.py @@ -31,8 +31,8 @@ setup( packages=['gkeys'], scripts=['bin/gkeys'], data_files=( - (os.path.join(os.sep, EPREFIX.lstrip(os.sep), 'etc'), ['etc/gkeys.conf']), - (os.path.join(os.sep, EPREFIX.lstrip(os.sep), 'etc'), ['etc/gkeys.conf.sample']), + #(os.path.join(os.sep, EPREFIX.lstrip(os.sep), 'etc'), ['etc/gkeys/gkeys.conf']), + (os.path.join(os.sep, EPREFIX.lstrip(os.sep), 'etc'), ['etc/gkeys/gkeys.conf.sample']), ), license=__license__, long_description=open('README.md').read(),