edn_turbo 0.7.2 → 0.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -1
- data/README.md +1 -1
- data/ext/edn_turbo/extconf.rb +10 -36
- data/lib/edn_turbo/version.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6ef6fae989e30efe46585a8cfe01ae00255e4014ade4a0ac5f36a0d7c1e98511
|
|
4
|
+
data.tar.gz: fc19904544cc35bfb84e08a2cb5d13e7fc4fc8b6a19117de247cc5d701c25bee
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d7bbeacf3d1d4e8e75356986bf87a3838d6e40729ea206aab1b55860d693b1e4e0d0bb1b63d2ae5689d3080f9a4dc239beb3aa7b29b9fe191e6d3592dfb3514b
|
|
7
|
+
data.tar.gz: 1877016ec61e37c41f4aed022444d721406068f062d6210cfd41cfe5d48290889de24f2d1bd5ebe00cd2ad34dd97af4904567644335a45255cb91d79e118e4fc
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/).
|
|
3
3
|
|
|
4
|
+
## [0.7.3] - 2021-11-06
|
|
5
|
+
### Changed
|
|
6
|
+
* Fix by Caleb Land for new homebrew installs to /opt
|
|
7
|
+
|
|
4
8
|
## [0.7.2] - 2021-09-20
|
|
5
9
|
### Changed
|
|
6
10
|
* allow rake versions > 12
|
|
@@ -48,7 +52,8 @@ All notable changes to this project will be documented in this file. This change
|
|
|
48
52
|
### Added
|
|
49
53
|
* initial version of docker configs for testing on Ubuntu.
|
|
50
54
|
|
|
51
|
-
[Unreleased]: https://github.com/edporras/edn_turbo/-/compare/0.7.
|
|
55
|
+
[Unreleased]: https://github.com/edporras/edn_turbo/-/compare/0.7.3...main
|
|
56
|
+
[0.7.3]: https://github.com/edporras/edn_turbo/-/compare/0.7.2...0.7.3
|
|
52
57
|
[0.7.2]: https://github.com/edporras/edn_turbo/-/compare/0.7.1...0.7.2
|
|
53
58
|
[0.7.1]: https://github.com/edporras/edn_turbo/-/compare/0.7.0...0.7.1
|
|
54
59
|
[0.7.0]: https://github.com/edporras/edn_turbo/-/compare/0.6.2...0.7.0
|
data/README.md
CHANGED
data/ext/edn_turbo/extconf.rb
CHANGED
|
@@ -3,17 +3,17 @@
|
|
|
3
3
|
# The MIT License (MIT)
|
|
4
4
|
|
|
5
5
|
# Copyright (c) 2015-2021 Ed Porras
|
|
6
|
-
#
|
|
6
|
+
#
|
|
7
7
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8
8
|
# of this software and associated documentation files (the "Software"), to deal
|
|
9
9
|
# in the Software without restriction, including without limitation the rights
|
|
10
10
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
11
11
|
# copies of the Software, and to permit persons to whom the Software is
|
|
12
12
|
# furnished to do so, subject to the following conditions:
|
|
13
|
-
#
|
|
13
|
+
#
|
|
14
14
|
# The above copyright notice and this permission notice shall be included in
|
|
15
15
|
# all copies or substantial portions of the Software.
|
|
16
|
-
#
|
|
16
|
+
#
|
|
17
17
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
18
18
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
19
19
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
@@ -24,40 +24,14 @@
|
|
|
24
24
|
|
|
25
25
|
require 'mkmf'
|
|
26
26
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
27
|
+
ENV['PKG_CONFIG_PATH'] ||= ""
|
|
28
|
+
ENV['PKG_CONFIG_PATH'] += if RUBY_PLATFORM =~ /darwin/
|
|
29
|
+
":/usr/local/opt/icu4c/lib/pkgconfig:/opt/homebrew/opt/icu4c/lib/pkgconfig"
|
|
30
|
+
else
|
|
31
|
+
":/usr/local/lib/pkgconfig:/usr/local/share/pkgconfig:/usr/lib/pkgconfig:/usr/share/pkgconfig"
|
|
32
|
+
end
|
|
31
33
|
|
|
32
|
-
|
|
33
|
-
File.exist?('/usr/local/opt/icu4c/lib/pkgconfig/icu-uc.pc')
|
|
34
|
-
|
|
35
|
-
i_opt = %x[ export PKG_CONFIG_PATH="/usr/local/opt/icu4c/lib/pkgconfig" && /usr/local/bin/pkg-config --cflags-only-I icu-uc ]
|
|
36
|
-
[
|
|
37
|
-
i_opt[/-I(.+?)\s/,1]
|
|
38
|
-
].freeze
|
|
39
|
-
else
|
|
40
|
-
[
|
|
41
|
-
'/usr/local/include',
|
|
42
|
-
'/usr/local/opt/icu4c/include',
|
|
43
|
-
'/usr/include'
|
|
44
|
-
].freeze
|
|
45
|
-
end
|
|
46
|
-
|
|
47
|
-
lib_dirs =
|
|
48
|
-
if RUBY_PLATFORM =~ /darwin/
|
|
49
|
-
l_opt = %x[ export PKG_CONFIG_PATH="/usr/local/opt/icu4c/lib/pkgconfig" && /usr/local/bin/pkg-config --libs icu-uc ]
|
|
50
|
-
[
|
|
51
|
-
l_opt[/-L(.+?)\s/,1]
|
|
52
|
-
].freeze
|
|
53
|
-
else
|
|
54
|
-
[
|
|
55
|
-
'/usr/local/lib', # must be the first entry; add others after it
|
|
56
|
-
'/usr/local/opt/icu4c/lib'
|
|
57
|
-
].freeze
|
|
58
|
-
end
|
|
59
|
-
|
|
60
|
-
dir_config('icuuc', header_dirs, lib_dirs)
|
|
34
|
+
pkg_config('icu-uc')
|
|
61
35
|
|
|
62
36
|
# feels very hackish to do this but the new icu4c needs it on MacOS
|
|
63
37
|
if RUBY_PLATFORM =~ /darwin/
|
data/lib/edn_turbo/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: edn_turbo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ed Porras
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-11-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: edn
|