On 02/01/2014 06:01 PM, Darrell Anderson wrote:
Where can I get a copy of your updates? I've read through the bug, but haven't a clue how that translates into what it means to my build scripts.
http://humanreadable.nfshost.com/misc/tde-buildtree.tar.gz
The required changes are in the configuration and paths. Just diff those sections to your build scripts and you'll see.
Darrell
I looked at my build. I already create separate packages for python (3) and python2:
## copy source for Python build cp -r ${pkgbase#*-} sipPy3
## Python version msg "Running python configure.py (python3 based sip)...." cd ${srcdir}/sipPy3 python configure.py CFLAGS="${CFLAGS}" msg "Building - tde-sip (python3 based sip)..." make $NUMJOBS
## Python2 version msg "Running python2 configure.py (sip4-tqt)...." cd ${srcdir}/${pkgbase#*-} python2 configure.py CFLAGS="${CFLAGS}" msg "Building - ${pkgbase}..." make $NUMJOBS
the include directories are the same, so I don't see where changes impact my build. The install of the different packages are as follows:
tde-sip /usr/bin/sip tde-sip /usr/include/python3.3m/sip.h tde-sip /usr/lib/python3.3/site-packages/sip.so tde-sip /usr/lib/python3.3/site-packages/sipconfig.py tde-sip /usr/lib/python3.3/site-packages/sipdistutils.py tde-sip /usr/share/licenses/tde-sip/LICENSE
tde-sip4-tqt /usr/include/python2.7/sip.h tde-sip4-tqt /usr/lib/python2.7/site-packages/sip.so tde-sip4-tqt /usr/lib/python2.7/site-packages/sipconfig.py tde-sip4-tqt /usr/lib/python2.7/site-packages/sipdistutils.py tde-sip4-tqt /usr/share/licenses/tde-sip4-tqt/LICENSE
Am I missing anything here?