File: omit_module-info_files.patch

package info (click to toggle)
jgrapht 1.5.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,536 kB
  • sloc: java: 133,723; xml: 1,878; sh: 134; javascript: 81; makefile: 6
file content (140 lines) | stat: -rw-r--r-- 4,309 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
Description: don't bother with module-info files.
Author: Pierre Gruet <pgt@debian.org>
Forwarded: not-needed
Last-Update: 2021-10-17

--- a/jgrapht-core/src/main/java/module-info.java
+++ /dev/null
@@ -1,47 +0,0 @@
-module org.jgrapht.core
-{
-    exports org.jgrapht;
-    exports org.jgrapht.alg;
-    exports org.jgrapht.alg.clique;
-    exports org.jgrapht.alg.clustering;
-    exports org.jgrapht.alg.color;
-    exports org.jgrapht.alg.connectivity;
-    exports org.jgrapht.alg.cycle;
-    exports org.jgrapht.alg.decomposition;
-    exports org.jgrapht.alg.densesubgraph;
-    exports org.jgrapht.alg.drawing;
-    exports org.jgrapht.alg.drawing.model;
-    exports org.jgrapht.alg.flow;
-    exports org.jgrapht.alg.flow.mincost;
-    exports org.jgrapht.alg.independentset;
-    exports org.jgrapht.alg.interfaces;
-    exports org.jgrapht.alg.isomorphism;
-    exports org.jgrapht.alg.lca;
-    exports org.jgrapht.alg.linkprediction;
-    exports org.jgrapht.alg.matching;
-    exports org.jgrapht.alg.matching.blossom.v5;
-    exports org.jgrapht.alg.partition;
-    exports org.jgrapht.alg.planar;
-    exports org.jgrapht.alg.scoring;
-    exports org.jgrapht.alg.shortestpath;
-    exports org.jgrapht.alg.similarity;
-    exports org.jgrapht.alg.spanning;
-    exports org.jgrapht.alg.tour;
-    exports org.jgrapht.alg.transform;
-    exports org.jgrapht.alg.util;
-    exports org.jgrapht.alg.util.extension;
-    exports org.jgrapht.alg.vertexcover;
-    exports org.jgrapht.alg.vertexcover.util;
-    exports org.jgrapht.event;
-    exports org.jgrapht.generate;
-    exports org.jgrapht.generate.netgen;
-    exports org.jgrapht.graph;
-    exports org.jgrapht.graph.builder;
-    exports org.jgrapht.graph.concurrent;
-    exports org.jgrapht.graph.specifics;
-    exports org.jgrapht.traverse;
-    exports org.jgrapht.util;
-
-    requires transitive org.jheaps;
-    requires transitive org.apfloat;
-}
--- a/jgrapht-demo/src/main/java/module-info.java
+++ /dev/null
@@ -1,10 +0,0 @@
-module org.jgrapht.demo
-{
-    exports org.jgrapht.demo;
-
-    requires transitive org.jgrapht.core;
-    requires transitive org.jgrapht.io;
-    requires transitive org.jgrapht.ext;
-
-    requires java.desktop;
-}
--- a/jgrapht-ext/src/main/java/module-info.java
+++ /dev/null
@@ -1,7 +0,0 @@
-module org.jgrapht.ext
-{
-    exports org.jgrapht.ext;
-
-    requires transitive org.jgrapht.core;
-    requires transitive com.github.vlsi.mxgraph.jgraphx;
-}
--- a/jgrapht-guava/src/main/java/module-info.java
+++ /dev/null
@@ -1,8 +0,0 @@
-module org.jgrapht.guava
-{
-    exports org.jgrapht.graph.guava;
-
-    requires transitive org.jgrapht.core;
-    requires transitive com.google.common;
-    requires transitive org.jheaps;
-}
--- a/jgrapht-io/src/main/java/module-info.java
+++ /dev/null
@@ -1,20 +0,0 @@
-module org.jgrapht.io
-{
-    exports org.jgrapht.nio;
-    exports org.jgrapht.nio.csv;
-    exports org.jgrapht.nio.dimacs;
-    exports org.jgrapht.nio.dot;
-    exports org.jgrapht.nio.gexf;
-    exports org.jgrapht.nio.gml;
-    exports org.jgrapht.nio.graph6;
-    exports org.jgrapht.nio.graphml;
-    exports org.jgrapht.nio.json;
-    exports org.jgrapht.nio.lemon;
-    exports org.jgrapht.nio.matrix;
-    exports org.jgrapht.nio.tsplib;
-
-    requires transitive org.jgrapht.core;
-    requires transitive org.apache.commons.text;
-    requires transitive java.xml;
-    requires transitive org.antlr.antlr4.runtime;
-}
--- a/jgrapht-opt/src/main/java/module-info.java
+++ /dev/null
@@ -1,8 +0,0 @@
-module org.jgrapht.opt
-{
-    exports org.jgrapht.opt.graph.fastutil;
-    exports org.jgrapht.opt.graph.sparse;
-
-    requires transitive org.jgrapht.core;
-    requires transitive it.unimi.dsi.fastutil;
-}
--- a/jgrapht-unimi-dsi/src/main/java/module-info.java
+++ /dev/null
@@ -1,14 +0,0 @@
-module org.jgrapht.unimi.dsi
-{
-    exports org.jgrapht.webgraph;
-	exports org.jgrapht.sux4j;
-
-    requires transitive org.jgrapht.core;
-	requires transitive org.jgrapht.opt;
-    requires transitive it.unimi.dsi.fastutil;
-    requires transitive it.unimi.dsi.webgraph;
-    requires transitive it.unimi.dsi.big.webgraph;
-    requires transitive it.unimi.dsi.dsiutils;
-    requires transitive it.unimi.dsi.sux4j;
-    requires transitive com.google.common;
-}