X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id A43ECDC078A for ; Sat, 22 Aug 2015 17:55:22 +0000 (UTC) Received: from apollo.thewebhostserver.com (apollomail.thewebhostserver.com [46.23.65.248]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 63C76DC0138 for ; Sat, 22 Aug 2015 17:55:20 +0000 (UTC) Received: from [81.4.121.188] (port=49577 helo=localhost.localdomain) by apollo.thewebhostserver.com with esmtpsa (TLSv1.2:AES128-SHA256:128) (Exim 4.85) (envelope-from ) id 1ZTD0f-003pNv-Cw; Sat, 22 Aug 2015 18:55:17 +0100 From: Stuart Cardall To: alpine-aports@lists.alpinelinux.org Cc: Stuart Cardall Subject: [alpine-aports] [PATCH] main/cython: update to 0.23.1 Date: Sat, 22 Aug 2015 17:55:08 +0000 Message-Id: <1440266108-949-1-git-send-email-developer@it-offshore.co.uk> X-Mailer: git-send-email 2.5.0 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - apollo.thewebhostserver.com X-AntiAbuse: Original Domain - lists.alpinelinux.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - it-offshore.co.uk X-Get-Message-Sender-Via: apollo.thewebhostserver.com: authenticated_id: developer@it-offshore.co.uk X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: 0.23.1 (2015-08-22) Bugs fixed Invalid C code for generators. This fixes ticket 858. Invalid C code for some builtin methods. This fixes ticket 856. Invalid C code for unused local buffer variables. This fixes ticket 154. Test failures on 32bit systems. This fixes ticket 857. Code that uses "from xyz import *" and global C struct/union/array variables could fail to compile due to missing helper functions. This fixes ticket 851. Misnamed PEP 492 coroutine property cr_yieldfrom renamed to cr_await to match CPython. Missing deallocation code for C++ object attributes in certain extension class hierarchies. Crash when async coroutine was not awaited. Compiler crash on yield in signature annotations and default argument values. Both are forbidden now. Compiler crash on certain constructs in finally clauses. Cython failed to build when CPython's pgen is installed. --- main/cython/APKBUILD | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main/cython/APKBUILD b/main/cython/APKBUILD index ca66f33..c4bb680 100644 --- a/main/cython/APKBUILD +++ b/main/cython/APKBUILD @@ -1,7 +1,7 @@ # Contributor: Stuart Cardall # Maintainer: Stuart Cardall pkgname=cython -pkgver=0.23 +pkgver=0.23.1 pkgrel=0 pkgdesc="Cython is an optimising static compiler for both the Python & the extended Cython programming languages." url="http://cython.org" @@ -34,6 +34,6 @@ package() { python setup.py install --prefix=/usr --root="$pkgdir" || return 1 } -md5sums="7bc40ddb7a30526cba2858c6215b768a cython-0.23.tar.gz" -sha256sums="8e5acdeb26be483a9601bc3574579f132891a2ba5a391f21af7452296c614ed4 cython-0.23.tar.gz" -sha512sums="348f0a8423535149c41957ded17125e22b19dbcb137c72accd4cc61108ea2e10c7397c2b5fbe20bfe990276190c61909b4b6384b5f80929dbca23804dc5cc9d9 cython-0.23.tar.gz" +md5sums="7b4ef17745ec330edb7f17104771f980 cython-0.23.1.tar.gz" +sha256sums="289c806d417a031561186809cbf3d54d32aac8572e3b18b9dbbc8690f781273f cython-0.23.1.tar.gz" +sha512sums="3bff5c4ea81a0259bb0265b1f23f2f5c7a0729fe43ea5f7ab17a3bb6f54fc18607a54aefeb7983ec6772fca08e4512017cdb36ca482eea45f39070ace1db565f cython-0.23.1.tar.gz" -- 2.5.0 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---