[arch-commits] Commit in pypy/trunk (PKGBUILD)

Sven-Hendrik Haase svenstaro at archlinux.org
Wed Sep 3 11:44:38 UTC 2014


    Date: Wednesday, September 3, 2014 @ 13:44:38
  Author: svenstaro
Revision: 118221

Don't generate bytecode yet

Modified:
  pypy/trunk/PKGBUILD

----------+
 PKGBUILD |    9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2014-09-03 09:50:08 UTC (rev 118220)
+++ PKGBUILD	2014-09-03 11:44:38 UTC (rev 118221)
@@ -42,12 +42,13 @@
   install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/pypy/LICENSE
 
   # Compile binary modules
+  export LD_LIBRARY_PATH="${pkgdir}"/usr/lib:${LD_LIBRARY_PATH}
   for module in _curses syslog gdbm sqlite3 _tkinter; do
-    LD_LIBRARY_PATH="${pkgdir}"/usr/lib:${LD_LIBRARY_PATH} "${pkgdir}"/opt/pypy/bin/pypy-c -c "import ${module}"
+     "${pkgdir}"/opt/pypy/bin/pypy-c -c "import ${module}"
   done
 
-  # Generate bytecode
-  "${pkgdir}"/opt/pypy/bin/pypy-c -m compileall "${pkgdir}"/opt/pypy
-  "${pkgdir}"/opt/pypy/bin/pypy-c -O -m compileall "${pkgdir}"/opt/pypy
+  # Generate bytecode (they apparently haven't intended for this to happen yet)
+  #"${pkgdir}"/opt/pypy/bin/pypy-c -m compileall "${pkgdir}"/opt/pypy
+  #"${pkgdir}"/opt/pypy/bin/pypy-c -O -m compileall "${pkgdir}"/opt/pypy
 }
 # vim: ts=2 sw=2 et:




More information about the arch-commits mailing list