Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: /
Date: Wed, 15 Feb 2017 17:06:57
Message-Id: 1487178375.186c01953709bf397ce7e701fd4e7b2b305ff5f5.floppym@gentoo
1 commit: 186c01953709bf397ce7e701fd4e7b2b305ff5f5
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 14 16:50:12 2017 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 15 17:06:15 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=186c0195
7
8 Ignore setup.cfg and *.so
9
10 This allows one to compile the extension modules in-place without having
11 the build artifacts show up in git status.
12
13 For example:
14 printf "[build_ext]\nportage-ext-modules = true\n" > setup.cfg
15 python setup.py build_ext --inplace
16
17 .gitignore | 2 ++
18 1 file changed, 2 insertions(+)
19
20 diff --git a/.gitignore b/.gitignore
21 index 930252f66..9c13ef473 100644
22 --- a/.gitignore
23 +++ b/.gitignore
24 @@ -1,7 +1,9 @@
25 *.py[co]
26 __pycache__/
27 *.class
28 +*.so
29 /build
30 /tags
31 +setup.cfg
32
33 repoman/build