diff options
Diffstat (limited to 'sys-auth/mrsh')
-rw-r--r-- | sys-auth/mrsh/Manifest | 1 | ||||
-rw-r--r-- | sys-auth/mrsh/files/union-wait-deprecated.diff | 20 | ||||
-rw-r--r-- | sys-auth/mrsh/metadata.xml | 18 | ||||
-rw-r--r-- | sys-auth/mrsh/mrsh-2.12-r1.ebuild | 39 | ||||
-rw-r--r-- | sys-auth/mrsh/mrsh-2.12.ebuild | 33 |
5 files changed, 0 insertions, 111 deletions
diff --git a/sys-auth/mrsh/Manifest b/sys-auth/mrsh/Manifest deleted file mode 100644 index 79e107eb3..000000000 --- a/sys-auth/mrsh/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST mrsh-2.12.tar.gz 458757 BLAKE2B f7a8a25507eca247814e0cc83730403316d59b1f221fba6bc1abe2f9e86cc083c44dfd886499e60c2ccd13e730204c9d1f0466ad43150bf488950965ce452a63 SHA512 1417197f5c26305287c5f8622800f8f02c5ea0abe1e0c65f9911cda5a3ba466ad75dd8b5120a9c004fbef4086f6627ee805f62801bd0c075e99c8f1298d09135 diff --git a/sys-auth/mrsh/files/union-wait-deprecated.diff b/sys-auth/mrsh/files/union-wait-deprecated.diff deleted file mode 100644 index bcb6376c1..000000000 --- a/sys-auth/mrsh/files/union-wait-deprecated.diff +++ /dev/null @@ -1,20 +0,0 @@ ---- a/mrlogin/mrlogin.c 2016-04-29 19:22:08.000000000 +0200 -+++ b/mrlogin/mrlogin.c 2019-10-29 02:25:39.095172149 +0100 -@@ -476,7 +476,7 @@ - void - catch_child(int ignore) - { -- union wait status; -+ int status; - int pid; - - (void)ignore; -@@ -487,7 +487,7 @@ - return; - /* if the child (reader) dies, just quit */ - if (pid < 0 || (pid == childpid && !WIFSTOPPED(status))) -- done((int)(status.w_termsig | status.w_retcode)); -+ done((int)(WTERMSIG(status) | WEXITSTATUS(status))); - } - /* NOTREACHED */ - } diff --git a/sys-auth/mrsh/metadata.xml b/sys-auth/mrsh/metadata.xml deleted file mode 100644 index 0355363c8..000000000 --- a/sys-auth/mrsh/metadata.xml +++ /dev/null @@ -1,18 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>lssndrbarbieri@gmail.com</email> - <name>Alessandro Barbieri</name> - </maintainer> - <upstream> - <remote-id type="github">chaos/mrsh</remote-id> - </upstream> -<longdescription lang="en">Mrsh is a set of remote shell programs that use munge authentication -rather than reserved ports for security. The code for mrsh is based -on the source code for rsh, rshd, rlogin, rlogind, and rcp.</longdescription> - <use> - <flag name="pam">build with pam support</flag> - <flag name="shadow">build with shadow file support</flag> - </use> -</pkgmetadata> diff --git a/sys-auth/mrsh/mrsh-2.12-r1.ebuild b/sys-auth/mrsh/mrsh-2.12-r1.ebuild deleted file mode 100644 index 28a604459..000000000 --- a/sys-auth/mrsh/mrsh-2.12-r1.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -inherit systemd - -DESCRIPTION="Mrsh is a set of remote shell programs that use munge authentication." -HOMEPAGE="https://github.com/chaos/mrsh" -SRC_URI="https://github.com/chaos/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64" -IUSE="pam shadow" -DEPEND=" - sys-auth/munge - - pam? ( sys-libs/pam ) - shadow? ( sys-apps/shadow ) -" -RDEPEND="${DEPEND}" - -PATCHES=( "${FILESDIR}/union-wait-deprecated.diff" ) - -src_configure() { - local myconf=( - --disable-static - --with-systemdsystemunitdir="$(systemd_get_systemunitdir)" - $(use_with pam) - $(use_with shadow) - ) - econf "${myconf[@]}" -} - -src_install() { - default - #remove executable bit from systemd units - chmod a-x "${D}/$(systemd_get_systemunitdir)"/* || die -} diff --git a/sys-auth/mrsh/mrsh-2.12.ebuild b/sys-auth/mrsh/mrsh-2.12.ebuild deleted file mode 100644 index 41938277c..000000000 --- a/sys-auth/mrsh/mrsh-2.12.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -inherit systemd - -DESCRIPTION="Mrsh is a set of remote shell programs that use munge authentication." -HOMEPAGE="https://github.com/chaos/mrsh" -SRC_URI="https://github.com/chaos/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64" -IUSE="pam shadow" -DEPEND=" - sys-auth/munge - - pam? ( sys-libs/pam ) - shadow? ( sys-apps/shadow ) -" -RDEPEND="${DEPEND}" - -PATCHES=( "${FILESDIR}/union-wait-deprecated.diff" ) - -src_configure() { - local myconf=( - --disable-static - --with-systemdsystemunitdir="$(systemd_get_systemunitdir)" - $(use_with pam) - $(use_with shadow) - ) - econf "${myconf[@]}" -} |