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 B3705138335 for ; Tue, 19 Feb 2019 15:52:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ADC76E085D; Tue, 19 Feb 2019 15:52:49 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 74C59E085D for ; Tue, 19 Feb 2019 15:52:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 8EAD6335CF7 for ; Tue, 19 Feb 2019 15:52:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0355D520 for ; Tue, 19 Feb 2019 15:52:46 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1550591556.fb85935b024b19afbe2ce55d863b3e43b52e3d1e.blueness@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/queue-standalone/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/queue-standalone/queue-standalone-0.1-r1.ebuild X-VCS-Directories: sys-libs/queue-standalone/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: fb85935b024b19afbe2ce55d863b3e43b52e3d1e X-VCS-Branch: master Date: Tue, 19 Feb 2019 15:52:46 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 69dd092e-6490-4182-8eda-e68100d983b0 X-Archives-Hash: ce197aafc3eedfa4a44e6ed20b0946ef commit: fb85935b024b19afbe2ce55d863b3e43b52e3d1e Author: Anthony G. Basile gentoo org> AuthorDate: Tue Feb 19 15:49:54 2019 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Tue Feb 19 15:52:36 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb85935b sys-libs/queue-standalone: use insinto/doins instead of a direct cp Signed-off-by: Anthony G. Basile gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 .../queue-standalone-0.1-r1.ebuild | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/sys-libs/queue-standalone/queue-standalone-0.1-r1.ebuild b/sys-libs/queue-standalone/queue-standalone-0.1-r1.ebuild new file mode 100644 index 00000000000..618545bae97 --- /dev/null +++ b/sys-libs/queue-standalone/queue-standalone-0.1-r1.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Install from glibc." +HOMEPAGE="https://www.gnu.org/software/libc/libc.html" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~x86" + +DEPEND=" + !sys-libs/glibc + !sys-libs/uclibc" + +S="${WORKDIR}" + +src_install() { + insinto /usr/include/sys + doins "${FILESDIR}"/queue.h +}