File: 0013-fix-dependency-on-sop-java-test-fixtures.patch

package info (click to toggle)
pgpainless 1.6.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,472 kB
  • sloc: java: 45,272; xml: 217; sh: 86; makefile: 74; python: 31
file content (19 lines) | stat: -rw-r--r-- 820 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Fix dependency on sop-java test fixtures

Package sop-java ships the sop.testsuite classes in a separate jar.

Forwarded: not-needed

Index: pgpainless/pgpainless-sop/build.gradle
===================================================================
--- pgpainless.orig/pgpainless-sop/build.gradle
+++ pgpainless/pgpainless-sop/build.gradle
@@ -22,7 +22,7 @@ dependencies {
     testImplementation "ch.qos.logback:logback-classic:$logbackVersion"
 
     // Depend on "shared" sop-java test suite (fixtures are turned into tests by inheritance inside test sources)
-    testImplementation(testFixtures("org.pgpainless:sop-java:$sopJavaVersion"))
+    testImplementation files('/usr/share/java/sop-java-testfixtures.jar')
 
     implementation(project(":pgpainless-core"))
     api "org.pgpainless:sop-java:$sopJavaVersion"