mini_portile2 2.8.8 → 2.8.9
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/.github/workflows/ci.yml +18 -16
- data/CHANGELOG.md +7 -0
- data/Gemfile +12 -9
- data/lib/mini_portile2/mini_portile.rb +2 -1
- data/lib/mini_portile2/version.rb +1 -1
- data/test/assets/test-cmake-1.0/CMakeLists.txt +1 -1
- metadata +3 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: da44cd16eb77e7123cd04099a6899343cec373a2343041b99da0156a6db5f254
|
4
|
+
data.tar.gz: 345bf22bfd3d5679dd7b49a67ab1219e3aa470ba60ed66b934709824f173289a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e9524d1a10295307873889f41bf74ecb1ac121b926227379f6c82fecc2dba748bda6b03f2c3923777e86f7990a479c11a2dcc31c68def02ce77344ccec40244d
|
7
|
+
data.tar.gz: 81f1e88d8218d79a0296018ef338f9f86682f90b5b1bfb864a0a065668e00beaa19120be05f22b8ffeb86a9ca22a9c6f751747e6ab7eede83b48d4f92f2db920
|
data/.github/workflows/ci.yml
CHANGED
@@ -25,7 +25,7 @@ jobs:
|
|
25
25
|
fail-fast: false
|
26
26
|
matrix:
|
27
27
|
platform: [ubuntu-latest, windows-latest, macos-latest]
|
28
|
-
ruby: ["2.3", "2.4", "2.5", "2.6", "2.7", "3.0", "3.1", "3.2", "3.3"]
|
28
|
+
ruby: ["2.3", "2.4", "2.5", "2.6", "2.7", "3.0", "3.1", "3.2", "3.3", "3.4"]
|
29
29
|
exclude:
|
30
30
|
# I can't figure out how to install these on macos through setup-ruby
|
31
31
|
- ruby: "2.3"
|
@@ -53,6 +53,7 @@ jobs:
|
|
53
53
|
test-examples:
|
54
54
|
env:
|
55
55
|
MAKEFLAGS: -j2
|
56
|
+
LDFLAGS: "-L/usr/local/opt/libiconv/lib" # for macos-13, sigh
|
56
57
|
strategy:
|
57
58
|
fail-fast: false
|
58
59
|
matrix:
|
@@ -71,6 +72,7 @@ jobs:
|
|
71
72
|
with:
|
72
73
|
apt-get: _update_ build-essential cmake
|
73
74
|
mingw: _upgrade_ cmake
|
75
|
+
brew: libiconv
|
74
76
|
ruby-version: ${{ matrix.ruby }}
|
75
77
|
bundler-cache: true
|
76
78
|
- uses: actions/cache@v4
|
@@ -141,21 +143,21 @@ jobs:
|
|
141
143
|
usesh: true
|
142
144
|
copyback: false
|
143
145
|
prepare: |
|
144
|
-
pkg_add ruby%3.
|
145
|
-
ln -sf /usr/local/bin/
|
146
|
-
ln -sf /usr/local/bin/
|
147
|
-
ln -sf /usr/local/bin/
|
148
|
-
ln -sf /usr/local/bin/
|
149
|
-
ln -sf /usr/local/bin/
|
150
|
-
ln -sf /usr/local/bin/
|
151
|
-
ln -sf /usr/local/bin/
|
152
|
-
ln -sf /usr/local/bin/
|
153
|
-
ln -sf /usr/local/bin/
|
154
|
-
ln -sf /usr/local/bin/
|
155
|
-
ln -sf /usr/local/bin/
|
156
|
-
ln -sf /usr/local/bin/
|
157
|
-
ln -sf /usr/local/bin/
|
158
|
-
ln -sf /usr/local/bin/
|
146
|
+
pkg_add ruby%3.4 gmake cmake git pkgconf security/gnupg
|
147
|
+
ln -sf /usr/local/bin/ruby34 /usr/local/bin/ruby
|
148
|
+
ln -sf /usr/local/bin/bundle34 /usr/local/bin/bundle
|
149
|
+
ln -sf /usr/local/bin/bundler34 /usr/local/bin/bundler
|
150
|
+
ln -sf /usr/local/bin/erb34 /usr/local/bin/erb
|
151
|
+
ln -sf /usr/local/bin/gem34 /usr/local/bin/gem
|
152
|
+
ln -sf /usr/local/bin/irb34 /usr/local/bin/irb
|
153
|
+
ln -sf /usr/local/bin/racc34 /usr/local/bin/racc
|
154
|
+
ln -sf /usr/local/bin/rake34 /usr/local/bin/rake
|
155
|
+
ln -sf /usr/local/bin/rbs34 /usr/local/bin/rbs
|
156
|
+
ln -sf /usr/local/bin/rdbg34 /usr/local/bin/rdbg
|
157
|
+
ln -sf /usr/local/bin/rdoc34 /usr/local/bin/rdoc
|
158
|
+
ln -sf /usr/local/bin/ri34 /usr/local/bin/ri
|
159
|
+
ln -sf /usr/local/bin/syntax_suggest34 /usr/local/bin/syntax_suggest
|
160
|
+
ln -sf /usr/local/bin/typeprof34 /usr/local/bin/typeprof
|
159
161
|
run: |
|
160
162
|
git config --global --add safe.directory /home/runner/work/mini_portile/mini_portile
|
161
163
|
gem install bundler
|
data/CHANGELOG.md
CHANGED
data/Gemfile
CHANGED
@@ -2,14 +2,17 @@ source 'https://rubygems.org'
|
|
2
2
|
|
3
3
|
gemspec
|
4
4
|
|
5
|
-
|
5
|
+
group :development do
|
6
|
+
gem "minitar", "0.9"
|
7
|
+
gem "minitest", "~> 5.15" # open range for ruby 2.3 support
|
8
|
+
gem "minitest-hooks", "1.5.2"
|
9
|
+
gem "rake", "13.2.1"
|
10
|
+
if RUBY_VERSION >= "3.4"
|
11
|
+
gem "webrick", git: "https://github.com/ruby/webrick" # shouldn't be necessary to pin once webrick 1.8.2 or 1.9.0 is released
|
12
|
+
else
|
13
|
+
gem "webrick"
|
14
|
+
end
|
6
15
|
|
7
|
-
gem "
|
8
|
-
gem "
|
9
|
-
gem "minitest-hooks", "1.5.2"
|
10
|
-
gem "rake", "13.2.1"
|
11
|
-
if RUBY_VERSION >= "3.4"
|
12
|
-
gem "webrick", git: "https://github.com/ruby/webrick" # shouldn't be necessary to pin once webrick 1.8.2 or 1.9.0 is released
|
13
|
-
else
|
14
|
-
gem "webrick"
|
16
|
+
gem "net-ftp" if Gem::Requirement.new("> 3.1.0.dev").satisfied_by?(Gem::Version.new(RUBY_VERSION))
|
17
|
+
gem "logger", "1.6.5" if Gem::Requirement.new("> 3.5.0.dev").satisfied_by?(Gem::Version.new(RUBY_VERSION))
|
15
18
|
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# CMakeLists files in this project can
|
2
2
|
# refer to the root source directory of the project as ${HELLO_SOURCE_DIR} and
|
3
3
|
# to the root binary directory of the project as ${HELLO_BINARY_DIR}.
|
4
|
-
cmake_minimum_required (VERSION
|
4
|
+
cmake_minimum_required (VERSION 3.5)
|
5
5
|
project (HELLO)
|
6
6
|
add_executable (hello hello.c)
|
7
7
|
install (TARGETS hello DESTINATION bin)
|
metadata
CHANGED
@@ -1,16 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mini_portile2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.8.
|
4
|
+
version: 2.8.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Luis Lavena
|
8
8
|
- Mike Dalessio
|
9
9
|
- Lars Kanis
|
10
|
-
autorequire:
|
11
10
|
bindir: bin
|
12
11
|
cert_chain: []
|
13
|
-
date:
|
12
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
14
13
|
dependencies: []
|
15
14
|
description: |
|
16
15
|
Simple autoconf and cmake builder for developers. It provides a standard way to compile against
|
@@ -64,7 +63,6 @@ licenses:
|
|
64
63
|
- MIT
|
65
64
|
metadata:
|
66
65
|
changelog_uri: https://github.com/flavorjones/mini_portile/blob/main/CHANGELOG.md
|
67
|
-
post_install_message:
|
68
66
|
rdoc_options: []
|
69
67
|
require_paths:
|
70
68
|
- lib
|
@@ -79,8 +77,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
79
77
|
- !ruby/object:Gem::Version
|
80
78
|
version: '0'
|
81
79
|
requirements: []
|
82
|
-
rubygems_version: 3.
|
83
|
-
signing_key:
|
80
|
+
rubygems_version: 3.6.8
|
84
81
|
specification_version: 4
|
85
82
|
summary: Simple autoconf and cmake builder for developers
|
86
83
|
test_files:
|