On jeudi 28 juin 2018 22:05:36 CEST Antonio Trande wrote:
> Does anyone know how to fix 'antimony'?
> https://bugzilla.redhat.com/show_bug.cgi?id=1594496
> 
> Reply from upstream is delayed...
> 
> On 28/06/2018 20:41, Miro Hrončok wrote:
> > This is a reminder that your package FTBFS with Python 3.7. Please fix
> > it. We'd like to merge the side tag soon and your package will likely
> > get broken deps afterwards. Chances are your package blocks others.
> > 
> > If nothing depends on your package and upstream is dead, consider
> > removing it.
> > 
> > Rebuild your package with: fedpkg build --target=f29-python
> > 
> > The list:
> > Maintainers by package:
> > 
> > sagitter   antimony
PyUnicode_AsUTF8 return type was char* in 3.6:
https://docs.python.org/3.6/c-api/unicode.html#c.PyUnicode_AsUTF8

but became const char* in 3.7:
https://docs.python.org/3.7/c-api/unicode.html#c.PyUnicode_AsUTF8

Thus you should probably patch https://github.com/mkeeter/antimony/blob/
master/lib/graph/src/util.cpp#L50 by transforming "char* c" into 
"const char* c"

_______________________________________________
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/message/COPKAWVLS5QTEJEL7ZDV7AQU7F3CX7B3/

Reply via email to