Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/tini/
Date: Tue, 16 Apr 2019 17:20:26
Message-Id: 1555435207.53ecd98a1fb0d1486a51ed48c5acccbee8d8a6b2.zmedico@gentoo
1 commit: 53ecd98a1fb0d1486a51ed48c5acccbee8d8a6b2
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 16 17:20:07 2019 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 16 17:20:07 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53ecd98a
7
8 sys-process/tini: remove old version 0.16.1
9
10 Package-Manager: Portage-2.3.63, Repoman-2.3.12
11 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
12
13 sys-process/tini/Manifest | 1 -
14 sys-process/tini/tini-0.16.1.ebuild | 42 -------------------------------------
15 2 files changed, 43 deletions(-)
16
17 diff --git a/sys-process/tini/Manifest b/sys-process/tini/Manifest
18 index 78ea602e4cb..0b361120492 100644
19 --- a/sys-process/tini/Manifest
20 +++ b/sys-process/tini/Manifest
21 @@ -1,2 +1 @@
22 -DIST tini-0.16.1.tar.gz 29641 BLAKE2B 637ee17bbf8553b7803dc78cc40ec55ea919ec003005c7f2524322df6cc93a2e4c6fc017fa25c581f50eb17482956ebf37bf49c7796c33d227c7327ca467a906 SHA512 aa0a802c403a07771a2b28a07b97fa2c93d40b5d5be2cba6556c8e7a92e608453010625d0236d26c27bdd2820aed3ad9ca676b70f7fcd5986d7f91eb928d053c
23 DIST tini-0.18.0.tar.gz 32152 BLAKE2B d676f0f1b4d9f6dca98cdb626aa7c525ec55e090cfeb1cf0e9ab167f1ef4285123223873e92e81d5d62ceb631e26e9012f16b28b1d35813ac801f8e4594be70b SHA512 83279180b6a875aaff9b6b7446ee7e71fd05357279744afcb4db67c76572dc871acfba86c035857009b5dd88ca75d9f2e815d6a925563cdb3e6e771eb83be9b1
24
25 diff --git a/sys-process/tini/tini-0.16.1.ebuild b/sys-process/tini/tini-0.16.1.ebuild
26 deleted file mode 100644
27 index 4e2956b566d..00000000000
28 --- a/sys-process/tini/tini-0.16.1.ebuild
29 +++ /dev/null
30 @@ -1,42 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -inherit cmake-utils flag-o-matic
37 -
38 -DESCRIPTION="A tiny but valid init for containers"
39 -HOMEPAGE="https://github.com/krallin/tini"
40 -SRC_URI="https://github.com/krallin/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 -
42 -LICENSE="MIT"
43 -SLOT="0"
44 -KEYWORDS="amd64 ~arm ~x86"
45 -IUSE="+args +static"
46 -
47 -src_prepare() {
48 - cmake-utils_src_prepare
49 - # Do not strip binary
50 - sed -i -e 's/-Wl,-s")$/")/' CMakeLists.txt || die
51 -}
52 -
53 -src_configure() {
54 - local mycmakeargs=()
55 - use args || mycmakeargs+=(-DMINIMAL=ON)
56 -
57 - cmake-utils_src_configure
58 -}
59 -
60 -src_compile() {
61 - append-cflags -DPR_SET_CHILD_SUBREAPER=36 -DPR_GET_CHILD_SUBREAPER=37
62 - cmake-utils_src_compile
63 -}
64 -
65 -src_install() {
66 - cmake-utils_src_install
67 - if use static; then
68 - mv "${ED%/}"/usr/bin/{${PN}-static,${PN}} || die
69 - else
70 - rm "${ED%/}"/usr/bin/${PN}-static || die
71 - fi
72 -}