pbzip2 isn't faster

2014-04-04 Thread Ryan Schmidt
While waiting minutes for clang-3.5 to install (compress) and then activate (decompress) a 600MB archive, I wondered why I was sitting here waiting for a single-threaded process to complete when I have a multi-core Mac. A quick search led to pbzip2, a parallel implementation of bzip2 which

Re: pbzip2 isn't faster

2014-04-04 Thread René J.V. Bertin
On Apr 04, 2014, at 10:19, Ryan Schmidt wrote: While waiting minutes for clang-3.5 to install (compress) and then activate (decompress) a 600MB archive, I wondered why I was sitting here waiting for a single-threaded process to complete when I have a multi-core Mac. Is that 600MB raw, or

Re: pbzip2 isn't faster

2014-04-04 Thread Ryan Schmidt
On Apr 4, 2014, at 03:33, René J.V. Bertin wrote: On Apr 04, 2014, at 10:19, Ryan Schmidt wrote: While waiting minutes for clang-3.5 to install (compress) and then activate (decompress) a 600MB archive, I wondered why I was sitting here waiting for a single-threaded process to complete

kdearwork build errors

2014-04-04 Thread René J.V. Bertin
Upgrading kdeartwork I got the following error for the kscreensaver target: /opt/local/include/QtGui/qlabel.h:45:10: fatal error: 'QtGui/qframe.h' file not found /opt/local/include/QtGui is a symlink to the header folder in the QtGui framework, and qframe.h is there. The problem is that

ktimetracker and akonadi's googlecontacts/googlecalendar

2014-04-04 Thread René J.V. Bertin
Hello, Any idea why ktimetracker and the Google contacts/calendar akonadi resources are missing from MacPorts? The latter are part of kdepim-runtime, the former of kdepim, both of which I have installed. Judging from the Portfile no parts/modules of said packages are deactivated, so why am I

Re: help! - Python, Tkinter and IDLE

2014-04-04 Thread Lenore Horner
I have attached a screen grab of the alert message which now appears when I try to run IDLE from OSX Python. The message box is itself frozen, and the OK button unresponsive. Eventually a shape the size of the IDLE window appears on screen as a blank white square, and I have to force quit,

p5.12-parse-recdescent fails to upgrade

2014-04-04 Thread René J.V. Bertin
I have a whole bunch of p5.12* ports installed, most all dependencies of things that ought to depend on a more recent version of perl by now. Is there a way to clean this up, without having to figure out the depending ports and reinstall those? BTW, the build failure is because

Re: help! - Python, Tkinter and IDLE

2014-04-04 Thread ugajin
Yes I may try this, as I have resolved the problem. YEAY! Thanks, all. -A -Original Message- From: Lenore Horner lenorehor...@sbcglobal.net To: MacPorts Users macports-users@lists.macosforge.org Sent: Fri, 4 Apr 2014 11:52 Subject: Re: help! - Python, Tkinter and IDLE I

Re: pbzip2 isn't faster

2014-04-04 Thread Eric A. Borisch
I've definitely had success; the main thing to realize is that pbzip2 can only speed up decompression on a file created by pbzip2. (pbzip2 files are still valid bzip2 files.) Compression (at least for bzip2) is still slow relative to disk speeds, so parallelizing works very well. As bzip2 is a

Re: p5.12-parse-recdescent fails to upgrade

2014-04-04 Thread Brandon Allbery
On Fri, Apr 4, 2014 at 7:53 AM, René J.V. Bertin rjvber...@gmail.comwrote: I have a whole bunch of p5.12* ports installed, most all dependencies of things that ought to depend on a more recent version of perl by now. Is there a way to clean this up, without having to figure out the depending

Re: pbzip2 isn't faster

2014-04-04 Thread René J . V . Bertin
On Friday April 04 2014 08:35:19 Eric A. Borisch wrote: Here's an example with a locally compiled (and therefore run through pbzip2 as that is how I have MP set) MacPorts archive. Hmmm, how have you configured things? real 0m12.084s user 0m45.713s sys 0m0.534s real 0m37.223s user

Re: pbzip2 isn't faster

2014-04-04 Thread Eric A. Borisch
On Fri, Apr 4, 2014 at 9:13 AM, René J.V. rjvber...@gmail.com wrote: On Friday April 04 2014 08:35:19 Eric A. Borisch wrote: Here's an example with a locally compiled (and therefore run through pbzip2 as that is how I have MP set) MacPorts archive. Hmmm, how have you configured

Re: ktimetracker and akonadi's googlecontacts/googlecalendar

2014-04-04 Thread René J.V. Bertin
On Apr 04, 2014, at 12:25, René J.V. Bertin wrote: Hello, Any idea why ktimetracker and the Google contacts/calendar akonadi resources are missing from MacPorts? The latter are part of kdepim-runtime, the former of kdepim, both of which I have installed. Judging from the Portfile no

Re: pbzip2 isn't faster

2014-04-04 Thread Chris Jones
As already said, the original bzipped file needs to have been created with pbzip2 in order for the unzipping to see any improvement. On 4 Apr 2014, at 05:08 pm, René J.V. Bertin rjvber...@gmail.com wrote: On Apr 04, 2014, at 17:26, Eric A. Borisch wrote: I must confirm Ryan's

Re: of the kcookiejar and akonadi's googlecontacts/googlecalendar

2014-04-04 Thread René J.V. Bertin
On Apr 04, 2014, at 18:28, René J.V. Bertin wrote: For the google contacts and calendar resources, this is required: # Libkgapi2 find_package(LibKGAPI2 1.9.81 QUIET CONFIG) set_package_properties(LibKGAPI2 PROPERTIES DESCRIPTION KDE-based library for accessing various Google services URL

Re: pbzip2 isn't faster

2014-04-04 Thread Ryan Schmidt
On Apr 4, 2014, at 08:35, Eric A. Borisch wrote: I've definitely had success; the main thing to realize is that pbzip2 can only speed up decompression on a file created by pbzip2. (pbzip2 files are still valid bzip2 files.) Thanks! That was the information I was missing. I’ve sent a