commit: 56fd1f5766ac3a92bde9800b4c1875d154a67428 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Sun Dec 10 14:56:18 2023 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Mon Dec 11 07:30:54 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56fd1f57
vdr-plugin-2.eclass: Drop support for EAPI 6 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> eclass/vdr-plugin-2.eclass | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/eclass/vdr-plugin-2.eclass b/eclass/vdr-plugin-2.eclass index 25df4f124434..f53e2c23f4f8 100644 --- a/eclass/vdr-plugin-2.eclass +++ b/eclass/vdr-plugin-2.eclass @@ -9,7 +9,7 @@ # Joerg Bornkessel <[email protected]> # Christian Ruppert <[email protected]> # (undisclosed contributors) -# @SUPPORTED_EAPIS: 6 7 8 +# @SUPPORTED_EAPIS: 7 8 # @BLURB: common vdr plugin ebuild functions # @DESCRIPTION: # Eclass for easing maintenance of vdr plugin ebuilds @@ -61,14 +61,13 @@ # @CODE case ${EAPI} in - 6|7|8) ;; + 7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac if [[ -z ${_VDR_PLUGIN_2_ECLASS} ]]; then _VDR_PLUGIN_2_ECLASS=1 -[[ ${EAPI} == 6 ]] && inherit eutils inherit flag-o-matic strip-linguas toolchain-funcs unpacker # Name of the plugin stripped from all vdrplugin-, vdr- and -cvs pre- and postfixes @@ -82,18 +81,9 @@ DESCRIPTION="vdr Plugin: ${VDRPLUGIN} (based on vdr-plugin-2.eclass)" S="${WORKDIR}/${VDRPLUGIN}-${PV}" # depend on headers for DVB-driver and vdr-scripts -case ${EAPI} in - 6) - DEPEND="media-tv/gentoo-vdr-scripts - virtual/linuxtv-dvb-headers - virtual/pkgconfig" - ;; - *) - BDEPEND="virtual/pkgconfig" - DEPEND="media-tv/gentoo-vdr-scripts - virtual/linuxtv-dvb-headers" - ;; -esac +BDEPEND="virtual/pkgconfig" +DEPEND="media-tv/gentoo-vdr-scripts + virtual/linuxtv-dvb-headers" RDEPEND="media-tv/gentoo-vdr-scripts app-eselect/eselect-vdr"
