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 C6ED813835A for ; Wed, 24 Jun 2020 20:38:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BAE6CE0896; Wed, 24 Jun 2020 20:38:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 65896E0896 for ; Wed, 24 Jun 2020 20:38:40 +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 2C5A534F0D1 for ; Wed, 24 Jun 2020 20:38:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AB1572B0 for ; Wed, 24 Jun 2020 20:38:37 +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: <1593031114.43c183df35e25c4709a8a3973ebbf5fd6aebbc8c.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/crystal/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/crystal/files/crystal-0.34.0-no-usr-lib.patch X-VCS-Directories: dev-lang/crystal/files/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 43c183df35e25c4709a8a3973ebbf5fd6aebbc8c X-VCS-Branch: master Date: Wed, 24 Jun 2020 20:38:37 +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: 7330238c-ee08-4c62-9ce0-61f1b36330a7 X-Archives-Hash: f9a78d9e665269c28d0a75c0ce6daf79 commit: 43c183df35e25c4709a8a3973ebbf5fd6aebbc8c Author: Michael Mair-Keimberger gmail com> AuthorDate: Sun Jun 21 07:41:41 2020 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Wed Jun 24 20:38:34 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43c183df dev-lang/crystal: remove unused patch Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Michael Mair-Keimberger gmail.com> Closes: https://github.com/gentoo/gentoo/pull/16356 Signed-off-by: Sergei Trofimovich gentoo.org> dev-lang/crystal/files/crystal-0.34.0-no-usr-lib.patch | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/dev-lang/crystal/files/crystal-0.34.0-no-usr-lib.patch b/dev-lang/crystal/files/crystal-0.34.0-no-usr-lib.patch deleted file mode 100644 index 4dc0b42d90a..00000000000 --- a/dev-lang/crystal/files/crystal-0.34.0-no-usr-lib.patch +++ /dev/null @@ -1,14 +0,0 @@ -On amd64 linux /usr/lib does not match default 64-bit ABI. - -Let's rely on default compiler and linker paths instead. ---- a/src/compiler/crystal/codegen/link.cr -+++ b/src/compiler/crystal/codegen/link.cr -@@ -106,7 +106,7 @@ module Crystal - - private def lib_flags_posix - library_path = ENV["LIBRARY_PATH"]?.try(&.split(':', remove_empty: true)) || -- ["/usr/lib", "/usr/local/lib"] -+ [] of String - has_pkg_config = nil - - String.build do |flags|