diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2020-09-24 17:40:29 +0200 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2020-09-24 17:41:03 +0200 |
commit | e5a76c98a55a0ed14566f38a9cf78bd50e9b6591 (patch) | |
tree | 4ca207803bba7020b1f43563852f832ca4f4dd4d /app-shells/bash/bash-3.2_p57.ebuild | |
parent | app-shells/bash: Removed old (diff) | |
download | gentoo-e5a76c98a55a0ed14566f38a9cf78bd50e9b6591.tar.gz gentoo-e5a76c98a55a0ed14566f38a9cf78bd50e9b6591.tar.bz2 gentoo-e5a76c98a55a0ed14566f38a9cf78bd50e9b6591.zip |
app-shells/bash: EAPI-7 conversion
Closes: https://bugs.gentoo.org/742575
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'app-shells/bash/bash-3.2_p57.ebuild')
-rw-r--r-- | app-shells/bash/bash-3.2_p57.ebuild | 74 |
1 files changed, 38 insertions, 36 deletions
diff --git a/app-shells/bash/bash-3.2_p57.ebuild b/app-shells/bash/bash-3.2_p57.ebuild index 1c31b22879b6..f555e3f03de1 100644 --- a/app-shells/bash/bash-3.2_p57.ebuild +++ b/app-shells/bash/bash-3.2_p57.ebuild @@ -1,19 +1,19 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="4" +EAPI=7 -inherit eutils flag-o-matic toolchain-funcs +inherit flag-o-matic toolchain-funcs # Official patchlevel # See ftp://ftp.cwru.edu/pub/bash/bash-3.2-patches/ -PLEVEL=${PV##*_p} -MY_PV=${PV/_p*} -MY_PV=${MY_PV/_/-} -MY_P=${PN}-${MY_PV} +PLEVEL="${PV##*_p}" +MY_PV="${PV/_p*}" +MY_PV="${MY_PV/_/-}" +MY_P="${PN}-${MY_PV}" [[ ${PV} != *_p* ]] && PLEVEL=0 patches() { - local opt=$1 plevel=${2:-${PLEVEL}} pn=${3:-${PN}} pv=${4:-${MY_PV}} + local opt=${1} plevel=${2:-${PLEVEL}} pn=${3:-${PN}} pv=${4:-${MY_PV}} [[ ${plevel} -eq 0 ]] && return 1 eval set -- {1..${plevel}} set -- $(printf "${pn}${pv/\.}-%03d " "$@") @@ -43,7 +43,21 @@ RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )" DEPEND="${RDEPEND} static? ( ${LIB_DEPEND} )" -S=${WORKDIR}/${MY_P} +S="${WORKDIR}/${MY_P}" + +PATCHES=( + "${FILESDIR}"/autoconf-mktime-2.59.patch #220040 + "${FILESDIR}"/${PN}-3.2-loadables.patch + "${FILESDIR}"/${PN}-2.05b-parallel-build.patch #41002 + "${FILESDIR}"/${PN}-3.2-protos.patch + "${FILESDIR}"/${PN}-3.2-session-leader.patch #231775 + "${FILESDIR}"/${PN}-3.2-ldflags-for-build.patch #211947 + "${FILESDIR}"/${PN}-3.2-process-subst.patch + "${FILESDIR}"/${PN}-3.2-ulimit.patch + "${FILESDIR}"/${PN}-3.0-trap-fg-signals.patch + "${FILESDIR}"/${PN}-3.2-dev-fd-test-as-user.patch #131875 + "${FILESDIR}"/${PN}-4.2-dev-fd-buffer-overflow.patch #431850 +) pkg_setup() { if is-flag -malign-double ; then #7332 @@ -59,30 +73,28 @@ src_unpack() { src_prepare() { # Include official patches - [[ ${PLEVEL} -gt 0 ]] && epatch $(patches -s) + [[ ${PLEVEL} -gt 0 ]] && eapply -p0 $(patches -s) # Clean out local libs so we know we use system ones - rm -rf lib/{readline,termcap}/* - touch lib/{readline,termcap}/Makefile.in # for config.status + rm -rf lib/{readline,termcap}/* || die + touch lib/{readline,termcap}/Makefile.in || die # for config.status sed -ri -e 's:\$[(](RL|HIST)_LIBSRC[)]/[[:alpha:]]*.h::g' Makefile.in || die - epatch "${FILESDIR}"/autoconf-mktime-2.59.patch #220040 - epatch "${FILESDIR}"/${PN}-3.2-loadables.patch - epatch "${FILESDIR}"/${PN}-2.05b-parallel-build.patch #41002 - epatch "${FILESDIR}"/${PN}-3.2-protos.patch - epatch "${FILESDIR}"/${PN}-3.2-session-leader.patch #231775 - epatch "${FILESDIR}"/${PN}-3.2-ldflags-for-build.patch #211947 - epatch "${FILESDIR}"/${PN}-3.2-process-subst.patch - epatch "${FILESDIR}"/${PN}-3.2-ulimit.patch - epatch "${FILESDIR}"/${PN}-3.0-trap-fg-signals.patch - epatch "${FILESDIR}"/${PN}-3.2-dev-fd-test-as-user.patch #131875 - epatch "${FILESDIR}"/${PN}-4.2-dev-fd-buffer-overflow.patch #431850 - - epatch_user + default } src_configure() { - local myconf=() + local myconf=( + --with-installed-readline=. + --with-curses + $(use_with afs) + $(use_enable net net-redirections) + --disable-profiling + --without-gnu-malloc + $(use_enable readline) + $(use_enable readline history) + $(use_enable readline bang-history) + ) # Force pgrp synchronization # https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=81653 @@ -117,17 +129,7 @@ src_configure() { # ncurses in one or two small places :(. tc-export AR #444070 - econf \ - --with-installed-readline=. \ - --with-curses \ - $(use_with afs) \ - $(use_enable net net-redirections) \ - --disable-profiling \ - --without-gnu-malloc \ - $(use_enable readline) \ - $(use_enable readline history) \ - $(use_enable readline bang-history) \ - "${myconf[@]}" + econf "${myconf[@]}" } src_install() { |