From 050b0a05601ca55347c8a6881f9e0972c8662c0b Mon Sep 17 00:00:00 2001 From: Kevin Mihelich Date: Thu, 1 May 2014 01:43:19 +0000 Subject: [PATCH] removed community/python2-gevent --- community/python2-gevent/PKGBUILD | 42 ------------------------------ community/python2-gevent/arm.patch | 18 ------------- 2 files changed, 60 deletions(-) delete mode 100644 community/python2-gevent/PKGBUILD delete mode 100644 community/python2-gevent/arm.patch diff --git a/community/python2-gevent/PKGBUILD b/community/python2-gevent/PKGBUILD deleted file mode 100644 index e2fb23edf..000000000 --- a/community/python2-gevent/PKGBUILD +++ /dev/null @@ -1,42 +0,0 @@ -# $Id: PKGBUILD 70305 2012-05-04 08:21:08Z mtorromeo $ -# Maintainer: Massimiliano Torromeo -# Maintainer: Felix Yan -# Contributor: Ralf Schmitt - -# ALARM: Kevin Mihelich -# - fix build on v5 (https://github.com/surfly/gevent/issues/361) - -pkgname=python2-gevent -pkgver=1.0 -pkgrel=1 -arch=('i686' 'x86_64') -pkgdesc="Python network library that uses greenlet and libev for easy and scalable concurrency" -license=("MIT") -url="http://www.gevent.org/" -depends=('python2-greenlet') -makedepends=('git' 'cython2') -provides=('python2-gevent-beta') -conflicts=('python2-gevent-beta') -replaces=('python2-gevent-beta') -source=("git://github.com/surfly/gevent.git#tag=$pkgver" - 'arm.patch') - -build() { - cd gevent - patch -p1 -i ../arm.patch - - LIBEV_EMBED=1 \ - CARES_EMBED=1 \ - CYTHON=cython2 \ - PYTHON=python2 \ - python2 setup.py build -} - -package() { - cd gevent - python2 setup.py install -O1 --root="$pkgdir" - install -Dm0644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" -} - -md5sums=('SKIP' - '236cc90a02935adfeb2c70cd90d3e63f') diff --git a/community/python2-gevent/arm.patch b/community/python2-gevent/arm.patch deleted file mode 100644 index 3a75f0870..000000000 --- a/community/python2-gevent/arm.patch +++ /dev/null @@ -1,18 +0,0 @@ -diff -urN a/libev/ev.c b/libev/ev.c ---- a/libev/ev.c 2014-01-02 23:06:39.749417954 -0700 -+++ b/libev/ev.c 2014-01-02 23:08:08.359034557 -0700 -@@ -617,9 +617,11 @@ - #if ECB_GCC_VERSION(4,7) - /* see comment below (stdatomic.h) about the C11 memory model. */ - #define ECB_MEMORY_FENCE __atomic_thread_fence (__ATOMIC_SEQ_CST) -- #elif defined __clang && __has_feature (cxx_atomic) -- /* see comment below (stdatomic.h) about the C11 memory model. */ -- #define ECB_MEMORY_FENCE __c11_atomic_thread_fence (__ATOMIC_SEQ_CST) -+ #elif defined __clang -+ #if __has_feature (cxx_atomic) -+ /* see comment below (stdatomic.h) about the C11 memory model. */ -+ #define ECB_MEMORY_FENCE __c11_atomic_thread_fence (__ATOMIC_SEQ_CST) -+ #endif - #elif ECB_GCC_VERSION(4,4) || defined __INTEL_COMPILER || defined __clang__ - #define ECB_MEMORY_FENCE __sync_synchronize () - #elif _MSC_VER >= 1400 /* VC++ 2005 */