[arch-commits] Commit in pypy3/repos (8 files)

Sven-Hendrik Haase svenstaro at archlinux.org
Sun Oct 23 18:46:45 UTC 2016


    Date: Sunday, October 23, 2016 @ 18:46:44
  Author: svenstaro
Revision: 193113

archrelease: copy trunk to community-i686, community-x86_64

Added:
  pypy3/repos/community-i686/PKGBUILD
    (from rev 193112, pypy3/trunk/PKGBUILD)
  pypy3/repos/community-x86_64/PKGBUILD
    (from rev 193112, pypy3/trunk/PKGBUILD)
Deleted:
  pypy3/repos/community-i686/PKGBUILD
  pypy3/repos/community-i686/disable-sslv3.patch
  pypy3/repos/community-i686/trackgcroot-new-ops.patch
  pypy3/repos/community-x86_64/PKGBUILD
  pypy3/repos/community-x86_64/disable-sslv3.patch
  pypy3/repos/community-x86_64/trackgcroot-new-ops.patch

--------------------------------------------+
 /PKGBUILD                                  |  110 +++++++++++++++++++++++++++
 community-i686/PKGBUILD                    |   81 -------------------
 community-i686/disable-sslv3.patch         |   32 -------
 community-i686/trackgcroot-new-ops.patch   |   26 ------
 community-x86_64/PKGBUILD                  |   81 -------------------
 community-x86_64/disable-sslv3.patch       |   32 -------
 community-x86_64/trackgcroot-new-ops.patch |   26 ------
 7 files changed, 110 insertions(+), 278 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2016-10-23 18:46:35 UTC (rev 193112)
+++ community-i686/PKGBUILD	2016-10-23 18:46:44 UTC (rev 193113)
@@ -1,81 +0,0 @@
-# $Id: PKGBUILD 95035 2013-08-04 09:44:24Z svenstaro $
-# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
-
-#_hgrev=63547
-
-pkgname=pypy3
-pkgver=2.4.0
-_pkgver=2.4.0
-#[[ -n $_hgrev ]] && pkgver=2.0beta2.$_hgrev
-pkgrel=4
-pkgdesc="A Python3 implementation written in Python, JIT enabled"
-url="http://pypy.org"
-arch=('i686' 'x86_64')
-depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib')
-makedepends=('python2' 'sqlite' 'tk')
-optdepends=('sqlite: sqlite module'
-            'tk: tk module')
-options=(!buildflags)
-license=('custom:MIT')
-#source=("hg+https://bitbucket.org/pypy/pypy#revision=$_hgrev")
-source=("https://bitbucket.org/pypy/pypy/downloads/$pkgname-$_pkgver-src.tar.bz2"
-        "disable-sslv3.patch"
-        "trackgcroot-new-ops.patch")
-md5sums=('96ba72916114d16904e12562b5d84e51'
-         '383f6220bb64a963a6c071a62d110ec7'
-         '3294fd2919c3372615b59c5f82552f64')
-
-prepare() {
-  cd ${pkgname}-${_pkgver}-src
-  patch -Np1 -i ../disable-sslv3.patch
-  patch -Np1 -i ../trackgcroot-new-ops.patch
-
-  # Hacky fix to allow the curses module to build on x86_64; otherwise we get:
-  #   cffi.ffiplatform.VerificationError: anonymous MEVENT: wrong total size
-  #                                       (we have 24, but C compiler says 20)
-  if [[ $CARCH == x86_64 ]]; then
-    _type=unsigned
-  else
-    _type=uint32_t
-  fi
-  sed -i -e "s/typedef unsigned long mmask_t/typedef $_type mmask_t/" \
-         -e "s/typedef unsigned long chtype/typedef $_type chtype/" \
-    lib_pypy/_curses.py
-}
-
-build() {
-  cd ${pkgname}-${_pkgver}-src/pypy/goal
-
-  #python2 ../../rpython/bin/rpython -Ojit --shared targetpypystandalone
-  python2 ../../rpython/bin/rpython -Ojit targetpypystandalone
-}
-
-package() {
-  cd ${pkgname}-${_pkgver}-src
-
-  install -Dm755 pypy/goal/pypy-c "${pkgdir}"/opt/pypy3/bin/pypy-c
-  #install -Dm755 pypy/goal/libpypy-c.so "${pkgdir}"/usr/lib/libpypy3-c.so
-  cp -r include lib_pypy site-packages "${pkgdir}"/opt/pypy3/
-
-  mkdir "${pkgdir}"/opt/pypy3/lib-python/
-  cp -r lib-python/3 "${pkgdir}"/opt/pypy3/lib-python/
-
-  mkdir -p "${pkgdir}"/usr/bin
-  ln -s /opt/pypy3/bin/pypy-c "${pkgdir}"/usr/bin/pypy3
-
-  install -Dm644 LICENSE "${pkgdir}"/opt/pypy3/LICENSE
-  install -Dm644 README.rst "${pkgdir}"/opt/pypy3/README.rst
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/pypy3/LICENSE
-
-  # Compile binary modules
-  #export LD_LIBRARY_PATH="${pkgdir}"/usr/lib:${LD_LIBRARY_PATH}
-  for module in _curses syslog dbm sqlite3 _tkinter; do
-    "${pkgdir}/opt/pypy3/bin/pypy-c" -c "import ${module}"
-  done
-
-  # Generate bytecode (currently impossibru)
-  #"${pkgdir}"/opt/pypy3/bin/pypy-c -m compileall "${pkgdir}"/opt/pypy3
-  #"${pkgdir}"/opt/pypy3/bin/pypy-c -O -m compileall "${pkgdir}"/opt/pypy3
-
-}
-# vim: ts=2 sw=2 et:

