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 AE9081389E2 for ; Wed, 24 Dec 2014 20:05:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B953FE0961; Wed, 24 Dec 2014 20:05:25 +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 6821DE0961 for ; Wed, 24 Dec 2014 20:05:25 +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 64967340509 for ; Wed, 24 Dec 2014 20:05:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0F46FD48E for ; Wed, 24 Dec 2014 20:05:23 +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: <1419451469.1c062cfb335aa8606bc06b23ab541dd788446257.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: 1c062cfb335aa8606bc06b23ab541dd788446257 X-VCS-Branch: master Date: Wed, 24 Dec 2014 20:05:23 +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: 8a8e40d4-be56-4cd0-a1ce-49416090989d X-Archives-Hash: 720957a6c23aa20953c012f870678750 commit: 1c062cfb335aa8606bc06b23ab541dd788446257 Author: Brian Dolbec gentoo org> AuthorDate: Wed Dec 24 20:04:29 2014 +0000 Commit: Brian Dolbec gmail com> CommitDate: Wed Dec 24 20:04:29 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=1c062cfb gkeys/setup.py: Fix previous commit path correctly --- gkeys/setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gkeys/setup.py b/gkeys/setup.py index 52b75fa..4beae57 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/gkeys.conf']), - (os.path.join(os.sep, EPREFIX.lstrip(os.sep), 'etc'), ['etc/gkeys/gkeys.conf.sample']), + #(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']), ), license=__license__, long_description=open('README.md').read(),