diff options
author | Mike Pagano <mpagano@gentoo.org> | 2016-12-15 18:37:28 -0500 |
---|---|---|
committer | Mike Pagano <mpagano@gentoo.org> | 2016-12-15 18:37:28 -0500 |
commit | 13a151ef503cb598e2e946aa9d33046251fba7c4 (patch) | |
tree | 5a80d6c29e17dbc1bbb73c557b3adbc04c986833 /eclass/kernel-2.eclass | |
parent | x11-misc/xclip: shorten DESCRIPTION. (diff) | |
download | gentoo-13a151ef503cb598e2e946aa9d33046251fba7c4.tar.gz gentoo-13a151ef503cb598e2e946aa9d33046251fba7c4.tar.bz2 gentoo-13a151ef503cb598e2e946aa9d33046251fba7c4.zip |
kernel-2.eclass: Remove kdbus support as it is discontinued. First reported in bug #576614 by jon R-B.
Diffstat (limited to 'eclass/kernel-2.eclass')
-rw-r--r-- | eclass/kernel-2.eclass | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/eclass/kernel-2.eclass b/eclass/kernel-2.eclass index 2b4f21cd283f..424aa03d01ec 100644 --- a/eclass/kernel-2.eclass +++ b/eclass/kernel-2.eclass @@ -156,13 +156,6 @@ # in the long term directories on the upstream servers # as the location has been changed by upstream -# @ECLASS-VARIABLE: K_KDBUS_AVAILABLE -# @DEFAULT_UNSET -# @DESCRIPTION: -# If set, the ebuild contains the option of installing the -# kdbus patch. This patch is not installed without the 'kdbus' -# and 'experimental' use flags. - # @ECLASS-VARIABLE: H_SUPPORTEDARCH # @DEFAULT_UNSET # @DESCRIPTION: @@ -610,10 +603,6 @@ if [[ ${ETYPE} == sources ]]; then DESCRIPTION="Sources based on the Linux Kernel." IUSE="symlink build" - if [[ -n ${K_KDBUS_AVAILABLE} ]]; then - IUSE="${IUSE} kdbus" - fi - # Bug #266157, deblob for libre support if [[ -z ${K_PREDEBLOBBED} ]] ; then # Bug #359865, force a call to detect_version if needed @@ -1246,13 +1235,6 @@ unipatch() { UNIPATCH_DROP+=" 5000_enable-additional-cpu-optimizations-for-gcc.patch" fi fi - - # if kdbus use flag is not set, drop the kdbus patch - if [[ $UNIPATCH_DROP != *"5015_kdbus*.patch"* ]]; then - if ! has kdbus ${IUSE} || ! use kdbus; then - UNIPATCH_DROP="${UNIPATCH_DROP} 5015_kdbus*.patch" - fi - fi fi done |