diff options
author | Petr Vaněk <arkamar@atlas.cz> | 2022-06-12 22:03:00 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2022-06-13 17:55:30 +0300 |
commit | f320f45d22a6d38326278154b02f3371f8502c1b (patch) | |
tree | a6147d63288f4fe293555829374e506ca62bcb5f /dev-lang/execline | |
parent | sys-apps/s6: drop 2.11.0.1 (diff) | |
download | gentoo-f320f45d22a6d38326278154b02f3371f8502c1b.tar.gz gentoo-f320f45d22a6d38326278154b02f3371f8502c1b.tar.bz2 gentoo-f320f45d22a6d38326278154b02f3371f8502c1b.zip |
dev-lang/execline: drop 2.8.2.0
Signed-off-by: Petr Vaněk <arkamar@atlas.cz>
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-lang/execline')
-rw-r--r-- | dev-lang/execline/Manifest | 1 | ||||
-rw-r--r-- | dev-lang/execline/execline-2.8.2.0.ebuild | 50 |
2 files changed, 0 insertions, 51 deletions
diff --git a/dev-lang/execline/Manifest b/dev-lang/execline/Manifest index 29abd6664f70..10cb184b599b 100644 --- a/dev-lang/execline/Manifest +++ b/dev-lang/execline/Manifest @@ -1,2 +1 @@ -DIST execline-2.8.2.0.tar.gz 98438 BLAKE2B 66860a1abb3f8078bd625d13dda2caec71bc41d54a35275548897018818b8b881b37d4ab4f4dd7a9a36386802f1f830d345e7ade0e9638b49acc80314ae60ae1 SHA512 9a2c21fbddfc4bce69857fa906fcbb7b17b0cd1009a33a9f3bbcce69ff443af82704d74b792e2d4393eb6d7de9888a5bc74ff208c31485d3398b0dea07368a15 DIST execline-2.8.3.0.tar.gz 98448 BLAKE2B f3dc1a194838f7973044b2d86e6026936697be4f34f9b01f5dfc98ddabfbde3dad7cfe95afd63f65cb266994b922d7d4c94368cf5dca2a2494fd0033b4ed6032 SHA512 40f4697a8165616848ed36dcb31a5859dee55a47439d13908a387550e8f53ca8fffe3bcb3e0462cb93f694c8fb483b14e152f92e6f9d0d536cdab9d94be9c53a diff --git a/dev-lang/execline/execline-2.8.2.0.ebuild b/dev-lang/execline/execline-2.8.2.0.ebuild deleted file mode 100644 index ba27a4716f2d..000000000000 --- a/dev-lang/execline/execline-2.8.2.0.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2022 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 x86" -IUSE="static static-libs" - -REQUIRED_USE="static? ( static-libs )" - -RDEPEND=">=dev-libs/skalibs-2.10.1.0:=[static-libs?]" -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=/usr/$(get_libdir) - --libdir=/usr/$(get_libdir)/${PN} - --with-dynlib=/usr/$(get_libdir) - --with-lib=/usr/$(get_libdir)/skalibs - --with-sysdeps=/usr/$(get_libdir)/skalibs - --enable-shared - $(use_enable static allstatic) - $(use_enable static static-libc) - $(use_enable static-libs static) - ) - - econf "${myconf[@]}" -} |