blob: ac1d126eb4f5eaee6ac199d39c17a36c0eea31e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# Some USE-flags that only die-hards don't want:
# readline: to have some sane command line editing, e.g. in python
# zlib: for many things you just want gzip support
# ncurses: a nice working console drawing library
# ssl: encrypted connections are a nice feature
USE="readline zlib ncurses ssl"
# In Prefix, aim for Python 3 only, leaving out 2 to avoid unnecessary
# builds
# NOTE: Both are incremental variables: Need to drop obsolete base values.
PYTHON_TARGETS="-python2_7 python3_6"
PYTHON_SINGLE_TARGET="python3_6"
# Move away from ruby22 fast forward to ruby24, we don't have ruby23
RUBY_TARGETS="ruby24"
|