From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8B1111382C5 for ; Mon, 29 Jan 2018 15:46:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 966E6E0B51; Mon, 29 Jan 2018 15:45:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 75D1FE0B51 for ; Mon, 29 Jan 2018 15:45:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3EC76335C84 for ; Mon, 29 Jan 2018 15:45:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 74E5C1D6 for ; Mon, 29 Jan 2018 15:45:56 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1517240743.c3cd21d7eec750f00a8204eef7e7b3ca0debed73.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/dumb-init/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-process/dumb-init/Manifest sys-process/dumb-init/dumb-init-1.2.1.ebuild X-VCS-Directories: sys-process/dumb-init/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: c3cd21d7eec750f00a8204eef7e7b3ca0debed73 X-VCS-Branch: master Date: Mon, 29 Jan 2018 15:45:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 19a02f2d-3200-4938-a045-55eea411df10 X-Archives-Hash: a7e250a34816ee31c708c9b521bbc38c commit: c3cd21d7eec750f00a8204eef7e7b3ca0debed73 Author: Manuel Rüger gentoo org> AuthorDate: Mon Jan 29 15:45:43 2018 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Mon Jan 29 15:45:43 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3cd21d7 sys-process/dumb-init: Version bump to 1.2.1 Package-Manager: Portage-2.3.19, Repoman-2.3.6 sys-process/dumb-init/Manifest | 1 + sys-process/dumb-init/dumb-init-1.2.1.ebuild | 31 ++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/sys-process/dumb-init/Manifest b/sys-process/dumb-init/Manifest index ad3f4242ed1..a2d2ffb14c2 100644 --- a/sys-process/dumb-init/Manifest +++ b/sys-process/dumb-init/Manifest @@ -1 +1,2 @@ DIST dumb-init-1.2.0.tar.gz 23370 BLAKE2B 43bf4fb99090065310516a617fd507e1f32e3d210df09ac8d0d31736614e2a1bb248b399606493f86967759f3245b58018c4d832dcfa24267c29403b5aec43d2 SHA512 07f75771014c897b2e2f4de84b88ef5b829e19df81f6cbde0372a2f30ea78237af8e5cd6ab47b0a104606ea3b85c9883b86f777bc49bc428d52a32a4ff2ddad8 +DIST dumb-init-1.2.1.tar.gz 24472 BLAKE2B a2d18aca8e67f14a436ef5a23d5010339e803cadeeee5ec01145c9ddc0e000d2ec3f91b5342f57fb6ec63c174ac51e058ec14cc6d38dbe2d9a0fcad4a82ce4f9 SHA512 5a621caab17e322bf67f6b1eecfed7a0b4c59f2369f62745a7403343d0d01a800fb075b7579a51b5f68f404a0fb35220b937b7253d1e598dfd32d9360b84ddf4 diff --git a/sys-process/dumb-init/dumb-init-1.2.1.ebuild b/sys-process/dumb-init/dumb-init-1.2.1.ebuild new file mode 100644 index 00000000000..010813709c2 --- /dev/null +++ b/sys-process/dumb-init/dumb-init-1.2.1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit flag-o-matic toolchain-funcs + +DESCRIPTION="A minimal init system for Linux containers" +HOMEPAGE="https://github.com/Yelp/dumb-init" +SRC_URI="https://github.com/Yelp/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="static" +RESTRICT="test" + +src_prepare() { + default + use static && append-cflags -static + sed -e "s|^CFLAGS=.*|CFLAGS=-std=gnu99 ${CFLAGS}|" -i Makefile || die +} + +src_compile() { + CC=$(tc-getCC) emake +} + +src_install() { + dobin ${PN} + dodoc README.md +}