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 D535C1395E2 for ; Mon, 14 Nov 2016 23:12:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 010C2E0914; Mon, 14 Nov 2016 23:12:20 +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 D69ADE0914 for ; Mon, 14 Nov 2016 23:12:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 876D4341683 for ; Mon, 14 Nov 2016 23:12:17 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6341224AA for ; Mon, 14 Nov 2016 23:12:15 +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: <1479165077.3a7ac4efeac3dfd5a02032c352ddded4d5ad531c.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/tini/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-process/tini/tini-0.13.0.ebuild X-VCS-Directories: sys-process/tini/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 3a7ac4efeac3dfd5a02032c352ddded4d5ad531c X-VCS-Branch: master Date: Mon, 14 Nov 2016 23:12:15 +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: 80561b39-0faf-4344-9cba-4ffd4399a534 X-Archives-Hash: 7410e2cbe0b7c31592ad37c9f57d7ce5 commit: 3a7ac4efeac3dfd5a02032c352ddded4d5ad531c Author: Manuel Rüger gentoo org> AuthorDate: Mon Nov 14 23:11:17 2016 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Mon Nov 14 23:11:17 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a7ac4ef sys-process/tini: Do not prestrip the binary Package-Manager: portage-2.3.2 sys-process/tini/tini-0.13.0.ebuild | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/sys-process/tini/tini-0.13.0.ebuild b/sys-process/tini/tini-0.13.0.ebuild index 98488eb..826d432 100644 --- a/sys-process/tini/tini-0.13.0.ebuild +++ b/sys-process/tini/tini-0.13.0.ebuild @@ -7,7 +7,7 @@ EAPI=6 inherit cmake-utils flag-o-matic DESCRIPTION="A tiny but valid init for containers" -HOMEPAGE="https://github.com/krallin/${PN}" +HOMEPAGE="https://github.com/krallin/tini" SRC_URI="https://github.com/krallin/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" @@ -18,6 +18,12 @@ IUSE="+args static" # vim-core is needed just for the xxd program DEPEND="app-editors/vim-core" +src_prepare() { + default + # Do not strip binary + sed -i -e 's/-Wl,-s")$/")/' CMakeLists.txt || die +} + src_configure() { local mycmakeargs=() use args || mycmakeargs+=(-DMINIMAL=ON)