xezat 0.0.1
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 +7 -0
- data/.gitignore +14 -0
- data/.gitmodules +3 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +207 -0
- data/Rakefile +2 -0
- data/bin/xezat +14 -0
- data/lib/xezat.rb +6 -0
- data/lib/xezat/command/bump.rb +174 -0
- data/lib/xezat/command/create.rb +105 -0
- data/lib/xezat/command/debug.rb +30 -0
- data/lib/xezat/command/doctor.rb +45 -0
- data/lib/xezat/command/generate.rb +50 -0
- data/lib/xezat/command/validate.rb +43 -0
- data/lib/xezat/commands.rb +32 -0
- data/lib/xezat/cygchangelog.rb +53 -0
- data/lib/xezat/cygclasses.rb +33 -0
- data/lib/xezat/detector/autoconf.rb +16 -0
- data/lib/xezat/detector/automake.rb +16 -0
- data/lib/xezat/detector/boost.m4.rb +20 -0
- data/lib/xezat/detector/cmake.rb +16 -0
- data/lib/xezat/detector/gengetopt.rb +16 -0
- data/lib/xezat/detector/libtool.rb +16 -0
- data/lib/xezat/detector/make.rb +19 -0
- data/lib/xezat/detectors.rb +36 -0
- data/lib/xezat/main.rb +13 -0
- data/lib/xezat/packages.rb +21 -0
- data/lib/xezat/refine/linguist/file_blob.rb +14 -0
- data/lib/xezat/validator/m4.rb +30 -0
- data/lib/xezat/validator/pkgconfig.rb +23 -0
- data/lib/xezat/validators.rb +38 -0
- data/lib/xezat/variables.rb +48 -0
- data/lib/xezat/version.rb +3 -0
- data/share/xezat/compilers.json +39 -0
- data/share/xezat/invoke_cygport_dep.sh +5 -0
- data/share/xezat/repository/bitbucket.json +5 -0
- data/share/xezat/repository/github.json +5 -0
- data/share/xezat/repository/google.json +7 -0
- data/share/xezat/repository/sourceforge.json +6 -0
- data/share/xezat/show_cygport_description.sh +8 -0
- data/share/xezat/show_cygport_variable.sh +30 -0
- data/share/xezat/template/README.erb +60 -0
- data/share/xezat/template/cygport.erb +19 -0
- data/share/xezat/template/pkgconfig.erb +10 -0
- data/share/xezat/template/setup.erb +17 -0
- data/test/test.rb +18 -0
- data/test/xezat/command/fixture/doctor/a.lst.gz +0 -0
- data/test/xezat/command/fixture/doctor/b1.lst.gz +0 -0
- data/test/xezat/command/fixture/doctor/b2.lst.gz +0 -0
- data/test/xezat/command/test_create.rb +47 -0
- data/test/xezat/command/test_doctor.rb +16 -0
- data/test/xezat/detector/fixture/autoconf/no/configure.scan +1 -0
- data/test/xezat/detector/fixture/autoconf/yes_root/configure.ac +1 -0
- data/test/xezat/detector/fixture/autoconf/yes_subdir/subdir/configure.ac +1 -0
- data/test/xezat/detector/fixture/automake/no/Makefile.in +1 -0
- data/test/xezat/detector/fixture/automake/yes_root/Makefile.am +1 -0
- data/test/xezat/detector/fixture/automake/yes_subdir/subdir/Makefile.am +1 -0
- data/test/xezat/detector/fixture/boost.m4/no/configure.ac +1 -0
- data/test/xezat/detector/fixture/boost.m4/yes/configure.ac +1 -0
- data/test/xezat/detector/fixture/cmake/no/CMakeList.txt +1 -0
- data/test/xezat/detector/fixture/cmake/yes_root/CMakeLists.txt +1 -0
- data/test/xezat/detector/fixture/cmake/yes_subdir/subdir/CMakeLists.txt +1 -0
- data/test/xezat/detector/fixture/gengetopt/no/xezat.log +1 -0
- data/test/xezat/detector/fixture/gengetopt/yes_root/xezat.ggo +1 -0
- data/test/xezat/detector/fixture/gengetopt/yes_subdir/subdir/xezat.ggo +1 -0
- data/test/xezat/detector/test_autoconf.rb +23 -0
- data/test/xezat/detector/test_automake.rb +23 -0
- data/test/xezat/detector/test_boost.m4.rb +19 -0
- data/test/xezat/detector/test_cmake.rb +23 -0
- data/test/xezat/detector/test_gengetopt.rb +23 -0
- data/test/xezat/test_cygchangelog.rb +25 -0
- data/test/xezat/test_cygclasses.rb +31 -0
- data/test/xezat/test_variables.rb +15 -0
- data/test/xezat/validator/fixture/m4/no/usr/share/aclocal/.gitkeep +0 -0
- data/test/xezat/validator/fixture/m4/skip/usr/share/aclocal/.gitkeep +0 -0
- data/test/xezat/validator/fixture/m4/yes/usr/share/aclocal/test.m4 +1 -0
- data/test/xezat/validator/test_m4.rb +23 -0
- data/xezat.gemspec +28 -0
- metadata +239 -0
@@ -0,0 +1,19 @@
|
|
1
|
+
<% template_variables.each do |key, value| -%>
|
2
|
+
<%= key -%>="<%= value %>"
|
3
|
+
<% end -%>
|
4
|
+
|
5
|
+
CATEGORY="<%= category %>"
|
6
|
+
SUMMARY="<%= summary %>"
|
7
|
+
DESCRIPTION="<%= description %>"
|
8
|
+
|
9
|
+
<% cygclasses.each do |cygclass| -%>
|
10
|
+
inherit <%= cygclass %>
|
11
|
+
<% end -%>
|
12
|
+
|
13
|
+
PKG_NAMES="
|
14
|
+
${PN}
|
15
|
+
<% unless apponly then -%>
|
16
|
+
lib${PN}0
|
17
|
+
lib${PN}-devel
|
18
|
+
<% end -%>
|
19
|
+
"
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# This file is automatically generated. If you edit it, your
|
2
|
+
# edits will be discarded next time the file is generated.
|
3
|
+
# See http://cygwin.com/setup.html for details.
|
4
|
+
#
|
5
|
+
setup-timestamp: <%= timestamp %>
|
6
|
+
|
7
|
+
<% hints.each { |name, hint| -%>
|
8
|
+
@ <%= hint.name %>
|
9
|
+
sdesc: "<%= hint.sdesc %>"
|
10
|
+
ldesc: "<%= hint.ldesc %>"
|
11
|
+
category: <%= hint.category.join(' ') %>
|
12
|
+
requires: <%= hint.requires.join(' ') %>
|
13
|
+
version: <%= hint.version %>
|
14
|
+
install: <%= hint.install.path %> <%= hint.install.size %> <%= hint.install.checksum %>
|
15
|
+
source: <%= hint.source.path %> <%= hint.source.size %> <%= hint.source.checksum %>
|
16
|
+
|
17
|
+
<% } -%>
|
data/test/test.rb
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
here = File::dirname(__FILE__)
|
3
|
+
$:.unshift File::expand_path(File::join(here, '..', 'lib'))
|
4
|
+
$:.unshift File::expand_path(File::join(here))
|
5
|
+
|
6
|
+
Encoding::default_external = 'UTF-8'
|
7
|
+
|
8
|
+
require 'mercenary'
|
9
|
+
require 'pry'
|
10
|
+
require 'test/unit'
|
11
|
+
require 'xezat'
|
12
|
+
require 'xezat/commands'
|
13
|
+
require 'xezat/detectors'
|
14
|
+
|
15
|
+
Xezat::CommandManager::program = Mercenary::Program.new(:xezat)
|
16
|
+
Xezat::DetectorManager::load_default_detectors
|
17
|
+
|
18
|
+
Test::Unit::AutoRunner.run(true, File::join(here, 'xezat'))
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,47 @@
|
|
1
|
+
require 'xezat/command/create'
|
2
|
+
|
3
|
+
module Xezat::Test::Command
|
4
|
+
class CreateTest < Test::Unit::TestCase
|
5
|
+
include Xezat::Command
|
6
|
+
include Xezat
|
7
|
+
def setup
|
8
|
+
@command = CommandManager[:create]
|
9
|
+
@cygclass_manager = CygclassManager.new(File.join(File.dirname(__FILE__), '..', '..', 'cygport', 'cygclass'))
|
10
|
+
@repository_variables = {
|
11
|
+
:HOMEPAGE => 'homepage',
|
12
|
+
:SRC_URI => 'src_uri'
|
13
|
+
}
|
14
|
+
end
|
15
|
+
|
16
|
+
# repository のシェル変数群から template のシェル変数群に変換する
|
17
|
+
def test_get_template_variables
|
18
|
+
expected = @repository_variables
|
19
|
+
template_variables = @command.get_template_variables(@repository_variables, @cygclass_manager, [])
|
20
|
+
assert_equal(@repository_variables, template_variables)
|
21
|
+
end
|
22
|
+
|
23
|
+
# cygclass ありの template のシェル変数群に変換する
|
24
|
+
def test_get_template_variables_inherit
|
25
|
+
expected = {
|
26
|
+
:HOMEPAGE => 'homepage',
|
27
|
+
:GIT_URI => nil
|
28
|
+
}
|
29
|
+
template_variables = @command.get_template_variables(@repository_variables, @cygclass_manager, [:git])
|
30
|
+
assert_equal(expected, template_variables)
|
31
|
+
end
|
32
|
+
|
33
|
+
# 存在しない cygclass が指定された場合は例外を投げる
|
34
|
+
def test_get_template_variables_raise_no_such_cygclass_error
|
35
|
+
assert_raise(NoSuchCygclassError) do
|
36
|
+
@command.get_template_variables(@repository_variables, @cygclass_manager, [:nonexistent])
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
# vcs が複数指定された場合は例外を投げる
|
41
|
+
def test_get_template_variables_raise_cygclass_conflict_error
|
42
|
+
assert_raise(CygclassConflictError) do
|
43
|
+
@command.get_template_variables(@repository_variables, @cygclass_manager, [:git, :svn])
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
require 'xezat/command/doctor'
|
2
|
+
require 'zlib'
|
3
|
+
|
4
|
+
module Xezat::Test::Command
|
5
|
+
class DoctorTest < Test::Unit::TestCase
|
6
|
+
include Xezat::Command
|
7
|
+
include Xezat
|
8
|
+
def setup
|
9
|
+
@command = CommandManager[:doctor]
|
10
|
+
end
|
11
|
+
|
12
|
+
def test_get_contents_uniqueness
|
13
|
+
assert_equal({:"usr/bin/aaa"=>[:a], :"usr/bin/bbb"=>[:b1, :b2], :"usr/bin/ccc"=>[:b2]}, @command.get_contents_uniqueness(File::join(File.dirname(__FILE__), 'fixture', 'doctor')))
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
AX_BOOST
|
@@ -0,0 +1 @@
|
|
1
|
+
BOOST_REQUIRE
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require 'xezat/detector/autoconf'
|
2
|
+
|
3
|
+
module Xezat::Test::Detector
|
4
|
+
class AutoconfTest < Test::Unit::TestCase
|
5
|
+
include Xezat::Detector
|
6
|
+
include Xezat
|
7
|
+
def setup
|
8
|
+
@detector = DetectorManager[:autoconf]
|
9
|
+
end
|
10
|
+
|
11
|
+
def test_yes_root
|
12
|
+
assert_true(@detector.detect({S: File::join(File::dirname(__FILE__), 'fixture', 'autoconf', 'yes_root')}))
|
13
|
+
end
|
14
|
+
|
15
|
+
def test_yes_subdir
|
16
|
+
assert_true(@detector.detect({S: File::join(File::dirname(__FILE__), 'fixture', 'autoconf', 'yes_subdir')}))
|
17
|
+
end
|
18
|
+
|
19
|
+
def test_no
|
20
|
+
assert_false(@detector.detect({S: File::join(File::dirname(__FILE__), 'fixture', 'autoconf', 'no')}))
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require 'xezat/detector/autoconf'
|
2
|
+
|
3
|
+
module Xezat::Test::Detector
|
4
|
+
class AutomakeTest < Test::Unit::TestCase
|
5
|
+
include Xezat::Detector
|
6
|
+
include Xezat
|
7
|
+
def setup
|
8
|
+
@detector = DetectorManager[:automake]
|
9
|
+
end
|
10
|
+
|
11
|
+
def test_yes_root
|
12
|
+
assert_true(@detector.detect({S: File::join(File::dirname(__FILE__), 'fixture', 'automake', 'yes_root')}))
|
13
|
+
end
|
14
|
+
|
15
|
+
def test_yes_subdir
|
16
|
+
assert_true(@detector.detect({S: File::join(File::dirname(__FILE__), 'fixture', 'automake', 'yes_subdir')}))
|
17
|
+
end
|
18
|
+
|
19
|
+
def test_no
|
20
|
+
assert_false(@detector.detect({S: File::join(File::dirname(__FILE__), 'fixture', 'automake', 'no')}))
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
require 'xezat/detector/autoconf'
|
2
|
+
|
3
|
+
module Xezat::Test::Detector
|
4
|
+
class BoostM4Test < Test::Unit::TestCase
|
5
|
+
include Xezat::Detector
|
6
|
+
include Xezat
|
7
|
+
def setup
|
8
|
+
@detector = DetectorManager[:'boost.m4']
|
9
|
+
end
|
10
|
+
|
11
|
+
def test_yes
|
12
|
+
assert_true(@detector.detect({S: File::join(File::dirname(__FILE__), 'fixture', 'boost.m4', 'yes')}))
|
13
|
+
end
|
14
|
+
|
15
|
+
def test_no
|
16
|
+
assert_false(@detector.detect({S: File::join(File::dirname(__FILE__), 'fixture', 'boost.m4', 'no')}))
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require 'xezat/detector/autoconf'
|
2
|
+
|
3
|
+
module Xezat::Test::Detector
|
4
|
+
class CmakeTest < Test::Unit::TestCase
|
5
|
+
include Xezat::Detector
|
6
|
+
include Xezat
|
7
|
+
def setup
|
8
|
+
@detector = DetectorManager[:cmake]
|
9
|
+
end
|
10
|
+
|
11
|
+
def test_yes_root
|
12
|
+
assert_true(@detector.detect({S: File::join(File::dirname(__FILE__), 'fixture', 'cmake', 'yes_root')}))
|
13
|
+
end
|
14
|
+
|
15
|
+
def test_yes_subdir
|
16
|
+
assert_true(@detector.detect({S: File::join(File::dirname(__FILE__), 'fixture', 'cmake', 'yes_subdir')}))
|
17
|
+
end
|
18
|
+
|
19
|
+
def test_no
|
20
|
+
assert_false(@detector.detect({S: File::join(File::dirname(__FILE__), 'fixture', 'cmake', 'no')}))
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require 'xezat/detector/autoconf'
|
2
|
+
|
3
|
+
module Xezat::Test::Detector
|
4
|
+
class GengetoptTest < Test::Unit::TestCase
|
5
|
+
include Xezat::Detector
|
6
|
+
include Xezat
|
7
|
+
def setup
|
8
|
+
@detector = DetectorManager[:gengetopt]
|
9
|
+
end
|
10
|
+
|
11
|
+
def test_yes_root
|
12
|
+
assert_true(@detector.detect({S: File::join(File::dirname(__FILE__), 'fixture', 'gengetopt', 'yes_root')}))
|
13
|
+
end
|
14
|
+
|
15
|
+
def test_yes_subdir
|
16
|
+
assert_true(@detector.detect({S: File::join(File::dirname(__FILE__), 'fixture', 'gengetopt', 'yes_subdir')}))
|
17
|
+
end
|
18
|
+
|
19
|
+
def test_no
|
20
|
+
assert_false(@detector.detect({S: File::join(File::dirname(__FILE__), 'fixture', 'gengetopt', 'no')}))
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
require 'xezat/cygchangelog'
|
2
|
+
|
3
|
+
module Xezat::Test
|
4
|
+
class CygchangelogTest < Test::Unit::TestCase
|
5
|
+
include Xezat
|
6
|
+
def test_initialize
|
7
|
+
changelog = Cygchangelog.new(<<EOF
|
8
|
+
Port Notes:
|
9
|
+
|
10
|
+
----- version 2.0.0-1bl2 -----
|
11
|
+
Rebuild for xezat
|
12
|
+
next line
|
13
|
+
|
14
|
+
----- version 2.0.0-1bl1 -----
|
15
|
+
Version bump.
|
16
|
+
|
17
|
+
----- version 1.0.0-1bl1 -----
|
18
|
+
Initial release by fd0 <https://github.com/fd00/>
|
19
|
+
|
20
|
+
EOF
|
21
|
+
)
|
22
|
+
assert_equal(['Rebuild for xezat', 'next line'].join($/), changelog[:'2.0.0-1bl2'])
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
require 'xezat/cygclasses'
|
2
|
+
|
3
|
+
module Xezat::Test
|
4
|
+
class CygclassesTest < Test::Unit::TestCase
|
5
|
+
include Xezat
|
6
|
+
def setup
|
7
|
+
@cygclass_manager = CygclassManager.new(File.join(File.dirname(__FILE__), '..', 'cygport', 'cygclass'))
|
8
|
+
end
|
9
|
+
|
10
|
+
# 存在している cygclass
|
11
|
+
def test_existent_cygclass
|
12
|
+
assert_equal(true, @cygclass_manager.include?(:svn))
|
13
|
+
end
|
14
|
+
|
15
|
+
# 存在しない cygclass
|
16
|
+
def test_nonexistent_cygclass
|
17
|
+
assert_equal(false, @cygclass_manager.include?(:nonexistent))
|
18
|
+
end
|
19
|
+
|
20
|
+
# vcs である cygclass
|
21
|
+
def test_vcs_cygclass
|
22
|
+
assert_equal(true, @cygclass_manager.vcs?(:git))
|
23
|
+
end
|
24
|
+
|
25
|
+
# 存在しているが vcs ではない cygclass
|
26
|
+
def test_novcs_cygclass
|
27
|
+
assert_equal(false, @cygclass_manager.vcs?(:cmake))
|
28
|
+
end
|
29
|
+
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
require 'xezat/variables'
|
2
|
+
|
3
|
+
module Xezat::Test
|
4
|
+
class VariableManagerTest < Test::Unit::TestCase
|
5
|
+
include Xezat
|
6
|
+
def test_variable
|
7
|
+
variables = VariableManager.new(<<EOF
|
8
|
+
!ruby/sym HOMEPAGE: "https://github.com/fd00/xezat"
|
9
|
+
!ruby/sym GIT_URI: "https://github.com/fd00/xezat.git"
|
10
|
+
EOF
|
11
|
+
)
|
12
|
+
assert_equal('https://github.com/fd00/xezat', variables[:HOMEPAGE])
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
File without changes
|
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require 'xezat/validator/m4'
|
2
|
+
|
3
|
+
module Xezat::Test::Validator
|
4
|
+
class M4Test < Test::Unit::TestCase
|
5
|
+
include Xezat::Validator
|
6
|
+
include Xezat
|
7
|
+
def setup
|
8
|
+
@validator = ValidatorManager[:m4]
|
9
|
+
end
|
10
|
+
|
11
|
+
def test_skip
|
12
|
+
variables = {D: Dir.tmpdir, T: Dir.tmpdir}
|
13
|
+
result, detail = @validator.validate(variables)
|
14
|
+
assert_nil(result)
|
15
|
+
end
|
16
|
+
|
17
|
+
def test_yes
|
18
|
+
variables = {D: File::join(File.dirname(__FILE__), 'fixture', 'm4', 'yes'), T: Dir::tmpdir}
|
19
|
+
result, detail = @validator.validate(variables)
|
20
|
+
assert_true(result)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
data/xezat.gemspec
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'xezat/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "xezat"
|
8
|
+
spec.version = Xezat::VERSION
|
9
|
+
spec.authors = ["fd0"]
|
10
|
+
spec.email = ["booleanlabel@gmail.com"]
|
11
|
+
spec.summary = 'Complement of cygport'
|
12
|
+
spec.description = 'Complement of cygport '
|
13
|
+
spec.homepage = "https://github.com/fd00/xezat"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0")
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_runtime_dependency "facets", "~> 3.0.0"
|
22
|
+
spec.add_runtime_dependency "github-linguist", "~> 4.3.0"
|
23
|
+
spec.add_runtime_dependency "logger-colors", "~> 1.0.0"
|
24
|
+
spec.add_runtime_dependency "mercenary", "~> 0.3.5"
|
25
|
+
|
26
|
+
spec.add_development_dependency "bundler", "~> 1.7"
|
27
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
28
|
+
end
|
metadata
ADDED
@@ -0,0 +1,239 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: xezat
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- fd0
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-02-05 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: facets
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 3.0.0
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 3.0.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: github-linguist
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 4.3.0
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 4.3.0
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: logger-colors
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 1.0.0
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 1.0.0
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: mercenary
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 0.3.5
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 0.3.5
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: bundler
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '1.7'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '1.7'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rake
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '10.0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '10.0'
|
97
|
+
description: 'Complement of cygport '
|
98
|
+
email:
|
99
|
+
- booleanlabel@gmail.com
|
100
|
+
executables:
|
101
|
+
- xezat
|
102
|
+
extensions: []
|
103
|
+
extra_rdoc_files: []
|
104
|
+
files:
|
105
|
+
- ".gitignore"
|
106
|
+
- ".gitmodules"
|
107
|
+
- Gemfile
|
108
|
+
- LICENSE.txt
|
109
|
+
- README.md
|
110
|
+
- Rakefile
|
111
|
+
- bin/xezat
|
112
|
+
- lib/xezat.rb
|
113
|
+
- lib/xezat/command/bump.rb
|
114
|
+
- lib/xezat/command/create.rb
|
115
|
+
- lib/xezat/command/debug.rb
|
116
|
+
- lib/xezat/command/doctor.rb
|
117
|
+
- lib/xezat/command/generate.rb
|
118
|
+
- lib/xezat/command/validate.rb
|
119
|
+
- lib/xezat/commands.rb
|
120
|
+
- lib/xezat/cygchangelog.rb
|
121
|
+
- lib/xezat/cygclasses.rb
|
122
|
+
- lib/xezat/detector/autoconf.rb
|
123
|
+
- lib/xezat/detector/automake.rb
|
124
|
+
- lib/xezat/detector/boost.m4.rb
|
125
|
+
- lib/xezat/detector/cmake.rb
|
126
|
+
- lib/xezat/detector/gengetopt.rb
|
127
|
+
- lib/xezat/detector/libtool.rb
|
128
|
+
- lib/xezat/detector/make.rb
|
129
|
+
- lib/xezat/detectors.rb
|
130
|
+
- lib/xezat/main.rb
|
131
|
+
- lib/xezat/packages.rb
|
132
|
+
- lib/xezat/refine/linguist/file_blob.rb
|
133
|
+
- lib/xezat/validator/m4.rb
|
134
|
+
- lib/xezat/validator/pkgconfig.rb
|
135
|
+
- lib/xezat/validators.rb
|
136
|
+
- lib/xezat/variables.rb
|
137
|
+
- lib/xezat/version.rb
|
138
|
+
- share/xezat/compilers.json
|
139
|
+
- share/xezat/invoke_cygport_dep.sh
|
140
|
+
- share/xezat/repository/bitbucket.json
|
141
|
+
- share/xezat/repository/github.json
|
142
|
+
- share/xezat/repository/google.json
|
143
|
+
- share/xezat/repository/sourceforge.json
|
144
|
+
- share/xezat/show_cygport_description.sh
|
145
|
+
- share/xezat/show_cygport_variable.sh
|
146
|
+
- share/xezat/template/README.erb
|
147
|
+
- share/xezat/template/cygport.erb
|
148
|
+
- share/xezat/template/pkgconfig.erb
|
149
|
+
- share/xezat/template/setup.erb
|
150
|
+
- test/test.rb
|
151
|
+
- test/xezat/command/fixture/doctor/a.lst.gz
|
152
|
+
- test/xezat/command/fixture/doctor/b1.lst.gz
|
153
|
+
- test/xezat/command/fixture/doctor/b2.lst.gz
|
154
|
+
- test/xezat/command/test_create.rb
|
155
|
+
- test/xezat/command/test_doctor.rb
|
156
|
+
- test/xezat/detector/fixture/autoconf/no/configure.scan
|
157
|
+
- test/xezat/detector/fixture/autoconf/yes_root/configure.ac
|
158
|
+
- test/xezat/detector/fixture/autoconf/yes_subdir/subdir/configure.ac
|
159
|
+
- test/xezat/detector/fixture/automake/no/Makefile.in
|
160
|
+
- test/xezat/detector/fixture/automake/yes_root/Makefile.am
|
161
|
+
- test/xezat/detector/fixture/automake/yes_subdir/subdir/Makefile.am
|
162
|
+
- test/xezat/detector/fixture/boost.m4/no/configure.ac
|
163
|
+
- test/xezat/detector/fixture/boost.m4/yes/configure.ac
|
164
|
+
- test/xezat/detector/fixture/cmake/no/CMakeList.txt
|
165
|
+
- test/xezat/detector/fixture/cmake/yes_root/CMakeLists.txt
|
166
|
+
- test/xezat/detector/fixture/cmake/yes_subdir/subdir/CMakeLists.txt
|
167
|
+
- test/xezat/detector/fixture/gengetopt/no/xezat.log
|
168
|
+
- test/xezat/detector/fixture/gengetopt/yes_root/xezat.ggo
|
169
|
+
- test/xezat/detector/fixture/gengetopt/yes_subdir/subdir/xezat.ggo
|
170
|
+
- test/xezat/detector/test_autoconf.rb
|
171
|
+
- test/xezat/detector/test_automake.rb
|
172
|
+
- test/xezat/detector/test_boost.m4.rb
|
173
|
+
- test/xezat/detector/test_cmake.rb
|
174
|
+
- test/xezat/detector/test_gengetopt.rb
|
175
|
+
- test/xezat/test_cygchangelog.rb
|
176
|
+
- test/xezat/test_cygclasses.rb
|
177
|
+
- test/xezat/test_variables.rb
|
178
|
+
- test/xezat/validator/fixture/m4/no/usr/share/aclocal/.gitkeep
|
179
|
+
- test/xezat/validator/fixture/m4/skip/usr/share/aclocal/.gitkeep
|
180
|
+
- test/xezat/validator/fixture/m4/yes/usr/share/aclocal/test.m4
|
181
|
+
- test/xezat/validator/test_m4.rb
|
182
|
+
- xezat.gemspec
|
183
|
+
homepage: https://github.com/fd00/xezat
|
184
|
+
licenses:
|
185
|
+
- MIT
|
186
|
+
metadata: {}
|
187
|
+
post_install_message:
|
188
|
+
rdoc_options: []
|
189
|
+
require_paths:
|
190
|
+
- lib
|
191
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
192
|
+
requirements:
|
193
|
+
- - ">="
|
194
|
+
- !ruby/object:Gem::Version
|
195
|
+
version: '0'
|
196
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
197
|
+
requirements:
|
198
|
+
- - ">="
|
199
|
+
- !ruby/object:Gem::Version
|
200
|
+
version: '0'
|
201
|
+
requirements: []
|
202
|
+
rubyforge_project:
|
203
|
+
rubygems_version: 2.4.5
|
204
|
+
signing_key:
|
205
|
+
specification_version: 4
|
206
|
+
summary: Complement of cygport
|
207
|
+
test_files:
|
208
|
+
- test/test.rb
|
209
|
+
- test/xezat/command/fixture/doctor/a.lst.gz
|
210
|
+
- test/xezat/command/fixture/doctor/b1.lst.gz
|
211
|
+
- test/xezat/command/fixture/doctor/b2.lst.gz
|
212
|
+
- test/xezat/command/test_create.rb
|
213
|
+
- test/xezat/command/test_doctor.rb
|
214
|
+
- test/xezat/detector/fixture/autoconf/no/configure.scan
|
215
|
+
- test/xezat/detector/fixture/autoconf/yes_root/configure.ac
|
216
|
+
- test/xezat/detector/fixture/autoconf/yes_subdir/subdir/configure.ac
|
217
|
+
- test/xezat/detector/fixture/automake/no/Makefile.in
|
218
|
+
- test/xezat/detector/fixture/automake/yes_root/Makefile.am
|
219
|
+
- test/xezat/detector/fixture/automake/yes_subdir/subdir/Makefile.am
|
220
|
+
- test/xezat/detector/fixture/boost.m4/no/configure.ac
|
221
|
+
- test/xezat/detector/fixture/boost.m4/yes/configure.ac
|
222
|
+
- test/xezat/detector/fixture/cmake/no/CMakeList.txt
|
223
|
+
- test/xezat/detector/fixture/cmake/yes_root/CMakeLists.txt
|
224
|
+
- test/xezat/detector/fixture/cmake/yes_subdir/subdir/CMakeLists.txt
|
225
|
+
- test/xezat/detector/fixture/gengetopt/no/xezat.log
|
226
|
+
- test/xezat/detector/fixture/gengetopt/yes_root/xezat.ggo
|
227
|
+
- test/xezat/detector/fixture/gengetopt/yes_subdir/subdir/xezat.ggo
|
228
|
+
- test/xezat/detector/test_autoconf.rb
|
229
|
+
- test/xezat/detector/test_automake.rb
|
230
|
+
- test/xezat/detector/test_boost.m4.rb
|
231
|
+
- test/xezat/detector/test_cmake.rb
|
232
|
+
- test/xezat/detector/test_gengetopt.rb
|
233
|
+
- test/xezat/test_cygchangelog.rb
|
234
|
+
- test/xezat/test_cygclasses.rb
|
235
|
+
- test/xezat/test_variables.rb
|
236
|
+
- test/xezat/validator/fixture/m4/no/usr/share/aclocal/.gitkeep
|
237
|
+
- test/xezat/validator/fixture/m4/skip/usr/share/aclocal/.gitkeep
|
238
|
+
- test/xezat/validator/fixture/m4/yes/usr/share/aclocal/test.m4
|
239
|
+
- test/xezat/validator/test_m4.rb
|