From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F0769139694 for ; Wed, 15 Feb 2017 17:06:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2912AE0C1A; Wed, 15 Feb 2017 17:06:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0489DE0C1A for ; Wed, 15 Feb 2017 17:06:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E4DD7341641 for ; Wed, 15 Feb 2017 17:06:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 886A948E3 for ; Wed, 15 Feb 2017 17:06:53 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1487178375.186c01953709bf397ce7e701fd4e7b2b305ff5f5.floppym@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: / X-VCS-Repository: proj/portage X-VCS-Files: .gitignore X-VCS-Directories: / X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 186c01953709bf397ce7e701fd4e7b2b305ff5f5 X-VCS-Branch: master Date: Wed, 15 Feb 2017 17:06:53 +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: be3c55cf-5065-4e0c-91e3-2cb7bd31d54a X-Archives-Hash: e527bb96cd44c008ad6126a806fb1e2f commit: 186c01953709bf397ce7e701fd4e7b2b305ff5f5 Author: Mike Gilbert gentoo org> AuthorDate: Tue Feb 14 16:50:12 2017 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Wed Feb 15 17:06:15 2017 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=186c0195 Ignore setup.cfg and *.so This allows one to compile the extension modules in-place without having the build artifacts show up in git status. For example: printf "[build_ext]\nportage-ext-modules = true\n" > setup.cfg python setup.py build_ext --inplace .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 930252f66..9c13ef473 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,9 @@ *.py[co] __pycache__/ *.class +*.so /build /tags +setup.cfg repoman/build