shithub: aubio

Download patch

ref: 8da4d5974e66a04aafd3b457842be9f83437ce8a
parent: 255fe0af022bbd0b92d4b4f30e1668e15327d0a7
author: Paul Brossier <piem@piem.org>
date: Thu Mar 23 14:31:42 EDT 2017

this_version.py: fix building out of git repo

--- a/this_version.py
+++ b/this_version.py
@@ -60,7 +60,7 @@
         pep440str = aubio_version.replace('+', '.')
         verstr = pep440str.replace('~git.', 'a0+')
     elif '~alpha' in aubio_version:
-        verstr += "a0"
+        verstr = "a0"
     return verstr
 
 def get_git_revision_hash(short=True):