Re: [PyQt] Kled module

2013-06-25 Thread Phil
On 25/06/13 22:34, Robert Kent wrote: Hi Phil, I don't know about using Kled, but I have an LED widget written in pure python/PyQt4 which may suit your needs. You can download it from my google code page here: https://code.google.com/p/gulon-soft/downloads/list Thank you Robert, Oliver and De

Re: [PyQt] Problem with Sip for Py3 on Debian/Ubuntu

2013-06-25 Thread Shriramana Sharma
On Tue, Jun 25, 2013 at 10:47 PM, Dmitry Shachnev wrote: > Yes, /usr/bin/sip is in python-sip-dev package. Maybe it will make > sense to move it into a separate package, but I don't see much need in > that. Well somehow I don't feel comfortable having to install a Py2 package to get functionality

Re: [PyQt] Problem with Sip for Py3 on Debian/Ubuntu

2013-06-25 Thread Dmitry Shachnev
Yes, /usr/bin/sip is in python-sip-dev package. Maybe it will make sense to move it into a separate package, but I don't see much need in that. -- Dmitry Shachnev On 6/25/13, Shriramana Sharma wrote: > On Tue, Jun 25, 2013 at 9:09 PM, Scott Kitterman > wrote: >> I'll take a look at it. > > Scot

[PyQt] eric5 packages for Debian

2013-06-25 Thread Detlev Offenbach
Hello, is anybody out there interested to create an eric5 package for Debian (and derived) distro? Regards, Detlev-- *Detlev Offenbach* det...@die-offenbachs.de ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mai

Re: [PyQt] Kled module

2013-06-25 Thread Detlev Offenbach
Hello, you may download the eri sources and use the LED I implemented in pure Python. Detlev On Tuesday 25 June 2013, 09:20:15 Phil wrote: > Thank you for reading this. > > I'd like to include a led in my project which I've done in the past with > Qt creator and Designer under C++. Adding the

Re: [PyQt] Problem with Sip for Py3 on Debian/Ubuntu

2013-06-25 Thread Shriramana Sharma
On Tue, Jun 25, 2013 at 9:09 PM, Scott Kitterman wrote: > I'll take a look at it. Scott thank you very much! Please do so. RIght now I'm having to install python-sip-dev for developing Python3 bindings despite the presence of a python3-sip-dev which doesn't seem appropriate packaging. Thanks aga

Re: [PyQt] Problem with Sip for Py3 on Debian/Ubuntu

2013-06-25 Thread Scott Kitterman
Phil Thompson wrote: >On Tue, 25 Jun 2013 20:46:57 +0530, Shriramana Sharma > >wrote: >> On Tue, Jun 25, 2013 at 8:19 PM, Phil Thompson >> wrote: >>> The code generator is the same for all Python versions. >> >> Hi thanks for this quick [as always! :-)] reply! >> >> So then it seems to me th

Re: [PyQt] Problem with Sip for Py3 on Debian/Ubuntu

2013-06-25 Thread Phil Thompson
On Tue, 25 Jun 2013 20:46:57 +0530, Shriramana Sharma wrote: > On Tue, Jun 25, 2013 at 8:19 PM, Phil Thompson > wrote: >> The code generator is the same for all Python versions. > > Hi thanks for this quick [as always! :-)] reply! > > So then it seems to me that the packaging should be changed.

Re: [PyQt] Problem with Sip for Py3 on Debian/Ubuntu

2013-06-25 Thread Shriramana Sharma
On Tue, Jun 25, 2013 at 8:19 PM, Phil Thompson wrote: > The code generator is the same for all Python versions. Hi thanks for this quick [as always! :-)] reply! So then it seems to me that the packaging should be changed. Currently the sip4 source package (http://packages.debian.org/source/sid/s

Re: [PyQt] Problem with Sip for Py3 on Debian/Ubuntu

2013-06-25 Thread Phil Thompson
On Tue, 25 Jun 2013 20:16:35 +0530, Shriramana Sharma wrote: > I'm trying to build PyQt5 for Py3 on Kubuntu Raring. However I got the > error that Sip was not found: > > This is the GPL version of PyQt 5.0 (licensed under the GNU General Public > License) for Python 3.3.1 on linux. > ... > Found

[PyQt] Problem with Sip for Py3 on Debian/Ubuntu

2013-06-25 Thread Shriramana Sharma
I'm trying to build PyQt5 for Py3 on Kubuntu Raring. However I got the error that Sip was not found: This is the GPL version of PyQt 5.0 (licensed under the GNU General Public License) for Python 3.3.1 on linux. ... Found the license file pyqt-gpl.sip. Error: Make sure you have a working sip on yo

Re: [PyQt] Installing PyQt 5 on Mac OS X (10.6.8 Snow Leopard)

2013-06-25 Thread Phil Thompson
On Tue, 25 Jun 2013 15:36:59 +0100, Anzir Boodoo wrote: > Hello, > > I've been trying to install PyQt 5 on Mac OS X 10.6.8, and got the > following output (the first line being the Terminal command): > >> Anzir-Boodoos-MacBook-Pro-2:PyQt-gpl-5.0 pbadmin$ python configure.py >> --verbose >> Query

[PyQt] Installing PyQt 5 on Mac OS X (10.6.8 Snow Leopard)

2013-06-25 Thread Anzir Boodoo
Hello, I've been trying to install PyQt 5 on Mac OS X 10.6.8, and got the following output (the first line being the Terminal command): > Anzir-Boodoos-MacBook-Pro-2:PyQt-gpl-5.0 pbadmin$ python configure.py > --verbose > Querying qmake about your Qt installation... > An internal error occured.

Re: [PyQt] graphical file tail

2013-06-25 Thread Eric Frederich
Thanks David, This example works nicely. It's nice to find out what you did wrong, but I'm always open to new implementations. In fact that is what I wanted, was someone to do it their way so I could compare. I'm sure I was doing something terribly wrong but didn't want to post a "do it for me" em

Re: [PyQt] Kled module

2013-06-25 Thread o.fourn...@perigord.com
Hi, You would use pykde olivier ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] graphical file tail

2013-06-25 Thread Eric Frederich
Calling t.wait() directly after t.foo() seems to have solved the problem. I don't need to pass in self to the QTextBrowser constructor because I added it to a layout and set the layout on the TailWidget so it happens implicitly. So, if I put this t.wait() call right after the t.foo() call is there

Re: [PyQt] Kled module

2013-06-25 Thread Robert Kent
Hi Phil, I don't know about using Kled, but I have an LED widget written in pure python/PyQt4 which may suit your needs. You can download it from my google code page here: https://code.google.com/p/gulon-soft/downloads/list Just unpack the zipped tar file and run "(sudo) python setup.py install"

Re: [PyQt] graphical file tail

2013-06-25 Thread David Boddie
On Mon Jun 24 20:24:25 BST 2013, Eric Frederich wrote: > I'm trying to tail several files graphically. > I have been trying to find a way to tail several files in a GUI > without much luck at all. [...] > Basically, I want to graphically tail files and when the GUI closes > the tail subprocesses