Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
trapperkeeper-webserver-jetty9-clojure
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor 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 Clojure Maintainers
trapperkeeper-webserver-jetty9-clojure
Merge requests
!1
Resolve ftbfs due to the fips clause
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve ftbfs due to the fips clause
vpa1977/trapperkeeper-webserver-jetty9-clojure:debian/main
into
debian/main
Overview
0
Commits
2
Changes
3
Merged
Vladimir Petko
requested to merge
vpa1977/trapperkeeper-webserver-jetty9-clojure:debian/main
into
debian/main
1 year ago
Overview
0
Commits
2
Changes
3
Expand
Changes:
copied and refreshed puppetserver patch to remove unhandled exception in the fips clause.
Testing:
rebuild in sid chroot.
Edited
1 year ago
by
Vladimir Petko
0
0
Merge request reports
Compare
debian/main
debian/main (base)
and
latest version
latest version
3c58fb9a
2 commits,
1 year ago
3 files
+
26
−
0
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
debian/patches/resolve-ftbfs-with-java-21.patch
0 → 100644
+
18
−
0
Options
Description: Resolve FTBFS with Java 21
Author: Jérôme Charaoui <jerome@riseup.net>
Forwarded: not-needed
This removes an exception from project.clj's :fips profile which throws an
exception when Java 21 is used, regardless of whether the profile is activated
or not.
--- a/project.clj
+++ b/project.clj
@@ -106,7 +106,7 @@
(throw unsupported-ex))
11 ["-Djava.security.properties==dev-resources/jdk11-fips-security"]
17 ["-Djava.security.properties==dev-resources/jdk11-fips-security"]
- (throw unsupported-ex)))}]
+ (do)))}]
:testutils {:source-paths ^:replace ["test/clj"]
:java-source-paths ^:replace ["test/java"]}}
Loading