| Summary: | x11-drivers/xf86-video-virtualbox-5.1.30 lacks linux-info inherit and setup | ||
|---|---|---|---|
| Product: | Gentoo Linux | Reporter: | Joakim Tjernlund <joakim.tjernlund> |
| Component: | Current packages | Assignee: | Lars Wendler (Polynomial-C) (RETIRED) <polynomial-c> |
| Status: | RESOLVED OBSOLETE | ||
| Severity: | normal | CC: | marijn, masterzorag |
| Priority: | Normal | ||
| Version: | unspecified | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Package list: | Runtime testing required: | --- | |
hmm, I had hoped this would be acted upon before next bump. ping? Ping ? Ping? Package does not exist anymore. |
The ebuild uses --with-linux="${KV_OUT_DIR}" and KV_OUT_DIR is undefined unless one has some linux class inherited and called linux-info_pkg_setup: # Before using any of the config-handling functions in this eclass, you must # ensure that one of the following functions has been called (in order of # preference), otherwise you will get bugs like #364041): # linux-info_pkg_setup # linux-info_get_any_version # get_version # get_running_version This is an example solution: --- xf86-video-virtualbox-5.1.18.ebuild.org 2017-04-20 15:15:38.555359864 +0200 +++ xf86-video-virtualbox-5.1.18.ebuild 2017-04-20 15:17:03.957848147 +0200 @@ -4,7 +4,7 @@ EAPI=6 PYTHON_COMPAT=( python2_7 ) -inherit eutils multilib python-single-r1 versionator toolchain-funcs +inherit eutils linux-info multilib python-single-r1 versionator toolchain-funcs MY_PV="${PV/beta/BETA}" MY_PV="${MY_PV/rc/RC}" @@ -68,6 +68,7 @@ fi python-single-r1_pkg_setup + linux-info_pkg_setup } src_prepare() {