From ray, 10 Years ago, written in Plain Text.
Embed
  1. [ray@localhost ~]$ rhc app create mezzanine python-3.3 postgresql-9.2
  2. Application Options
  3. -------------------
  4. Domain:     tjdz
  5. Cartridges: python-3.3, postgresql-9.2
  6. Gear Size:  default
  7. Scaling:    no
  8.  
  9. Creating application 'mezzanine' ... done
  10.  
  11.   PostgreSQL 9.2 database added.  Please make note of these credentials:
  12.  
  13.    Root User: adminum11at1
  14.    Root Password: LEVRw7fNwiVv
  15.    Database Name: mezzanine
  16.  
  17. Connection URL: postgresql://$OPENSHIFT_POSTGRESQL_DB_HOST:$OPENSHIFT_POSTGRESQL_DB_PORT
  18.  
  19. Waiting for your DNS name to be available ... done
  20.  
  21. 正克隆到 'mezzanine'...
  22. The authenticity of host 'mezzanine-tjdz.rhcloud.com (54.234.44.56)' can't be established.
  23. RSA key fingerprint is cf:ee:77:cb:0e:fc:02:d7:72:7e:ae:80:c0:90:88:a7.
  24. Are you sure you want to continue connecting (yes/no)? yes
  25. Warning: Permanently added 'mezzanine-tjdz.rhcloud.com,54.234.44.56' (RSA) to the list of known hosts.
  26.  
  27. Your application 'mezzanine' is now available.
  28.  
  29.   URL:        http://mezzanine-tjdz.rhcloud.com/
  30.   SSH to:     5418e7d1e0b8cda2900008ac@mezzanine-tjdz.rhcloud.com
  31.   Git remote: ssh://5418e7d1e0b8cda2900008ac@mezzanine-tjdz.rhcloud.com/~/git/mezzanine.git/
  32.   Cloned to:  /home/ray/mezzanine
  33.  
  34. Run 'rhc show-app mezzanine' for more details about your app.
  35. [ray@localhost ~]$ rhc env set PROJECT_NAME=mezzanine --app mezzanine
  36. Setting environment variable(s) ... done
  37. [ray@localhost ~]$ rhc env set OPENSHIFT_PYTHON_WSGI_APPLICATION=mezzanine/mezzanine/wsgi.py --app mezzanine
  38. Setting environment variable(s) ... done
  39. [ray@localhost ~]$ rhc env set DEBUG=True --app mezzanine
  40. Setting environment variable(s) ... done
  41. [ray@localhost ~]$ cd mezzanine/
  42. [ray@localhost mezzanine]$ ls
  43. requirements.txt  setup.py  wsgi.py
  44. [ray@localhost mezzanine]$ rhc env unset DEBUG
  45. Removing environment variables is a destructive operation that may result in
  46. loss of data.
  47. DEBUG
  48.  
  49. Are you sure you wish to remove the environment variable(s) above from
  50. application 'mezzanine'? (yes|no):
  51. yes
  52.  
  53. Removing environment variable(s) ... done
  54. [ray@localhost mezzanine]$ git remote add openshift-mezzanine-py3 -m master git://github.com/pauricthelodger/openshift-mezzanine-py3.git
  55. [ray@localhost mezzanine]$ git pull -s recursive -X theirs openshift-mezzanine-py3 master
  56. warning: no common commits
  57. remote: Counting objects: 97, done.
  58. remote: Total 97 (delta 0), reused 0 (delta 0)
  59. Unpacking objects: 100% (97/97), done.
  60. 来自 git://github.com/pauricthelodger/openshift-mezzanine-py3
  61.  * branch            master     -> FETCH_HEAD
  62.  * [新分支]          master     -> openshift-mezzanine-py3/master
  63. 自动合并 setup.py
  64. 自动合并 requirements.txt
  65. Error detected while processing /etc/virc:
  66. line   25:
  67. E10: \ should be followed by /, ? or &
  68. line   26:
  69. E10: \ should be followed by /, ? or &
  70. line   27:
  71. E10: \ should be followed by /, ? or &
  72. Press ENTER or type command to continue
  73. Merge made by the 'recursive' strategy.
  74.  .gitignore                            |   7 +
  75.  .openshift/action_hooks/build         |  79 +++++++
  76.  .openshift/action_hooks/deploy        |  22 ++
  77.  .openshift/action_hooks/post_deploy   |   4 +
  78.  .openshift/action_hooks/pre_build     |   5 +
  79.  LICENSE.txt                           |  22 ++
  80.  README.md                             |  80 +++++++
  81.  project-name/manage.py                |  20 ++
  82.  project-name/project-name/__init__.py |   0
  83.  project-name/project-name/settings.py | 426 ++++++++++++++++++++++++++++++++++
  84.  project-name/project-name/urls.py     |  91 ++++++++
  85.  project-name/project-name/wsgi.py     |  24 ++
  86.  requirements.txt                      |   2 +
  87.  setup.py                              |  18 +-
  88.  14 files changed, 792 insertions(+), 8 deletions(-)
  89.  create mode 100644 .gitignore
  90.  create mode 100755 .openshift/action_hooks/build
  91.  create mode 100755 .openshift/action_hooks/deploy
  92.  create mode 100755 .openshift/action_hooks/post_deploy
  93.  create mode 100755 .openshift/action_hooks/pre_build
  94.  create mode 100644 LICENSE.txt
  95.  create mode 100644 README.md
  96.  create mode 100644 project-name/manage.py
  97.  create mode 100644 project-name/project-name/__init__.py
  98.  create mode 100644 project-name/project-name/settings.py
  99.  create mode 100644 project-name/project-name/urls.py
  100.  create mode 100644 project-name/project-name/wsgi.py
  101. [ray@localhost mezzanine]$ ls
  102. LICENSE.txt  project-name  README.md  requirements.txt  setup.py  wsgi.py
  103. [ray@localhost mezzanine]$ vi setup.py
  104. [ray@localhost mezzanine]$ cd .openshift/
  105. [ray@localhost .openshift]$ cd action_hooks/
  106. [ray@localhost action_hooks]$ vi build
  107. [ray@localhost action_hooks]$ ls
  108. build  deploy  post_deploy  pre_build  README.md
  109. [ray@localhost action_hooks]$ cd ..
  110. [ray@localhost .openshift]$ ls
  111. action_hooks  cron  markers  README.md
  112. [ray@localhost .openshift]$ cd ..
  113. [ray@localhost mezzanine]$ ls
  114. LICENSE.txt  project-name  README.md  requirements.txt  setup.py  wsgi.py
  115. [ray@localhost mezzanine]$ cd project-name/
  116. [ray@localhost project-name]$ ls
  117. manage.py  project-name
  118. [ray@localhost project-name]$ cd project-name/
  119. [ray@localhost project-name]$ vi settings.py
  120. [ray@localhost project-name]$ ls
  121. __init__.py  settings.py  urls.py  wsgi.py
  122. [ray@localhost project-name]$ vi urls.py
  123. [ray@localhost project-name]$ git push
  124. warning: push.default 尚未设置,它的默认值在 Git 2.0 从 'matching'
  125. 变更为 'simple'。若要不再显示本信息并保持传统习惯,进行如下设置:
  126.  
  127.   git config --global push.default matching
  128.  
  129. 若要不再显示本信息并从现在开始采用新的使用习惯,设置:
  130.  
  131.   git config --global push.default simple
  132.  
  133. 当 push.default 设置为 'matching' 后,git 将推送和远程同名的所有
  134. 本地分支。
  135.  
  136. 从 Git 2.0 开始,Git 缺省采用更为保守的 'simple' 模式,只推送当前
  137. 分支到远程关联的同名分支,即 'git push' 推送当前分支。
  138.  
  139. 参见 'git help config' 并查找 'push.default' 以获取更多信息。
  140. ('simple' 模式由 Git 1.7.11 版本引入。如果您有时要使用老版本的 Git,
  141. 为保持兼容,请用 'current' 代替 'simple')
  142.  
  143. Counting objects: 91, done.
  144. Delta compression using up to 2 threads.
  145. Compressing objects: 100% (83/83), done.
  146. Writing objects: 100% (85/85), 19.94 KiB | 0 bytes/s, done.
  147. Total 85 (delta 43), reused 0 (delta 0)
  148. remote: Stopping Python 3.3 cartridge
  149. remote: Waiting for stop to finish
  150. remote: Waiting for stop to finish
  151. remote: Stopping Postgres cartridge
  152. remote: Building git ref 'master', commit 949a729
  153. remote: Activating virtenv
  154. remote: Checking for pip dependency listed in requirements.txt file..
  155. remote: Downloading/unpacking Django==1.7 (from -r /var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/repo/requirements.txt (line 1))
  156. 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
  157. 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
  158. remote: Downloading/unpacking Mezzanine==3.1.10 (from -r /var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/repo/requirements.txt (line 2))
  159. 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
  160. 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
  161. remote: Downloading/unpacking pillow (from Mezzanine==3.1.10->-r /var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/repo/requirements.txt (line 2))
  162. remote:   Real name of requirement pillow is Pillow
  163. 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
  164. 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
  165. remote:    
  166. remote:     warning: no files found matching '*.bdf' under directory 'Images'
  167. remote:     warning: no files found matching '*.fli' under directory 'Images'
  168. remote:     warning: no files found matching '*.gif' under directory 'Images'
  169. remote:     warning: no files found matching '*.icns' under directory 'Images'
  170. remote:     warning: no files found matching '*.ico' under directory 'Images'
  171. remote:     warning: no files found matching '*.jpg' under directory 'Images'
  172. remote:     warning: no files found matching '*.pbm' under directory 'Images'
  173. remote:     warning: no files found matching '*.pil' under directory 'Images'
  174. remote:     warning: no files found matching '*.png' under directory 'Images'
  175. remote:     warning: no files found matching '*.ppm' under directory 'Images'
  176. remote:     warning: no files found matching '*.psd' under directory 'Images'
  177. remote:     warning: no files found matching '*.tar' under directory 'Images'
  178. remote:     warning: no files found matching '*.webp' under directory 'Images'
  179. remote:     warning: no files found matching '*.xpm' under directory 'Images'
  180. remote:     warning: no files found matching 'README' under directory 'Sane'
  181. remote:     warning: no files found matching 'README' under directory 'Scripts'
  182. remote:     warning: no files found matching '*.txt' under directory 'Tk'
  183. 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))
  184. 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
  185. remote:   Downloading requests_oauthlib-0.4.1-py2.py3-none-any.whl
  186. 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))
  187. 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
  188. 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
  189. 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
  190. remote:    
  191. remote: Downloading/unpacking bleach>=1.4 (from Mezzanine==3.1.10->-r /var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/repo/requirements.txt (line 2))
  192. 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
  193. remote:   Downloading bleach-1.4.tar.gz
  194. 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
  195. remote:    
  196. 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))
  197. remote:   Real name of requirement filebrowser-safe is filebrowser_safe
  198. 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
  199. 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))
  200. 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
  201. 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))
  202. remote:   Real name of requirement grappelli-safe is grappelli_safe
  203. 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
  204. remote: Downloading/unpacking tzlocal==1.0 (from Mezzanine==3.1.10->-r /var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/repo/requirements.txt (line 2))
  205. 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
  206. 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
  207. remote:   Downloading tzlocal-1.0.zip
  208. 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
  209. remote:    
  210. 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))
  211. 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
  212. 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
  213. 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
  214. remote:    
  215. 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))
  216. 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
  217. 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
  218. remote:    
  219. 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))
  220. 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))
  221. 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
  222. 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
  223. remote:    
  224. 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))
  225. 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
  226. 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
  227. remote:    
  228. remote: Installing collected packages: Django, Mezzanine, pillow, requests-oauthlib, beautifulsoup4, bleach, filebrowser-safe, requests, grappelli-safe, tzlocal, future, oauthlib, html5lib, pytz
  229. remote:   Running setup.py install for pillow
  230. remote:    
  231. remote:     warning: no files found matching '*.bdf' under directory 'Images'
  232. remote:     warning: no files found matching '*.fli' under directory 'Images'
  233. remote:     warning: no files found matching '*.gif' under directory 'Images'
  234. remote:     warning: no files found matching '*.icns' under directory 'Images'
  235. remote:     warning: no files found matching '*.ico' under directory 'Images'
  236. remote:     warning: no files found matching '*.jpg' under directory 'Images'
  237. remote:     warning: no files found matching '*.pbm' under directory 'Images'
  238. remote:     warning: no files found matching '*.pil' under directory 'Images'
  239. remote:     warning: no files found matching '*.png' under directory 'Images'
  240. remote:     warning: no files found matching '*.ppm' under directory 'Images'
  241. remote:     warning: no files found matching '*.psd' under directory 'Images'
  242. remote:     warning: no files found matching '*.tar' under directory 'Images'
  243. remote:     warning: no files found matching '*.webp' under directory 'Images'
  244. remote:     warning: no files found matching '*.xpm' under directory 'Images'
  245. remote:     warning: no files found matching 'README' under directory 'Sane'
  246. remote:     warning: no files found matching 'README' under directory 'Scripts'
  247. remote:     warning: no files found matching '*.txt' under directory 'Tk'
  248. remote:     building 'PIL._imaging' extension
  249. 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
  250. 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
  251. 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
  252. 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
  253. 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
  254. 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
  255. 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
  256. 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
  257. 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
  258. 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
  259. 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
  260. 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
  261. 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
  262. 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
  263. 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
  264. 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
  265. 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
  266. 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
  267. 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
  268. remote:     libImaging/Draw.c: In function 'ImagingDrawWideLine':
  269. remote:     libImaging/Draw.c:603: warning: unused variable 'vertices'
  270. remote:     path.c: In function 'path_subscript':
  271. remote:     path.c:586: warning: dereferencing type-punned pointer will break strict-aliasing rules
  272. remote:     path.c:586: warning: dereferencing pointer 'item.81' does break strict-aliasing rules
  273. remote:     path.c:586: note: initialized from here
  274. 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
  275. 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
  276. 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
  277. 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
  278. 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
  279. 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
  280. remote:     libImaging/File.c: In function 'ImagingSaveRaw':
  281. remote:     libImaging/File.c:145: warning: ignoring return value of 'fwrite', declared with attribute warn_unused_result
  282. remote:     libImaging/File.c:152: warning: ignoring return value of 'fwrite', declared with attribute warn_unused_result
  283. 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
  284. 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
  285. 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
  286. 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
  287. 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
  288. 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
  289. 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
  290. 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
  291. 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
  292. 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
  293. 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
  294. 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
  295. 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
  296. 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
  297. 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
  298. 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
  299. 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
  300. 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
  301. 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
  302. 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
  303. 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
  304. 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
  305. 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
  306. 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
  307. 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
  308. 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
  309. 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
  310. 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
  311. 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
  312. 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
  313. 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
  314. 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
  315. 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
  316. 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
  317. 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
  318. 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
  319. 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
  320. 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
  321. 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
  322. 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
  323. 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
  324. 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
  325. 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
  326. 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
  327. 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
  328. remote:     Building using 2 processes
  329. 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
  330. remote:     building 'PIL._imagingft' extension
  331. 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
  332. remote:     Building using 2 processes
  333. 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
  334. remote:     building 'PIL._imagingmath' extension
  335. 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
  336. remote:     Building using 2 processes
  337. 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
  338. remote:     building 'PIL._imagingmorph' extension
  339. 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
  340. remote:     Building using 2 processes
  341. 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
  342. remote:     --------------------------------------------------------------------
  343. remote:     PIL SETUP SUMMARY
  344. remote:     --------------------------------------------------------------------
  345. remote:     version      Pillow 2.5.3
  346. remote:     platform     linux 3.3.2 (default, Mar 20 2014, 20:25:51)
  347. remote:                  [GCC 4.4.6 20120305 (Red Hat 4.4.6-4)]
  348. remote:     --------------------------------------------------------------------
  349. remote:     *** TKINTER support not available
  350. remote:     --- JPEG support available
  351. remote:     *** OPENJPEG (JPEG2000) support not available
  352. remote:     --- ZLIB (PNG/ZIP) support available
  353. remote:     --- LIBTIFF support available
  354. remote:     --- FREETYPE2 support available
  355. remote:     *** LITTLECMS2 support not available
  356. remote:     *** WEBP support not available
  357. remote:     *** WEBPMUX support not available
  358. remote:     --------------------------------------------------------------------
  359. remote:     To add a missing option, make sure you have the required
  360. remote:     library, and set the corresponding ROOT variable in the
  361. remote:     setup.py script.
  362. remote:    
  363. remote:     To check the build, run the selftest.py script.
  364. remote:    
  365. remote:     changing mode of build/scripts-3.3/pilprint.py from 600 to 755
  366. remote:     changing mode of build/scripts-3.3/pildriver.py from 600 to 755
  367. remote:     changing mode of build/scripts-3.3/pilconvert.py from 600 to 755
  368. remote:     changing mode of build/scripts-3.3/pilfont.py from 600 to 755
  369. remote:     changing mode of build/scripts-3.3/pilfile.py from 600 to 755
  370. remote:     changing mode of /var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/bin/pilprint.py to 755
  371. remote:     changing mode of /var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/bin/pildriver.py to 755
  372. remote:     changing mode of /var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/bin/pilconvert.py to 755
  373. remote:     changing mode of /var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/bin/pilfont.py to 755
  374. remote:     changing mode of /var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/bin/pilfile.py to 755
  375. remote:   Running setup.py install for beautifulsoup4
  376. remote:     Skipping implicit fixer: buffer
  377. remote:     Skipping implicit fixer: idioms
  378. remote:     Skipping implicit fixer: set_literal
  379. remote:     Skipping implicit fixer: ws_comma
  380. remote:    
  381. remote:   Running setup.py install for bleach
  382. remote:    
  383. remote:   Running setup.py install for tzlocal
  384. remote:    
  385. remote:   Running setup.py install for future
  386. remote:    
  387. remote:     Installing futurize script to /var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/bin
  388. remote:   Running setup.py install for oauthlib
  389. remote:    
  390. remote:   Running setup.py install for html5lib
  391. remote:    
  392. remote:   Running setup.py install for pytz
  393. remote:    
  394. remote: Successfully installed Django Mezzanine pillow requests-oauthlib beautifulsoup4 bleach filebrowser-safe requests grappelli-safe tzlocal future oauthlib html5lib pytz
  395. remote: Cleaning up...
  396. remote: Running setup.py script..
  397. remote: running develop
  398. remote: running egg_info
  399. remote: creating Project_Name.egg-info
  400. remote: writing top-level names to Project_Name.egg-info/top_level.txt
  401. remote: writing dependency_links to Project_Name.egg-info/dependency_links.txt
  402. remote: writing Project_Name.egg-info/PKG-INFO
  403. remote: writing manifest file 'Project_Name.egg-info/SOURCES.txt'
  404. remote: reading manifest file 'Project_Name.egg-info/SOURCES.txt'
  405. remote: writing manifest file 'Project_Name.egg-info/SOURCES.txt'
  406. remote: running build_ext
  407. remote: Creating /var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/dependencies/python/virtenv/venv/lib/python3.3/site-packages/Project-Name.egg-link (link to .)
  408. remote: Adding Project-Name 0.1 to easy-install.pth file
  409. remote:
  410. remote: Installed /var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/repo
  411. remote: Processing dependencies for Project-Name==0.1
  412. remote: Finished processing dependencies for Project-Name==0.1
  413. remote: Preparing build for deployment
  414. remote: Deployment id is 105de527
  415. remote: Activating deployment
  416. remote: Starting Postgres cartridge
  417. remote: Postgres started
  418. remote: Executing 'python /var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/repo/mezzanine/manage.py migrate --noinput'
  419. remote: python: can't open file '/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/repo/mezzanine/manage.py': [Errno 2] No such file or directory
  420. remote: Executing 'python /var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/repo/mezzanine/manage.py collectstatic --noinput'
  421. remote: python: can't open file '/var/lib/openshift/5418e7d1e0b8cda2900008ac/app-root/runtime/repo/mezzanine/manage.py': [Errno 2] No such file or directory
  422. remote: -------------------------
  423. remote: Git Post-Receive Result: failure
  424. remote: Activation status: failure
  425. remote: Activation failed for the following gears:
  426. remote: 5418e7d1e0b8cda2900008ac (Error activating gear: CLIENT_ERROR: Failed to execute action hook 'deploy' for 5418e7d1e0b8cda2900008ac application mezzanine)
  427. remote: Deployment completed with status: failure
  428. remote: postreceive failed
  429. To ssh://5418e7d1e0b8cda2900008ac@mezzanine-tjdz.rhcloud.com/~/git/mezzanine.git/
  430.    951a6f6..949a729  master -> master
  431. [ray@localhost project-name]$ rhc ssh mezzanine
  432. Connecting to 5418e7d1e0b8cda2900008ac@mezzanine-tjdz.rhcloud.com ...
  433.  
  434.     *********************************************************************
  435.  
  436.     You are accessing a service that is for use only by authorized users.
  437.     If you do not have authorization, discontinue use at once.
  438.     Any use of the services is subject to the applicable terms of the
  439.     agreement which can be found at:
  440.     https://www.openshift.com/legal
  441.  
  442.     *********************************************************************
  443.  
  444.     Welcome to OpenShift shell
  445.  
  446.     This shell will assist you in managing OpenShift applications.
  447.  
  448.     !!! IMPORTANT !!! IMPORTANT !!! IMPORTANT !!!
  449.     Shell access is quite powerful and it is possible for you to
  450.     accidentally damage your application.  Proceed with care!
  451.     If worse comes to worst, destroy your application with "rhc app delete"
  452.     and recreate it
  453.     !!! IMPORTANT !!! IMPORTANT !!! IMPORTANT !!!
  454.  
  455.     Type "help" for more info.
  456.  
  457.  
  458. [mezzanine-tjdz.rhcloud.com 5418e7d1e0b8cda2900008ac]\> source $VIRTUAL_ENV/bin/activate
  459. (venv) [mezzanine-tjdz.rhcloud.com 5418e7d1e0b8cda2900008ac]\> cd $OPENSHIFT_REPO_DIR/project-name
  460. (venv) [mezzanine-tjdz.rhcloud.com project-name]\> python manage.py flush
  461. Traceback (most recent call last):
  462.   File "/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/lib/python3.3/site-packages/django/conf/__init__.py", line 94, in __init__
  463.     mod = importlib.import_module(self.SETTINGS_MODULE)
  464.   File "/opt/rh/python33/root/usr/lib64/python3.3/importlib/__init__.py", line 90, in import_module
  465.     return _bootstrap._gcd_import(name[level:], package, level)
  466.   File "<frozen importlib._bootstrap>", line 1586, in _gcd_import
  467.   File "<frozen importlib._bootstrap>", line 1567, in _find_and_load
  468.   File "<frozen importlib._bootstrap>", line 1531, in _find_and_load_unlocked
  469. ImportError: No module named 'mezzanine.settings'
  470.  
  471. During handling of the above exception, another exception occurred:
  472.  
  473. Traceback (most recent call last):
  474.   File "manage.py", line 20, in <module>
  475.     execute_from_command_line(sys.argv)
  476.   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
  477.     utility.execute()
  478.   File "/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/lib/python3.3/site-packages/django/core/management/__init__.py", line 345, in execute
  479.     settings.INSTALLED_APPS
  480.   File "/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/lib/python3.3/site-packages/django/conf/__init__.py", line 46, in __getattr__
  481.     self._setup(name)
  482.   File "/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/lib/python3.3/site-packages/django/conf/__init__.py", line 42, in _setup
  483.     self._wrapped = Settings(settings_module)
  484.   File "/var/lib/openshift/5418e7d1e0b8cda2900008ac/python/virtenv/venv/lib/python3.3/site-packages/django/conf/__init__.py", line 98, in __init__
  485.     % (self.SETTINGS_MODULE, e)
  486. 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'