summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* fix headerMichael Sterrett2015-12-091-1/+1
| | | | Package-Manager: portage-2.2.24
* version bump (bug #546456)Michael Sterrett2015-12-093-0/+108
| | | | Package-Manager: portage-2.2.24
* media-libs/openal: Move patches into PATCHES array.Patrice Clement2015-12-092-2/+5
| | | | | Package-Manager: portage-2.2.20.1 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
* Merge remote-tracking branch 'github/pr/431'.Patrice Clement2015-12-093-0/+16
|\
| * media-libs/openal: move epatch to src_prepare from src_unpackdlahoti2015-12-091-3/+1
| |
| * media-libs/openal: update manifest for patchdlahoti2015-12-091-0/+1
| |
| * media-libs/openal: incorporate jack fix patch into ebuilddlahoti2015-12-091-0/+6
| |
| * media-libs/openal: add patch to fix jack supportdlahoti2015-12-091-0/+11
| |
* | www-client/chromium: Stable channel bump (47.0.2526.80)Mike Gilbert2015-12-092-0/+656
| | | | | | | | Package-Manager: portage-2.2.26_p25
* | sys-fs/cryptsetup: add multiple python version support #567378Mike Frysinger2015-12-092-0/+145
| |
* | rev bump to make automagic dep on media-libs/gd a user knob (bug #567852)Michael Sterrett2015-12-092-0/+54
| | | | | | | | Package-Manager: portage-2.2.20.1
* | app-text/texlive-core: Drop unused X11 dependencies.Matt Turner2015-12-0910-35/+5
| | | | | | | | | | None of these are needed, and libXfont is undergoing an ABI change upstream, so this commit removes some noise.
* | dev-ruby/metasploit-payloads: bumpZero_Chaos2015-12-092-0/+46
| | | | | | | | Package-Manager: portage-2.2.26
* | net-analyzer/metasploit: bump metasploit-payloads dep for live ebuildZero_Chaos2015-12-091-1/+1
| | | | | | | | Package-Manager: portage-2.2.26
* | app-pda/libplist: Switch to python-single-r1, disable py3Michał Górny2015-12-091-0/+56
| | | | | | | | | | | | | | | | | | | | | | | | | | Replace the semi-broken Python support code in ebuild with python-single-r1. The original code used python-r1 and rebuilt the whole package (incl. C libraries) for each implementation, even when Python support was explicitly disabled. Furthermore, the used autoconf macros break with Python 3.2+. Therefore, the Python 3 support has been disabled entirely until the relevant code is fixed. Bug: https://bugs.gentoo.org/show_bug.cgi?id=567370
* | sys-apps/openrc: version bumpWilliam Hubbs2015-12-092-0/+349
| |
* | Mask games-action/lugaru-demo for removalMichael Sterrett2015-12-091-0/+5
| |
* | build from source (bug #505608)Michael Sterrett2015-12-095-0/+138
| | | | | | | | Package-Manager: portage-2.2.20.1
* | version bump (bug #567814)Michael Sterrett2015-12-093-0/+220
| | | | | | | | Package-Manager: portage-2.2.20.1
* | needs gnome-base/gnome-common to build (bug #567574)Michael Sterrett2015-12-091-0/+1
| | | | | | | | Package-Manager: portage-2.2.20.1
* | net-mail/mailutils: Convert to python-single-r1Michał Górny2015-12-091-0/+128
| |
* | profiles: Remove jython2_5 flagsMichał Górny2015-12-096-9/+1
| |
* | python-utils-r1.eclass tests: Fix to ensure PYTHON for python_exportMichał Górny2015-12-091-1/+1
| |
* | python-utils-r1.eclass: Disable jython2_5Michał Górny2015-12-092-5/+2
| |
* | distutils-r1.eclass: Unset local functions after useMichał Górny2015-12-091-0/+1
| |
* | python-r1.eclass: Mark eclass-generated variables read-onlyMichał Górny2015-12-091-2/+3
| |
* | python-r1.eclass: python_gen_cond_dep(), rename local PYTHON_USEDEPMichał Górny2015-12-091-2/+2
| | | | | | | | | | Rename local PYTHON_USEDEP variable to avoid collisions with read-only global variable.
* | python-r1.eclass: Unset local functions after useMichał Górny2015-12-091-0/+3
| |
* | python-r1.eclass: Unset global-setting function after useMichał Górny2015-12-091-0/+1
| |
* | python-single-r1.eclass: Mark eclass-generated variables read-onlyMichał Górny2015-12-091-1/+2
| |
* | python-single-r1.eclass: python_gen_cond_dep(), rename local PYTHON_USEDEPMichał Górny2015-12-091-2/+2
| | | | | | | | | | Rename local PYTHON_USEDEP variable to avoid collisions with read-only global variable.
* | python-single-r1.eclass: Unset global-setting function after useMichał Górny2015-12-091-0/+1
| |
* | python-any-r1.eclass: Mark eclass-generated variables read-onlyMichał Górny2015-12-091-1/+1
| |
* | python-any-r1.eclass: Unset global-setting function after useMichał Górny2015-12-091-0/+1
| |
* | python-any-r1.eclass: Rename global-setting func to match eclass nameMichał Górny2015-12-091-2/+2
| |
* | python-utils-r1.eclass: Reorder implementations to semi-ascending orderMichał Górny2015-12-091-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reorder the Python implementations to ascending version order, with CPython listed first and other implementations in descending preference. The previous ordering has been used for two reasons: 1. There were packages which supported Python 3.x or PyPy partially but their documentation builds or test functions required CPython 2.x. The specific ordering caused python_export_best (the predecessor of python_setup) to use CPython 2.x for those tasks. This is now replaced by explicit implementation restrictions in python_setup. 2. PyPy setup runs were usually slower than CPython, and CPython 3.x runs were often slower due to 2to3 calls. Combined with parallel build runs, this ordering caused slower builds to start earlier and sometimes resulted in more efficient use of threads. However, nowadays we no longer do parallel builds. Therefore, it seems reasonable to finally reorder the implementations into a more intuitive order.
* | python-utils-r1.eclass: Mark _PYTHON_ALL_IMPLS read-onlyMichał Górny2015-12-091-1/+1
| |
* | multilib-minimal.eclass: Enable EAPI 6Michał Górny2015-12-091-1/+1
| |
* | multilib-minimal.eclass: Remove eutils in EAPI 6 (einstalldocs built-in)Michał Górny2015-12-091-1/+2
| |
* | multilib-build.eclass: Enable EAPI 6Michał Górny2015-12-091-1/+1
| |
* | multilib-build.eclass: Add missing eutils inherit for eqawarnMichał Górny2015-12-091-0/+1
| |
* | multilib-build.eclass: Ban deprecated functions in EAPI 6Michał Górny2015-12-091-0/+4
| |
* | multilib-build.eclass: Unset global-setting function after useMichał Górny2015-12-091-0/+1
| |
* | multilib-build.eclass: Unset local functions after useMichał Górny2015-12-091-0/+1
| |
* | multilib-build.eclass: Add missing error checksMichał Górny2015-12-091-11/+15
| |
* | multilib-build.eclass: Mark eclass-generated variables read-onlyMichał Górny2015-12-091-3/+4
| |
* | media-sound/spotify: adding zenety for file pickingMatthew Thode2015-12-091-0/+2
| | | | | | | | Package-Manager: portage-2.2.24
* | sys-devel/llvm: Force python* for USE=test buildMichał Górny2015-12-091-1/+1
| |
* | sys-apps/portage: Force py2 for doc-build with USE=epydocMichał Górny2015-12-092-0/+8
| |
* | dev-python/suds: Restrict *_all() to python2 when USE=docMichał Górny2015-12-091-0/+4
| |