diff options
author | Zac Medico <zmedico@gentoo.org> | 2019-08-21 10:57:32 -0700 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2019-08-21 10:57:32 -0700 |
commit | 3c593917316bbc741e15308b392990e00d98cf30 (patch) | |
tree | 8843e69936352012130b5acc20194600a0fbad09 /app-emulation/conmon | |
parent | app-emulation/conmon: Bump to version 0.4.0 (diff) | |
download | gentoo-3c593917316bbc741e15308b392990e00d98cf30.tar.gz gentoo-3c593917316bbc741e15308b392990e00d98cf30.tar.bz2 gentoo-3c593917316bbc741e15308b392990e00d98cf30.zip |
app-emulation/conmon: Remove old version 0.2.0
Package-Manager: Portage-2.3.72, Repoman-2.3.17
Signed-off-by: Zac Medico <zmedico@gentoo.org>
Diffstat (limited to 'app-emulation/conmon')
-rw-r--r-- | app-emulation/conmon/Manifest | 1 | ||||
-rw-r--r-- | app-emulation/conmon/conmon-0.2.0.ebuild | 41 |
2 files changed, 0 insertions, 42 deletions
diff --git a/app-emulation/conmon/Manifest b/app-emulation/conmon/Manifest index 5054ecc89564..c02b4cdfa5de 100644 --- a/app-emulation/conmon/Manifest +++ b/app-emulation/conmon/Manifest @@ -1,3 +1,2 @@ -DIST conmon-0.2.0.tar.gz 48349 BLAKE2B f61d1750437102c3772669ac8cff75204bf6811a221212cb7127a439b57b70afacb460f4128413e242ccceb0fe44c417dcd0a7f08536f272131704f3a6cbd599 SHA512 81b6eb88a473c6b4e349e18ba48682dd15f5f1ad841d2ca6bead8b5f9b418dd20832a855a1c8d81ac77562d00cb6e5852aab4f6f4ce15f099ca63a0a3f432ec8 DIST conmon-0.3.0.tar.gz 49021 BLAKE2B ca753f8fe0801cef4e392e2f60e58c51100628f0576c46d139c9c9827a927970ec63bb0aaebce6ac6ffaedae75b141730833b8adcafc8d9777900d96319edff3 SHA512 9a60f3eace596a8d12dc950597a9e3619a6728bf4555bb1636da3ac8ed8a6bc2ae28471cba9c7c3ad04b61a24aa4bbd28242a22940240bf27babb834031deea4 DIST conmon-0.4.0.tar.gz 48889 BLAKE2B 50bfa534d04428b422902ab3cd4feec5cb1cf7a6411eb35fc2420680eccc95dd17d7cd1ed8af904f6d246f10511b23b69ff112fee70d3a734098fcd7f5d7d7e7 SHA512 6aa9e0f72231bd890df4f4fe96b8831ad0fcb3e1f0edef74af8471aa227aefc3d8ea20d8bf0d50a6c06913c6360970464ea1b44fb68c77dbcc2da55073704bdd diff --git a/app-emulation/conmon/conmon-0.2.0.ebuild b/app-emulation/conmon/conmon-0.2.0.ebuild deleted file mode 100644 index b529698cd21c..000000000000 --- a/app-emulation/conmon/conmon-0.2.0.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -KEYWORDS="~amd64" -DESCRIPTION="An OCI container runtime monitor" -HOMEPAGE="https://github.com/containers/conmon" -LICENSE="Apache-2.0" -SLOT="0" -IUSE="systemd" -EGIT_COMMIT="59952292a3b07ac125575024ae21956efe0ecdfb" -SRC_URI="${HOMEPAGE}/archive/v${PV}.tar.gz -> ${P}.tar.gz" -RDEPEND="dev-libs/glib:= - systemd? ( sys-apps/systemd:= )" -DEPEND="${RDEPEND}" - -src_prepare() { - default - - if ! use systemd; then - sed -e 's| pkg-config --exists libsystemd-journal | false |' \ - -e 's| pkg-config --exists libsystemd | false |' \ - -i Makefile || die - fi -} - -src_compile() { - emake GIT_COMMIT="${EGIT_COMMIT}" \ - all -} - -src_install() { - emake DESTDIR="${D}" \ - PREFIX="${ED}/usr" \ - install - mv "${ED}/usr/libexec"/{crio,podman} || die - dodir /usr/bin - ln "${ED}/usr/"{libexec/podman,bin}/conmon || die - dodoc README.md -} |