Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/crystal/files/
Date: Wed, 24 Jun 2020 20:38:42
Message-Id: 1593031114.43c183df35e25c4709a8a3973ebbf5fd6aebbc8c.slyfox@gentoo
1 commit: 43c183df35e25c4709a8a3973ebbf5fd6aebbc8c
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sun Jun 21 07:41:41 2020 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 24 20:38:34 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43c183df
7
8 dev-lang/crystal: remove unused patch
9
10 Package-Manager: Portage-2.3.101, Repoman-2.3.22
11 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
12 Closes: https://github.com/gentoo/gentoo/pull/16356
13 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
14
15 dev-lang/crystal/files/crystal-0.34.0-no-usr-lib.patch | 14 --------------
16 1 file changed, 14 deletions(-)
17
18 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
19 deleted file mode 100644
20 index 4dc0b42d90a..00000000000
21 --- a/dev-lang/crystal/files/crystal-0.34.0-no-usr-lib.patch
22 +++ /dev/null
23 @@ -1,14 +0,0 @@
24 -On amd64 linux /usr/lib does not match default 64-bit ABI.
25 -
26 -Let's rely on default compiler and linker paths instead.
27 ---- a/src/compiler/crystal/codegen/link.cr
28 -+++ b/src/compiler/crystal/codegen/link.cr
29 -@@ -106,7 +106,7 @@ module Crystal
30 -
31 - private def lib_flags_posix
32 - library_path = ENV["LIBRARY_PATH"]?.try(&.split(':', remove_empty: true)) ||
33 -- ["/usr/lib", "/usr/local/lib"]
34 -+ [] of String
35 - has_pkg_config = nil
36 -
37 - String.build do |flags|