summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetr Vaněk <arkamar@gentoo.org>2024-01-22 09:05:39 +0100
committerPetr Vaněk <arkamar@gentoo.org>2024-01-22 09:18:00 +0100
commit18c9d5dd0a9feb9067ca0098ac1828bed79c2f5f (patch)
tree2c7cab7f2aecfa2cbdb2f458fcffcf6ca944a5d1
parentdev-python/virtualenvwrapper: Stabilize 6.0.0 x86, #922558 (diff)
downloadgentoo-18c9d5dd0a9feb9067ca0098ac1828bed79c2f5f.tar.gz
gentoo-18c9d5dd0a9feb9067ca0098ac1828bed79c2f5f.tar.bz2
gentoo-18c9d5dd0a9feb9067ca0098ac1828bed79c2f5f.zip
net-misc/s6-networking: drop 2.7.0.0-r1
Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
-rw-r--r--net-misc/s6-networking/Manifest1
-rw-r--r--net-misc/s6-networking/s6-networking-2.7.0.0-r1.ebuild61
2 files changed, 0 insertions, 62 deletions
diff --git a/net-misc/s6-networking/Manifest b/net-misc/s6-networking/Manifest
index 6ddc9372346a..3f01feea5204 100644
--- a/net-misc/s6-networking/Manifest
+++ b/net-misc/s6-networking/Manifest
@@ -1,2 +1 @@
-DIST s6-networking-2.7.0.0.tar.gz 114592 BLAKE2B ce4eab80788bd4c7406e4b5732cb035e483ef1d788ea24a61886fa23402af5df23380d17464020ea562810563162e18fbd49644e9ac3d4827802e2caf294bab7 SHA512 b0dd1b0007704ca087bf49ae93cc09b7cbaa59f6ab99a0281f6bb9de38b25da18be925bc27f1bb74f984f60579f4ebdba41f276ea529b77344d9f3155bad314c
DIST s6-networking-2.7.0.2.tar.gz 115997 BLAKE2B 24728f3b5e08eb94b295f345231a348c072c08a84d42585763bed8fe7057eeee6860b0d00f8548a86a896db98f1c4f51346b12f9361d500f962de6defe39308e SHA512 49f80c68d639f2b7ac7451ca2ace828ca4e8c1eeffec4a9b31f8157c26a87228275ea14d8b6495b0af0879a961b37910aa2b769d8db56d8731d0827c96053631
diff --git a/net-misc/s6-networking/s6-networking-2.7.0.0-r1.ebuild b/net-misc/s6-networking/s6-networking-2.7.0.0-r1.ebuild
deleted file mode 100644
index 950361688b0c..000000000000
--- a/net-misc/s6-networking/s6-networking-2.7.0.0-r1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit optfeature toolchain-funcs
-
-DESCRIPTION="Suite of small networking utilities for Unix systems"
-HOMEPAGE="https://www.skarnet.org/software/s6-networking/"
-SRC_URI="https://www.skarnet.org/software/${PN}/${P}.tar.gz"
-
-LICENSE="ISC"
-SLOT="0/$(ver_cut 1-2)"
-KEYWORDS="~amd64 ~x86"
-IUSE="ssl"
-
-RDEPEND="
- dev-lang/execline:=
- =dev-libs/skalibs-2.14.0*:=
- >=net-dns/s6-dns-2.3.7.0:=
- sys-apps/s6:=[execline]
- ssl? ( dev-libs/libretls:= )
-"
-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)/s6"
- --with-lib="/usr/$(get_libdir)/s6-dns"
- --with-lib="/usr/$(get_libdir)/skalibs"
- --with-sysdeps="/usr/$(get_libdir)/skalibs"
- --enable-shared
- --disable-allstatic
- --disable-static
- --disable-static-libc
- $(use_enable ssl ssl libtls)
- )
-
- econf "${myconf[@]}"
-}
-
-pkg_postinst() {
- optfeature "man pages" app-doc/s6-networking-man-pages
-}