[ray@localhost ~]$ rhc app create mezzanine python-3.3 postgresql-9.2 Application Options ------------------- Domain: tjdz Cartridges: python-3.3, postgresql-9.2 Gear Size: default Scaling: no Creating application 'mezzanine' ... done PostgreSQL 9.2 database added. Please make note of these credentials: Root User: adminum11at1 Root Password: LEVRw7fNwiVv Database Name: mezzanine Connection URL: postgresql://$OPENSHIFT_POSTGRESQL_DB_HOST:$OPENSHIFT_POSTGRESQL_DB_PORT Waiting for your DNS name to be available ... done 正克隆到 'mezzanine'... The authenticity of host 'mezzanine-tjdz.rhcloud.com (54.234.44.56)' can't be established. RSA key fingerprint is cf:ee:77:cb:0e:fc:02:d7:72:7e:ae:80:c0:90:88:a7. Are you sure you want to continue connecting (yes/no)? yes Warning: Permanently added 'mezzanine-tjdz.rhcloud.com,54.234.44.56' (RSA) to the list of known hosts. Your application 'mezzanine' is now available. URL: http://mezzanine-tjdz.rhcloud.com/ SSH to: 5418e7d1e0b8cda2900008ac@mezzanine-tjdz.rhcloud.com Git remote: ssh://5418e7d1e0b8cda2900008ac@mezzanine-tjdz.rhcloud.com/~/git/mezzanine.git/ Cloned to: /home/ray/mezzanine Run 'rhc show-app mezzanine' for more details about your app. [ray@localhost ~]$ rhc env set PROJECT_NAME=mezzanine --app mezzanine Setting environment variable(s) ... done [ray@localhost ~]$ rhc env set OPENSHIFT_PYTHON_WSGI_APPLICATION=mezzanine/mezzanine/wsgi.py --app mezzanine Setting environment variable(s) ... done [ray@localhost ~]$ rhc env set DEBUG=True --app mezzanine Setting environment variable(s) ... done [ray@localhost ~]$ cd mezzanine/ [ray@localhost mezzanine]$ ls requirements.txt setup.py wsgi.py [ray@localhost mezzanine]$ rhc env unset DEBUG Removing environment variables is a destructive operation that may result in loss of data. DEBUG Are you sure you wish to remove the environment variable(s) above from application 'mezzanine'? (yes|no): yes Removing environment variable(s) ... done [ray@localhost mezzanine]$ git remote add openshift-mezzanine-py3 -m master git://github.com/pauricthelodger/openshift-mezzanine-py3.git [ray@localhost mezzanine]$ git pull -s recursive -X theirs openshift-mezzanine-py3 master warning: no common commits remote: Counting objects: 97, done. remote: Total 97 (delta 0), reused 0 (delta 0) Unpacking objects: 100% (97/97), done. 来自 git://github.com/pauricthelodger/openshift-mezzanine-py3 * branch master -> FETCH_HEAD * [新分支] master -> openshift-mezzanine-py3/master 自动合并 setup.py 自动合并 requirements.txt Error detected while processing /etc/virc: line 25: E10: \ should be followed by /, ? or & line 26: E10: \ should be followed by /, ? or & line 27: E10: \ should be followed by /, ? or & Press ENTER or type command to continue Merge made by the 'recursive' strategy. .gitignore | 7 + .openshift/action_hooks/build | 79 +++++++ .openshift/action_hooks/deploy | 22 ++ .openshift/action_hooks/post_deploy | 4 + .openshift/action_hooks/pre_build | 5 + LICENSE.txt | 22 ++ README.md | 80 +++++++ project-name/manage.py | 20 ++ project-name/project-name/__init__.py | 0 project-name/project-name/settings.py | 426 ++++++++++++++++++++++++++++++++++ project-name/project-name/urls.py | 91 ++++++++ project-name/project-name/wsgi.py | 24 ++ requirements.txt | 2 + setup.py | 18 +- 14 files changed, 792 insertions(+), 8 deletions(-) create mode 100644 .gitignore create mode 100755 .openshift/action_hooks/build create mode 100755 .openshift/action_hooks/deploy create mode 100755 .openshift/action_hooks/post_deploy create mode 100755 .openshift/action_hooks/pre_build create mode 100644 LICENSE.txt create mode 100644 README.md create mode 100644 project-name/manage.py create mode 100644 project-name/project-name/__init__.py create mode 100644 project-name/project-name/settings.py create mode 100644 project-name/project-name/urls.py create mode 100644 project-name/project-name/wsgi.py [ray@localhost mezzanine]$ ls LICENSE.txt project-name README.md requirements.txt setup.py wsgi.py [ray@localhost mezzanine]$ vi setup.py [ray@localhost mezzanine]$ cd .openshift/ [ray@localhost .openshift]$ cd action_hooks/ [ray@localhost action_hooks]$ vi build [ray@localhost action_hooks]$ ls build deploy post_deploy pre_build README.md [ray@localhost action_hooks]$ cd .. [ray@localhost .openshift]$ ls action_hooks cron markers README.md [ray@localhost .openshift]$ cd .. [ray@localhost mezzanine]$ ls LICENSE.txt project-name README.md requirements.txt setup.py wsgi.py [ray@localhost mezzanine]$ cd project-name/ [ray@localhost project-name]$ ls manage.py project-name [ray@localhost project-name]$ cd project-name/ [ray@localhost project-name]$ vi settings.py [ray@localhost project-name]$ ls __init__.py settings.py urls.py wsgi.py [ray@localhost project-name]$ vi urls.py [ray@localhost project-name]$ git push warning: push.default 尚未设置,它的默认值在 Git 2.0 从 'matching' 变更为 'simple'。若要不再显示本信息并保持传统习惯,进行如下设置: git config --global push.default matching 若要不再显示本信息并从现在开始采用新的使用习惯,设置: git config --global push.default simple 当 push.default 设置为 'matching' 后,git 将推送和远程同名的所有 本地分支。 从 Git 2.0 开始,Git 缺省采用更为保守的 'simple' 模式,只推送当前 分支到远程关联的同名分支,即 'git push' 推送当前分支。 参见 'git help config' 并查找 'push.default' 以获取更多信息。 ('simple' 模式由 Git 1.7.11 版本引入。如果您有时要使用老版本的 Git, 为保持兼容,请用 'current' 代替 'simple') Counting objects: 91, done. Delta compression using up to 2 threads. Compressing objects: 100% (83/83), done. Writing objects: 100% (85/85), 19.94 KiB | 0 bytes/s, done. Total 85 (delta 43), reused 0 (delta 0) remote: Stopping Python 3.3 cartridge remote: Waiting for stop to finish remote: Waiting for stop to finish remote: Stopping Postgres cartridge remote: Building git ref 'master', commit 949a729 remote: Activating virtenv remote: Checking for pip dependency listed in requirements.txt file.. remote: Downloading/unpacking Django==1.7 (from -r /var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/repo/requirements.txt (line 1)) remote: http://mirror1.ops.rhcloud.com/mirror/python/web/simple/Django/1.7 uses an insecure transport scheme (http). Consider using https if mirror1.ops.rhcloud.com has it available remote: http://mirror1.ops.rhcloud.com/mirror/python/web/simple/Django/ uses an insecure transport scheme (http). Consider using https if mirror1.ops.rhcloud.com has it available remote: Downloading/unpacking Mezzanine==3.1.10 (from -r /var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/repo/requirements.txt (line 2)) remote: http://mirror1.ops.rhcloud.com/mirror/python/web/simple/Mezzanine/3.1.10 uses an insecure transport scheme (http). Consider using https if mirror1.ops.rhcloud.com has it available remote: http://mirror1.ops.rhcloud.com/mirror/python/web/simple/Mezzanine/ uses an insecure transport scheme (http). Consider using https if mirror1.ops.rhcloud.com has it available remote: Downloading/unpacking pillow (from Mezzanine==3.1.10->-r /var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/repo/requirements.txt (line 2)) remote: Real name of requirement pillow is Pillow remote: http://mirror1.ops.rhcloud.com/mirror/python/web/simple/Pillow/ uses an insecure transport scheme (http). Consider using https if mirror1.ops.rhcloud.com has it available remote: Running setup.py (path:/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/setup.py) egg_info for package pillow remote: remote: warning: no files found matching '*.bdf' under directory 'Images' remote: warning: no files found matching '*.fli' under directory 'Images' remote: warning: no files found matching '*.gif' under directory 'Images' remote: warning: no files found matching '*.icns' under directory 'Images' remote: warning: no files found matching '*.ico' under directory 'Images' remote: warning: no files found matching '*.jpg' under directory 'Images' remote: warning: no files found matching '*.pbm' under directory 'Images' remote: warning: no files found matching '*.pil' under directory 'Images' remote: warning: no files found matching '*.png' under directory 'Images' remote: warning: no files found matching '*.ppm' under directory 'Images' remote: warning: no files found matching '*.psd' under directory 'Images' remote: warning: no files found matching '*.tar' under directory 'Images' remote: warning: no files found matching '*.webp' under directory 'Images' remote: warning: no files found matching '*.xpm' under directory 'Images' remote: warning: no files found matching 'README' under directory 'Sane' remote: warning: no files found matching 'README' under directory 'Scripts' remote: warning: no files found matching '*.txt' under directory 'Tk' remote: Downloading/unpacking requests-oauthlib>=0.4 (from Mezzanine==3.1.10->-r /var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/repo/requirements.txt (line 2)) remote: http://mirror1.ops.rhcloud.com/mirror/python/web/simple/requests-oauthlib/ uses an insecure transport scheme (http). Consider using https if mirror1.ops.rhcloud.com has it available remote: Downloading requests_oauthlib-0.4.1-py2.py3-none-any.whl remote: Downloading/unpacking beautifulsoup4==4.1.3 (from Mezzanine==3.1.10->-r /var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/repo/requirements.txt (line 2)) remote: http://mirror1.ops.rhcloud.com/mirror/python/web/simple/beautifulsoup4/4.1.3 uses an insecure transport scheme (http). Consider using https if mirror1.ops.rhcloud.com has it available remote: http://mirror1.ops.rhcloud.com/mirror/python/web/simple/beautifulsoup4/ uses an insecure transport scheme (http). Consider using https if mirror1.ops.rhcloud.com has it available remote: Running setup.py (path:/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/beautifulsoup4/setup.py) egg_info for package beautifulsoup4 remote: remote: Downloading/unpacking bleach>=1.4 (from Mezzanine==3.1.10->-r /var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/repo/requirements.txt (line 2)) remote: http://mirror1.ops.rhcloud.com/mirror/python/web/simple/bleach/ uses an insecure transport scheme (http). Consider using https if mirror1.ops.rhcloud.com has it available remote: Downloading bleach-1.4.tar.gz remote: Running setup.py (path:/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/bleach/setup.py) egg_info for package bleach remote: remote: Downloading/unpacking filebrowser-safe>=0.3.4 (from Mezzanine==3.1.10->-r /var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/repo/requirements.txt (line 2)) remote: Real name of requirement filebrowser-safe is filebrowser_safe remote: http://mirror1.ops.rhcloud.com/mirror/python/web/simple/filebrowser_safe/ uses an insecure transport scheme (http). Consider using https if mirror1.ops.rhcloud.com has it available remote: Downloading/unpacking requests>=2.1.0 (from Mezzanine==3.1.10->-r /var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/repo/requirements.txt (line 2)) remote: http://mirror1.ops.rhcloud.com/mirror/python/web/simple/requests/ uses an insecure transport scheme (http). Consider using https if mirror1.ops.rhcloud.com has it available remote: Downloading/unpacking grappelli-safe>=0.3.12 (from Mezzanine==3.1.10->-r /var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/repo/requirements.txt (line 2)) remote: Real name of requirement grappelli-safe is grappelli_safe remote: http://mirror1.ops.rhcloud.com/mirror/python/web/simple/grappelli_safe/ uses an insecure transport scheme (http). Consider using https if mirror1.ops.rhcloud.com has it available remote: Downloading/unpacking tzlocal==1.0 (from Mezzanine==3.1.10->-r /var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/repo/requirements.txt (line 2)) remote: http://mirror1.ops.rhcloud.com/mirror/python/web/simple/tzlocal/1.0 uses an insecure transport scheme (http). Consider using https if mirror1.ops.rhcloud.com has it available remote: http://mirror1.ops.rhcloud.com/mirror/python/web/simple/tzlocal/ uses an insecure transport scheme (http). Consider using https if mirror1.ops.rhcloud.com has it available remote: Downloading tzlocal-1.0.zip remote: Running setup.py (path:/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/tzlocal/setup.py) egg_info for package tzlocal remote: remote: Downloading/unpacking future==0.9.0 (from Mezzanine==3.1.10->-r /var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/repo/requirements.txt (line 2)) remote: http://mirror1.ops.rhcloud.com/mirror/python/web/simple/future/0.9.0 uses an insecure transport scheme (http). Consider using https if mirror1.ops.rhcloud.com has it available remote: http://mirror1.ops.rhcloud.com/mirror/python/web/simple/future/ uses an insecure transport scheme (http). Consider using https if mirror1.ops.rhcloud.com has it available remote: Running setup.py (path:/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/future/setup.py) egg_info for package future remote: remote: Downloading/unpacking oauthlib>=0.6.2 (from requests-oauthlib>=0.4->Mezzanine==3.1.10->-r /var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/repo/requirements.txt (line 2)) remote: http://mirror1.ops.rhcloud.com/mirror/python/web/simple/oauthlib/ uses an insecure transport scheme (http). Consider using https if mirror1.ops.rhcloud.com has it available remote: Running setup.py (path:/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/oauthlib/setup.py) egg_info for package oauthlib remote: remote: Requirement already satisfied (use --upgrade to upgrade): six in /opt/rh/python33/root/usr/lib/python3.3/site-packages (from bleach>=1.4->Mezzanine==3.1.10->-r /var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/repo/requirements.txt (line 2)) remote: Downloading/unpacking html5lib>=0.999 (from bleach>=1.4->Mezzanine==3.1.10->-r /var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/repo/requirements.txt (line 2)) remote: http://mirror1.ops.rhcloud.com/mirror/python/web/simple/html5lib/ uses an insecure transport scheme (http). Consider using https if mirror1.ops.rhcloud.com has it available remote: Running setup.py (path:/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/html5lib/setup.py) egg_info for package html5lib remote: remote: Downloading/unpacking pytz (from tzlocal==1.0->Mezzanine==3.1.10->-r /var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/repo/requirements.txt (line 2)) remote: http://mirror1.ops.rhcloud.com/mirror/python/web/simple/pytz/ uses an insecure transport scheme (http). Consider using https if mirror1.ops.rhcloud.com has it available remote: Running setup.py (path:/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pytz/setup.py) egg_info for package pytz remote: remote: Installing collected packages: Django, Mezzanine, pillow, requests-oauthlib, beautifulsoup4, bleach, filebrowser-safe, requests, grappelli-safe, tzlocal, future, oauthlib, html5lib, pytz remote: Running setup.py install for pillow remote: remote: warning: no files found matching '*.bdf' under directory 'Images' remote: warning: no files found matching '*.fli' under directory 'Images' remote: warning: no files found matching '*.gif' under directory 'Images' remote: warning: no files found matching '*.icns' under directory 'Images' remote: warning: no files found matching '*.ico' under directory 'Images' remote: warning: no files found matching '*.jpg' under directory 'Images' remote: warning: no files found matching '*.pbm' under directory 'Images' remote: warning: no files found matching '*.pil' under directory 'Images' remote: warning: no files found matching '*.png' under directory 'Images' remote: warning: no files found matching '*.ppm' under directory 'Images' remote: warning: no files found matching '*.psd' under directory 'Images' remote: warning: no files found matching '*.tar' under directory 'Images' remote: warning: no files found matching '*.webp' under directory 'Images' remote: warning: no files found matching '*.xpm' under directory 'Images' remote: warning: no files found matching 'README' under directory 'Sane' remote: warning: no files found matching 'README' under directory 'Scripts' remote: warning: no files found matching '*.txt' under directory 'Tk' remote: building 'PIL._imaging' extension remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c _imaging.c -o build/temp.linux-x86_64-3.3/_imaging.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/Antialias.c -o build/temp.linux-x86_64-3.3/libImaging/Antialias.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/Bands.c -o build/temp.linux-x86_64-3.3/libImaging/Bands.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/BitDecode.c -o build/temp.linux-x86_64-3.3/libImaging/BitDecode.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/Blend.c -o build/temp.linux-x86_64-3.3/libImaging/Blend.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/Chops.c -o build/temp.linux-x86_64-3.3/libImaging/Chops.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/Convert.c -o build/temp.linux-x86_64-3.3/libImaging/Convert.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c decode.c -o build/temp.linux-x86_64-3.3/decode.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c encode.c -o build/temp.linux-x86_64-3.3/encode.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/ConvertYCbCr.c -o build/temp.linux-x86_64-3.3/libImaging/ConvertYCbCr.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/Copy.c -o build/temp.linux-x86_64-3.3/libImaging/Copy.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c map.c -o build/temp.linux-x86_64-3.3/map.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/Crc32.c -o build/temp.linux-x86_64-3.3/libImaging/Crc32.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c display.c -o build/temp.linux-x86_64-3.3/display.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/Crop.c -o build/temp.linux-x86_64-3.3/libImaging/Crop.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c outline.c -o build/temp.linux-x86_64-3.3/outline.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/Dib.c -o build/temp.linux-x86_64-3.3/libImaging/Dib.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/Draw.c -o build/temp.linux-x86_64-3.3/libImaging/Draw.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c path.c -o build/temp.linux-x86_64-3.3/path.o remote: libImaging/Draw.c: In function 'ImagingDrawWideLine': remote: libImaging/Draw.c:603: warning: unused variable 'vertices' remote: path.c: In function 'path_subscript': remote: path.c:586: warning: dereferencing type-punned pointer will break strict-aliasing rules remote: path.c:586: warning: dereferencing pointer 'item.81' does break strict-aliasing rules remote: path.c:586: note: initialized from here remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/Access.c -o build/temp.linux-x86_64-3.3/libImaging/Access.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/AlphaComposite.c -o build/temp.linux-x86_64-3.3/libImaging/AlphaComposite.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/Geometry.c -o build/temp.linux-x86_64-3.3/libImaging/Geometry.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/Effects.c -o build/temp.linux-x86_64-3.3/libImaging/Effects.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/EpsEncode.c -o build/temp.linux-x86_64-3.3/libImaging/EpsEncode.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/File.c -o build/temp.linux-x86_64-3.3/libImaging/File.o remote: libImaging/File.c: In function 'ImagingSaveRaw': remote: libImaging/File.c:145: warning: ignoring return value of 'fwrite', declared with attribute warn_unused_result remote: libImaging/File.c:152: warning: ignoring return value of 'fwrite', declared with attribute warn_unused_result remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/Fill.c -o build/temp.linux-x86_64-3.3/libImaging/Fill.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/Filter.c -o build/temp.linux-x86_64-3.3/libImaging/Filter.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/GetBBox.c -o build/temp.linux-x86_64-3.3/libImaging/GetBBox.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/FliDecode.c -o build/temp.linux-x86_64-3.3/libImaging/FliDecode.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/GifDecode.c -o build/temp.linux-x86_64-3.3/libImaging/GifDecode.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/Matrix.c -o build/temp.linux-x86_64-3.3/libImaging/Matrix.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/GifEncode.c -o build/temp.linux-x86_64-3.3/libImaging/GifEncode.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/ModeFilter.c -o build/temp.linux-x86_64-3.3/libImaging/ModeFilter.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/MspDecode.c -o build/temp.linux-x86_64-3.3/libImaging/MspDecode.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/HexDecode.c -o build/temp.linux-x86_64-3.3/libImaging/HexDecode.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/Negative.c -o build/temp.linux-x86_64-3.3/libImaging/Negative.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/Histo.c -o build/temp.linux-x86_64-3.3/libImaging/Histo.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/Offset.c -o build/temp.linux-x86_64-3.3/libImaging/Offset.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/Pack.c -o build/temp.linux-x86_64-3.3/libImaging/Pack.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/JpegDecode.c -o build/temp.linux-x86_64-3.3/libImaging/JpegDecode.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/PackDecode.c -o build/temp.linux-x86_64-3.3/libImaging/PackDecode.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/JpegEncode.c -o build/temp.linux-x86_64-3.3/libImaging/JpegEncode.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/Palette.c -o build/temp.linux-x86_64-3.3/libImaging/Palette.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/LzwDecode.c -o build/temp.linux-x86_64-3.3/libImaging/LzwDecode.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/Paste.c -o build/temp.linux-x86_64-3.3/libImaging/Paste.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/Quant.c -o build/temp.linux-x86_64-3.3/libImaging/Quant.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/RawDecode.c -o build/temp.linux-x86_64-3.3/libImaging/RawDecode.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/RawEncode.c -o build/temp.linux-x86_64-3.3/libImaging/RawEncode.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/QuantOctree.c -o build/temp.linux-x86_64-3.3/libImaging/QuantOctree.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/Storage.c -o build/temp.linux-x86_64-3.3/libImaging/Storage.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/SunRleDecode.c -o build/temp.linux-x86_64-3.3/libImaging/SunRleDecode.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/QuantHash.c -o build/temp.linux-x86_64-3.3/libImaging/QuantHash.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/TgaRleDecode.c -o build/temp.linux-x86_64-3.3/libImaging/TgaRleDecode.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/Unpack.c -o build/temp.linux-x86_64-3.3/libImaging/Unpack.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/QuantHeap.c -o build/temp.linux-x86_64-3.3/libImaging/QuantHeap.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/PcdDecode.c -o build/temp.linux-x86_64-3.3/libImaging/PcdDecode.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/PcxDecode.c -o build/temp.linux-x86_64-3.3/libImaging/PcxDecode.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/PcxEncode.c -o build/temp.linux-x86_64-3.3/libImaging/PcxEncode.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/Point.c -o build/temp.linux-x86_64-3.3/libImaging/Point.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/UnpackYCC.c -o build/temp.linux-x86_64-3.3/libImaging/UnpackYCC.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/RankFilter.c -o build/temp.linux-x86_64-3.3/libImaging/RankFilter.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/UnsharpMask.c -o build/temp.linux-x86_64-3.3/libImaging/UnsharpMask.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/XbmEncode.c -o build/temp.linux-x86_64-3.3/libImaging/XbmEncode.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/ZipDecode.c -o build/temp.linux-x86_64-3.3/libImaging/ZipDecode.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/XbmDecode.c -o build/temp.linux-x86_64-3.3/libImaging/XbmDecode.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/ZipEncode.c -o build/temp.linux-x86_64-3.3/libImaging/ZipEncode.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/TiffDecode.c -o build/temp.linux-x86_64-3.3/libImaging/TiffDecode.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/Incremental.c -o build/temp.linux-x86_64-3.3/libImaging/Incremental.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/Jpeg2KDecode.c -o build/temp.linux-x86_64-3.3/libImaging/Jpeg2KDecode.o remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ -DHAVE_LIBTIFF -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c libImaging/Jpeg2KEncode.c -o build/temp.linux-x86_64-3.3/libImaging/Jpeg2KEncode.o remote: Building using 2 processes remote: gcc -pthread -shared -L/opt/rh/python33/root/usr/lib64 -L/usr/lib6464 build/temp.linux-x86_64-3.3/_imaging.o build/temp.linux-x86_64-3.3/decode.o build/temp.linux-x86_64-3.3/encode.o build/temp.linux-x86_64-3.3/map.o build/temp.linux-x86_64-3.3/display.o build/temp.linux-x86_64-3.3/outline.o build/temp.linux-x86_64-3.3/path.o build/temp.linux-x86_64-3.3/libImaging/Access.o build/temp.linux-x86_64-3.3/libImaging/AlphaComposite.o build/temp.linux-x86_64-3.3/libImaging/Antialias.o build/temp.linux-x86_64-3.3/libImaging/Bands.o build/temp.linux-x86_64-3.3/libImaging/BitDecode.o build/temp.linux-x86_64-3.3/libImaging/Blend.o build/temp.linux-x86_64-3.3/libImaging/Chops.o build/temp.linux-x86_64-3.3/libImaging/Convert.o build/temp.linux-x86_64-3.3/libImaging/ConvertYCbCr.o build/temp.linux-x86_64-3.3/libImaging/Copy.o build/temp.linux-x86_64-3.3/libImaging/Crc32.o build/temp.linux-x86_64-3.3/libImaging/Crop.o build/temp.linux-x86_64-3.3/libImaging/Dib.o build/temp.linux-x86_64-3.3/libImaging/Draw.o build/temp.linux-x86_64-3.3/libImaging/Effects.o build/temp.linux-x86_64-3.3/libImaging/EpsEncode.o build/temp.linux-x86_64-3.3/libImaging/File.o build/temp.linux-x86_64-3.3/libImaging/Fill.o build/temp.linux-x86_64-3.3/libImaging/Filter.o build/temp.linux-x86_64-3.3/libImaging/FliDecode.o build/temp.linux-x86_64-3.3/libImaging/Geometry.o build/temp.linux-x86_64-3.3/libImaging/GetBBox.o build/temp.linux-x86_64-3.3/libImaging/GifDecode.o build/temp.linux-x86_64-3.3/libImaging/GifEncode.o build/temp.linux-x86_64-3.3/libImaging/HexDecode.o build/temp.linux-x86_64-3.3/libImaging/Histo.o build/temp.linux-x86_64-3.3/libImaging/JpegDecode.o build/temp.linux-x86_64-3.3/libImaging/JpegEncode.o build/temp.linux-x86_64-3.3/libImaging/LzwDecode.o build/temp.linux-x86_64-3.3/libImaging/Matrix.o build/temp.linux-x86_64-3.3/libImaging/ModeFilter.o build/temp.linux-x86_64-3.3/libImaging/MspDecode.o build/temp.linux-x86_64-3.3/libImaging/Negative.o build/temp.linux-x86_64-3.3/libImaging/Offset.o build/temp.linux-x86_64-3.3/libImaging/Pack.o build/temp.linux-x86_64-3.3/libImaging/PackDecode.o build/temp.linux-x86_64-3.3/libImaging/Palette.o build/temp.linux-x86_64-3.3/libImaging/Paste.o build/temp.linux-x86_64-3.3/libImaging/Quant.o build/temp.linux-x86_64-3.3/libImaging/QuantOctree.o build/temp.linux-x86_64-3.3/libImaging/QuantHash.o build/temp.linux-x86_64-3.3/libImaging/QuantHeap.o build/temp.linux-x86_64-3.3/libImaging/PcdDecode.o build/temp.linux-x86_64-3.3/libImaging/PcxDecode.o build/temp.linux-x86_64-3.3/libImaging/PcxEncode.o build/temp.linux-x86_64-3.3/libImaging/Point.o build/temp.linux-x86_64-3.3/libImaging/RankFilter.o build/temp.linux-x86_64-3.3/libImaging/RawDecode.o build/temp.linux-x86_64-3.3/libImaging/RawEncode.o build/temp.linux-x86_64-3.3/libImaging/Storage.o build/temp.linux-x86_64-3.3/libImaging/SunRleDecode.o build/temp.linux-x86_64-3.3/libImaging/TgaRleDecode.o build/temp.linux-x86_64-3.3/libImaging/Unpack.o build/temp.linux-x86_64-3.3/libImaging/UnpackYCC.o build/temp.linux-x86_64-3.3/libImaging/UnsharpMask.o build/temp.linux-x86_64-3.3/libImaging/XbmDecode.o build/temp.linux-x86_64-3.3/libImaging/XbmEncode.o build/temp.linux-x86_64-3.3/libImaging/ZipDecode.o build/temp.linux-x86_64-3.3/libImaging/ZipEncode.o build/temp.linux-x86_64-3.3/libImaging/TiffDecode.o build/temp.linux-x86_64-3.3/libImaging/Incremental.o build/temp.linux-x86_64-3.3/libImaging/Jpeg2KDecode.o build/temp.linux-x86_64-3.3/libImaging/Jpeg2KEncode.o -L/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/lib -L/lib64 -L/usr/lib64 -L/usr/local/lib -L/usr/lib -L/opt/rh/python33/root/usr/lib64 -ljpeg -lz -ltiff -lpython3.3m -o build/lib.linux-x86_64-3.3/PIL/_imaging.cpython-33m.so remote: building 'PIL._imagingft' extension remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c _imagingft.c -o build/temp.linux-x86_64-3.3/_imagingft.o remote: Building using 2 processes remote: gcc -pthread -shared -L/opt/rh/python33/root/usr/lib64 -L/usr/lib6464 build/temp.linux-x86_64-3.3/_imagingft.o -L/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/lib -L/lib64 -L/usr/lib64 -L/usr/local/lib -L/usr/lib -L/opt/rh/python33/root/usr/lib64 -lfreetype -lpython3.3m -o build/lib.linux-x86_64-3.3/PIL/_imagingft.cpython-33m.so remote: building 'PIL._imagingmath' extension remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c _imagingmath.c -o build/temp.linux-x86_64-3.3/_imagingmath.o remote: Building using 2 processes remote: gcc -pthread -shared -L/opt/rh/python33/root/usr/lib64 -L/usr/lib6464 build/temp.linux-x86_64-3.3/_imagingmath.o -L/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/lib -L/lib64 -L/usr/lib64 -L/usr/local/lib -L/usr/lib -L/opt/rh/python33/root/usr/lib64 -lpython3.3m -o build/lib.linux-x86_64-3.3/PIL/_imagingmath.cpython-33m.so remote: building 'PIL._imagingmorph' extension remote: gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -I/opt/rh/python33/root/usr/include-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -I/usr/include/freetype2 -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/build/pillow/libImaging -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/include -I/usr/local/include -I/usr/include -I/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/include -I/opt/rh/python33/root/usr/include/python3.3m -c _imagingmorph.c -o build/temp.linux-x86_64-3.3/_imagingmorph.o remote: Building using 2 processes remote: gcc -pthread -shared -L/opt/rh/python33/root/usr/lib64 -L/usr/lib6464 build/temp.linux-x86_64-3.3/_imagingmorph.o -L/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/lib -L/lib64 -L/usr/lib64 -L/usr/local/lib -L/usr/lib -L/opt/rh/python33/root/usr/lib64 -lpython3.3m -o build/lib.linux-x86_64-3.3/PIL/_imagingmorph.cpython-33m.so remote: -------------------------------------------------------------------- remote: PIL SETUP SUMMARY remote: -------------------------------------------------------------------- remote: version Pillow 2.5.3 remote: platform linux 3.3.2 (default, Mar 20 2014, 20:25:51) remote: [GCC 4.4.6 20120305 (Red Hat 4.4.6-4)] remote: -------------------------------------------------------------------- remote: *** TKINTER support not available remote: --- JPEG support available remote: *** OPENJPEG (JPEG2000) support not available remote: --- ZLIB (PNG/ZIP) support available remote: --- LIBTIFF support available remote: --- FREETYPE2 support available remote: *** LITTLECMS2 support not available remote: *** WEBP support not available remote: *** WEBPMUX support not available remote: -------------------------------------------------------------------- remote: To add a missing option, make sure you have the required remote: library, and set the corresponding ROOT variable in the remote: setup.py script. remote: remote: To check the build, run the selftest.py script. remote: remote: changing mode of build/scripts-3.3/pilprint.py from 600 to 755 remote: changing mode of build/scripts-3.3/pildriver.py from 600 to 755 remote: changing mode of build/scripts-3.3/pilconvert.py from 600 to 755 remote: changing mode of build/scripts-3.3/pilfont.py from 600 to 755 remote: changing mode of build/scripts-3.3/pilfile.py from 600 to 755 remote: changing mode of /var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/bin/pilprint.py to 755 remote: changing mode of /var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/bin/pildriver.py to 755 remote: changing mode of /var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/bin/pilconvert.py to 755 remote: changing mode of /var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/bin/pilfont.py to 755 remote: changing mode of /var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/bin/pilfile.py to 755 remote: Running setup.py install for beautifulsoup4 remote: Skipping implicit fixer: buffer remote: Skipping implicit fixer: idioms remote: Skipping implicit fixer: set_literal remote: Skipping implicit fixer: ws_comma remote: remote: Running setup.py install for bleach remote: remote: Running setup.py install for tzlocal remote: remote: Running setup.py install for future remote: remote: Installing futurize script to /var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/bin remote: Running setup.py install for oauthlib remote: remote: Running setup.py install for html5lib remote: remote: Running setup.py install for pytz remote: remote: Successfully installed Django Mezzanine pillow requests-oauthlib beautifulsoup4 bleach filebrowser-safe requests grappelli-safe tzlocal future oauthlib html5lib pytz remote: Cleaning up... remote: Running setup.py script.. remote: running develop remote: running egg_info remote: creating Project_Name.egg-info remote: writing top-level names to Project_Name.egg-info/top_level.txt remote: writing dependency_links to Project_Name.egg-info/dependency_links.txt remote: writing Project_Name.egg-info/PKG-INFO remote: writing manifest file 'Project_Name.egg-info/SOURCES.txt' remote: reading manifest file 'Project_Name.egg-info/SOURCES.txt' remote: writing manifest file 'Project_Name.egg-info/SOURCES.txt' remote: running build_ext remote: Creating /var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/lib/python3.3/site-packages/Project-Name.egg-link (link to .) remote: Adding Project-Name 0.1 to easy-install.pth file remote: remote: Installed /var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/repo remote: Processing dependencies for Project-Name==0.1 remote: Finished processing dependencies for Project-Name==0.1 remote: Preparing build for deployment remote: Deployment id is 105de527 remote: Activating deployment remote: Starting Postgres cartridge remote: Postgres started remote: Executing 'python /var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/repo/mezzanine/manage.py migrate --noinput' remote: python: can't open file '/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/repo/mezzanine/manage.py': [Errno 2] No such file or directory remote: Executing 'python /var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/repo/mezzanine/manage.py collectstatic --noinput' remote: python: can't open file '/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/repo/mezzanine/manage.py': [Errno 2] No such file or directory remote: ------------------------- remote: Git Post-Receive Result: failure remote: Activation status: failure remote: Activation failed for the following gears: remote: 5418e7d1e0b8cda2900008ac (Error activating gear: CLIENT_ERROR: Failed to execute action hook 'deploy' for 5418e7d1e0b8cda2900008ac application mezzanine) remote: Deployment completed with status: failure remote: postreceive failed To ssh://5418e7d1e0b8cda2900008ac@mezzanine-tjdz.rhcloud.com/~/git/mezzanine.git/ 951a6f6..949a729 master -> master [ray@localhost project-name]$ rhc ssh mezzanine Connecting to 5418e7d1e0b8cda2900008ac@mezzanine-tjdz.rhcloud.com ... ********************************************************************* You are accessing a service that is for use only by authorized users. If you do not have authorization, discontinue use at once. Any use of the services is subject to the applicable terms of the agreement which can be found at: https://www.openshift.com/legal ********************************************************************* Welcome to OpenShift shell This shell will assist you in managing OpenShift applications. !!! IMPORTANT !!! IMPORTANT !!! IMPORTANT !!! Shell access is quite powerful and it is possible for you to accidentally damage your application. Proceed with care! If worse comes to worst, destroy your application with "rhc app delete" and recreate it !!! IMPORTANT !!! IMPORTANT !!! IMPORTANT !!! Type "help" for more info. [mezzanine-tjdz.rhcloud.com 5418e7d1e0b8cda2900008ac]\> source $VIRTUAL_ENV/bin/activate (venv) [mezzanine-tjdz.rhcloud.com 5418e7d1e0b8cda2900008ac]\> cd $OPENSHIFT_REPO_DIR/project-name (venv) [mezzanine-tjdz.rhcloud.com project-name]\> python manage.py flush Traceback (most recent call last): File "/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/lib/python3.3/site-packages/django/conf/__init__.py", line 94, in __init__ mod = importlib.import_module(self.SETTINGS_MODULE) File "/opt/rh/python33/root/usr/lib64/python3.3/importlib/__init__.py", line 90, in import_module return _bootstrap._gcd_import(name[level:], package, level) File "", line 1586, in _gcd_import File "", line 1567, in _find_and_load File "", line 1531, in _find_and_load_unlocked ImportError: No module named 'mezzanine.settings' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "manage.py", line 20, in execute_from_command_line(sys.argv) File "/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/lib/python3.3/site-packages/django/core/management/__init__.py", line 385, in execute_from_command_line utility.execute() File "/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/lib/python3.3/site-packages/django/core/management/__init__.py", line 345, in execute settings.INSTALLED_APPS File "/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/lib/python3.3/site-packages/django/conf/__init__.py", line 46, in __getattr__ self._setup(name) File "/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/lib/python3.3/site-packages/django/conf/__init__.py", line 42, in _setup self._wrapped = Settings(settings_module) File "/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/lib/python3.3/site-packages/django/conf/__init__.py", line 98, in __init__ % (self.SETTINGS_MODULE, e) ImportError: Could not import settings 'mezzanine.settings' (Is it on sys.path? Is there an import error in the settings file?): No module named 'mezzanine.settings'