hornetseye-narray 1.0.1 → 1.0.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 (5) hide show
  1. checksums.yaml +7 -0
  2. data/COPYING +12 -17
  3. data/Rakefile +1 -91
  4. data/config.rb +19 -0
  5. metadata +21 -48
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 58b9b1a9460440117837ecec47cadbfd03b268424d04b219ab3707b14790d5b3
4
+ data.tar.gz: 3b5bc4df4f2ac122ea0a269f531d86541c84e97978d32028a44e278c6793ae65
5
+ SHA512:
6
+ metadata.gz: 5ea2d1d383be233d7c0a8d04fe311fb45b214924568cd67d150ed77de2e15cd4a9663e6c839bcfc953a0257c422ca150cd47284ab14e1ebaa397cf998fa4bd22
7
+ data.tar.gz: d88fc970ae347cdde6145f3a49c8e9900eca5ee46903e30a4854434c6f4b32f3246948219f9d1ee1defe33e4f981ee16d2ac4ea6ab6bccbe1d8c67e3fc77ae52
data/COPYING CHANGED
@@ -1,15 +1,11 @@
1
- This is the license for the computer vision library Hornetseye.
2
- Copyright (C) 2006 - 2010 Jan Wedekind, Sheffield, United Kingdom.
1
+ GNU GENERAL PUBLIC LICENSE
2
+ Version 3, 29 June 2007
3
3
 
4
-
5
- GNU GENERAL PUBLIC LICENSE
6
- Version 3, 29 June 2007
7
-
8
- Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
4
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
9
5
  Everyone is permitted to copy and distribute verbatim copies
10
6
  of this license document, but changing it is not allowed.
11
7
 
12
- Preamble
8
+ Preamble
13
9
 
14
10
  The GNU General Public License is a free, copyleft license for
15
11
  software and other kinds of works.
@@ -72,7 +68,7 @@ patents cannot be used to render the program non-free.
72
68
  The precise terms and conditions for copying, distribution and
73
69
  modification follow.
74
70
 
75
- TERMS AND CONDITIONS
71
+ TERMS AND CONDITIONS
76
72
 
77
73
  0. Definitions.
78
74
 
@@ -80,7 +76,7 @@ modification follow.
80
76
 
81
77
  "Copyright" also means copyright-like laws that apply to other kinds of
82
78
  works, such as semiconductor masks.
83
-
79
+
84
80
  "The Program" refers to any copyrightable work licensed under this
85
81
  License. Each licensee is addressed as "you". "Licensees" and
86
82
  "recipients" may be individuals or organizations.
@@ -513,7 +509,7 @@ actual knowledge that, but for the patent license, your conveying the
513
509
  covered work in a country, or your recipient's use of the covered work
514
510
  in a country, would infringe one or more identifiable patents in that
515
511
  country that you have reason to believe are valid.
516
-
512
+
517
513
  If, pursuant to or in connection with a single transaction or
518
514
  arrangement, you convey, or propagate by procuring conveyance of, a
519
515
  covered work, and grant a patent license to some of the parties
@@ -622,9 +618,9 @@ an absolute waiver of all civil liability in connection with the
622
618
  Program, unless a warranty or assumption of liability accompanies a
623
619
  copy of the Program in return for a fee.
624
620
 
625
- END OF TERMS AND CONDITIONS
621
+ END OF TERMS AND CONDITIONS
626
622
 
627
- How to Apply These Terms to Your New Programs
623
+ How to Apply These Terms to Your New Programs
628
624
 
629
625
  If you develop a new program, and you want it to be of the greatest
630
626
  possible use to the public, the best way to achieve this is to make it
@@ -649,7 +645,7 @@ the "copyright" line and a pointer to where the full notice is found.
649
645
  GNU General Public License for more details.
650
646
 
651
647
  You should have received a copy of the GNU General Public License
652
- along with this program. If not, see <http://www.gnu.org/licenses/>.
648
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
653
649
 
654
650
  Also add information on how to contact you by electronic and paper mail.
