Skip to content
GitLab
Explore
Sign in
Register
Commits on Source
4
Fix FTBFS with OpenJFX 11.
· 432300c0
Markus Koschany
authored
Oct 08, 2018
432300c0
Switch to compat level 11.
· aab98107
Markus Koschany
authored
Oct 08, 2018
aab98107
Declare compliance with Debian Policy 4.2.1.
· d378a5d4
Markus Koschany
authored
Oct 08, 2018
d378a5d4
Update changelog
· 01bf430b
Markus Koschany
authored
Oct 08, 2018
01bf430b
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
01bf430b
triplea (1.9.0.0.7062-2) unstable; urgency=medium
* Team upload.
* Fix FTBFS with OpenJFX 11. (Closes: #874132)
* Switch to compat level 11.
* Declare compliance with Debian Policy 4.2.1.
-- Markus Koschany <apo@debian.org> Mon, 08 Oct 2018 23:02:12 +0200
triplea (1.9.0.0.7062-1) unstable; urgency=medium
* Team upload.
...
...
debian/compat
View file @
01bf430b
1
0
1
1
debian/control
View file @
01bf430b
...
...
@@ -5,7 +5,7 @@ Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.or
Uploaders:
Scott Howard <showard@debian.org>
Build-Depends:
debhelper (>= 1
0
),
debhelper (>= 1
1
),
default-jdk,
gradle-debian-helper,
javahelper,
...
...
@@ -27,7 +27,7 @@ Build-Depends:
libyaml-snake-java,
openjfx,
substance
Standards-Version: 4.
1.2
Standards-Version: 4.
2.1
Vcs-Git: https://anonscm.debian.org/git/pkg-java/triplea.git
Vcs-browser: https://anonscm.debian.org/git/pkg-java/triplea.git
Homepage: http://www.triplea-game.org/
...
...
debian/patches/build.patch
View file @
01bf430b
...
...
@@ -4,11 +4,11 @@ Subject: build
Forwarded: not-needed
---
build.gradle | 1
58
+++++++++
-
-------------------------------------------------
1 file changed, 2
3
insertions(+), 135 deletions(-)
build.gradle | 1
62
+++++++++
+
-------------------------------------------------
1 file changed, 2
7
insertions(+), 135 deletions(-)
diff --git a/build.gradle b/build.gradle
index 631f87f..
168214c
100644
index 631f87f..
45e6988
100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,16 +1,16 @@
...
...
@@ -55,17 +55,21 @@ index 631f87f..168214c 100644
compile 'com.google.code.findbugs:jsr305:3.0.2'
compile 'com.google.guava:guava:19.0'
compile 'com.googlecode.soundlibs:jlayer:1.0.1-2'
@@ -92,6 +95,
9
@@
dependencies {
@@ -92,6 +95,
13
@@
dependencies {
compile 'org.json:json:20160810'
compile 'com.yuvimasory:orange-extensions:1.3.0'
+ compile name: 'substance'
+ compile name: 'trident'
+ compile name: 'javafx-fxml'
+ compile name: 'javafx-base'
+ compile name: 'javafx-controls'
+ compile name: 'javafx-graphics'
+
testCompile 'eu.codearte.catch-exception:catch-exception:2.0.0-ALPHA-1'
testCompile 'nl.jqno.equalsverifier:equalsverifier:2.3'
testCompile 'org.hamcrest:java-hamcrest:2.0.0.0'
@@ -104,7 +11
0
,7 @@
test {
@@ -104,7 +11
4
,7 @@
test {
}
...
...
@@ -74,7 +78,7 @@ index 631f87f..168214c 100644
group = LifecycleBasePlugin.VERIFICATION_GROUP
description = 'Runs the integration tests.'
@@ -119,26 +12
5
,7 @@
task integTest(type: Test) {
@@ -119,26 +12
9
,7 @@
task integTest(type: Test) {
}
mustRunAfter tasks.test
...
...
@@ -102,7 +106,7 @@ index 631f87f..168214c 100644
task validateYamls(group: 'verification', description: 'Validates YAML files.') {
doLast {
@@ -151,35 +1
38
,6 @@
task validateYamls(group: 'verification', description: 'Validates YAML files.')
@@ -151,35 +1
42
,6 @@
task validateYamls(group: 'verification', description: 'Validates YAML files.')
}
}
...
...
@@ -138,7 +142,7 @@ index 631f87f..168214c 100644
task prepareGameEngineProperties() {
group = 'release'
description = 'Updates the game engine properties with final values for distribution.'
@@ -195,7 +15
3
,7 @@
task prepareGameEngineProperties() {
@@ -195,7 +15
7
,7 @@
task prepareGameEngineProperties() {
}
}
...
...
@@ -147,7 +151,7 @@ index 631f87f..168214c 100644
classifier 'all_platforms'
['assets', 'dice_servers'].each { folder ->
from(folder) {
@@ -203,41 +16
1
,11 @@
task allPlatform(type: Zip, group: 'release', dependsOn: [renameShadowJar, prepa
@@ -203,41 +16
5
,11 @@
task allPlatform(type: Zip, group: 'release', dependsOn: [renameShadowJar, prepa
}
}
from(gameEnginePropertiesArtifactFile)
...
...
@@ -191,7 +195,7 @@ index 631f87f..168214c 100644
doLast {
def artifacts = [
file("$libsDir/triplea-$version-all.jar"),
@@ -263,53 +19
1
,13 @@
task prepareArtifacts(group: 'release', dependsOn: [generateZipReleases, prepare
@@ -263,53 +19
5
,13 @@
task prepareArtifacts(group: 'release', dependsOn: [generateZipReleases, prepare
task release(group: 'release', dependsOn: [prepareArtifacts]) {}
...
...