Hi all

I commented on https://bugzilla.redhat.com/show_bug.cgi?id=1673127 that I will be working on building pypy. So far, I was able to build pypy and pypy3 on rawhide, but this is my first time creating the package. I copied the spec from both of the rpms/pypy packages[1], but I wanted to know if I will have to create new spec, since I can see there are changes between the 6.0.0 and 7.0.0 versions.

Here's what I have done so far from building pypy on rawhide

pypy
A build of pypy (with jit) on x86_64
[Timer] Timings:
[Timer] annotate                       ---  990.8 s
[Timer] rtype_lltype                   --- 1797.3 s
[Timer] pyjitpl_lltype                 --- 2112.1 s
[Timer] backendopt_lltype              ---  400.0 s
[Timer] stackcheckinsertion_lltype     ---  995.6 s
[Timer] database_c                     ---  907.0 s
[Timer] source_c                       ---  413.2 s
[Timer] compile_c                      --- 1274.7 s
[Timer] build_cffi_imports             ---   16.7 s
[Timer] ===========================================
[Timer] Total:                         --- 8907.5 s

A build of pypy without jit on x86_64
[Timer] Timings:
[Timer] annotate                       --- 1233.1 s
[Timer] rtype_lltype                   --- 1554.2 s
[Timer] backendopt_lltype              ---  407.9 s
[Timer] stackcheckinsertion_lltype     ---  147.9 s
[Timer] database_c                     ---  698.6 s
[Timer] source_c                       ---  304.9 s
[Timer] compile_c                      ---  700.5 s
[Timer] build_cffi_imports             ---   10.2 s
[Timer] ===========================================
[Timer] Total:

pypy3
A build of pypy with jit on x86_64

[translation:info] usession directory: /tmp/usession-py3.5-0
[Timer] Timings:
[Timer] annotate                       ---  260.5 s
[Timer] rtype_lltype                   ---  342.1 s
[Timer] pyjitpl_lltype                 ---  560.0 s
[Timer] backendopt_lltype              ---  106.2 s
[Timer] stackcheckinsertion_lltype     ---   53.4 s
[Timer] database_c                     ---  232.3 s
[Timer] source_c                       ---  101.7 s
[Timer] compile_c                      ---  547.3 s
[Timer] build_cffi_imports             ---   17.9 s
[Timer] ===========================================
[Timer] Total:                         --- 2221.5 s

Please let me know if I need to include devel in this email as well, since I am new and I have no built an rpm package, so I will not be able to push the new package once it is done.

[1] https://src.fedoraproject.org/rpms/pypy/blob/master/f/pypy.spec

Antonette Caldwell