picrate 0.1.0-java → 0.2.0-java

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9d9cefa23e6fd0cffddc86caf55e4d60a557f3904fc0544e5c468563ad02cc9a
4
- data.tar.gz: a192aedae3032f9849df1832d711832506b05b32e663ec7bf5f60c2140c1e1c2
3
+ metadata.gz: e6df5ee2db467f6c57549b91693984aa44fc53046da0f6f3ca78ea2cf5bfc5ca
4
+ data.tar.gz: 50bc6c07d8a6dc4e2d4da207444cb7b219a4e73642c628f7a729e93c0f249970
5
5
  SHA512:
6
- metadata.gz: 15017e043ffb30a061733acc42f1bd2383d2d48a21195aad8b6bc3906d1b935b8cfecbe8fce997e19d62cd7e10e6b6e5d5f7440f7dcfd226d36e6cc0901eb070
7
- data.tar.gz: 3f34d10a86fa438af18fdabf9d7b7eceeb914e15c2ae0d6621bea2d6e49d72a0b248386a5e337db40543143a57dcf33fc13da0c46cc259945410690e69612e05
6
+ metadata.gz: a51e91f684e668bb94fb31e6807749895e0d8d1274087979249428dfe379a0b3d4e604425022fcebf7f8bf321a903e437577551bbf2c79f2e894c8961e0ae39f
7
+ data.tar.gz: e9d54da06f207fcc798bdc0969235915742b05d57d86afe62782cc6dacea1d606c58a0dda9f26a8ace8f32633d529b1910dfb122b4beb8fed6cb27dd2df3f7d6
data/README.md CHANGED
@@ -13,7 +13,7 @@ Requires maven, [jdk8][oracle] (but could be openjdk), and a jruby install.
13
13
  ```bash
14
14
  cd PiCrate
15
15
  rake
16
- jgem install picrate-0.0.3-java.gem
16
+ jgem install picrate-0.1.0-java.gem
17
17
  ```
18
18
  To create a template sketch:-
19
19
  ```bash
data/Rakefile CHANGED
@@ -7,7 +7,7 @@ def create_manifest
7
7
  File.open('MANIFEST.MF', 'w') do |f|
8
8
  f.puts(title)
9
9
  f.puts(version)
10
- f.puts('Class-Path: gluegen-rt-2.3.2.jar jog-all-2.3.2.jar')
10
+ f.puts('Class-Path: gluegen-rt.jar jog-all.jar')
11
11
  end
12
12
  end
13
13
 
@@ -20,8 +20,7 @@ end
20
20
 
21
21
  desc 'Install'
22
22
  task :install do
23
- sh 'mvn dependency:copy'
24
- sh 'mv target/picrate-0.1.0.jar lib'
23
+ sh 'mv target/picrate-0.2.0.jar lib'
25
24
  end
26
25
 
27
26
  desc 'Gem'
@@ -13,7 +13,7 @@ There is something wrong with jgem install from rubygems (involving `flock` and
13
13
 
14
14
  ```bash
15
15
  jgem install arcball-1.0.1-java.gem
16
- jgem install picrate-0.0.3-java.gem
16
+ jgem install picrate-0.1.0-java.gem
17
17
  ```
18
18
 
19
19
  Install samples
@@ -11,7 +11,7 @@ Get the latest version from [http://jruby.org/download][download]
11
11
 
12
12
  ```bash
13
13
  cd /opt
