diff options
author | 2017-08-16 10:47:18 +0200 | |
---|---|---|
committer | 2017-08-29 22:18:14 +0200 | |
commit | c70ff8fd32ac37ee73a55aa523a837eb95c807e6 (patch) | |
tree | 83c63f0c137a8b2c9d81f9ac5a39d2becefe94cd /dev-python/pyalsa | |
parent | dev-python/pillow: remove unused patches. (diff) | |
download | gentoo-c70ff8fd32ac37ee73a55aa523a837eb95c807e6.tar.gz gentoo-c70ff8fd32ac37ee73a55aa523a837eb95c807e6.tar.bz2 gentoo-c70ff8fd32ac37ee73a55aa523a837eb95c807e6.zip |
dev-python/pyalsa: remove unused patch.
Diffstat (limited to 'dev-python/pyalsa')
-rw-r--r-- | dev-python/pyalsa/files/pyalsa-1.0.25-no-build-symlinks.patch | 25 |
1 files changed, 0 insertions, 25 deletions
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 deleted file mode 100644 index 2b02c8afe776..000000000000 --- a/dev-python/pyalsa/files/pyalsa-1.0.25-no-build-symlinks.patch +++ /dev/null @@ -1,25 +0,0 @@ -The build system creates some symlinks that are useful when developing -but get in the way when we install for more than one python. Remove -these. - -Not a patch for upstream, as it makes development slightly more -complicated. - -Patch by Arfrever. - ---- setup.py -+++ setup.py -@@ -57,12 +57,3 @@ - packages=['pyalsa'], - scripts=[] - ) -- --uname = os.uname() --a = 'build/lib.%s-%s-%s' % (uname[0].lower(), uname[4], sys.version[:3]) --for f in ['alsacard.so', 'alsacontrol.so', 'alsahcontrol.so', 'alsamixer.so', 'alsaseq.so']: -- if not os.path.exists('pyalsa/%s' % f): -- a = '../build/lib.%s-%s-%s/pyalsa/%s' % (uname[0].lower(), -- uname[4], sys.version[:3], f) -- print a, f -- os.symlink(a, 'pyalsa/%s' % f) - |