Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
libjgroups-java
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Debian Java Maintainers
libjgroups-java
Commits
3cb9a4ab
Commit
3cb9a4ab
authored
7 years ago
by
Emmanuel Bourg
Browse files
Options
Downloads
Patches
Plain Diff
Applied Chris Lamb's patch to make the build reproducible (Closes: #862183)
parent
ca24caee
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
debian/changelog
+1
-0
1 addition, 0 deletions
debian/changelog
debian/patches/02_reproducible_schema_generator.patch
+14
-0
14 additions, 0 deletions
debian/patches/02_reproducible_schema_generator.patch
debian/patches/series
+1
-0
1 addition, 0 deletions
debian/patches/series
with
16 additions
and
0 deletions
debian/changelog
+
1
−
0
View file @
3cb9a4ab
libjgroups-java (2.12.2.Final-5) UNRELEASED; urgency=medium
libjgroups-java (2.12.2.Final-5) UNRELEASED; urgency=medium
* Applied Chris Lamb's patch to make the build reproducible (Closes: #862183)
* Build with Maven instead of Ant
* Build with Maven instead of Ant
* Removed the unused build dependency on glassfish-javaee
* Removed the unused build dependency on glassfish-javaee
* Moved the package to Git
* Moved the package to Git
...
...
This diff is collapsed.
Click to expand it.
debian/patches/02_reproducible_schema_generator.patch
0 → 100644
+
14
−
0
View file @
3cb9a4ab
Description: Sort the classes to make the build reproducible
Author: Chris Lamb <lamby@debian.org>
Bug-Debian: https://bugs.debian.org/862183
--- a/src/org/jgroups/util/XMLSchemaGenerator.java
+++ b/src/org/jgroups/util/XMLSchemaGenerator.java
@@ -102,7 +102,7 @@
private static Set<Class<?>> getClasses(String packageName, Class<?> assignableFrom)
throws IOException, ClassNotFoundException {
ClassLoader loader = Thread.currentThread().getContextClassLoader();
- Set<Class<?>> classes = new HashSet<Class<?>>();
+ Set<Class<?>> classes = new java.util.TreeSet<Class<?>>();
String path = packageName.replace('.', '/');
URL resource = loader.getResource(path);
if (resource != null) {
This diff is collapsed.
Click to expand it.
debian/patches/series
+
1
−
0
View file @
3cb9a4ab
01_disable_diagnostics.patch
01_disable_diagnostics.patch
02_reproducible_schema_generator.patch
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment