Skip to content

Commit

Permalink
Release version 1.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
saudet committed Nov 5, 2019
1 parent b008021 commit 2023138
Show file tree
Hide file tree
Showing 6,055 changed files with 6,211 additions and 6,209 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@

### November 5, 2019 version 1.5.2
* Add presets for the `cudacodec`, `cudafeatures2d`, `cudastereo`, and `cudabgsegm` modules of OpenCV ([issue #806](https://github.com/bytedeco/javacpp-presets/issues/806))
* Fix mapping of `warpAffine` and `warpPerspective` from `opencv_cudawarping` ([issue #806](https://github.com/bytedeco/javacpp-presets/issues/806))
* Add `linux-armhf` and `linux-arm64` builds for HDF5 ([issue #794](https://github.com/bytedeco/javacpp-presets/issues/794))
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,27 +24,27 @@ We can also have everything downloaded and installed automatically with:
<dependency>
<groupId>org.bytedeco</groupId>
<artifactId>${moduleName}-platform</artifactId>
<version>${moduleVersion}-1.5.1</version>
<version>${moduleVersion}-1.5.2</version>
</dependency>
```

* Gradle (inside the `build.gradle` file)
```groovy
dependencies {
compile group: 'org.bytedeco', name: moduleName + '-platform', version: moduleVersion + '-1.5.1'
compile group: 'org.bytedeco', name: moduleName + '-platform', version: moduleVersion + '-1.5.2'
}
```

* Leiningen (inside the `project.clj` file)
```clojure
:dependencies [
[~(symbol (str "org.bytedeco/" moduleName "-platform")) ~(str moduleVersion "-1.5.1")]
[~(symbol (str "org.bytedeco/" moduleName "-platform")) ~(str moduleVersion "-1.5.2")]
]
```

* sbt (inside the `build.sbt` file)
```scala
libraryDependencies += "org.bytedeco" % moduleName + "-platform" % moduleVersion + "-1.5.1"
libraryDependencies += "org.bytedeco" % moduleName + "-platform" % moduleVersion + "-1.5.2"
```

where the `moduleName` and `moduleVersion` variables correspond to the desired module. This downloads binaries for all platforms, but to get binaries for only one platform we can set the `javacpp.platform` system property (via the `-D` command line option) to something like `android-arm`, `linux-x86_64`, `macosx-x86_64`, `windows-x86_64`, etc. Another option available for Scala users is [sbt-javacpp](https://github.com/bytedeco/sbt-javacpp).
Expand Down Expand Up @@ -102,7 +102,7 @@ Additionally, one can find on the wiki page additional information about the rec
The JavaCPP Presets depend on Maven, a powerful build system for Java, so before attempting a build, be sure to install and read up on:

* Maven 3.x http://maven.apache.org/download.html
* JavaCPP 1.5.1 https://github.com/bytedeco/javacpp
* JavaCPP 1.5.2 https://github.com/bytedeco/javacpp

Each child module in turn relies by default on the included [`cppbuild.sh` scripts](#the-cppbuildsh-scripts), explained below, to install its corresponding native libraries in the `cppbuild` subdirectory. To use native libraries already installed somewhere else on the system, other installation directories than `cppbuild` can also be specified either in the `pom.xml` files or in the `.java` configuration files. The following versions are supported:

Expand Down
4 changes: 2 additions & 2 deletions ale/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ We can use [Maven 3](http://maven.apache.org/) to download and install automatic
<modelVersion>4.0.0</modelVersion>
<groupId>org.bytedeco.ale</groupId>
<artifactId>sharedlibraryinterfaceexample</artifactId>
<version>1.5.1</version>
<version>1.5.2</version>
<properties>
<exec.mainClass>SharedLibraryInterfaceExample</exec.mainClass>
</properties>
<dependencies>
<dependency>
<groupId>org.bytedeco</groupId>
<artifactId>ale-platform</artifactId>
<version>0.6.0-1.5.1</version>
<version>0.6.0-1.5.2</version>
</dependency>
</dependencies>
<build>
Expand Down
2 changes: 1 addition & 1 deletion ale/platform/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.bytedeco</groupId>
<artifactId>javacpp-presets</artifactId>
<version>1.5.2-SNAPSHOT</version>
<version>1.5.2</version>
<relativePath>../../</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion ale/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.bytedeco</groupId>
<artifactId>javacpp-presets</artifactId>
<version>1.5.2-SNAPSHOT</version>
<version>1.5.2</version>
</parent>

<groupId>org.bytedeco</groupId>
Expand Down
4 changes: 2 additions & 2 deletions ale/samples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.bytedeco.ale</groupId>
<artifactId>sharedlibraryinterfaceexample</artifactId>
<version>1.5.2-SNAPSHOT</version>
<version>1.5.2</version>
<properties>
<exec.mainClass>SharedLibraryInterfaceExample</exec.mainClass>
</properties>
<dependencies>
<dependency>
<groupId>org.bytedeco</groupId>
<artifactId>ale-platform</artifactId>
<version>0.6.0-1.5.2-SNAPSHOT</version>
<version>0.6.0-1.5.2</version>
</dependency>
</dependencies>
<build>
Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/ALEInterface.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/ALERAM.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/ALEScreen.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/ALEState.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/Cartridge.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/ColourPalette.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/Console.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/Controller.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/Deserializer.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/Device.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/DisplayScreen.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/Event.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/M6532.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/MediaSource.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/OSystem.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/Random.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/Resolution.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/ResolutionList.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/RomSettings.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/ScreenExporter.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/Serializer.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/Settings.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/Sound.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/StellaEnvironment.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/Switches.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/System.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/global/ale.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2: DO NOT EDIT THIS FILE

package org.bytedeco.ale.global;

Expand Down
4 changes: 2 additions & 2 deletions arpack-ng/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ We can use [Maven 3](http://maven.apache.org/) to download and install automatic
<modelVersion>4.0.0</modelVersion>
<groupId>org.bytedeco.arpack</groupId>
<artifactId>icbarpackc</artifactId>
<version>1.5.1</version>
<version>1.5.2</version>
<properties>
<exec.mainClass>IcbArpackC</exec.mainClass>
</properties>
<dependencies>
<dependency>
<groupId>org.bytedeco</groupId>
<artifactId>arpack-ng-platform</artifactId>
<version>3.7.0-1.5.1</version>
<version>3.7.0-1.5.2</version>
</dependency>
</dependencies>
<build>
Expand Down
2 changes: 1 addition & 1 deletion arpack-ng/platform/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.bytedeco</groupId>
<artifactId>javacpp-presets</artifactId>
<version>1.5.2-SNAPSHOT</version>
<version>1.5.2</version>
<relativePath>../../</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion arpack-ng/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.bytedeco</groupId>
<artifactId>javacpp-presets</artifactId>
<version>1.5.2-SNAPSHOT</version>
<version>1.5.2</version>
</parent>

<groupId>org.bytedeco</groupId>
Expand Down
4 changes: 2 additions & 2 deletions arpack-ng/samples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.bytedeco.arpack</groupId>
<artifactId>icbarpackc</artifactId>
<version>1.5.2-SNAPSHOT</version>
<version>1.5.2</version>
<properties>
<exec.mainClass>IcbArpackC</exec.mainClass>
</properties>
<dependencies>
<dependency>
<groupId>org.bytedeco</groupId>
<artifactId>arpack-ng-platform</artifactId>
<version>3.7.0-1.5.2-SNAPSHOT</version>
<version>3.7.0-1.5.2</version>
</dependency>
</dependencies>
<build>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2: DO NOT EDIT THIS FILE

package org.bytedeco.arpackng.global;

Expand Down
4 changes: 2 additions & 2 deletions artoolkitplus/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ We can use [Maven 3](http://maven.apache.org/) to download and install automatic
<modelVersion>4.0.0</modelVersion>
<groupId>org.bytedeco.artoolkitplus</groupId>
<artifactId>multimain</artifactId>
<version>1.5.1</version>
<version>1.5.2</version>
<properties>
<exec.mainClass>MultiMain</exec.mainClass>
</properties>
<dependencies>
<dependency>
<groupId>org.bytedeco</groupId>
<artifactId>artoolkitplus-platform</artifactId>
<version>2.3.1-1.5.1</version>
<version>2.3.1-1.5.2</version>
</dependency>
</dependencies>
<build>
Expand Down
2 changes: 1 addition & 1 deletion artoolkitplus/platform/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.bytedeco</groupId>
<artifactId>javacpp-presets</artifactId>
<version>1.5.2-SNAPSHOT</version>
<version>1.5.2</version>
<relativePath>../../</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion artoolkitplus/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.bytedeco</groupId>
<artifactId>javacpp-presets</artifactId>
<version>1.5.2-SNAPSHOT</version>
<version>1.5.2</version>
</parent>

<groupId>org.bytedeco</groupId>
Expand Down
4 changes: 2 additions & 2 deletions artoolkitplus/samples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.bytedeco.artoolkitplus</groupId>
<artifactId>multimain</artifactId>
<version>1.5.2-SNAPSHOT</version>
<version>1.5.2</version>
<properties>
<exec.mainClass>MultiMain</exec.mainClass>
</properties>
<dependencies>
<dependency>
<groupId>org.bytedeco</groupId>
<artifactId>artoolkitplus-platform</artifactId>
<version>2.3.1-1.5.2-SNAPSHOT</version>
<version>2.3.1-1.5.2</version>
</dependency>
</dependencies>
<build>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2: DO NOT EDIT THIS FILE

package org.bytedeco.artoolkitplus;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2: DO NOT EDIT THIS FILE

package org.bytedeco.artoolkitplus;

Expand Down
Loading

0 comments on commit 2023138

Please sign in to comment.