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 22069138330 for ; Thu, 13 Oct 2016 02:26:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3345EE0C0C; Thu, 13 Oct 2016 02:25:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1223FE0C0C for ; Thu, 13 Oct 2016 02:25:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 89FF7341265 for ; Thu, 13 Oct 2016 02:25:55 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CAA682F9 for ; Thu, 13 Oct 2016 02:25:52 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1476325542.8d07399f942e500e0d42daa41756625b3ecdb67e.zmedico@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.0.ebuild sys-process/dumb-init/metadata.xml X-VCS-Directories: sys-process/dumb-init/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 8d07399f942e500e0d42daa41756625b3ecdb67e X-VCS-Branch: master Date: Thu, 13 Oct 2016 02:25:52 +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: bb6069cc-47e9-48a8-8846-9a122227239e X-Archives-Hash: c1e5f1acec38793b10e3e232e6767b4f commit: 8d07399f942e500e0d42daa41756625b3ecdb67e Author: Zac Medico gentoo org> AuthorDate: Thu Oct 13 02:12:44 2016 +0000 Commit: Zac Medico gentoo org> CommitDate: Thu Oct 13 02:25:42 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d07399f sys-process/dumb-init: add package Package-Manager: portage-2.3.2 sys-process/dumb-init/Manifest | 1 + sys-process/dumb-init/dumb-init-1.2.0.ebuild | 28 ++++++++++++++++++++++++++++ sys-process/dumb-init/metadata.xml | 12 ++++++++++++ 3 files changed, 41 insertions(+) diff --git a/sys-process/dumb-init/Manifest b/sys-process/dumb-init/Manifest new file mode 100644 index 00000000..170bbc6 --- /dev/null +++ b/sys-process/dumb-init/Manifest @@ -0,0 +1 @@ +DIST dumb-init-1.2.0.tar.gz 23370 SHA256 74486997321bd939cad2ee6af030f481d39751bc9aa0ece84ed55f864e309a3f SHA512 07f75771014c897b2e2f4de84b88ef5b829e19df81f6cbde0372a2f30ea78237af8e5cd6ab47b0a104606ea3b85c9883b86f777bc49bc428d52a32a4ff2ddad8 WHIRLPOOL 77385e68de43f043b1137285cbc97d48fa59e48b9053aa0530962692832e6806ad5fcb70e161e6887adfe4dadf211b726724c3b1bc1c09a8af2af05a4c183f00 diff --git a/sys-process/dumb-init/dumb-init-1.2.0.ebuild b/sys-process/dumb-init/dumb-init-1.2.0.ebuild new file mode 100644 index 00000000..47da847 --- /dev/null +++ b/sys-process/dumb-init/dumb-init-1.2.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit flag-o-matic + +DESCRIPTION="A minimal init system for Linux containers" +HOMEPAGE="https://github.com/Yelp/${PN}" +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() { + eapply_user + use static && append-cflags -static + sed -e "s|^CFLAGS=.*|CFLAGS=-std=gnu99 ${CFLAGS}|" -i Makefile || die +} + +src_install() { + dobin ${PN} + dodoc README.md +} diff --git a/sys-process/dumb-init/metadata.xml b/sys-process/dumb-init/metadata.xml new file mode 100644 index 00000000..e026c3b --- /dev/null +++ b/sys-process/dumb-init/metadata.xml @@ -0,0 +1,12 @@ + + + + + Yelp/dumb-init + dumb-init + + + zmedico@gentoo.org + Zac Medico + +