diff options
author | Tim Harder <radhermit@gentoo.org> | 2017-09-21 01:58:05 -0400 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2017-09-21 02:00:40 -0400 |
commit | ec420564f81bc8988ca647f5358a21b58258b984 (patch) | |
tree | 6e86c5c32a4f27f3cc07d3ab710fa74b437971b6 /dev-python/llfuse/files | |
parent | dev-ruby/ffaker: add 2.7.0 (diff) | |
download | gentoo-ec420564f81bc8988ca647f5358a21b58258b984.tar.gz gentoo-ec420564f81bc8988ca647f5358a21b58258b984.tar.bz2 gentoo-ec420564f81bc8988ca647f5358a21b58258b984.zip |
dev-python/llfuse: version bump to 1.3
Diffstat (limited to 'dev-python/llfuse/files')
-rw-r--r-- | dev-python/llfuse/files/llfuse-1.3-cflags.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/dev-python/llfuse/files/llfuse-1.3-cflags.patch b/dev-python/llfuse/files/llfuse-1.3-cflags.patch new file mode 100644 index 000000000000..42e4eef82a02 --- /dev/null +++ b/dev-python/llfuse/files/llfuse-1.3-cflags.patch @@ -0,0 +1,19 @@ +Build fails under pypy(3) when enabling these flags. + +--- llfuse-1.3/setup.py ++++ llfuse-1.3/setup.py +@@ -84,12 +84,12 @@ + compile_args.append('-Wno-unused-parameter') + + # Value-changing conversions should always be explicit. +- compile_args.append('-Werror=conversion') ++ # compile_args.append('-Werror=conversion') + + # Note that (i > -1) is false if i is unsigned (-1 will be converted to + # a large positive value). We certainly don't want to do this by + # accident. +- compile_args.append('-Werror=sign-compare') ++ # compile_args.append('-Werror=sign-compare') + + # Enable all fatal warnings only when compiling from Mercurial tip. + # (otherwise we break forward compatibility because compilation with newer |