unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#57749: [patch] maven: fix build with java-slf4j-simple-source expanded
@ 2022-09-12 12:33 Dr. Arne Babenhauserheide
  2022-09-12 14:13 ` Julien Lepiller
  2022-09-22  8:19 ` Rostislav Svoboda
  0 siblings, 2 replies; 6+ messages in thread
From: Dr. Arne Babenhauserheide @ 2022-09-12 12:33 UTC (permalink / raw)
  To: 57749


[-- Attachment #1.1: Type: text/plain, Size: 198 bytes --]

Hi,

Maven failed to build for me, because java-slf4j-simple-source is no
longer a tarball, but an expanded directory of files.

Copying the files from Scheme makes it build. A patch is attached.



[-- Attachment #1.2: 0001-gnu-maven-fix-build-with-java-slf4j-simple-source-ex.patch --]
[-- Type: text/x-patch, Size: 2064 bytes --]

From f9ca747f6ecf63d46a41e813c6c4e7b7190e9081 Mon Sep 17 00:00:00 2001
From: Arne Babenhauserheide <arne_bab@web.de>
Date: Mon, 12 Sep 2022 14:31:42 +0200
Subject: [PATCH] gnu: maven: fix build with java-slf4j-simple-source expanded

* gnu/packages/maven.scm (maven): copy files from source.
---
 gnu/packages/maven.scm | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/maven.scm b/gnu/packages/maven.scm
index 28ec4eb9a8..a7d984fef2 100644
--- a/gnu/packages/maven.scm
+++ b/gnu/packages/maven.scm
@@ -4,6 +4,7 @@
 ;;; Copyright © 2019 Björn Höfling <bjoern.hoefling@bjoernhoefling.de>
 ;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2022 Artyom V. Poptsov <poptsov.artyom@gmail.com>
+;;; Copyright © 2022 Arne Babenhauserheide <arne_bab@web.de>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1787,7 +1788,17 @@ (define-public maven-slf4j-provider
            (lambda* (#:key inputs #:allow-other-keys)
              (mkdir-p "generated-sources")
              (with-directory-excursion "generated-sources"
-               (invoke "tar" "xf" (assoc-ref inputs "java-slf4j-simple-source"))
+               (let ((input-folder (assoc-ref inputs "java-slf4j-simple-source")))
+                 ;; copy all files
+                 (for-each (lambda (filename)
+                             (let ((target (string-drop
+                                            filename ;; remove one more than length: the slash
+                                            (1+ (string-length input-folder)))))
+                               (when (not (file-exists? (dirname target)))
+                                 (mkdir-p (dirname target)))
+                               (copy-file filename target)))
+                           (find-files (assoc-ref inputs "java-slf4j-simple-source"))))
+
                (for-each delete-file (find-files "." "StaticLoggerBinder.java")))
              (for-each
                (lambda (simple)
-- 
2.37.3


[-- Attachment #1.3: Type: text/plain, Size: 103 bytes --]



Best wishes,
Arne
-- 
Unpolitisch sein
heißt politisch sein,
ohne es zu merken.
draketo.de

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 1125 bytes --]

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-09-22 19:56 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-09-12 12:33 bug#57749: [patch] maven: fix build with java-slf4j-simple-source expanded Dr. Arne Babenhauserheide
2022-09-12 14:13 ` Julien Lepiller
2022-09-12 15:45   ` Dr. Arne Babenhauserheide
2022-09-21 21:42     ` Dr. Arne Babenhauserheide
2022-09-22  8:19 ` Rostislav Svoboda
2022-09-22 19:50   ` Julien Lepiller

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).