diff options
author | Joonas Niilola <juippis@gentoo.org> | 2020-12-03 08:26:12 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2020-12-03 08:26:12 +0200 |
commit | 806f015d55ff360bd1ad7e9a97084a8fdcd381d2 (patch) | |
tree | d00a5331929b28263f1567967dadc37f687bad7b /app-emulation | |
parent | net-analyzer/nagios-plugins-flameeyes: remove last-rited package (diff) | |
download | gentoo-806f015d55ff360bd1ad7e9a97084a8fdcd381d2.tar.gz gentoo-806f015d55ff360bd1ad7e9a97084a8fdcd381d2.tar.bz2 gentoo-806f015d55ff360bd1ad7e9a97084a8fdcd381d2.zip |
app-emulation/rex-client: remove last-rited package
Bug: https://bugs.gentoo.org/752462
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/rex-client/metadata.xml | 5 | ||||
-rw-r--r-- | app-emulation/rex-client/rex-client-9999.ebuild | 45 |
2 files changed, 0 insertions, 50 deletions
diff --git a/app-emulation/rex-client/metadata.xml b/app-emulation/rex-client/metadata.xml deleted file mode 100644 index 6f49eba8f496..000000000000 --- a/app-emulation/rex-client/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<!-- maintainer-needed --> -</pkgmetadata> diff --git a/app-emulation/rex-client/rex-client-9999.ebuild b/app-emulation/rex-client/rex-client-9999.ebuild deleted file mode 100644 index 4b6505b6105d..000000000000 --- a/app-emulation/rex-client/rex-client-9999.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -DESCRIPTION="Remote EXexcution agent" -HOMEPAGE="http://mduft.github.io/rex/" - -if [[ ${PV} == 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/mduft/rex.git" -else - SRC_URI="" - KEYWORDS="~x86-linux" -fi - -LICENSE="MIT" -SLOT="0" -IUSE="" - -REX_EXE=( - "client/rex-exec.sh" - "client/rex-register.sh" - "client/rex-paths.sh" - "client/rex-remote-pconv.sh" - "client/winpath2unix" - "client/unixpath2win" - ) - -src_prepare() { - for x in ${REX_EXE[@]}; do - sed \ - -e "s,\. \${HOME}/rex-config.sh,\. ${EPREFIX}/etc/rex.conf,g" \ - -i "${x}" || die - done -} - -src_install() { - for x in ${REX_EXE[@]}; do - dobin "${S}"/${x} - done - - insinto /etc - newins client/rex-config.sh rex.conf -} |