sys-process/tini: add package
authorZac Medico <zmedico@gentoo.org>
Thu, 13 Oct 2016 01:41:28 +0000 (18:41 -0700)
committerZac Medico <zmedico@gentoo.org>
Thu, 13 Oct 2016 01:53:25 +0000 (18:53 -0700)
Package-Manager: portage-2.3.2

sys-process/tini/Manifest [new file with mode: 0644]
sys-process/tini/metadata.xml [new file with mode: 0644]
sys-process/tini/tini-0.10.0.ebuild [new file with mode: 0644]

diff --git a/sys-process/tini/Manifest b/sys-process/tini/Manifest
new file mode 100644 (file)
index 0000000..78d0f6f
--- /dev/null
@@ -0,0 +1 @@
+DIST tini-0.10.0.tar.gz 24722 SHA256 67ab1f8fda1b3fcceeea2e0b1e06874fc20938d605cecf96e95898b1c38f60ec SHA512 1ca4ede9116656c39b07216934b21e2b5e0cde154b80987b5d9209400ccae9f14c283de2bfffcae51e674e074560d2d60ced30f9d05e940ce422ac3f083a1dcf WHIRLPOOL 725efece7f923845ceee50f4238f81ad3902db316653129bb88c7d6b2093422b56738af440840c65d969eca9685dbc7e3e52b4f29c48a801b19003e871183ab5
diff --git a/sys-process/tini/metadata.xml b/sys-process/tini/metadata.xml
new file mode 100644 (file)
index 0000000..f8b0311
--- /dev/null
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+       <upstream>
+               <remote-id type="github">krallin/tini</remote-id>
+       </upstream>
+       <maintainer type="person">
+               <email>zmedico@gentoo.org</email>
+               <name>Zac Medico</name>
+       </maintainer>
+</pkgmetadata>
diff --git a/sys-process/tini/tini-0.10.0.ebuild b/sys-process/tini/tini-0.10.0.ebuild
new file mode 100644 (file)
index 0000000..a9ff2c7
--- /dev/null
@@ -0,0 +1,30 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit cmake-utils flag-o-matic
+
+DESCRIPTION="A tiny but valid init for containers"
+HOMEPAGE="https://github.com/krallin/${PN}"
+SRC_URI="https://github.com/krallin/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="static"
+
+src_compile() {
+       append-cflags -DPR_SET_CHILD_SUBREAPER=36 -DPR_GET_CHILD_SUBREAPER=37
+       cmake-utils_src_compile
+}
+
+src_install() {
+       cmake-utils_src_install
+       if use static; then
+               mv "${ED%/}"/usr/bin/{${PN}-static,${PN}} || die
+       else
+               rm "${ED%/}"/usr/bin/${PN}-static || die
+       fi
+}