Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/conmon/
Date: Thu, 25 Feb 2021 21:41:34
Message-Id: 1614289284.71e189c69e0811ab3e8d1d44b94b47cdaa37889e.zmedico@gentoo
1 commit: 71e189c69e0811ab3e8d1d44b94b47cdaa37889e
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 25 21:41:24 2021 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 25 21:41:24 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71e189c6
7
8 app-emulation/conmon: Remove old version 2.0.20
9
10 Package-Manager: Portage-3.0.15, Repoman-3.0.2
11 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
12
13 app-emulation/conmon/Manifest | 1 -
14 app-emulation/conmon/conmon-2.0.20.ebuild | 45 -------------------------------
15 2 files changed, 46 deletions(-)
16
17 diff --git a/app-emulation/conmon/Manifest b/app-emulation/conmon/Manifest
18 index 7b8007e8115..a64b4fce7cd 100644
19 --- a/app-emulation/conmon/Manifest
20 +++ b/app-emulation/conmon/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST conmon-2.0.20.tar.gz 64716 BLAKE2B d7eb464f5be0b117824571134f08077955f56e1637dd2cbc6b70413dc9a6f109a1b9b207f5523103f205659ac20cc65f5f2340475d771fdf4b852d6895887975 SHA512 b719e41e1ead0d38c0874a30901c5660dc8612dc7aa1c025068480846a1e458a744b55bb8d5d74d2c2ce38fdbbe03505fce216a2f2c0748740983e3272a82f0e
23 DIST conmon-2.0.22.tar.gz 103371 BLAKE2B f509ba800c847886ec2350e141d2b965ff1cc09822467718fb0d94acdabdc86c6f40dff9428679e4c4171ac6a522b3ba7622d66ebd8108be1a68cbf7418d5c09 SHA512 819e1d9279c1a22388220d710b975cdeb3c0b56413afb177afe1c96b649e2dce496d5f51fe4094f572111f771102ccd0ae86f1776e99fedb2e76e6e9130c2d5c
24 DIST conmon-2.0.26.tar.gz 104681 BLAKE2B fc8369258a414d3a169b64019199c604d1d8bded70d5a38230f243053dcf09c6f9aee931b328913e6cbbe3c495aab4894647897f40f537a79eb587ecee58517a SHA512 5cbb66053fb48b514f93b3be4d4ac428f9eea8a3e1452b4df232250e9cd01202ecb7477c05e1e4dfb21595f2d1881be35cdea9b23f43c02bb7c0e67a3161396e
25
26 diff --git a/app-emulation/conmon/conmon-2.0.20.ebuild b/app-emulation/conmon/conmon-2.0.20.ebuild
27 deleted file mode 100644
28 index 8aa13fbc4d2..00000000000
29 --- a/app-emulation/conmon/conmon-2.0.20.ebuild
30 +++ /dev/null
31 @@ -1,45 +0,0 @@
32 -# Copyright 1999-2020 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -EGIT_COMMIT="13244db638cf987c415298a3c23393ae5abeb885"
38 -DESCRIPTION="An OCI container runtime monitor"
39 -HOMEPAGE="https://github.com/containers/conmon"
40 -SRC_URI="https://github.com/containers/conmon/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
41 -
42 -LICENSE="Apache-2.0"
43 -SLOT="0"
44 -KEYWORDS="~amd64 ~arm64"
45 -IUSE="systemd"
46 -RESTRICT="test"
47 -
48 -RDEPEND="dev-libs/glib:=
49 - systemd? ( sys-apps/systemd:= )"
50 -DEPEND="${RDEPEND}"
51 -
52 -S="${WORKDIR}/${PN}-${EGIT_COMMIT}"
53 -
54 -src_prepare() {
55 - default
56 -
57 - if ! use systemd; then
58 - sed -e 's| $(PKG_CONFIG) --exists libsystemd-journal | false |' \
59 - -e 's| $(PKG_CONFIG) --exists libsystemd | false |' \
60 - -i Makefile || die
61 - fi
62 -}
63 -
64 -src_compile() {
65 - emake GIT_COMMIT="${EGIT_COMMIT}" \
66 - all
67 -}
68 -
69 -src_install() {
70 - emake DESTDIR="${D}" \
71 - PREFIX="/usr" \
72 - install
73 - dodir /usr/libexec/podman
74 - ln "${ED}/usr/"{bin,libexec/podman}/conmon || die
75 - dodoc README.md
76 -}