gnu: java-xmlgraphics-commons: Remove bundled dependencies.
* gnu/packages/batik.scm (java-xmlgraphics-commons): Remove bundled dependencies.
This commit is contained in:
parent
52d2725ab1
commit
02803fdf45
@ -26,7 +26,8 @@
|
|||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
#:use-module (gnu packages compression)
|
#:use-module (gnu packages compression)
|
||||||
#:use-module (gnu packages java)
|
#:use-module (gnu packages java)
|
||||||
#:use-module (gnu packages textutils))
|
#:use-module (gnu packages textutils)
|
||||||
|
#:use-module (gnu packages xml))
|
||||||
|
|
||||||
(define-public java-w3c-smil-3.0
|
(define-public java-w3c-smil-3.0
|
||||||
(package
|
(package
|
||||||
@ -199,13 +200,16 @@ SAC is an interface for CSS parsers.")
|
|||||||
version "-src.tar.gz"))
|
version "-src.tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0a432a4ca3vgnbada5cy9mlmfzmq6hi4i176drfxrp17q2d43w23"))))
|
"0a432a4ca3vgnbada5cy9mlmfzmq6hi4i176drfxrp17q2d43w23"))
|
||||||
|
(modules '((guix build utils)))
|
||||||
|
(snippet
|
||||||
|
`(begin
|
||||||
|
(delete-file-recursively "lib")
|
||||||
|
#t))))
|
||||||
(build-system ant-build-system)
|
(build-system ant-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:build-target "jar-main"
|
`(#:build-target "jar-main"
|
||||||
;; TODO: More detailed tests are available--but they need
|
;; TODO: More detailed tests are available.
|
||||||
;; commons-xml-resolver.
|
|
||||||
;; TODO: Provide commons-xml-resolver.
|
|
||||||
#:test-target "junit-basic"
|
#:test-target "junit-basic"
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
@ -215,6 +219,11 @@ SAC is an interface for CSS parsers.")
|
|||||||
(("<attribute name=\"Build-Id\" value=\"[^\"]*\"")
|
(("<attribute name=\"Build-Id\" value=\"[^\"]*\"")
|
||||||
"<attribute name=\"Build-Id\" value=\"\""))
|
"<attribute name=\"Build-Id\" value=\"\""))
|
||||||
#t))
|
#t))
|
||||||
|
(add-before 'build 'prepare-build-directories
|
||||||
|
(lambda _
|
||||||
|
(mkdir "lib")
|
||||||
|
(mkdir "lib/build")
|
||||||
|
#t))
|
||||||
(replace 'install
|
(replace 'install
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
@ -225,7 +234,14 @@ SAC is an interface for CSS parsers.")
|
|||||||
"xmlgraphics-commons.*\\.jar$"))
|
"xmlgraphics-commons.*\\.jar$"))
|
||||||
#t))))))
|
#t))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("java-junit" ,java-junit)))
|
`(("java-apache-xml-commons-resolver" ,java-apache-xml-commons-resolver)
|
||||||
|
("java-hamcrest" ,java-hamcrest-core)
|
||||||
|
("java-junit" ,java-junit)
|
||||||
|
("java-mockito" ,java-mockito-1)
|
||||||
|
("java-objenesis" ,java-objenesis)))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("java-commons-io" ,java-commons-io)
|
||||||
|
("java-commons-logging-minimal" ,java-commons-logging-minimal)))
|
||||||
(home-page "https://xmlgraphics.apache.org/commons/")
|
(home-page "https://xmlgraphics.apache.org/commons/")
|
||||||
(synopsis "XMLGraphics constants")
|
(synopsis "XMLGraphics constants")
|
||||||
(description "This package provides XMLGraphics constants (originally
|
(description "This package provides XMLGraphics constants (originally
|
||||||
|
Loading…
x
Reference in New Issue
Block a user