diff options
author | Petr Vaněk <arkamar@atlas.cz> | 2023-07-15 09:41:15 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2023-07-15 11:01:37 +0300 |
commit | c538127f3511e809b058ab56544431a2aa6871cf (patch) | |
tree | ebd10fc536368e21b2f7023ecce5acfb910a1dc2 /sys-apps/s6 | |
parent | dev-lang/execline: drop 2.9.2.1 (diff) | |
download | gentoo-c538127f3511e809b058ab56544431a2aa6871cf.tar.gz gentoo-c538127f3511e809b058ab56544431a2aa6871cf.tar.bz2 gentoo-c538127f3511e809b058ab56544431a2aa6871cf.zip |
sys-apps/s6: drop 2.11.3.0
Signed-off-by: Petr Vaněk <arkamar@atlas.cz>
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'sys-apps/s6')
-rw-r--r-- | sys-apps/s6/Manifest | 1 | ||||
-rw-r--r-- | sys-apps/s6/s6-2.11.3.0.ebuild | 54 |
2 files changed, 0 insertions, 55 deletions
diff --git a/sys-apps/s6/Manifest b/sys-apps/s6/Manifest index 61f75d10c151..40cfc50ba332 100644 --- a/sys-apps/s6/Manifest +++ b/sys-apps/s6/Manifest @@ -1,2 +1 @@ -DIST s6-2.11.3.0.tar.gz 247736 BLAKE2B a409e2f759e7096fa95c4cc60294b89b7625a712b95901fc3336d6c14af007a0a603db1f43db9a5e379657af3f2b0f4a995897a519346ee8a61e63ad5519fd19 SHA512 764981bb54c6add6bff7c77b41c6c61055fd8b9ba284c7b41e13e4103c8d5a3dddd442145d8eb572e5be6883ab6a9e3025c064d946e8e273e956d404528c5479 DIST s6-2.11.3.2.tar.gz 247882 BLAKE2B 67de13e967502f159b6ebc1a4727f16a123ae9a88e1441d30100a952da7b9c2acd53b417d1b4760be9e4082856c30447b9a2f7b60e46e92531ebe0cd20fb7c22 SHA512 fe87c7984905b3eb35d7c91a3f0b6ece5cb0eb2c6d16ea7725655f118c464cf017e10b6ed82b3b12b6deb331538fc5d20afea7f34ff98b85d4c437b09e07371a diff --git a/sys-apps/s6/s6-2.11.3.0.ebuild b/sys-apps/s6/s6-2.11.3.0.ebuild deleted file mode 100644 index d38aa94a0fd2..000000000000 --- a/sys-apps/s6/s6-2.11.3.0.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit toolchain-funcs - -DESCRIPTION="skarnet.org's small and secure supervision software suite" -HOMEPAGE="https://www.skarnet.org/software/s6/" -SRC_URI="https://www.skarnet.org/software/${PN}/${P}.tar.gz" - -LICENSE="ISC" -SLOT="0/$(ver_cut 1-2)" -KEYWORDS="amd64 arm ~riscv x86" -IUSE="+execline" - -RDEPEND=" - >=dev-libs/skalibs-2.13.1.0:= - execline? ( dev-lang/execline:= ) -" -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}" - --libexecdir=/lib/s6 - --with-dynlib="/$(get_libdir)" - --with-lib="/usr/$(get_libdir)/execline" - --with-lib="/usr/$(get_libdir)/skalibs" - --with-sysdeps="/usr/$(get_libdir)/skalibs" - --enable-shared - --disable-allstatic - --disable-static - --disable-static-libc - $(use_enable execline) - ) - - econf "${myconf[@]}" -} |