14
- sudo tar xzvf /pathToDownload/jruby-bin-9.x.x.x.tar.gz
14
+ sudo tar xzvf /pathToDownload/jruby-bin-9.2.x.x.tar.gz
15
15
  ```
16
16
 
17
17
  Then use the excellent `update-alternatives` tool to provide symbolic links to `jruby`, `jgem`, `jirb` and `rake` especially if you haven't installed `mri` ruby.
@@ -33,4 +33,4 @@ export PATH="${PATH}:${GEM_PATH}/bin"
33
33
 
34
34
  If you know better please post on wiki
35
35
 
36
- [download]:https://s3.amazonaws.com/jruby.org/downloads/9.1.17.0/jruby-bin-9.1.17.0.tar.gz
36
+ [download]:https://s3.amazonaws.com/jruby.org/downloads/9.2.0.0/jruby-bin-9.2.0.0.tar.gz
File without changes
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module PiCrate
3
- VERSION = '0.1.0'.freeze
3
+ VERSION = '0.2.0'.freeze
4
4
  end
data/picrate.gemspec CHANGED
@@ -15,15 +15,15 @@ Gem::Specification.new do |gem|
15
15
  gem.summary = %q{ruby wrapper for processing-3.3.7 on raspberrypi and linux64}
16
16
  gem.homepage = 'https://ruby-processing.github.io/PiCrate/'
17
17
  gem.files = `git ls-files`.split($/)
18
- gem.files << 'lib/picrate-0.1.0.jar'
19
- gem.files << 'lib/gluegen-rt-2.3.2.jar'
20
- gem.files << 'lib/jogl-all-2.3.2.jar'
21
- gem.files << 'lib/gluegen-rt-2.3.2-natives-linux-amd64.jar'
22
- gem.files << 'lib/gluegen-rt-2.3.2-natives-linux-armv6hf.jar'
23
- # gem.files << 'lib/gluegen-rt-2.3.2-natives-linux-aarch64.jar'
24
- gem.files << 'lib/jogl-all-2.3.2-natives-linux-amd64.jar'
25
- gem.files << 'lib/jogl-all-2.3.2-natives-linux-armv6hf.jar'
26
- # gem.files << 'lib/jogl-all-2.3.2-natives-linux-aarch64.jar'
18
+ gem.files << 'lib/picrate-0.2.0.jar'
19
+ gem.files << 'lib/gluegen-rt.jar'
20
+ gem.files << 'lib/jogl-all.jar'
21
+ gem.files << 'lib/gluegen-rt-natives-linux-amd64.jar'
22
+ gem.files << 'lib/gluegen-rt-natives-linux-armv6hf.jar'
23
+ # gem.files << 'lib/gluegen-rt-natives-linux-aarch64.jar'
24
+ gem.files << 'lib/jogl-all-natives-linux-amd64.jar'
25
+ gem.files << 'lib/jogl-all-natives-linux-armv6hf.jar'
26
+ # gem.files << 'lib/jogl-all-natives-linux-aarch64.jar'
27
27
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
28
28
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
29
29
  gem.add_development_dependency 'rake', '~> 12.3'
data/pom.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  project 'picrate', 'http://maven.apache.org' do
2
2
 
3
3
  model_version '4.0.0'
4
- id 'ruby-processing:picrate:0.1.0'
4
+ id 'ruby-processing:picrate:0.2.0'
5
5
  packaging 'jar'
6
6
 
7
7
  description 'An integrated processing-core (somewhat hacked), with additional java code for a jruby version of processing.'
@@ -35,68 +35,6 @@ project 'picrate', 'http://maven.apache.org' do
35
35
  jar 'org.processing:video:3.0.2'
36
36
  jar 'org.jogamp.jogl:jogl-all:${jogl.version}'
37
37
  jar 'org.jogamp.gluegen:gluegen-rt-main:${jogl.version}'
38
-
39
- overrides do
40
- plugin :resources, '2.6'
41
- plugin :dependency, '2.10' do
42
- execute_goals( id: 'default-cli',
43
- artifactItems: [ { groupId: 'org.jogamp.jogl',
44
- artifactId: 'jogl-all',
45
- version: '${jogl.version}',
46
- type: 'jar',
47
- outputDirectory: '${picrate.basedir}/lib'
48
- },
49
- { groupId: 'org.jogamp.gluegen',
50
- artifactId: 'gluegen-rt',
51
- version: '${jogl.version}',
52
- type: 'jar',
53
- outputDirectory: '${picrate.basedir}/lib'
54
- },
55
- { groupId: 'org.jogamp.jogl',
56
- artifactId: 'jogl-all',
57
- version: '${jogl.version}',
58
- classifier: 'natives-linux-amd64',
59
- type: 'jar',
60
- outputDirectory: '${picrate.basedir}/lib'
61
- },
62
- { groupId: 'org.jogamp.gluegen',
63
- artifactId: 'gluegen-rt',
64
- version: '${jogl.version}',
65
- type: 'jar',
66
- classifier: 'natives-linux-amd64',
67
- outputDirectory: '${picrate.basedir}/lib'
68
- },
69
- # { groupId: 'org.jogamp.jogl',
70
- # artifactId: 'jogl-all',
71
- # version: '${jogl.version}',
72
- # classifier: 'natives-linux-aarch64',
73
- # type: 'jar',
74
- # outputDirectory: '${picrate.basedir}/lib'
75
- # },
76
- # { groupId: 'org.jogamp.gluegen',
77
- # artifactId: 'gluegen-rt',
78
- # version: '${jogl.version}',
79
- # type: 'jar',
80
- # classifier: 'natives-linux-aarch64',
81
- # outputDirectory: '${picrate.basedir}/lib'
82
- # }
83
- { groupId: 'org.jogamp.jogl',
84
- artifactId: 'jogl-all',
85
- version: '${jogl.version}',
86
- classifier: 'natives-linux-armv6hf',
87
- type: 'jar',
88
- outputDirectory: '${picrate.basedir}/lib'
89
- },
90
- { groupId: 'org.jogamp.gluegen',
91
- artifactId: 'gluegen-rt',
92
- version: '${jogl.version}',
93
- type: 'jar',
94
- classifier: 'natives-linux-armv6hf',
95
- outputDirectory: '${picrate.basedir}/lib'
96
- }
97
- ]
98
- )
99
- end
100
38
  end
101
39
 
102
40
  plugin( :resources, '2.7',
@@ -119,4 +57,3 @@ project 'picrate', 'http://maven.apache.org' do
119
57
  includes ['**/*.png', '*.txt']
120
58
  end
121
59
  end
122
- end
data/pom.xml CHANGED
@@ -11,7 +11,7 @@ DO NOT MODIFIY - GENERATED CODE
11
11
  <modelVersion>4.0.0</modelVersion>
12
12
  <groupId>ruby-processing</groupId>
13
13
  <artifactId>picrate</artifactId>
14
- <version>0.1.0</version>
14
+ <version>0.2.0</version>
15
15
  <name>picrate</name>
16
16
  <description>An integrated processing-core (somewhat hacked), with additional java code for a jruby version of processing.</description>
17
17
  <url>http://maven.apache.org</url>
@@ -117,73 +117,6 @@ DO NOT MODIFIY - GENERATED CODE
117
117
  </includes>
118
118
  </resource>
119
119
  </resources>
120
- <pluginManagement>
121
- <plugins>
122
- <plugin>
123
- <artifactId>maven-resources-plugin</artifactId>
124
- <version>2.6</version>
125
- </plugin>
126
- <plugin>
127
- <artifactId>maven-dependency-plugin</artifactId>
128
- <version>2.10</version>
129
- <executions>
130
- <execution>
131
- <id>default-cli</id>
132
- <configuration>
133
- <artifactItems>
134
- <artifactItem>
135
- <groupId>org.jogamp.jogl</groupId>
136
- <artifactId>jogl-all</artifactId>
137
- <version>${jogl.version}</version>
138
- <type>jar</type>
139
- <outputDirectory>${picrate.basedir}/lib</outputDirectory>
140
- </artifactItem>
141
- <artifactItem>
142
- <groupId>org.jogamp.gluegen</groupId>
143
- <artifactId>gluegen-rt</artifactId>
144
- <version>${jogl.version}</version>
145
- <type>jar</type>
146
- <outputDirectory>${picrate.basedir}/lib</outputDirectory>
147
- </artifactItem>
148
- <artifactItem>
149
- <groupId>org.jogamp.jogl</groupId>
150
- <artifactId>jogl-all</artifactId>
151
- <version>${jogl.version}</version>
152
- <classifier>natives-linux-amd64</classifier>
153
- <type>jar</type>
154
- <outputDirectory>${picrate.basedir}/lib</outputDirectory>
155
- </artifactItem>
156
- <artifactItem>
157
- <groupId>org.jogamp.gluegen</groupId>
158
- <artifactId>gluegen-rt</artifactId>
159
- <version>${jogl.version}</version>
160
- <type>jar</type>
161
- <classifier>natives-linux-amd64</classifier>
162
- <outputDirectory>${picrate.basedir}/lib</outputDirectory>
163
- </artifactItem>
164
- <artifactItem>
165
- <groupId>org.jogamp.jogl</groupId>
166
- <artifactId>jogl-all</artifactId>
167
- <version>${jogl.version}</version>
168
- <classifier>natives-linux-armv6hf</classifier>
169
- <type>jar</type>
170
- <outputDirectory>${picrate.basedir}/lib</outputDirectory>
171
- </artifactItem>
172
- <artifactItem>
173
- <groupId>org.jogamp.gluegen</groupId>
174
- <artifactId>gluegen-rt</artifactId>
175
- <version>${jogl.version}</version>
176
- <type>jar</type>
177
- <classifier>natives-linux-armv6hf</classifier>
178
- <outputDirectory>${picrate.basedir}/lib</outputDirectory>
179
- </artifactItem>
180
- </artifactItems>
181
- </configuration>
182
- </execution>
183
- </executions>
184
- </plugin>
185
- </plugins>
186
- </pluginManagement>
187
120
  <plugins>
188
121
  <plugin>
189
122
  <artifactId>maven-resources-plugin</artifactId>
data/vendors/Rakefile CHANGED
@@ -10,7 +10,7 @@ SOUND_VERSION = 'v1.3.2' # version 1.3.2
10
10
  GLVIDEO = 'processing-glvideo.zip'
11
11
  VIDEO = 'video-2.zip'
12
12
  VIDEO_VERSION = '2' # version 1.0.1
13
- EXAMPLES = '0.0.4'.freeze
13
+ EXAMPLES = '0.0.5'.freeze
14
14
  HOME_DIR = ENV['HOME']
15
15
  PI_OR_LINUX = /linux|arm/ =~ RbConfig::CONFIG['host_os']
16
16
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: picrate
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: java
6
6
  authors:
7
7
  - monkstone
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-05-27 00:00:00.000000000 Z
11
+ date: 2018-06-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -160,13 +160,13 @@ files:
160
160
  - docs/methods.md
161
161
  - docs/modules.md
162
162
  - docs/objects.md
163
- - lib/gluegen-rt-2.3.2-natives-linux-amd64.jar
164
- - lib/gluegen-rt-2.3.2-natives-linux-armv6hf.jar
165
- - lib/gluegen-rt-2.3.2.jar
166
- - lib/jogl-all-2.3.2-natives-linux-amd64.jar
167
- - lib/jogl-all-2.3.2-natives-linux-armv6hf.jar
168
- - lib/jogl-all-2.3.2.jar
169
- - lib/picrate-0.1.0.jar
163
+ - lib/gluegen-rt-natives-linux-amd64.jar
164
+ - lib/gluegen-rt-natives-linux-armv6hf.jar
165
+ - lib/gluegen-rt.jar
166
+ - lib/jogl-all-natives-linux-amd64.jar
167
+ - lib/jogl-all-natives-linux-armv6hf.jar
168
+ - lib/jogl-all.jar
169
+ - lib/picrate-0.2.0.jar
170
170
  - lib/picrate.rb
171
171
  - lib/picrate/app.rb
172
172
  - lib/picrate/creators/sketch_class.rb