Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyalsa/files/
Date: Tue, 29 Aug 2017 20:18:33
Message-Id: 1504037894.c70ff8fd32ac37ee73a55aa523a837eb95c807e6.monsieurp@gentoo
1 commit: c70ff8fd32ac37ee73a55aa523a837eb95c807e6
2 Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Wed Aug 16 08:47:18 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 29 20:18:14 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c70ff8fd
7
8 dev-python/pyalsa: remove unused patch.
9
10 .../files/pyalsa-1.0.25-no-build-symlinks.patch | 25 ----------------------
11 1 file changed, 25 deletions(-)
12
13 diff --git a/dev-python/pyalsa/files/pyalsa-1.0.25-no-build-symlinks.patch b/dev-python/pyalsa/files/pyalsa-1.0.25-no-build-symlinks.patch
14 deleted file mode 100644
15 index 2b02c8afe77..00000000000
16 --- a/dev-python/pyalsa/files/pyalsa-1.0.25-no-build-symlinks.patch
17 +++ /dev/null
18 @@ -1,25 +0,0 @@
19 -The build system creates some symlinks that are useful when developing
20 -but get in the way when we install for more than one python. Remove
21 -these.
22 -
23 -Not a patch for upstream, as it makes development slightly more
24 -complicated.
25 -
26 -Patch by Arfrever.
27 -
28 ---- setup.py
29 -+++ setup.py
30 -@@ -57,12 +57,3 @@
31 - packages=['pyalsa'],
32 - scripts=[]
33 - )
34 --
35 --uname = os.uname()
36 --a = 'build/lib.%s-%s-%s' % (uname[0].lower(), uname[4], sys.version[:3])
37 --for f in ['alsacard.so', 'alsacontrol.so', 'alsahcontrol.so', 'alsamixer.so', 'alsaseq.so']:
38 -- if not os.path.exists('pyalsa/%s' % f):
39 -- a = '../build/lib.%s-%s-%s/pyalsa/%s' % (uname[0].lower(),
40 -- uname[4], sys.version[:3], f)
41 -- print a, f
42 -- os.symlink(a, 'pyalsa/%s' % f)
43 -