From patchwork Tue Jul 28 09:05:22 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?b?SsOpcsO0bWUgUG91aWxsZXI=?= X-Patchwork-Id: 501096 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 48F26140DF7 for ; Tue, 28 Jul 2015 19:13:30 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 8C70C32F18; Tue, 28 Jul 2015 09:13:29 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id W9noCVPJjfsC; Tue, 28 Jul 2015 09:13:21 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 46BBF3320A; Tue, 28 Jul 2015 09:13:19 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id CC3C11C268C for ; Tue, 28 Jul 2015 09:13:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id C9BBD9178E for ; Tue, 28 Jul 2015 09:13:15 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id fiCUvdSQ0Emu for ; Tue, 28 Jul 2015 09:13:15 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from lupi.sysmic.org (sysmic.org [62.210.89.17]) by whitealder.osuosl.org (Postfix) with ESMTPS id 269B99178F for ; Tue, 28 Jul 2015 09:13:15 +0000 (UTC) Received: from sagittea.enensys.com (66.68.7.109.rev.sfr.net [109.7.68.66]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: jezz) by lupi.sysmic.org (Postfix) with ESMTPSA id F0CE14221A; Tue, 28 Jul 2015 11:05:23 +0200 (CEST) From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Pouiller?= To: buildroot@busybox.net Date: Tue, 28 Jul 2015 11:05:22 +0200 Message-Id: <1438074322-6397-1-git-send-email-jezz@sysmic.org> X-Mailer: git-send-email 2.1.4 MIME-Version: 1.0 Cc: =?UTF-8?q?J=C3=A9r=C3=B4me=20Pouiller?= Subject: [Buildroot] [PATCH] ltrace: bump to last version X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" 0002-Install-lib-types-conf.patch was upstreamed. Signed-off-by: Jérôme Pouiller --- package/ltrace/0002-Install-lib-types-conf.patch | 41 ------------------------ package/ltrace/ltrace.mk | 2 +- 2 files changed, 1 insertion(+), 42 deletions(-) delete mode 100644 package/ltrace/0002-Install-lib-types-conf.patch diff --git a/package/ltrace/0002-Install-lib-types-conf.patch b/package/ltrace/0002-Install-lib-types-conf.patch deleted file mode 100644 index cc5f110..0000000 --- a/package/ltrace/0002-Install-lib-types-conf.patch +++ /dev/null @@ -1,41 +0,0 @@ -Install lib*-types.conf - -This patch was written by Jérôme Pouiller and has been already sent to -upstream: - -http://lists.alioth.debian.org/pipermail/ltrace-devel/2015-June/001328.html - -Signed-off-by: Vicente Olivert Riera - -Install lib*-types.conf - -Files etc/libpthread.so-types.conf and etc/libc.so-types.conf was introduced in -commit 5ba9e10 ("Split type definitions from the bundled configs into their own -files"). However, they was not installed. - -So latrce failed with messages like : -/usr/share/ltrace/libm.so.conf:333: error: unknown type around 'ldouble erfl(ldouble); - -This patch declare these configuration files. - -Signed-off-by: Jérôme Pouiller ---- - Makefile.am | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/Makefile.am b/Makefile.am -index f63fa09..394d91c 100644 ---- a/Makefile.am -+++ b/Makefile.am -@@ -72,7 +72,8 @@ dist_man5_MANS = ltrace.conf.5 - dist_doc_DATA = COPYING CREDITS INSTALL README TODO - - dist_pkgdata_DATA = etc/syscalls.conf etc/libc.so.conf \ -- etc/libm.so.conf etc/libacl.so.conf etc/libpthread.so.conf -+ etc/libm.so.conf etc/libacl.so.conf etc/libpthread.so.conf \ -+ etc/libpthread.so-types.conf etc/libc.so-types.conf - - EXTRA_DIST = \ - debian/changelog \ --- -1.8.5.6 diff --git a/package/ltrace/ltrace.mk b/package/ltrace/ltrace.mk index 8a78a2a..73ae28e 100644 --- a/package/ltrace/ltrace.mk +++ b/package/ltrace/ltrace.mk @@ -4,7 +4,7 @@ # ################################################################################ -LTRACE_VERSION = be0c6870e08a3be43b3a0d210fb8dc7614b1e82f +LTRACE_VERSION = c22d359433b333937ee3d803450dc41998115685 LTRACE_SITE = git://anonscm.debian.org/collab-maint/ltrace.git LTRACE_DEPENDENCIES = elfutils LTRACE_CONF_OPTS = --disable-werror