Gentoo Archives: gentoo-portage-dev

From: Brian Dolbec <dolsen@g.o>
To: gentoo-portage-dev@l.g.o
Subject: Re: [gentoo-portage-dev] [PATCH] Ignore setup.cfg and *.so
Date: Tue, 14 Feb 2017 18:51:30
Message-Id: 20170214105124.2ed75b2a.dolsen@gentoo.org
In Reply to: [gentoo-portage-dev] [PATCH] Ignore setup.cfg and *.so by Mike Gilbert
1 On Tue, 14 Feb 2017 12:02:18 -0500
2 Mike Gilbert <floppym@g.o> wrote:
3
4 > This allows one to compile the extension modules in-place without
5 > having the build artifacts show up in git status.
6 >
7 > For example:
8 > printf "[build_ext]\nportage-ext-modules = true\n" > setup.cfg
9 > python setup.py build_ext --inplace
10 > ---
11 > .gitignore | 2 ++
12 > 1 file changed, 2 insertions(+)
13 >
14 > diff --git a/.gitignore b/.gitignore
15 > index 930252f66..9c13ef473 100644
16 > --- a/.gitignore
17 > +++ b/.gitignore
18 > @@ -1,7 +1,9 @@
19 > *.py[co]
20 > __pycache__/
21 > *.class
22 > +*.so
23 > /build
24 > /tags
25 > +setup.cfg
26 >
27 > repoman/build
28
29
30 looks good, push please :)
31 --
32 Brian Dolbec <dolsen>

Replies

Subject Author
Re: [gentoo-portage-dev] [PATCH] Ignore setup.cfg and *.so Mike Gilbert <floppym@g.o>