Copied: pypy3/repos/community-i686/PKGBUILD (from rev 193112, pypy3/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2016-10-23 18:46:44 UTC (rev 193113)
@@ -0,0 +1,55 @@
+# $Id: PKGBUILD 95035 2013-08-04 09:44:24Z svenstaro $
+# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
+
+pkgname=pypy3
+pkgver=5.5.0
+_pkgver=5.5.0
+pkgrel=1
+pkgdesc="A Python3 implementation written in Python, JIT enabled"
+url="http://pypy.org"
+arch=('i686' 'x86_64')
+depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib')
+makedepends=('python2' 'sqlite' 'tk')
+optdepends=('sqlite: sqlite module'
+            'tk: tk module')
+options=(!buildflags)
+license=('custom:MIT')
+source=("https://bitbucket.org/pypy/pypy/downloads/pypy3.3-v${pkgver}-alpha-src.tar.bz2")
+md5sums=('536008fd7b17af8878915393fc1ecfc3')
+
+build() {
+  cd pypy3-v${_pkgver}-src/pypy/goal
+
+  python2 ../../rpython/bin/rpython -Ojit --no-shared targetpypystandalone
+  # python2 ../../rpython/bin/rpython -Ojit --shared targetpypystandalone
+}
+
+package() {
+  cd pypy3-v${_pkgver}-src
+
+  install -Dm755 pypy/goal/pypy-c "${pkgdir}"/opt/pypy3/bin/pypy-c
+  # install -Dm755 pypy/goal/libpypy-c.so "${pkgdir}"/usr/lib/libpypy3-c.so
+  cp -r include lib_pypy site-packages "${pkgdir}"/opt/pypy3/
+
+  mkdir "${pkgdir}"/opt/pypy3/lib-python/
+  cp -r lib-python/3 "${pkgdir}"/opt/pypy3/lib-python/
+
+  mkdir -p "${pkgdir}"/usr/bin
+  ln -s /opt/pypy3/bin/pypy-c "${pkgdir}"/usr/bin/pypy3
+
+  install -Dm644 README.rst "${pkgdir}"/opt/pypy3/README.rst
+  install -Dm644 LICENSE "${pkgdir}"/opt/pypy3/LICENSE
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/pypy3/LICENSE
+
+  # Compile binary modules
+  export LD_LIBRARY_PATH="${pkgdir}"/usr/lib:${LD_LIBRARY_PATH}
+  for module in _curses syslog dbm sqlite3 _tkinter; do
+    "${pkgdir}/opt/pypy3/bin/pypy-c" -c "import ${module}"
+  done
+
+  # Generate bytecode (currently fails with errors)
+  "${pkgdir}"/opt/pypy3/bin/pypy-c -m compileall "${pkgdir}"/opt/pypy3 || true
+  "${pkgdir}"/opt/pypy3/bin/pypy-c -O -m compileall "${pkgdir}"/opt/pypy3 || true
+
+}
+# vim: ts=2 sw=2 et:

Deleted: community-i686/disable-sslv3.patch
===================================================================
--- community-i686/disable-sslv3.patch	2016-10-23 18:46:35 UTC (rev 193112)
+++ community-i686/disable-sslv3.patch	2016-10-23 18:46:44 UTC (rev 193113)
@@ -1,32 +0,0 @@
-diff -u -r pypy3-2.4.0-src/pypy/module/_ssl/interp_ssl.py pypy3-2.4.0-src-nossl3/pypy/module/_ssl/interp_ssl.py
---- pypy3-2.4.0-src/pypy/module/_ssl/interp_ssl.py	2014-10-17 22:09:50.000000000 +0200
-+++ pypy3-2.4.0-src-nossl3/pypy/module/_ssl/interp_ssl.py	2016-03-03 18:09:29.810745956 +0100
-@@ -95,7 +95,7 @@
-     def __init__(self, space, protocol):
-         if protocol == PY_SSL_VERSION_TLS1:
-             method = libssl_TLSv1_method()
--        elif protocol == PY_SSL_VERSION_SSL3:
-+        elif protocol == PY_SSL_VERSION_SSL3 and not OPENSSL_NO_SSL3:
-             method = libssl_SSLv3_method()
-         elif protocol == PY_SSL_VERSION_SSL2 and not OPENSSL_NO_SSL2:
-             method = libssl_SSLv2_method()
-@@ -110,6 +110,8 @@
-         options = SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS
-         if protocol != PY_SSL_VERSION_SSL2:
-             options |= SSL_OP_NO_SSLv2
-+        if protocol != PY_SSL_VERSION_SSL3:
-+            options |= SSL_OP_NO_SSLv3
-         libssl_SSL_CTX_set_options(self.ctx, options)
-         libssl_SSL_CTX_set_session_id_context(self.ctx, "Python", len("Python"))
- 
-diff -u -r pypy3-2.4.0-src/rpython/rlib/ropenssl.py pypy3-2.4.0-src-nossl3/rpython/rlib/ropenssl.py
---- pypy3-2.4.0-src/rpython/rlib/ropenssl.py	2014-10-17 22:09:50.000000000 +0200
-+++ pypy3-2.4.0-src-nossl3/rpython/rlib/ropenssl.py	2016-03-03 18:07:59.587706148 +0100
-@@ -69,6 +69,7 @@
-     SSLEAY_VERSION = rffi_platform.DefinedConstantString(
-         "SSLEAY_VERSION", "SSLeay_version(SSLEAY_VERSION)")
-     OPENSSL_NO_SSL2 = rffi_platform.Defined("OPENSSL_NO_SSL2")
-+    OPENSSL_NO_SSL3 = rffi_platform.Defined("OPENSSL_NO_SSL3")
-     SSL_FILETYPE_PEM = rffi_platform.ConstantInteger("SSL_FILETYPE_PEM")
-     SSL_OP_ALL = rffi_platform.ConstantInteger("SSL_OP_ALL")
-     SSL_OP_NO_SSLv2 = rffi_platform.ConstantInteger("SSL_OP_NO_SSLv2")

Deleted: community-i686/trackgcroot-new-ops.patch
===================================================================
--- community-i686/trackgcroot-new-ops.patch	2016-10-23 18:46:35 UTC (rev 193112)
+++ community-i686/trackgcroot-new-ops.patch	2016-10-23 18:46:44 UTC (rev 193113)
@@ -1,26 +0,0 @@
-Description: Expect cmovnb and jnb
- Fixes an FTBFS since gcc 4.9.2, which is emmiting new operations
-Author: Stefano Rivera <stefanor at debian.org>
-Forwarded: https://bitbucket.org/pypy/pypy/commits/c1abec418acf30bb04891c3249bc12cbe8f48d4a
-Bug-Debian: https://bugs.debian.org/771137
-Last-Update: 2014-11-26
-
---- a/rpython/translator/c/gcc/trackgcroot.py
-+++ b/rpython/translator/c/gcc/trackgcroot.py
-@@ -590,7 +590,7 @@
- 
-     # The various cmov* operations
-     for name in '''
--        e ne g ge l le a ae b be p np s ns o no
-+        e ne g ge l le a ae b be nb p np s ns o no
-         '''.split():
-         locals()['visit_cmov' + name] = binary_insn
-         locals()['visit_cmov' + name + 'l'] = binary_insn
-@@ -837,6 +837,7 @@
-     visit_jb = conditional_jump
-     visit_jbe = conditional_jump
-     visit_jp = conditional_jump
-+    visit_jnb = conditional_jump
-     visit_jnp = conditional_jump
-     visit_js = conditional_jump
-     visit_jns = conditional_jump

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2016-10-23 18:46:35 UTC (rev 193112)
+++ community-x86_64/PKGBUILD	2016-10-23 18:46:44 UTC (rev 193113)
@@ -1,81 +0,0 @@
-# $Id: PKGBUILD 95035 2013-08-04 09:44:24Z svenstaro $
-# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
-
-#_hgrev=63547
-
-pkgname=pypy3
-pkgver=2.4.0
-_pkgver=2.4.0
-#[[ -n $_hgrev ]] && pkgver=2.0beta2.$_hgrev
-pkgrel=4
-pkgdesc="A Python3 implementation written in Python, JIT enabled"
-url="http://pypy.org"
-arch=('i686' 'x86_64')
-depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib')
-makedepends=('python2' 'sqlite' 'tk')
-optdepends=('sqlite: sqlite module'
-            'tk: tk module')
-options=(!buildflags)
-license=('custom:MIT')
-#source=("hg+https://bitbucket.org/pypy/pypy#revision=$_hgrev")
-source=("https://bitbucket.org/pypy/pypy/downloads/$pkgname-$_pkgver-src.tar.bz2"
-        "disable-sslv3.patch"
-        "trackgcroot-new-ops.patch")
-md5sums=('96ba72916114d16904e12562b5d84e51'
-         '383f6220bb64a963a6c071a62d110ec7'
-         '3294fd2919c3372615b59c5f82552f64')
-
-prepare() {
-  cd ${pkgname}-${_pkgver}-src
-  patch -Np1 -i ../disable-sslv3.patch
-  patch -Np1 -i ../trackgcroot-new-ops.patch
-
-  # Hacky fix to allow the curses module to build on x86_64; otherwise we get:
-  #   cffi.ffiplatform.VerificationError: anonymous MEVENT: wrong total size
-  #                                       (we have 24, but C compiler says 20)
-  if [[ $CARCH == x86_64 ]]; then
-    _type=unsigned
-  else
-    _type=uint32_t
-  fi
-  sed -i -e "s/typedef unsigned long mmask_t/typedef $_type mmask_t/" \
-         -e "s/typedef unsigned long chtype/typedef $_type chtype/" \
-    lib_pypy/_curses.py
-}
-
-build() {
-  cd ${pkgname}-${_pkgver}-src/pypy/goal
-
-  #python2 ../../rpython/bin/rpython -Ojit --shared targetpypystandalone
-  python2 ../../rpython/bin/rpython -Ojit targetpypystandalone
-}
-
-package() {
-  cd ${pkgname}-${_pkgver}-src
-
-  install -Dm755 pypy/goal/pypy-c "${pkgdir}"/opt/pypy3/bin/pypy-c
-  #install -Dm755 pypy/goal/libpypy-c.so "${pkgdir}"/usr/lib/libpypy3-c.so
-  cp -r include lib_pypy site-packages "${pkgdir}"/opt/pypy3/
-
-  mkdir "${pkgdir}"/opt/pypy3/lib-python/
-  cp -r lib-python/3 "${pkgdir}"/opt/pypy3/lib-python/
-
-  mkdir -p "${pkgdir}"/usr/bin
-  ln -s /opt/pypy3/bin/pypy-c "${pkgdir}"/usr/bin/pypy3
-
-  install -Dm644 LICENSE "${pkgdir}"/opt/pypy3/LICENSE
-  install -Dm644 README.rst "${pkgdir}"/opt/pypy3/README.rst
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/pypy3/LICENSE
-
-  # Compile binary modules
-  #export LD_LIBRARY_PATH="${pkgdir}"/usr/lib:${LD_LIBRARY_PATH}
-  for module in _curses syslog dbm sqlite3 _tkinter; do
-    "${pkgdir}/opt/pypy3/bin/pypy-c" -c "import ${module}"
-  done
-
-  # Generate bytecode (currently impossibru)
-  #"${pkgdir}"/opt/pypy3/bin/pypy-c -m compileall "${pkgdir}"/opt/pypy3
-  #"${pkgdir}"/opt/pypy3/bin/pypy-c -O -m compileall "${pkgdir}"/opt/pypy3
-
-}
-# vim: ts=2 sw=2 et:

Copied: pypy3/repos/community-x86_64/PKGBUILD (from rev 193112, pypy3/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2016-10-23 18:46:44 UTC (rev 193113)
@@ -0,0 +1,55 @@
+# $Id: PKGBUILD 95035 2013-08-04 09:44:24Z svenstaro $
+# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
+
+pkgname=pypy3
+pkgver=5.5.0
+_pkgver=5.5.0
+pkgrel=1
+pkgdesc="A Python3 implementation written in Python, JIT enabled"
+url="http://pypy.org"
+arch=('i686' 'x86_64')
+depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib')
+makedepends=('python2' 'sqlite' 'tk')
+optdepends=('sqlite: sqlite module'
+            'tk: tk module')
+options=(!buildflags)
+license=('custom:MIT')
+source=("https://bitbucket.org/pypy/pypy/downloads/pypy3.3-v${pkgver}-alpha-src.tar.bz2")
+md5sums=('536008fd7b17af8878915393fc1ecfc3')
+
+build() {
+  cd pypy3-v${_pkgver}-src/pypy/goal
+
+  python2 ../../rpython/bin/rpython -Ojit --no-shared targetpypystandalone
+  # python2 ../../rpython/bin/rpython -Ojit --shared targetpypystandalone
+}
+
+package() {
+  cd pypy3-v${_pkgver}-src
+
+  install -Dm755 pypy/goal/pypy-c "${pkgdir}"/opt/pypy3/bin/pypy-c
+  # install -Dm755 pypy/goal/libpypy-c.so "${pkgdir}"/usr/lib/libpypy3-c.so
+  cp -r include lib_pypy site-packages "${pkgdir}"/opt/pypy3/
+
+  mkdir "${pkgdir}"/opt/pypy3/lib-python/
+  cp -r lib-python/3 "${pkgdir}"/opt/pypy3/lib-python/
+
+  mkdir -p "${pkgdir}"/usr/bin
+  ln -s /opt/pypy3/bin/pypy-c "${pkgdir}"/usr/bin/pypy3
+
+  install -Dm644 README.rst "${pkgdir}"/opt/pypy3/README.rst
+  install -Dm644 LICENSE "${pkgdir}"/opt/pypy3/LICENSE
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/pypy3/LICENSE
+
+  # Compile binary modules
+  export LD_LIBRARY_PATH="${pkgdir}"/usr/lib:${LD_LIBRARY_PATH}
+  for module in _curses syslog dbm sqlite3 _tkinter; do
+    "${pkgdir}/opt/pypy3/bin/pypy-c" -c "import ${module}"
+  done
+
+  # Generate bytecode (currently fails with errors)
+  "${pkgdir}"/opt/pypy3/bin/pypy-c -m compileall "${pkgdir}"/opt/pypy3 || true
+  "${pkgdir}"/opt/pypy3/bin/pypy-c -O -m compileall "${pkgdir}"/opt/pypy3 || true
+
+}
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/disable-sslv3.patch
===================================================================
--- community-x86_64/disable-sslv3.patch	2016-10-23 18:46:35 UTC (rev 193112)
+++ community-x86_64/disable-sslv3.patch	2016-10-23 18:46:44 UTC (rev 193113)
@@ -1,32 +0,0 @@
-diff -u -r pypy3-2.4.0-src/pypy/module/_ssl/interp_ssl.py pypy3-2.4.0-src-nossl3/pypy/module/_ssl/interp_ssl.py
---- pypy3-2.4.0-src/pypy/module/_ssl/interp_ssl.py	2014-10-17 22:09:50.000000000 +0200
-+++ pypy3-2.4.0-src-nossl3/pypy/module/_ssl/interp_ssl.py	2016-03-03 18:09:29.810745956 +0100
-@@ -95,7 +95,7 @@
-     def __init__(self, space, protocol):
-         if protocol == PY_SSL_VERSION_TLS1:
-             method = libssl_TLSv1_method()
--        elif protocol == PY_SSL_VERSION_SSL3:
-+        elif protocol == PY_SSL_VERSION_SSL3 and not OPENSSL_NO_SSL3:
-             method = libssl_SSLv3_method()
-         elif protocol == PY_SSL_VERSION_SSL2 and not OPENSSL_NO_SSL2:
-             method = libssl_SSLv2_method()
-@@ -110,6 +110,8 @@
-         options = SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS
-         if protocol != PY_SSL_VERSION_SSL2:
-             options |= SSL_OP_NO_SSLv2
-+        if protocol != PY_SSL_VERSION_SSL3:
-+            options |= SSL_OP_NO_SSLv3
-         libssl_SSL_CTX_set_options(self.ctx, options)
-         libssl_SSL_CTX_set_session_id_context(self.ctx, "Python", len("Python"))
- 
-diff -u -r pypy3-2.4.0-src/rpython/rlib/ropenssl.py pypy3-2.4.0-src-nossl3/rpython/rlib/ropenssl.py
---- pypy3-2.4.0-src/rpython/rlib/ropenssl.py	2014-10-17 22:09:50.000000000 +0200
-+++ pypy3-2.4.0-src-nossl3/rpython/rlib/ropenssl.py	2016-03-03 18:07:59.587706148 +0100
-@@ -69,6 +69,7 @@
-     SSLEAY_VERSION = rffi_platform.DefinedConstantString(
-         "SSLEAY_VERSION", "SSLeay_version(SSLEAY_VERSION)")
-     OPENSSL_NO_SSL2 = rffi_platform.Defined("OPENSSL_NO_SSL2")
-+    OPENSSL_NO_SSL3 = rffi_platform.Defined("OPENSSL_NO_SSL3")
-     SSL_FILETYPE_PEM = rffi_platform.ConstantInteger("SSL_FILETYPE_PEM")
-     SSL_OP_ALL = rffi_platform.ConstantInteger("SSL_OP_ALL")
-     SSL_OP_NO_SSLv2 = rffi_platform.ConstantInteger("SSL_OP_NO_SSLv2")

Deleted: community-x86_64/trackgcroot-new-ops.patch
===================================================================
--- community-x86_64/trackgcroot-new-ops.patch	2016-10-23 18:46:35 UTC (rev 193112)
+++ community-x86_64/trackgcroot-new-ops.patch	2016-10-23 18:46:44 UTC (rev 193113)
@@ -1,26 +0,0 @@
-Description: Expect cmovnb and jnb
- Fixes an FTBFS since gcc 4.9.2, which is emmiting new operations
-Author: Stefano Rivera <stefanor at debian.org>
-Forwarded: https://bitbucket.org/pypy/pypy/commits/c1abec418acf30bb04891c3249bc12cbe8f48d4a
-Bug-Debian: https://bugs.debian.org/771137
-Last-Update: 2014-11-26
-
---- a/rpython/translator/c/gcc/trackgcroot.py
-+++ b/rpython/translator/c/gcc/trackgcroot.py
-@@ -590,7 +590,7 @@
- 
-     # The various cmov* operations
-     for name in '''
--        e ne g ge l le a ae b be p np s ns o no
-+        e ne g ge l le a ae b be nb p np s ns o no
-         '''.split():
-         locals()['visit_cmov' + name] = binary_insn
-         locals()['visit_cmov' + name + 'l'] = binary_insn
-@@ -837,6 +837,7 @@
-     visit_jb = conditional_jump
-     visit_jbe = conditional_jump
-     visit_jp = conditional_jump
-+    visit_jnb = conditional_jump
-     visit_jnp = conditional_jump
-     visit_js = conditional_jump
-     visit_jns = conditional_jump



More information about the arch-commits mailing list