Re: compile a python3 project with autotools

2016-08-14 Thread Chris Angelico
On Mon, Aug 15, 2016 at 7:23 AM, wrote: > #!/usr/bin/env python3 > > import sys > sys.path.insert(1, '@pythondir@') > > from mkbib.main import mkbib > if __name__ == "__main__": > app = mkbib() > r = app.run() > sys.exit(r) > > > Now, the problem is it is compiling fine (make; make in

Re: compile a python3 project with autotools

2016-08-14 Thread Rudra Banerjee
On Monday, August 15, 2016 at 12:39:33 AM UTC+2, Lawrence D’Oliveiro wrote: > On Monday, August 15, 2016 at 9:24:04 AM UTC+12, Rudra Banerjee wrote: > > but while running the application, I am getting error: > > (mkbib:14843): Gtk-CRITICAL **: New application windows must be added after > > the GAp

Re: compile a python3 project with autotools

2016-08-14 Thread Lawrence D’Oliveiro
On Monday, August 15, 2016 at 9:24:04 AM UTC+12, Rudra Banerjee wrote: > but while running the application, I am getting error: > (mkbib:14843): Gtk-CRITICAL **: New application windows must be added after > the GApplication::startup signal has been emitted. Does the application actually fail? Be

Re: compile a python3 project with autotools

2016-08-14 Thread Rudra Banerjee
Plz ignore src/Mkbib/mkbib.in file, as appeared in the tree -- https://mail.python.org/mailman/listinfo/python-list

compile a python3 project with autotools

2016-08-14 Thread bnrj . rudra
Hi, I am trying to compile a python project using autotools. The project runs absolutely fine from command line, and it uses Gtk3 library. the src file is: ├── src │   ├── Makefile.am │   ├── Makefile.in │   ├── Mkbib │   │   ├── cell.py │   │   ├── dialogue.py │   │   ├── filemanager.py │   │