diff options
author | Michał Górny <mgorny@gentoo.org> | 2016-06-08 22:34:21 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2016-06-09 18:10:21 +0200 |
commit | 896c1d4a3f14583d9438f5bcd69c539a35452105 (patch) | |
tree | ddc89e9a39b907ba859981f9b5cc28c4dc2ccb04 /dev-python/pypy-bin | |
parent | net-ftp/lftp: add libressl support, bug #565388 (diff) | |
download | gentoo-896c1d4a3f14583d9438f5bcd69c539a35452105.tar.gz gentoo-896c1d4a3f14583d9438f5bcd69c539a35452105.tar.bz2 gentoo-896c1d4a3f14583d9438f5bcd69c539a35452105.zip |
dev-python/pypy-bin: Fix accidental unconditional gdbm CFFI build
Diffstat (limited to 'dev-python/pypy-bin')
-rw-r--r-- | dev-python/pypy-bin/pypy-bin-4.0.1-r1.ebuild | 2 | ||||
-rw-r--r-- | dev-python/pypy-bin/pypy-bin-5.0.0.ebuild | 2 | ||||
-rw-r--r-- | dev-python/pypy-bin/pypy-bin-5.1.1.ebuild | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/dev-python/pypy-bin/pypy-bin-4.0.1-r1.ebuild b/dev-python/pypy-bin/pypy-bin-4.0.1-r1.ebuild index 6863329c26c5..f28b27680306 100644 --- a/dev-python/pypy-bin/pypy-bin-4.0.1-r1.ebuild +++ b/dev-python/pypy-bin/pypy-bin-4.0.1-r1.ebuild @@ -184,7 +184,7 @@ 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 curses syslog gdbm pwdgrp ) + cffi_targets=( audioop curses syslog pwdgrp ) use gdbm && cffi_targets+=( gdbm ) use sqlite && cffi_targets+=( sqlite3 ) use tk && cffi_targets+=( tkinter/tklib ) diff --git a/dev-python/pypy-bin/pypy-bin-5.0.0.ebuild b/dev-python/pypy-bin/pypy-bin-5.0.0.ebuild index 0850563fb49a..27190707cde0 100644 --- a/dev-python/pypy-bin/pypy-bin-5.0.0.ebuild +++ b/dev-python/pypy-bin/pypy-bin-5.0.0.ebuild @@ -184,7 +184,7 @@ 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 curses syslog gdbm pwdgrp ) + cffi_targets=( audioop curses syslog pwdgrp ) use gdbm && cffi_targets+=( gdbm ) use sqlite && cffi_targets+=( sqlite3 ) use tk && cffi_targets+=( tkinter/tklib ) diff --git a/dev-python/pypy-bin/pypy-bin-5.1.1.ebuild b/dev-python/pypy-bin/pypy-bin-5.1.1.ebuild index a76094bbfb69..8fd74a4abf44 100644 --- a/dev-python/pypy-bin/pypy-bin-5.1.1.ebuild +++ b/dev-python/pypy-bin/pypy-bin-5.1.1.ebuild @@ -180,7 +180,7 @@ src_install() { # "gdbm": "_gdbm_build.py" if sys.platform != "win32" else None, # "pwdgrp": "_pwdgrp_build.py" if sys.platform != "win32" else None, # "resource": "_resource_build.py" if sys.platform != "win32" else None, - cffi_targets=( audioop curses syslog gdbm pwdgrp resource ) + cffi_targets=( audioop curses syslog pwdgrp resource ) use gdbm && cffi_targets+=( gdbm ) use sqlite && cffi_targets+=( sqlite3 ) use tk && cffi_targets+=( tkinter/tklib ) |