Differences between revisions 1 and 5 (spanning 4 versions)
Revision 1 as of 2007-03-23 12:53:30
Size: 373
Editor: 194-236-110-194
Comment: shatan.com
Revision 5 as of 2007-07-18 12:39:01
Size: 1394
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
<a href="http://poker-theory.hutwistina.com">poker theory</a> <br />
<a href="http://poker-tournament.hutwistina.com">poker tournament</a> <br />
<a href="http://internet-poker.hutwistina.com">internet poker</a> <br />
<a href="http://poker-stars.net.hutwistina.com">poker stars.net</a> <br />
<a href="http://pacfic-poker.hutwistina.com">pacfic poker</a> <br />
Note on a solution to problems running the installer for SystemConfig 0.3 on a MacBook Pro running OS 10.4:
 
<pre>
Subject: Pythonic wrapper for the Apple's SystemConfiguration API
Date: Dec 16, 2006 12:59 PM

Bob:

I was trying to install the SystemConfig python wrapper in order to use Nicholas Riley's OpenVPN helper script
(http://njr.sabi.net/2005/08/04/overriding-dns-for-domains-in-os-x-tiger/ )

I'm not a python expert by any stretch, but when I ran "setup.py install", I got this error:

warngin: no files found matching '*' under directory 'build/lib.macosx-10.3-fat-2.4/SystemConfiguration/UNSystemConfiguration.framework'


Changing this line in the setup.py script:
        template = ['recursive-include build/lib.%s-%s/%s/UNSystemConfiguration.framework *' % (get_platform(), get_python_version(), NAME),],

to this:
        template = ['recursive-include build/lib.%s-%s/%s/ Default/UNSystemConfiguration.framework *' % (get_platform(), get_python_version(), NAME),],

finds the files and eliminates the warning.

Is this something which should be fixed? Or did I misunderstand something about the install process?
If I just failed to read some instructions, then forgive my oversight.

</pre>

I just tried to add the above to http://wiki.python.org/moin/MacPython/SystemConfiguration to no avail. Perhaps someone with patience could add

Note on a solution to problems running the installer for SystemConfig 0.3 on a MacBook Pro running OS 10.4:

<pre> Subject: Pythonic wrapper for the Apple's SystemConfiguration API Date: Dec 16, 2006 12:59 PM

Bob:

I was trying to install the SystemConfig python wrapper in order to use Nicholas Riley's OpenVPN helper script (http://njr.sabi.net/2005/08/04/overriding-dns-for-domains-in-os-x-tiger/ )

I'm not a python expert by any stretch, but when I ran "setup.py install", I got this error:

warngin: no files found matching '*' under directory 'build/lib.macosx-10.3-fat-2.4/SystemConfiguration/UNSystemConfiguration.framework'

Changing this line in the setup.py script:

  • template = ['recursive-include build/lib.%s-%s/%s/UNSystemConfiguration.framework *' % (get_platform(), get_python_version(), NAME),],

to this:

  • template = ['recursive-include build/lib.%s-%s/%s/ Default/UNSystemConfiguration.framework *' % (get_platform(), get_python_version(), NAME),],

finds the files and eliminates the warning.

Is this something which should be fixed? Or did I misunderstand something about the install process? If I just failed to read some instructions, then forgive my oversight.

</pre>

I just tried to add the above to http://wiki.python.org/moin/MacPython/SystemConfiguration to no avail. Perhaps someone with patience could add

MacPython/SystemConfiguration (last edited 2008-11-15 14:01:17 by localhost)

Unable to edit the page? See the FrontPage for instructions.