xezat 0.3.1 → 0.3.2
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/lib/xezat/command/generate.rb +9 -0
- data/lib/xezat/detector/asciidoc.rb +1 -1
- data/lib/xezat/detector/autoconf-archive.rb +27 -0
- data/lib/xezat/detector/autoconf.rb +1 -1
- data/lib/xezat/detector/automake.rb +1 -1
- data/lib/xezat/detector/boost.m4.rb +1 -1
- data/lib/xezat/detector/cmake.rb +1 -1
- data/lib/xezat/detector/docbook2X.rb +1 -1
- data/lib/xezat/detector/font-util.rb +20 -0
- data/lib/xezat/detector/gengetopt.rb +1 -1
- data/lib/xezat/detector/gettext-devel.rb +2 -2
- data/lib/xezat/detector/gnulib.rb +1 -1
- data/lib/xezat/detector/gobject-introspection.rb +1 -1
- data/lib/xezat/detector/halibut.rb +1 -1
- data/lib/xezat/detector/libQt5Core-devel.rb +1 -1
- data/lib/xezat/detector/libtool.rb +1 -1
- data/lib/xezat/detector/make.rb +1 -1
- data/lib/xezat/detector/meson.rb +1 -1
- data/lib/xezat/detector/nasm.rb +1 -1
- data/lib/xezat/detector/ninja.rb +1 -1
- data/lib/xezat/detector/python27.rb +1 -1
- data/lib/xezat/detector/python36.rb +1 -1
- data/lib/xezat/detector/python37.rb +1 -1
- data/lib/xezat/detector/python38.rb +1 -1
- data/lib/xezat/detector/python39-docutils.rb +2 -2
- data/lib/xezat/detector/python39.rb +1 -1
- data/lib/xezat/detector/roundup.rb +1 -1
- data/lib/xezat/detector/waf.rb +1 -1
- data/lib/xezat/detector/xorg-util-macros.rb +20 -0
- data/lib/xezat/detectors.rb +1 -1
- data/lib/xezat/generator/cmake.rb +44 -0
- data/lib/xezat/generator/pkgconfig.rb +5 -7
- data/lib/xezat/generator.rb +6 -0
- data/lib/xezat/main.rb +1 -0
- data/lib/xezat/variables.rb +16 -4
- data/lib/xezat/version.rb +1 -1
- data/lib/xezat.rb +10 -1
- data/share/xezat/autoconf-archive.yml +583 -0
- data/share/xezat/template/cmake/cmake.erb +22 -0
- data/share/xezat/var2yaml.sh +1 -0
- data/xezat.gemspec +31 -11
- metadata +41 -34
- data/.fasterer.yml +0 -6
- data/.github/workflows/ruby.yml +0 -45
- data/.gitignore +0 -11
- data/.gitmodules +0 -3
- data/.rspec +0 -2
- data/.rubocop.yml +0 -36
- data/.ruby-version +0 -1
- data/Gemfile +0 -8
- data/Rakefile +0 -8
- data/bin/console +0 -15
- data/bin/setup +0 -8
- /data/share/xezat/template/{Makefile.am → pkgconfig/Makefile.am} +0 -0
- /data/share/xezat/template/{cmake.erb → pkgconfig/cmake.erb} +0 -0
- /data/share/xezat/template/{pkgconfig.erb → pkgconfig/pkgconfig.erb} +0 -0
metadata
CHANGED
@@ -1,15 +1,28 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: xezat
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daisuke Fujimura (fd0)
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
12
|
+
- !ruby/object:Gem::Dependency
|
13
|
+
name: colorize
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
15
|
+
requirements:
|
16
|
+
- - ">="
|
17
|
+
- !ruby/object:Gem::Version
|
18
|
+
version: 1.1.0
|
19
|
+
type: :runtime
|
20
|
+
prerelease: false
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
22
|
+
requirements:
|
23
|
+
- - ">="
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: 1.1.0
|
13
26
|
- !ruby/object:Gem::Dependency
|
14
27
|
name: facets
|
15
28
|
requirement: !ruby/object:Gem::Requirement
|
@@ -30,42 +43,42 @@ dependencies:
|
|
30
43
|
requirements:
|
31
44
|
- - ">="
|
32
45
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
46
|
+
version: 9.1.0
|
34
47
|
type: :runtime
|
35
48
|
prerelease: false
|
36
49
|
version_requirements: !ruby/object:Gem::Requirement
|
37
50
|
requirements:
|
38
51
|
- - ">="
|
39
52
|
- !ruby/object:Gem::Version
|
40
|
-
version:
|
53
|
+
version: 9.1.0
|
41
54
|
- !ruby/object:Gem::Dependency
|
42
55
|
name: pkg-config
|
43
56
|
requirement: !ruby/object:Gem::Requirement
|
44
57
|
requirements:
|
45
58
|
- - ">="
|
46
59
|
- !ruby/object:Gem::Version
|
47
|
-
version: 1.
|
60
|
+
version: 1.6.1
|
48
61
|
type: :runtime
|
49
62
|
prerelease: false
|
50
63
|
version_requirements: !ruby/object:Gem::Requirement
|
51
64
|
requirements:
|
52
65
|
- - ">="
|
53
66
|
- !ruby/object:Gem::Version
|
54
|
-
version: 1.
|
67
|
+
version: 1.6.1
|
55
68
|
- !ruby/object:Gem::Dependency
|
56
69
|
name: spdx
|
57
70
|
requirement: !ruby/object:Gem::Requirement
|
58
71
|
requirements:
|
59
72
|
- - ">="
|
60
73
|
- !ruby/object:Gem::Version
|
61
|
-
version: 4.1.
|
74
|
+
version: 4.1.5
|
62
75
|
type: :runtime
|
63
76
|
prerelease: false
|
64
77
|
version_requirements: !ruby/object:Gem::Requirement
|
65
78
|
requirements:
|
66
79
|
- - ">="
|
67
80
|
- !ruby/object:Gem::Version
|
68
|
-
version: 4.1.
|
81
|
+
version: 4.1.5
|
69
82
|
- !ruby/object:Gem::Dependency
|
70
83
|
name: thor
|
71
84
|
requirement: !ruby/object:Gem::Requirement
|
@@ -142,56 +155,56 @@ dependencies:
|
|
142
155
|
requirements:
|
143
156
|
- - ">="
|
144
157
|
- !ruby/object:Gem::Version
|
145
|
-
version: 3.
|
158
|
+
version: 3.13.1
|
146
159
|
type: :development
|
147
160
|
prerelease: false
|
148
161
|
version_requirements: !ruby/object:Gem::Requirement
|
149
162
|
requirements:
|
150
163
|
- - ">="
|
151
164
|
- !ruby/object:Gem::Version
|
152
|
-
version: 3.
|
165
|
+
version: 3.13.1
|
153
166
|
- !ruby/object:Gem::Dependency
|
154
167
|
name: rubocop
|
155
168
|
requirement: !ruby/object:Gem::Requirement
|
156
169
|
requirements:
|
157
170
|
- - ">="
|
158
171
|
- !ruby/object:Gem::Version
|
159
|
-
version: 1.
|
172
|
+
version: 1.79.1
|
160
173
|
type: :development
|
161
174
|
prerelease: false
|
162
175
|
version_requirements: !ruby/object:Gem::Requirement
|
163
176
|
requirements:
|
164
177
|
- - ">="
|
165
178
|
- !ruby/object:Gem::Version
|
166
|
-
version: 1.
|
179
|
+
version: 1.79.1
|
167
180
|
- !ruby/object:Gem::Dependency
|
168
181
|
name: rubocop-performance
|
169
182
|
requirement: !ruby/object:Gem::Requirement
|
170
183
|
requirements:
|
171
184
|
- - ">="
|
172
185
|
- !ruby/object:Gem::Version
|
173
|
-
version: 1.
|
186
|
+
version: 1.25.0
|
174
187
|
type: :development
|
175
188
|
prerelease: false
|
176
189
|
version_requirements: !ruby/object:Gem::Requirement
|
177
190
|
requirements:
|
178
191
|
- - ">="
|
179
192
|
- !ruby/object:Gem::Version
|
180
|
-
version: 1.
|
193
|
+
version: 1.25.0
|
181
194
|
- !ruby/object:Gem::Dependency
|
182
195
|
name: simplecov-cobertura
|
183
196
|
requirement: !ruby/object:Gem::Requirement
|
184
197
|
requirements:
|
185
198
|
- - ">="
|
186
199
|
- !ruby/object:Gem::Version
|
187
|
-
version:
|
200
|
+
version: 3.0.0
|
188
201
|
type: :development
|
189
202
|
prerelease: false
|
190
203
|
version_requirements: !ruby/object:Gem::Requirement
|
191
204
|
requirements:
|
192
205
|
- - ">="
|
193
206
|
- !ruby/object:Gem::Version
|
194
|
-
version:
|
207
|
+
version: 3.0.0
|
195
208
|
description: xezat helps you win at cygport.
|
196
209
|
email:
|
197
210
|
- booleanlabel@gmail.com
|
@@ -200,19 +213,8 @@ executables:
|
|
200
213
|
extensions: []
|
201
214
|
extra_rdoc_files: []
|
202
215
|
files:
|
203
|
-
- ".fasterer.yml"
|
204
|
-
- ".github/workflows/ruby.yml"
|
205
|
-
- ".gitignore"
|
206
|
-
- ".gitmodules"
|
207
|
-
- ".rspec"
|
208
|
-
- ".rubocop.yml"
|
209
|
-
- ".ruby-version"
|
210
|
-
- Gemfile
|
211
216
|
- LICENSE.txt
|
212
217
|
- README.md
|
213
|
-
- Rakefile
|
214
|
-
- bin/console
|
215
|
-
- bin/setup
|
216
218
|
- exe/xezat
|
217
219
|
- lib/xezat.rb
|
218
220
|
- lib/xezat/command/announce.rb
|
@@ -242,11 +244,13 @@ files:
|
|
242
244
|
- lib/xezat/debugger/linguist.rb
|
243
245
|
- lib/xezat/debugger/variable.rb
|
244
246
|
- lib/xezat/detector/asciidoc.rb
|
247
|
+
- lib/xezat/detector/autoconf-archive.rb
|
245
248
|
- lib/xezat/detector/autoconf.rb
|
246
249
|
- lib/xezat/detector/automake.rb
|
247
250
|
- lib/xezat/detector/boost.m4.rb
|
248
251
|
- lib/xezat/detector/cmake.rb
|
249
252
|
- lib/xezat/detector/docbook2X.rb
|
253
|
+
- lib/xezat/detector/font-util.rb
|
250
254
|
- lib/xezat/detector/gengetopt.rb
|
251
255
|
- lib/xezat/detector/gettext-devel.rb
|
252
256
|
- lib/xezat/detector/gnulib.rb
|
@@ -266,14 +270,18 @@ files:
|
|
266
270
|
- lib/xezat/detector/python39.rb
|
267
271
|
- lib/xezat/detector/roundup.rb
|
268
272
|
- lib/xezat/detector/waf.rb
|
273
|
+
- lib/xezat/detector/xorg-util-macros.rb
|
269
274
|
- lib/xezat/detectors.rb
|
270
275
|
- lib/xezat/ext/linguist/file_blob.rb
|
271
276
|
- lib/xezat/ext/string.rb
|
277
|
+
- lib/xezat/generator.rb
|
278
|
+
- lib/xezat/generator/cmake.rb
|
272
279
|
- lib/xezat/generator/pkgconfig.rb
|
273
280
|
- lib/xezat/main.rb
|
274
281
|
- lib/xezat/packages.rb
|
275
282
|
- lib/xezat/variables.rb
|
276
283
|
- lib/xezat/version.rb
|
284
|
+
- share/xezat/autoconf-archive.yml
|
277
285
|
- share/xezat/categories.yaml
|
278
286
|
- share/xezat/compilers.yaml
|
279
287
|
- share/xezat/cygport_dep.sh
|
@@ -283,12 +291,13 @@ files:
|
|
283
291
|
- share/xezat/repository/gnu.yaml
|
284
292
|
- share/xezat/repository/savannah.yaml
|
285
293
|
- share/xezat/repository/sourceforge.yaml
|
286
|
-
- share/xezat/template/Makefile.am
|
287
294
|
- share/xezat/template/README.erb
|
288
295
|
- share/xezat/template/announce.erb
|
289
|
-
- share/xezat/template/cmake.erb
|
296
|
+
- share/xezat/template/cmake/cmake.erb
|
290
297
|
- share/xezat/template/cygport.erb
|
291
|
-
- share/xezat/template/pkgconfig.
|
298
|
+
- share/xezat/template/pkgconfig/Makefile.am
|
299
|
+
- share/xezat/template/pkgconfig/cmake.erb
|
300
|
+
- share/xezat/template/pkgconfig/pkgconfig.erb
|
292
301
|
- share/xezat/var2yaml.sh
|
293
302
|
- xezat.gemspec
|
294
303
|
homepage: https://github.com/fd00/xezat
|
@@ -296,7 +305,6 @@ licenses:
|
|
296
305
|
- MIT
|
297
306
|
metadata:
|
298
307
|
rubygems_mfa_required: 'true'
|
299
|
-
post_install_message:
|
300
308
|
rdoc_options: []
|
301
309
|
require_paths:
|
302
310
|
- lib
|
@@ -311,8 +319,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
311
319
|
- !ruby/object:Gem::Version
|
312
320
|
version: '0'
|
313
321
|
requirements: []
|
314
|
-
rubygems_version: 3.
|
315
|
-
signing_key:
|
322
|
+
rubygems_version: 3.6.9
|
316
323
|
specification_version: 4
|
317
324
|
summary: xezat helps you win at cygport.
|
318
325
|
test_files: []
|
data/.fasterer.yml
DELETED
data/.github/workflows/ruby.yml
DELETED
@@ -1,45 +0,0 @@
|
|
1
|
-
# This workflow uses actions that are not certified by GitHub.
|
2
|
-
# They are provided by a third-party and are governed by
|
3
|
-
# separate terms of service, privacy policy, and support
|
4
|
-
# documentation.
|
5
|
-
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
|
6
|
-
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
|
7
|
-
|
8
|
-
name: Ruby
|
9
|
-
|
10
|
-
on:
|
11
|
-
push:
|
12
|
-
branches: [ "master" ]
|
13
|
-
pull_request:
|
14
|
-
branches: [ "master" ]
|
15
|
-
|
16
|
-
jobs:
|
17
|
-
test:
|
18
|
-
runs-on: ubuntu-latest
|
19
|
-
steps:
|
20
|
-
- uses: actions/checkout@v3
|
21
|
-
with:
|
22
|
-
submodules: true
|
23
|
-
- name: Install native libraries
|
24
|
-
run: sudo apt-get install cmake libicu-dev
|
25
|
-
- name: Set up Ruby
|
26
|
-
uses: ruby/setup-ruby@v1
|
27
|
-
with:
|
28
|
-
ruby-version: '3.2.2' # Not needed with a .ruby-version file
|
29
|
-
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
30
|
-
- name: Run rubocop
|
31
|
-
run: bundle exec rubocop --format simple
|
32
|
-
- name: Run fasterer
|
33
|
-
run: bundle exec fasterer
|
34
|
-
- name: Run tests
|
35
|
-
run: bundle exec rspec
|
36
|
-
- name: Formatting coverage results
|
37
|
-
uses: 5monkeys/cobertura-action@master
|
38
|
-
with:
|
39
|
-
path: tmp/coverage/coverage.xml
|
40
|
-
minimum_coverage: 75
|
41
|
-
show_branch: true
|
42
|
-
show_missing: true
|
43
|
-
show_class_names: true
|
44
|
-
link_missing_lines: true
|
45
|
-
report_name: code coverage results
|
data/.gitignore
DELETED
data/.gitmodules
DELETED
data/.rspec
DELETED
data/.rubocop.yml
DELETED
@@ -1,36 +0,0 @@
|
|
1
|
-
require: rubocop-performance
|
2
|
-
|
3
|
-
AllCops:
|
4
|
-
NewCops: enable
|
5
|
-
SuggestExtensions: false
|
6
|
-
TargetRubyVersion: 3.2
|
7
|
-
Exclude:
|
8
|
-
- 'spec/cygport/**/*'
|
9
|
-
- 'vendor/**/*'
|
10
|
-
|
11
|
-
Gemspec/DevelopmentDependencies:
|
12
|
-
EnforcedStyle: gemspec
|
13
|
-
|
14
|
-
Layout/LineLength:
|
15
|
-
Max: 160
|
16
|
-
|
17
|
-
Metrics/AbcSize:
|
18
|
-
Max: 45
|
19
|
-
Metrics/BlockLength:
|
20
|
-
Exclude:
|
21
|
-
- '*.gemspec'
|
22
|
-
- 'spec/**/*'
|
23
|
-
Metrics/CyclomaticComplexity:
|
24
|
-
Max: 10
|
25
|
-
Metrics/MethodLength:
|
26
|
-
Max: 35
|
27
|
-
Metrics/ParameterLists:
|
28
|
-
Max: 8
|
29
|
-
Metrics/PerceivedComplexity:
|
30
|
-
Max: 12
|
31
|
-
|
32
|
-
Naming/FileName:
|
33
|
-
Enabled: false
|
34
|
-
|
35
|
-
Style/Documentation:
|
36
|
-
Enabled: false
|
data/.ruby-version
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
3.2.2
|
data/Gemfile
DELETED
data/Rakefile
DELETED
data/bin/console
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
require 'bundler/setup'
|
5
|
-
require 'xezat'
|
6
|
-
|
7
|
-
# You can add fixtures and/or initialization code here to make experimenting
|
8
|
-
# with your gem easier. You can also use a different console, if you like.
|
9
|
-
|
10
|
-
# (If you use this, don't forget to add pry to your Gemfile!)
|
11
|
-
# require "pry"
|
12
|
-
# Pry.start
|
13
|
-
|
14
|
-
require 'irb'
|
15
|
-
IRB.start(__FILE__)
|
data/bin/setup
DELETED
File without changes
|
File without changes
|
File without changes
|