From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 9DE6813829C for ; Thu, 9 Jun 2016 16:10:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 29B0C254035; Thu, 9 Jun 2016 16:10:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3C9DF254031 for ; Thu, 9 Jun 2016 16:10:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 98A603409C8 for ; Thu, 9 Jun 2016 16:10:32 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 295DB2098 for ; Thu, 9 Jun 2016 16:10:30 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1465488621.0c6e5e37850a20a87c3c3e2d58aa61e75c658a08.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pypy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pypy/pypy-5.1.1.ebuild dev-python/pypy/pypy-9999.ebuild X-VCS-Directories: dev-python/pypy/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 0c6e5e37850a20a87c3c3e2d58aa61e75c658a08 X-VCS-Branch: master Date: Thu, 9 Jun 2016 16:10:30 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 38857ff0-338f-4eac-86be-def71796b6a4 X-Archives-Hash: 1429aee1436d75f8161911ca755411f1 commit: 0c6e5e37850a20a87c3c3e2d58aa61e75c658a08 Author: Michał Górny gentoo org> AuthorDate: Wed Jun 8 20:34:51 2016 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Jun 9 16:10:21 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c6e5e37 dev-python/pypy: Add missing resource CFFI build dev-python/pypy/pypy-5.1.1.ebuild | 3 ++- dev-python/pypy/pypy-9999.ebuild | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-python/pypy/pypy-5.1.1.ebuild b/dev-python/pypy/pypy-5.1.1.ebuild index 07c8352..36697f5 100644 --- a/dev-python/pypy/pypy-5.1.1.ebuild +++ b/dev-python/pypy/pypy-5.1.1.ebuild @@ -230,7 +230,8 @@ src_install() { # "syslog": "_syslog_build.py" if sys.platform != "win32" else None, # "gdbm": "_gdbm_build.py" if sys.platform != "win32" else None, # "pwdgrp": "_pwdgrp_build.py" if sys.platform != "win32" else None, - cffi_targets=( audioop syslog pwdgrp ) +# "resource": "_resource_build.py" if sys.platform != "win32" else None, + cffi_targets=( audioop syslog pwdgrp resource ) use gdbm && cffi_targets+=( gdbm ) use ncurses && cffi_targets+=( curses ) use sqlite && cffi_targets+=( sqlite3 ) diff --git a/dev-python/pypy/pypy-9999.ebuild b/dev-python/pypy/pypy-9999.ebuild index 73a3d53..1fd2d66 100644 --- a/dev-python/pypy/pypy-9999.ebuild +++ b/dev-python/pypy/pypy-9999.ebuild @@ -236,7 +236,8 @@ src_install() { # "syslog": "_syslog_build.py" if sys.platform != "win32" else None, # "gdbm": "_gdbm_build.py" if sys.platform != "win32" else None, # "pwdgrp": "_pwdgrp_build.py" if sys.platform != "win32" else None, - cffi_targets=( audioop syslog pwdgrp ) +# "resource": "_resource_build.py" if sys.platform != "win32" else None, + cffi_targets=( audioop syslog pwdgrp resource ) use gdbm && cffi_targets+=( gdbm ) use ncurses && cffi_targets+=( curses ) use sqlite && cffi_targets+=( sqlite3 )