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 D0E6D138334 for ; Mon, 18 Mar 2019 09:18:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CABEBE08AC; Mon, 18 Mar 2019 09:18:46 +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 A05E7E08AC for ; Mon, 18 Mar 2019 09:18:46 +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 249B2335D07 for ; Mon, 18 Mar 2019 09:18:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 228E954F for ; Mon, 18 Mar 2019 09:18:43 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1552900716.58a5c384e23090d3f0cf85370ce0409c4c387081.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/ltrace/files/, dev-util/ltrace/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/ltrace/files/ltrace-0.7.3-ia64-pid_t.patch dev-util/ltrace/ltrace-0.7.3_p4.ebuild X-VCS-Directories: dev-util/ltrace/files/ dev-util/ltrace/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 58a5c384e23090d3f0cf85370ce0409c4c387081 X-VCS-Branch: master Date: Mon, 18 Mar 2019 09:18:43 +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: 340d50f7-bb8e-4875-8034-8bca74edf5c8 X-Archives-Hash: 13a396638c72c1448dcebeb06a6be20b commit: 58a5c384e23090d3f0cf85370ce0409c4c387081 Author: Sergei Trofimovich gentoo org> AuthorDate: Mon Mar 18 09:18:11 2019 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Mon Mar 18 09:18:36 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58a5c384 dev-util/ltrace: fix build on ia64 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Sergei Trofimovich gentoo.org> dev-util/ltrace/files/ltrace-0.7.3-ia64-pid_t.patch | 6 ++++++ dev-util/ltrace/ltrace-0.7.3_p4.ebuild | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/dev-util/ltrace/files/ltrace-0.7.3-ia64-pid_t.patch b/dev-util/ltrace/files/ltrace-0.7.3-ia64-pid_t.patch new file mode 100644 index 00000000000..c466ce17e02 --- /dev/null +++ b/dev-util/ltrace/files/ltrace-0.7.3-ia64-pid_t.patch @@ -0,0 +1,6 @@ +--- a/sysdeps/linux-gnu/ia64/breakpoint.c ++++ b/sysdeps/linux-gnu/ia64/breakpoint.c +@@ -26,2 +26,3 @@ + #include ++#include /* pid_t */ + #include diff --git a/dev-util/ltrace/ltrace-0.7.3_p4.ebuild b/dev-util/ltrace/ltrace-0.7.3_p4.ebuild index fd5f6d7ae50..c17e3402f37 100644 --- a/dev-util/ltrace/ltrace-0.7.3_p4.ebuild +++ b/dev-util/ltrace/ltrace-0.7.3_p4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Authors +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -34,6 +34,7 @@ src_prepare() { epatch "${FILESDIR}"/${PN}-0.7.3-alpha-protos.patch epatch "${FILESDIR}"/${PN}-0.7.3-ia64.patch epatch "${FILESDIR}"/${PN}-0.7.3-print-test-pie.patch + epatch "${FILESDIR}"/${PN}-0.7.3-ia64-pid_t.patch sed -i '/^dist_doc_DATA/d' Makefile.am || die eautoreconf }