655
651
 
@@ -668,12 +664,11 @@ might be different; for a GUI interface, you would use an "about box".
668
664
  You should also get your employer (if you work as a programmer) or school,
669
665
  if any, to sign a "copyright disclaimer" for the program, if necessary.
670
666
  For more information on this, and how to apply and follow the GNU GPL, see
671
- <http://www.gnu.org/licenses/>.
667
+ <https://www.gnu.org/licenses/>.
672
668
 
673
669
  The GNU General Public License does not permit incorporating your program
674
670
  into proprietary programs. If your program is a subroutine library, you
675
671
  may consider it more useful to permit linking proprietary applications with
676
672
  the library. If this is what you want to do, use the GNU Lesser General
677
673
  Public License instead of this License. But first, please read
678
- <http://www.gnu.org/philosophy/why-not-lgpl.html>.
679
-
674
+ <https://www.gnu.org/licenses/why-not-lgpl.html>.
data/Rakefile CHANGED
@@ -4,22 +4,7 @@ require 'rake/clean'
4
4
  require 'rake/testtask'
5
5
  require 'rake/packagetask'
6
6
  require 'rbconfig'
7
-
8
- PKG_NAME = 'hornetseye-narray'
9
- PKG_VERSION = '1.0.1'
10
- RB_FILES = FileList[ 'lib/**/*.rb' ]
11
- TC_FILES = FileList[ 'test/tc_*.rb' ]
12
- TS_FILES = FileList[ 'test/ts_*.rb' ]
13
- PKG_FILES = [ 'Rakefile', 'README.md', 'COPYING', '.document' ] +
14
- RB_FILES + TS_FILES + TC_FILES
15
- BIN_FILES = [ 'README.md', 'COPYING', '.document' ] +
16
- RB_FILES + TS_FILES + TC_FILES
17
- SUMMARY = %q{NArray integration for Hornetseye}
18
- DESCRIPTION = %q{This Ruby extension implements conversions from Hornetseye::MultiArray to NArray and vice versa.}
19
- LICENSE = 'GPL-3+'
20
- AUTHOR = %q{Jan Wedekind}
21
- EMAIL = %q{jan@wedesoft.de}
22
- HOMEPAGE = %q{http://wedesoft.github.com/hornetseye-narray/}
7
+ require_relative 'config'
23
8
 
24
9
  $SITELIBDIR = RbConfig::CONFIG[ 'sitelibdir' ]
25
10
 
@@ -67,79 +52,4 @@ Rake::PackageTask.new PKG_NAME, PKG_VERSION do |p|
67
52
  p.package_files = PKG_FILES
68
53
  end
69
54
 
70
- begin
71
- require 'rubygems'
72
- require 'rubygems/builder'
73
- $SPEC = Gem::Specification.new do |s|
74
- s.name = PKG_NAME
75
- s.version = PKG_VERSION
76
- s.platform = Gem::Platform::RUBY
77
- s.date = Date.today.to_s
78
- s.summary = SUMMARY
79
- s.description = DESCRIPTION
80
- s.license = LICENSE
81
- s.author = AUTHOR
82
- s.email = EMAIL
83
- s.homepage = HOMEPAGE
84
- s.files = PKG_FILES
85
- s.test_files = TC_FILES
86
- s.require_paths = [ 'lib' ]
87
- s.rubyforge_project = %q{hornetseye}
88
- s.extensions = %w{Rakefile}
89
- s.has_rdoc = 'yard'
90
- s.extra_rdoc_files = []
91
- s.rdoc_options = %w{--no-private}
92
- s.add_dependency %<narray>, [ '~> 0.5' ]
93
- s.add_dependency %<malloc>, [ '~> 1.4' ]
94
- s.add_dependency %<multiarray>, [ '~> 1.0' ]
95
- s.add_development_dependency %q{rake}
96
- end
97
- GEM_SOURCE = "#{PKG_NAME}-#{PKG_VERSION}.gem"
98
- $BINSPEC = Gem::Specification.new do |s|
99
- s.name = PKG_NAME
100
- s.version = PKG_VERSION
101
- s.platform = Gem::Platform::CURRENT
102
- s.date = Date.today.to_s
103
- s.summary = SUMMARY
104
- s.description = DESCRIPTION
105
- s.license = LICENSE
106
- s.author = AUTHOR
107
- s.email = EMAIL
108
- s.homepage = HOMEPAGE
109
- s.files = BIN_FILES
110
- s.test_files = TC_FILES
111
- s.require_paths = [ 'lib' ]
112
- s.rubyforge_project = %q{hornetseye}
113
- s.has_rdoc = 'yard'
114
- s.extra_rdoc_files = []
115
- s.rdoc_options = %w{--no-private}
116
- s.add_dependency %<narray>, [ '~> 0.5' ]
117
- s.add_dependency %<malloc>, [ '~> 1.4' ]
118
- s.add_dependency %<multiarray>, [ '~> 1.0' ]
119
- end
120
- GEM_BINARY = "#{PKG_NAME}-#{PKG_VERSION}-#{$BINSPEC.platform}.gem"
121
- desc "Build the gem file #{GEM_SOURCE}"
122
- task :gem => [ "pkg/#{GEM_SOURCE}" ]
123
- file "pkg/#{GEM_SOURCE}" => [ 'pkg' ] + $SPEC.files do
124
- when_writing 'Creating GEM' do
125
- Gem::Builder.new( $SPEC ).build
126
- verbose true do
127
- FileUtils.mv GEM_SOURCE, "pkg/#{GEM_SOURCE}"
128
- end
129
- end
130
- end
131
- desc "Build the gem file #{GEM_BINARY}"
132
- task :gem_binary => [ "pkg/#{GEM_BINARY}" ]
133
- file "pkg/#{GEM_BINARY}" => [ 'pkg' ] + $BINSPEC.files do
134
- when_writing 'Creating binary GEM' do
135
- Gem::Builder.new( $BINSPEC ).build
136
- verbose true do
137
- FileUtils.mv GEM_BINARY, "pkg/#{GEM_BINARY}"
138
- end
139
- end
140
- end
141
- rescue LoadError
142
- STDERR.puts 'Please install \'rubygems\' if you want to create Gem packages'
143
- end
144
-
145
55
  CLOBBER.include 'doc', '.yardoc'
data/config.rb ADDED
@@ -0,0 +1,19 @@
1
+ require 'rake'
2
+
3
+ PKG_NAME = 'hornetseye-narray'
4
+ PKG_VERSION = '1.0.3'
5
+ RB_FILES = ['config.rb'] + FileList[ 'lib/**/*.rb' ]
6
+ TC_FILES = FileList[ 'test/tc_*.rb' ]
7
+ TS_FILES = FileList[ 'test/ts_*.rb' ]
8
+ PKG_FILES = [ 'Rakefile', 'README.md', 'COPYING', '.document' ] +
9
+ RB_FILES + TS_FILES + TC_FILES
10
+ BIN_FILES = [ 'README.md', 'COPYING', '.document' ] +
11
+ RB_FILES + TS_FILES + TC_FILES
12
+ SUMMARY = %q{NArray integration for Hornetseye}
13
+ DESCRIPTION = %q{This Ruby extension implements conversions from Hornetseye::MultiArray to NArray and vice versa.}
14
+ LICENSE = 'GPL-3+'
15
+ AUTHOR = %q{Jan Wedekind}
16
+ EMAIL = %q{jan@wedesoft.de}
17
+ HOMEPAGE = %q{http://wedesoft.github.io/hornetseye-narray/}
18
+
19
+
metadata CHANGED
@@ -1,80 +1,56 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hornetseye-narray
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
5
- prerelease:
4
+ version: 1.0.3
6
5
  platform: ruby
7
6
  authors:
8
7
  - Jan Wedekind
9
- autorequire:
10
8
  bindir: bin
11
9
  cert_chain: []
12
- date: 2013-09-30 00:00:00.000000000 Z
10
+ date: 2025-06-30 00:00:00.000000000 Z
13
11
  dependencies:
14
12
  - !ruby/object:Gem::Dependency
15
13
  name: narray
16
14
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
15
  requirements:
19
- - - ~>
16
+ - - "~>"
20
17
  - !ruby/object:Gem::Version
21
18
  version: '0.5'
22
19
  type: :runtime
23
20
  prerelease: false
24
21
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
22
  requirements:
27
- - - ~>
23
+ - - "~>"
28
24
  - !ruby/object:Gem::Version
29
25
  version: '0.5'
30
26
  - !ruby/object:Gem::Dependency
31
27
  name: malloc
32
28
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
29
  requirements:
35
- - - ~>
30
+ - - "~>"
36
31
  - !ruby/object:Gem::Version
37
32
  version: '1.4'
38
33
  type: :runtime
39
34
  prerelease: false
40
35
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
36
  requirements:
43
- - - ~>
37
+ - - "~>"
44
38
  - !ruby/object:Gem::Version
45
39
  version: '1.4'
46
40
  - !ruby/object:Gem::Dependency
47
41
  name: multiarray
48
42
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
43
  requirements:
51
- - - ~>
44
+ - - "~>"
52
45
  - !ruby/object:Gem::Version
53
46
  version: '1.0'
54
47
  type: :runtime
55
48
  prerelease: false
56
49
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
50
  requirements:
59
- - - ~>
51
+ - - "~>"
60
52
  - !ruby/object:Gem::Version
61
53
  version: '1.0'
62
- - !ruby/object:Gem::Dependency
63
- name: rake
64
- requirement: !ruby/object:Gem::Requirement
65
- none: false
66
- requirements:
67
- - - ! '>='
68
- - !ruby/object:Gem::Version
69
- version: '0'
70
- type: :development
71
- prerelease: false
72
- version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
- requirements:
75
- - - ! '>='
76
- - !ruby/object:Gem::Version
77
- version: '0'
78
54
  description: This Ruby extension implements conversions from Hornetseye::MultiArray
79
55
  to NArray and vice versa.
80
56
  email: jan@wedesoft.de
@@ -83,37 +59,34 @@ extensions:
83
59
  - Rakefile
84
60
  extra_rdoc_files: []
85
61
  files:
86
- - Rakefile
87
- - README.md
62
+ - ".document"
88
63
  - COPYING
89
- - .document
90
- - lib/hornetseye_narray.rb
91
- - lib/hornetseye-narray/node.rb
64
+ - README.md
65
+ - Rakefile
66
+ - config.rb
92
67
  - lib/hornetseye-narray/narray.rb
93
- homepage: http://wedesoft.github.com/hornetseye-narray/
68
+ - lib/hornetseye-narray/node.rb
69
+ - lib/hornetseye_narray.rb
70
+ homepage: http://wedesoft.github.io/hornetseye-narray/
94
71
  licenses:
95
72
  - GPL-3+
96
- post_install_message:
73
+ metadata: {}
97
74
  rdoc_options:
98
- - --no-private
75
+ - "--no-private"
99
76
  require_paths:
100
77
  - lib
101
78
  required_ruby_version: !ruby/object:Gem::Requirement
102
- none: false
103
79
  requirements:
104
- - - ! '>='
80
+ - - ">="
105
81
  - !ruby/object:Gem::Version
106
82
  version: '0'
107
83
  required_rubygems_version: !ruby/object:Gem::Requirement
108
- none: false
109
84
  requirements:
110
- - - ! '>='
85
+ - - ">="
111
86
  - !ruby/object:Gem::Version
112
87
  version: '0'
113
88
  requirements: []
114
- rubyforge_project: hornetseye
115
- rubygems_version: 1.8.23
116
- signing_key:
117
- specification_version: 3
89
+ rubygems_version: 3.6.3
90
+ specification_version: 4
118
91
  summary: NArray integration for Hornetseye
119
92
  test_files: []