mkmfmf 0.3 → 0.4
Sign up to get free protection for your applications and to get access to all the features.
- metadata +14 -66
- data/CHANGELOG.rdoc +0 -7
- data/Manifest.txt +0 -6
- data/Rakefile +0 -62
- data/mkmfmf.gemspec +0 -50
metadata
CHANGED
@@ -4,8 +4,8 @@ version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease: false
|
5
5
|
segments:
|
6
6
|
- 0
|
7
|
-
-
|
8
|
-
version: "0.
|
7
|
+
- 4
|
8
|
+
version: "0.4"
|
9
9
|
platform: ruby
|
10
10
|
authors:
|
11
11
|
- Asher
|
@@ -13,80 +13,28 @@ autorequire:
|
|
13
13
|
bindir: bin
|
14
14
|
cert_chain: []
|
15
15
|
|
16
|
-
date: 2010-
|
16
|
+
date: 2010-10-28 00:00:00 -04:00
|
17
17
|
default_executable:
|
18
|
-
dependencies:
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
23
|
-
none: false
|
24
|
-
requirements:
|
25
|
-
- - ">="
|
26
|
-
- !ruby/object:Gem::Version
|
27
|
-
segments:
|
28
|
-
- 2
|
29
|
-
- 0
|
30
|
-
- 4
|
31
|
-
version: 2.0.4
|
32
|
-
type: :development
|
33
|
-
version_requirements: *id001
|
34
|
-
- !ruby/object:Gem::Dependency
|
35
|
-
name: hoe
|
36
|
-
prerelease: false
|
37
|
-
requirement: &id002 !ruby/object:Gem::Requirement
|
38
|
-
none: false
|
39
|
-
requirements:
|
40
|
-
- - ">="
|
41
|
-
- !ruby/object:Gem::Version
|
42
|
-
segments:
|
43
|
-
- 2
|
44
|
-
- 6
|
45
|
-
- 1
|
46
|
-
version: 2.6.1
|
47
|
-
type: :development
|
48
|
-
version_requirements: *id002
|
49
|
-
description: |-
|
50
|
-
Fork of bundled mkmf.rb, should work as drop in replacement.
|
51
|
-
|
52
|
-
Modifications:
|
53
|
-
|
54
|
-
* GDB and XCode path compatibility: relative path specified by mkmf
|
55
|
-
(../../../../ext/<target>/...) confuses source-to-debug correspondence.
|
56
|
-
The downside to this is that mkmfmf specifies absolute paths, which
|
57
|
-
means that the project will have to be recompiled for debugging from an
|
58
|
-
alternate location. This can be disabled by adding a use_relative_paths block.
|
59
|
-
|
60
|
-
* CURRENTLY NOT WORKING: Sub-directory support for source code: all .c, .m, .cc, .cxx., .cpp files and
|
61
|
-
if the filesystem is case sensitive, all .C files are automatically included,
|
62
|
-
and any directories with .h files are added to INCFLAGS.
|
63
|
-
|
64
|
-
* Automatically uses CC from ENV if set
|
65
|
-
email:
|
66
|
-
- asher@ridiculouspower.com
|
18
|
+
dependencies: []
|
19
|
+
|
20
|
+
description: "Fork of bundled mkmf.rb, should work as drop in replacement. Modifications: * GDB and XCode path compatibility: relative path specified by mkmf (../../../../ext/<target>/...) confuses source-to-debug correspondence. The downside to this is that mkmfmf specifies absolute paths, which means that the project will have to be recompiled for debugging from an alternate location. This can be disabled by adding a use_relative_paths block. * CURRENTLY NOT WORKING: Sub-directory support for source code: all .c, .m, .cc, .cxx., .cpp files and if the filesystem is case sensitive, all .C files are automatically included, and any directories with .h files are added to INCFLAGS. * Automatically uses CC from ENV if set"
|
21
|
+
email: asher@ridiculouspower.com
|
67
22
|
executables: []
|
68
23
|
|
69
24
|
extensions: []
|
70
25
|
|
71
|
-
extra_rdoc_files:
|
72
|
-
|
73
|
-
- CHANGELOG.rdoc
|
74
|
-
- README.rdoc
|
26
|
+
extra_rdoc_files: []
|
27
|
+
|
75
28
|
files:
|
76
|
-
- CHANGELOG.rdoc
|
77
|
-
- Manifest.txt
|
78
|
-
- README.rdoc
|
79
|
-
- Rakefile
|
80
29
|
- lib/mkmfmf.rb
|
81
|
-
-
|
30
|
+
- README.rdoc
|
82
31
|
has_rdoc: true
|
83
32
|
homepage: http://rubygems.org/gems/mkmfmf
|
84
33
|
licenses: []
|
85
34
|
|
86
35
|
post_install_message:
|
87
|
-
rdoc_options:
|
88
|
-
|
89
|
-
- README.rdoc
|
36
|
+
rdoc_options: []
|
37
|
+
|
90
38
|
require_paths:
|
91
39
|
- lib
|
92
40
|
required_ruby_version: !ruby/object:Gem::Requirement
|
@@ -107,10 +55,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
107
55
|
version: "0"
|
108
56
|
requirements: []
|
109
57
|
|
110
|
-
rubyforge_project:
|
58
|
+
rubyforge_project: mkmfmf
|
111
59
|
rubygems_version: 1.3.7
|
112
60
|
signing_key:
|
113
61
|
specification_version: 3
|
114
|
-
summary: Fork of bundled mkmf.rb, should work as drop in replacement
|
62
|
+
summary: Fork of bundled mkmf.rb, should work as drop in replacement.
|
115
63
|
test_files: []
|
116
64
|
|
data/CHANGELOG.rdoc
DELETED
data/Manifest.txt
DELETED
data/Rakefile
DELETED
@@ -1,62 +0,0 @@
|
|
1
|
-
###############################################################################
|
2
|
-
# #
|
3
|
-
# Gem Specification #
|
4
|
-
# #
|
5
|
-
###############################################################################
|
6
|
-
|
7
|
-
gem_name = 'mkmfmf'
|
8
|
-
has_c_source = false
|
9
|
-
|
10
|
-
developer_name = 'Asher'
|
11
|
-
email = 'asher@ridiculouspower.com'
|
12
|
-
rubyforge_name = 'asher'
|
13
|
-
|
14
|
-
$VERBOSE = false
|
15
|
-
|
16
|
-
################################################################################
|
17
|
-
|
18
|
-
require 'hoe'
|
19
|
-
require 'rake/extensiontask'
|
20
|
-
|
21
|
-
require 'pp'
|
22
|
-
|
23
|
-
Hoe.spec gem_name do
|
24
|
-
developer( developer_name, email )
|
25
|
-
self.rubyforge_name = rubyforge_name
|
26
|
-
self.version = 0.3
|
27
|
-
self.readme_file = 'README.rdoc'
|
28
|
-
self.history_file = 'CHANGELOG.rdoc'
|
29
|
-
self.extra_rdoc_files = FileList['*.rdoc']
|
30
|
-
if has_c_source
|
31
|
-
self.spec_extras = { :extensions => 'ext/' + gem_name + '/extconf.rb' }
|
32
|
-
self.extra_dev_deps << ['rake-compiler', '>= 0']
|
33
|
-
end
|
34
|
-
Rake::ExtensionTask.new( gem_name, spec ) do |ext|
|
35
|
-
ext.lib_dir = File.join( 'lib', gem_name )
|
36
|
-
end
|
37
|
-
end
|
38
|
-
|
39
|
-
task :make do
|
40
|
-
Rake::Task[:compile].invoke
|
41
|
-
end
|
42
|
-
|
43
|
-
task :cultivate do
|
44
|
-
system "touch Manifest.txt; rake check_manifest | grep -v \"(in \" | patch"
|
45
|
-
system "rake debug_gem | grep -v \"(in \" > " + gem_name + ".gemspec"
|
46
|
-
end
|
47
|
-
|
48
|
-
# clear default task and set default to :compile
|
49
|
-
Rake::Task[ :default ].clear
|
50
|
-
task :default => :compile
|
51
|
-
|
52
|
-
# allow spec task to be turned off from command line
|
53
|
-
if has_c_source and
|
54
|
-
not ( ENV[ "no_spec" ] or
|
55
|
-
ENV[ "no_spec" ] == "true" or
|
56
|
-
ENV[ "no_spec" ] == "yes" or
|
57
|
-
ENV[ "no_spec" ] == "on" or
|
58
|
-
ENV[ "spec" ] == "false" or
|
59
|
-
ENV[ "spec" ] == "no" or
|
60
|
-
ENV[ "spec" ] == "off" )
|
61
|
-
Rake::Task[ :spec ].prerequisites << :compile
|
62
|
-
end
|
data/mkmfmf.gemspec
DELETED
@@ -1,50 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
Gem::Specification.new do |s|
|
4
|
-
s.name = %q{mkmfmf}
|
5
|
-
s.version = "0.3"
|
6
|
-
|
7
|
-
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
|
-
s.authors = ["Asher"]
|
9
|
-
s.date = %q{2010-09-01}
|
10
|
-
s.description = %q{Fork of bundled mkmf.rb, should work as drop in replacement.
|
11
|
-
|
12
|
-
Modifications:
|
13
|
-
|
14
|
-
* GDB and XCode path compatibility: relative path specified by mkmf
|
15
|
-
(../../../../ext/<target>/...) confuses source-to-debug correspondence.
|
16
|
-
The downside to this is that mkmfmf specifies absolute paths, which
|
17
|
-
means that the project will have to be recompiled for debugging from an
|
18
|
-
alternate location. This can be disabled by adding a use_relative_paths block.
|
19
|
-
|
20
|
-
* CURRENTLY NOT WORKING: Sub-directory support for source code: all .c, .m, .cc, .cxx., .cpp files and
|
21
|
-
if the filesystem is case sensitive, all .C files are automatically included,
|
22
|
-
and any directories with .h files are added to INCFLAGS.
|
23
|
-
|
24
|
-
* Automatically uses CC from ENV if set}
|
25
|
-
s.email = ["asher@ridiculouspower.com"]
|
26
|
-
s.extra_rdoc_files = ["Manifest.txt", "CHANGELOG.rdoc", "README.rdoc"]
|
27
|
-
s.files = ["CHANGELOG.rdoc", "Manifest.txt", "README.rdoc", "Rakefile", "lib/mkmfmf.rb", "mkmfmf.gemspec"]
|
28
|
-
s.homepage = %q{http://rubygems.org/gems/mkmfmf}
|
29
|
-
s.rdoc_options = ["--main", "README.rdoc"]
|
30
|
-
s.require_paths = ["lib"]
|
31
|
-
s.rubyforge_project = %q{asher}
|
32
|
-
s.rubygems_version = %q{1.3.7}
|
33
|
-
s.summary = %q{Fork of bundled mkmf.rb, should work as drop in replacement}
|
34
|
-
|
35
|
-
if s.respond_to? :specification_version then
|
36
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
37
|
-
s.specification_version = 3
|
38
|
-
|
39
|
-
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
40
|
-
s.add_development_dependency(%q<rubyforge>, [">= 2.0.4"])
|
41
|
-
s.add_development_dependency(%q<hoe>, [">= 2.6.1"])
|
42
|
-
else
|
43
|
-
s.add_dependency(%q<rubyforge>, [">= 2.0.4"])
|
44
|
-
s.add_dependency(%q<hoe>, [">= 2.6.1"])
|
45
|
-
end
|
46
|
-
else
|
47
|
-
s.add_dependency(%q<rubyforge>, [">= 2.0.4"])
|
48
|
-
s.add_dependency(%q<hoe>, [">= 2.6.1"])
|
49
|
-
end
|
50
|
-
end
|