From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id CB61A1393F1 for ; Thu, 17 Sep 2015 02:00:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A4F7621C029; Thu, 17 Sep 2015 02:00:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4C97621C029 for ; Thu, 17 Sep 2015 02:00:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E4CA0340CA9 for ; Thu, 17 Sep 2015 02:00:29 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0C74F18F for ; Thu, 17 Sep 2015 02:00:28 +0000 (UTC) From: "Alexandre Rostovtsev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexandre Rostovtsev" Message-ID: <1442455141.c6b6a357c56c5c6dcc9915584b059f557d1ca91f.tetromino@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libsoup/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libsoup/libsoup-2.50.0.ebuild X-VCS-Directories: net-libs/libsoup/ X-VCS-Committer: tetromino X-VCS-Committer-Name: Alexandre Rostovtsev X-VCS-Revision: c6b6a357c56c5c6dcc9915584b059f557d1ca91f X-VCS-Branch: master Date: Thu, 17 Sep 2015 02:00:28 +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: 22e80b3f-1e42-4ec2-a07b-f2bbfb45a5e0 X-Archives-Hash: 7e7392815d4e04d8e39e1753e8cb8cc2 commit: c6b6a357c56c5c6dcc9915584b059f557d1ca91f Author: Alexandre Rostovtsev gentoo org> AuthorDate: Thu Sep 17 01:57:10 2015 +0000 Commit: Alexandre Rostovtsev gentoo org> CommitDate: Thu Sep 17 01:59:01 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6b6a357 net-libs/libsoup: fix tests when LC_ALL is set Gentoo-Bug: 560258 Reported-by: Jonathan Lovelace Package-Manager: portage-2.2.20.1 net-libs/libsoup/libsoup-2.50.0.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/net-libs/libsoup/libsoup-2.50.0.ebuild b/net-libs/libsoup/libsoup-2.50.0.ebuild index 443e4b1..a121eaa 100644 --- a/net-libs/libsoup/libsoup-2.50.0.ebuild +++ b/net-libs/libsoup/libsoup-2.50.0.ebuild @@ -54,6 +54,10 @@ src_prepare() { || die "sed failed" fi + # fix sorting when LC_ALL/LC_COLLATE is set, bug #560258 + # fixed upstream in 2.52 + sed -e 's/LANG=C sort/LC_ALL=C sort/' -i libsoup/Makefile.{am,in} || die "sed failed" + gnome2_src_prepare }