hornetseye-opencv 0.3.2 → 0.3.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.
Files changed (2) hide show
  1. data/Rakefile +4 -4
  2. metadata +8 -8
data/Rakefile CHANGED
@@ -7,7 +7,7 @@ require 'rake/loaders/makefile'
7
7
  require 'rbconfig'
8
8
 
9
9
  PKG_NAME = 'hornetseye-opencv'
10
- PKG_VERSION = '0.3.2'
10
+ PKG_VERSION = '0.3.3'
11
11
  CFG = RbConfig::CONFIG
12
12
  CXX = ENV[ 'CXX' ] || 'g++'
13
13
  RB_FILES = FileList[ 'lib/**/*.rb' ]
@@ -47,7 +47,7 @@ desc 'Compile Ruby extension (default)'
47
47
  task :all => [ SO_FILE ]
48
48
 
49
49
  file SO_FILE => OBJ do |t|
50
- sh "#{CXX} -shared -o #{t.name} #{OBJ} -lcv -lhighgui -lcvaux -lcxcore -lml #{$LIBRUBYARG}"
50
+ sh "#{CXX} -shared -o #{t.name} #{OBJ} -lopencv_core #{$LIBRUBYARG}"
51
51
  end
52
52
 
53
53
  task :test => [ SO_FILE ]
@@ -117,7 +117,7 @@ begin
117
117
  s.rdoc_options = %w{--no-private}
118
118
  s.add_dependency %<malloc>, [ '~> 1.1' ]
119
119
  s.add_dependency %<multiarray>, [ '~> 1.0' ]
120
- s.add_dependency %<opencv>, [ '~> 0.0' ]
120
+ s.add_dependency %<ruby-opencv>, [ '~> 0.0' ]
121
121
  s.add_development_dependency %q{rake}
122
122
  end
123
123
  GEM_SOURCE = "#{PKG_NAME}-#{PKG_VERSION}.gem"
@@ -141,7 +141,7 @@ begin
141
141
  s.rdoc_options = %w{--no-private}
142
142
  s.add_dependency %<malloc>, [ '~> 1.1' ]
143
143
  s.add_dependency %<multiarray>, [ '~> 1.0' ]
144
- s.add_dependency %<opencv>, [ '~> 0.0' ]
144
+ s.add_dependency %<ruby-opencv>, [ '~> 0.0' ]
145
145
  end
146
146
  GEM_BINARY = "#{PKG_NAME}-#{PKG_VERSION}-#{$BINSPEC.platform}.gem"
147
147
  desc "Build the gem file #{GEM_SOURCE}"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hornetseye-opencv
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-09-30 00:00:00.000000000 Z
12
+ date: 2014-12-19 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: malloc
@@ -44,7 +44,7 @@ dependencies:
44
44
  - !ruby/object:Gem::Version
45
45
  version: '1.0'
46
46
  - !ruby/object:Gem::Dependency
47
- name: opencv
47
+ name: ruby-opencv
48
48
  requirement: !ruby/object:Gem::Requirement
49
49
  none: false
50
50
  requirements:
@@ -87,18 +87,18 @@ files:
87
87
  - README.md
88
88
  - COPYING
89
89
  - .document
90
- - lib/hornetseye-opencv/node.rb
91
90
  - lib/hornetseye-opencv/cvmat.rb
92
91
  - lib/hornetseye-opencv/iplimage.rb
92
+ - lib/hornetseye-opencv/node.rb
93
93
  - lib/hornetseye_opencv_ext.rb
94
- - ext/init.cc
95
94
  - ext/cvmat.cc
95
+ - ext/init.cc
96
96
  - ext/node.cc
97
- - ext/node.hh
98
- - ext/rubytools.hh
97
+ - ext/cvmat.hh
99
98
  - ext/error.hh
99
+ - ext/node.hh
100
100
  - ext/rubyinc.hh
101
- - ext/cvmat.hh
101
+ - ext/rubytools.hh
102
102
  - ext/rubytools.tcc
103
103
  - test/ts_hornetseye_opencv.rb
104
104
  - test/tc_hornetseye_opencv.rb