diff options
author | Petr Vaněk <arkamar@atlas.cz> | 2022-08-16 12:19:15 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2022-08-16 18:26:12 +0300 |
commit | cdc6462719c23361cf2515ab551bbc9483c0cc5a (patch) | |
tree | f2bdfe1ff231cb8995c1e2a30db8cdd8948ecb5f /sys-apps/s6-rc | |
parent | sys-apps/s6-linux-init: drop 1.0.7.3-r1 (diff) | |
download | gentoo-cdc6462719c23361cf2515ab551bbc9483c0cc5a.tar.gz gentoo-cdc6462719c23361cf2515ab551bbc9483c0cc5a.tar.bz2 gentoo-cdc6462719c23361cf2515ab551bbc9483c0cc5a.zip |
sys-apps/s6-rc: drop 0.5.3.1-r1
Signed-off-by: Petr Vaněk <arkamar@atlas.cz>
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'sys-apps/s6-rc')
-rw-r--r-- | sys-apps/s6-rc/Manifest | 1 | ||||
-rw-r--r-- | sys-apps/s6-rc/s6-rc-0.5.3.1-r1.ebuild | 61 |
2 files changed, 0 insertions, 62 deletions
diff --git a/sys-apps/s6-rc/Manifest b/sys-apps/s6-rc/Manifest index 4be06d8da2c9..7986e9d80111 100644 --- a/sys-apps/s6-rc/Manifest +++ b/sys-apps/s6-rc/Manifest @@ -1,2 +1 @@ -DIST s6-rc-0.5.3.1.tar.gz 99212 BLAKE2B 6f2bb8b25669dd0a87f716842c6a3018f8157e5193530fa84ce622169db5e8bb14cc145c64e4ea23d1905933b47411ad5b2b059e81435881c117c0377037be63 SHA512 1e181604510f39d0b10a3552c13e25d9a379552daa1c174c8856ce2e24ecbfb3271bd0236e1744de3a55053b1e96d550b816dbfff7aa3f75e0642003ab8e8bc9 DIST s6-rc-0.5.3.2.tar.gz 99249 BLAKE2B 5719823edf9e9bece6a3efdb5072c4555fc796c48144a0d1da52c609aef8d7437afc9c30924636891a829a307c30017a85140644fb7836b380adb8afbd49b35b SHA512 72963b2aa8e338503918d063102653d392cbd701823e35f87b45d9777fd512f7ad49ab47b94df0f9e5ef50a0dad5162f6f3526fa77dfaa3afb48ad8db4097051 diff --git a/sys-apps/s6-rc/s6-rc-0.5.3.1-r1.ebuild b/sys-apps/s6-rc/s6-rc-0.5.3.1-r1.ebuild deleted file mode 100644 index 4c6c8d4c1bca..000000000000 --- a/sys-apps/s6-rc/s6-rc-0.5.3.1-r1.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit toolchain-funcs - -DESCRIPTION="Service manager for the s6 supervision suite" -HOMEPAGE="https://www.skarnet.org/software/s6-rc/" -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-lang/execline-2.8.2.0:=[static-libs(-)?] - >=dev-libs/skalibs-2.11.1.0:=[static-libs(-)?] - >=sys-apps/s6-2.11.0.1:=[execline,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)/execline - --with-lib=/usr/$(get_libdir)/s6 - --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[@]}" -} - -pkg_postinst() { - ewarn "Databases from ${PN}-0.3.0.0 or earlier must be manually upgraded!" - ewarn "See the upgrade notes at ${EROOT}/usr/share/doc/${PF}/html/upgrade.html" - ewarn "and the documentation for the s6-rc-format-upgrade utility." -} |