Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/rex-client/
Date: Thu, 03 Dec 2020 06:34:20
Message-Id: 1606976772.806f015d55ff360bd1ad7e9a97084a8fdcd381d2.juippis@gentoo
1 commit: 806f015d55ff360bd1ad7e9a97084a8fdcd381d2
2 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 3 06:26:12 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 3 06:26:12 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=806f015d
7
8 app-emulation/rex-client: remove last-rited package
9
10 Bug: https://bugs.gentoo.org/752462
11 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
12
13 app-emulation/rex-client/metadata.xml | 5 ---
14 app-emulation/rex-client/rex-client-9999.ebuild | 45 -------------------------
15 2 files changed, 50 deletions(-)
16
17 diff --git a/app-emulation/rex-client/metadata.xml b/app-emulation/rex-client/metadata.xml
18 deleted file mode 100644
19 index 6f49eba8f49..00000000000
20 --- a/app-emulation/rex-client/metadata.xml
21 +++ /dev/null
22 @@ -1,5 +0,0 @@
23 -<?xml version="1.0" encoding="UTF-8"?>
24 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
25 -<pkgmetadata>
26 -<!-- maintainer-needed -->
27 -</pkgmetadata>
28
29 diff --git a/app-emulation/rex-client/rex-client-9999.ebuild b/app-emulation/rex-client/rex-client-9999.ebuild
30 deleted file mode 100644
31 index 4b6505b6105..00000000000
32 --- a/app-emulation/rex-client/rex-client-9999.ebuild
33 +++ /dev/null
34 @@ -1,45 +0,0 @@
35 -# Copyright 1999-2015 Gentoo Foundation
36 -# Distributed under the terms of the GNU General Public License v2
37 -
38 -EAPI=5
39 -
40 -DESCRIPTION="Remote EXexcution agent"
41 -HOMEPAGE="http://mduft.github.io/rex/"
42 -
43 -if [[ ${PV} == 9999 ]]; then
44 - inherit git-r3
45 - EGIT_REPO_URI="https://github.com/mduft/rex.git"
46 -else
47 - SRC_URI=""
48 - KEYWORDS="~x86-linux"
49 -fi
50 -
51 -LICENSE="MIT"
52 -SLOT="0"
53 -IUSE=""
54 -
55 -REX_EXE=(
56 - "client/rex-exec.sh"
57 - "client/rex-register.sh"
58 - "client/rex-paths.sh"
59 - "client/rex-remote-pconv.sh"
60 - "client/winpath2unix"
61 - "client/unixpath2win"
62 - )
63 -
64 -src_prepare() {
65 - for x in ${REX_EXE[@]}; do
66 - sed \
67 - -e "s,\. \${HOME}/rex-config.sh,\. ${EPREFIX}/etc/rex.conf,g" \
68 - -i "${x}" || die
69 - done
70 -}
71 -
72 -src_install() {
73 - for x in ${REX_EXE[@]}; do
74 - dobin "${S}"/${x}
75 - done
76 -
77 - insinto /etc
78 - newins client/rex-config.sh rex.conf
79 -}