Skip to content

Commit 5a56c8c

Browse files
committed
Updated twisted to 14.0.0
1 parent 68a6d6c commit 5a56c8c

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

recipes/twisted/recipe.sh

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
#!/bin/bash
22

3-
VERSION_twisted=${VERSION_twisted:-11.1}
3+
VERSION_twisted=${VERSION_twisted:-14.0}
44
URL_twisted=http://twistedmatrix.com/Releases/Twisted/$VERSION_twisted/Twisted-$VERSION_twisted.0.tar.bz2
5+
56
DEPS_twisted=(zope)
6-
MD5_twisted=
7+
MD5_twisted=9625c094e0a18da77faa4627b98c9815
78
BUILD_twisted=$BUILD_PATH/twisted/$(get_directory $URL_twisted)
89
RECIPE_twisted=$RECIPES_PATH/twisted
910

1011
function prebuild_twisted() {
11-
true
12+
echo "tty.pyo" >> "${BUILD_PATH}/whitelist.txt"
13+
echo "termios.so" >> "${BUILD_PATH}/whitelist.txt"
1214
}
1315

1416
function shouldbuild_twisted() {
@@ -25,7 +27,7 @@ function build_twisted() {
2527
export LDFLAGS="$LDFLAGS -L$LIBS_PATH"
2628
export LDSHARED="$LIBLINK"
2729

28-
export PYTHONPATH=$BUILD_hostpython/Lib/site-packages
30+
export PYTHONPATH=$BUILD_hostpython/Lib/site-packages:$BUILD_hostpython/build/lib.linux-x86_64-2.7
2931

3032
# fake try to be able to cythonize generated files
3133
$HOSTPYTHON setup.py build_ext

0 commit comments

Comments
 (0)