From c389f5f9b96610efcf0fb6a3f06c92299c7f8d4a Mon Sep 17 00:00:00 2001 From: Petr Vaněk <arkamar@atlas.cz> Date: Wed, 8 Nov 2023 10:20:30 +0100 Subject: dev-lang/execline: restrict to dev-libs/skalibs:0/2.13 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This version fails to build with new dev-libs/skalibs-2.14.0.0. Signed-off-by: Petr Vaněk <arkamar@atlas.cz> Signed-off-by: Sam James <sam@gentoo.org> --- dev-lang/execline/execline-2.9.3.0-r1.ebuild | 47 ++++++++++++++++++++++++++++ dev-lang/execline/execline-2.9.3.0.ebuild | 47 ---------------------------- 2 files changed, 47 insertions(+), 47 deletions(-) create mode 100644 dev-lang/execline/execline-2.9.3.0-r1.ebuild delete mode 100644 dev-lang/execline/execline-2.9.3.0.ebuild (limited to 'dev-lang/execline') diff --git a/dev-lang/execline/execline-2.9.3.0-r1.ebuild b/dev-lang/execline/execline-2.9.3.0-r1.ebuild new file mode 100644 index 000000000000..355db76fa502 --- /dev/null +++ b/dev-lang/execline/execline-2.9.3.0-r1.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="A non-interactive scripting language" +HOMEPAGE="https://www.skarnet.org/software/execline/" +SRC_URI="https://www.skarnet.org/software/${PN}/${P}.tar.gz" + +LICENSE="ISC" +SLOT="0/$(ver_cut 1-2)" +KEYWORDS="amd64 arm ~riscv x86" + +RDEPEND="dev-libs/skalibs:0/2.13" +DEPEND="${RDEPEND}" + +HTML_DOCS=( doc/. ) + +src_prepare() { + default + + # Avoid QA warning for LDFLAGS addition + sed -i -e 's/.*-Wl,--hash-style=both$/:/' configure || die + + sed -i -e '/AR := /d' -e '/RANLIB := /d' Makefile || die +} + +src_configure() { + tc-export AR CC RANLIB + + local myconf=( + --bindir=/bin + --dynlibdir="/$(get_libdir)" + --libdir="/usr/$(get_libdir)/${PN}" + --with-dynlib="/$(get_libdir)" + --with-lib="/usr/$(get_libdir)/skalibs" + --with-sysdeps="/usr/$(get_libdir)/skalibs" + --enable-shared + --disable-allstatic + --disable-static + --disable-static-libc + ) + + econf "${myconf[@]}" +} diff --git a/dev-lang/execline/execline-2.9.3.0.ebuild b/dev-lang/execline/execline-2.9.3.0.ebuild deleted file mode 100644 index fc63f059b055..000000000000 --- a/dev-lang/execline/execline-2.9.3.0.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit toolchain-funcs - -DESCRIPTION="A non-interactive scripting language" -HOMEPAGE="https://www.skarnet.org/software/execline/" -SRC_URI="https://www.skarnet.org/software/${PN}/${P}.tar.gz" - -LICENSE="ISC" -SLOT="0/$(ver_cut 1-2)" -KEYWORDS="amd64 arm ~riscv x86" - -RDEPEND=">=dev-libs/skalibs-2.13.0.0:=" -DEPEND="${RDEPEND}" - -HTML_DOCS=( doc/. ) - -src_prepare() { - default - - # Avoid QA warning for LDFLAGS addition - sed -i -e 's/.*-Wl,--hash-style=both$/:/' configure || die - - sed -i -e '/AR := /d' -e '/RANLIB := /d' Makefile || die -} - -src_configure() { - tc-export AR CC RANLIB - - local myconf=( - --bindir=/bin - --dynlibdir="/$(get_libdir)" - --libdir="/usr/$(get_libdir)/${PN}" - --with-dynlib="/$(get_libdir)" - --with-lib="/usr/$(get_libdir)/skalibs" - --with-sysdeps="/usr/$(get_libdir)/skalibs" - --enable-shared - --disable-allstatic - --disable-static - --disable-static-libc - ) - - econf "${myconf[@]}" -} -- cgit v1.2.3-65-gdbad