unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob e0336958913b3b6007076abba4f5fceddddd06ea 11594 bytes (raw)
name: gnu/packages/batik.scm 	 # note: path name is non-authoritative(*)

  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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
 
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2018 Danny Milosavljevic <dannym@scratchpost.org>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (wip batik)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix utils)
  #:use-module (guix download)
  #:use-module (guix git-download)
  #:use-module (guix packages)
  #:use-module (guix build-system ant)
  #:use-module (gnu packages)
  #:use-module (gnu packages compression)
  #:use-module (gnu packages java)
  #:use-module (gnu packages textutils))

;;; TODO: Use maven.
;;; TODO: Remove bundled jar files (I guess our ant-build-system ought to
;;; do that).

(define java-batik
  (package
    (name "java-batik")
    (version "1.10")
    (source
      (origin
        (method url-fetch)
        (uri (string-append
              "mirror://apache/xmlgraphics/batik/source/batik-src-" version
              ".tar.gz"))
        (sha256
         (base32
          "05nipxvm940m2dgzmrvflr2r72a5mmqbl25pvqr0xn73a5lygi6z"))
        (file-name (string-append name "-" version))))
    (build-system ant-build-system)
    (native-inputs
     `(("java-junit" ,java-junit)))
    (home-page "https://xmlgraphics.apache.org/batik/")
    (synopsis "SVG toolkit for Java")
    (description "This package provides an SVG toolkit for Java.")
    (license license:asl2.0)))

(define (java-batik-package subdir inputs)
  (package
    (inherit java-batik)
    (name (string-append "java-" subdir))
    (propagated-inputs
     inputs)
    (arguments
     `(#:jar-name (string-append ,subdir ".jar")
       #:tests? #t
       #:phases
       (modify-phases %standard-phases
         (add-after 'unpack 'chdir
           (lambda _
             ;; FIXME: Be nicer.
             (delete-file-recursively "batik-util/src/test")
             (chdir ,subdir)
             #t)))))))

(define (java-batik-disable-tests base-package)
  (package
    (inherit base-package)
    (arguments
     (substitute-keyword-arguments (package-arguments base-package)
      ((#:tests? _)
       #f)))))

(define-public java-batik-i18n
  ;; No tests exist.
  (java-batik-disable-tests (java-batik-package "batik-i18n" '())))

(define-public java-batik-constants
  ;; No tests exist.
  (java-batik-disable-tests (java-batik-package "batik-constants" '())))

(define-public java-batik-util
  ;; batik-util tests require batik-test.  batik-test requires batik-util.
  (java-batik-disable-tests
   (java-batik-package "batik-util"
    `(("java-batik-constants" ,java-batik-constants)
      ("java-batik-i18n" ,java-batik-i18n)))))

(define-public java-batik-xml
  (java-batik-package "batik-xml"
   `(("java-batik-i18n" ,java-batik-i18n)
     ("java-batik-util" ,java-batik-util))))

(define-public java-batik-ext
  (java-batik-package "batik-ext"
   `()))

(define-public java-w3c-smil-3.0
  (package
    (name "java-w3c-smil")
    (version "3.0")
    (source #f)
    (build-system ant-build-system)
    (arguments
     `(#:jar-name "w3c-smil.jar"
       #:source-dir "."
       #:tests? #f ; No tests exist.
       #:phases
       (modify-phases %standard-phases
         (replace 'unpack
           (lambda* (#:key source #:allow-other-keys)
             ;; https://www.w3.org/TR/SMIL3/smil-timing.html#q142
             (mkdir-p "org/w3c/dom/smil")
             (call-with-output-file "org/w3c/dom/smil/ElementTimeControl.java"
               (lambda (port)
                 (format port "
package org.w3c.dom.smil;

import org.w3c.dom.DOMException;

public interface ElementTimeControl {
    public boolean  beginElement();

    public boolean  beginElementAt(float offset);

    public boolean endElement();

    public boolean endElementAt(float offset);
}
")))
             (call-with-output-file "org/w3c/dom/smil/TimeEvent.java"
               (lambda (port)
                 (format port "
package org.w3c.dom.smil;

import org.w3c.dom.events.Event;
import org.w3c.dom.views.AbstractView;

public interface TimeEvent extends Event {
    public AbstractView getView();

    public int getDetail();

    public void initTimeEvent(String typeArg,
                              AbstractView viewArg,
                              int detailArg);

}
")))
             #t)))))
    (native-inputs
     `(("unzip" ,unzip)))
    (home-page "https://www.w3.org/Style/CSS/SAC/")
    (synopsis "W3C SAC interface for CSS parsers in Java")
    (description "This package provides a SAC interface by the W3C.
SAC is an interface for CSS parsers.")
    (license license:w3c)))

(define-public java-w3c-sac
  (package
    (name "java-w3c-sac")
    (version "1.3")
    (source
      (origin
        (method url-fetch)
        (uri (string-append "https://www.w3.org/2002/06/sacjava-" version
                            ".zip"))
        (sha256
         (base32
          "1djp2nnzf8jchnwz1ij9i5jfx4cg1ryf3lbw133yzjy0wkhcla52"))))
    (build-system ant-build-system)
    (arguments
     `(#:jar-name "w3c-sac.jar"
       #:source-dir "sac-1.3"
       #:tests? #f ; No tests exist.
       #:phases
       (modify-phases %standard-phases
         (replace 'unpack
           (lambda* (#:key source #:allow-other-keys)
             (invoke "unzip" source))))))
    (native-inputs
     `(("unzip" ,unzip)))
    (home-page "https://www.w3.org/Style/CSS/SAC/")
    (synopsis "W3C SAC interface for CSS parsers in Java")
    (description "This package provides a SAC interface by the W3C.
SAC is an interface for CSS parsers.")
    (license license:w3c)))

(define-public java-w3c-svg-1.0
  (package
    (name "java-w3c-svg")
    (version "20010904")
    (source
      (origin
        (method url-fetch)
        (uri (string-append "http://www.w3.org/TR/2001/REC-SVG-" version
                            "/java-binding.zip"))
        (sha256
         (base32
          "0gnxvx51bg6ijplf6l2q0i1m07101f7fickawshfygnsdjqfdnbp"))))
    (build-system ant-build-system)
    (arguments
     `(#:jar-name "w3c-svg.jar"
       #:source-dir "."
       #:tests? #f ; No tests exist.
       #:phases
       (modify-phases %standard-phases
         (replace 'unpack
           (lambda* (#:key source #:allow-other-keys)
             (invoke "unzip" source)))
         (add-after 'unpack 'patch-interface
           (lambda _
             ;; Make it compatible with batik.
             ;; This is equivalent to usingxml commons externals'
             ;; "externals" part from https://xerces.apache.org/mirrors.cgi
             (substitute* "SVGFEConvolveMatrixElement.java"
              (("public SVGAnimatedLength[ ]*getKernelUnitLength")
               "public SVGAnimatedNumber getKernelUnitLength"))
             (substitute* "SVGFEMorphologyElement.java"
              (("public SVGAnimatedLength[ ]*getRadius")
               "public SVGAnimatedNumber getRadius"))
             (call-with-output-file "EventListenerInitializer.java"
               (lambda (port)
                 (format port "
// License: http://www.apache.org/licenses/LICENSE-2.0
package org.w3c.dom.svg;
public interface EventListenerInitializer {
    public void initializeEventListeners(SVGDocument doc);
}

")))
             #t)))))
    (propagated-inputs
     `(("java-w3c-smil" ,java-w3c-smil-3.0)))
    (native-inputs
     `(("unzip" ,unzip)))
    (home-page "https://www.w3.org/Style/CSS/SAC/")
    (synopsis "W3C SVG interface")
    (description "This package provides a SVG interface.")
    (license license:w3c)))

(define-public java-w3c-svg
  (package
    (inherit java-w3c-svg-1.0)
    (version "20110816")
    (source
      (origin
        (method url-fetch)
        (uri (string-append "http://www.w3.org/TR/2011/REC-SVG11-" version
                            "/java-binding.zip"))
        (sha256
         (base32
          "0jicqcrxav8ggs37amgvvwgc2f0qp1c5wns4rb2i3si83s2m09ns"))))
    (propagated-inputs
     `())))

(define java-xmlgraphics-commons
  (package
    (name "java-xmlgraphics-commons")
    (version "2.3")
    (source
      (origin
        (method url-fetch)
        (uri (string-append "mirror://apache/xmlgraphics/commons/source/xmlgraphics-commons-"
                            version "-src.tar.gz"))
        (sha256
         (base32
          "0a432a4ca3vgnbada5cy9mlmfzmq6hi4i176drfxrp17q2d43w23"))))
    (build-system ant-build-system)
    (arguments
     `(#:build-target "jar-main"
       #:test-target "junit-basic"
       #:phases
       (modify-phases %standard-phases
         (add-after 'unpack 'make-reproducible
           (lambda _
             (substitute* "build.xml"
              (("<attribute name=\"Build-Id\" value=\"[^\"]*\"")
               "<attribute name=\"Build-Id\" value=\"\""))
             #t))
         (replace 'install
           (lambda* (#:key outputs #:allow-other-keys)
             (let* ((out (assoc-ref outputs "out"))
                    (out-share (string-append out "/share/java")))
             (install-file "build/xmlgraphics-commons-2.3.jar" out-share)
             #t))))))
    (home-page "https://xmlgraphics.apache.org/commons/")
    (synopsis "XMLGraphics constants.")
    (description "This package provides XMLGraphics constants (originally
from @code{batik}).")
    (license license:asl2.0)))

(define-public java-batik-css
  (java-batik-package "batik-css"
   `(("java-batik-constants" ,java-batik-constants)
     ("java-batik-i18n" ,java-batik-i18n)
     ("java-batik-util" ,java-batik-util)
     ("java-w3c-sac" ,java-w3c-sac)
     ("java-w3c-svg" ,java-w3c-svg-1.0)
     ("java-xmlgraphics-commons" ,java-xmlgraphics-commons))))

(define-public java-batik-dom
  (java-batik-package "batik-dom"
   `(("java-batik-constants" ,java-batik-constants)
     ("java-batik-css" ,java-batik-css)
     ("java-batik-ext" ,java-batik-ext)
     ("java-batik-i18n" ,java-batik-i18n)
     ("java-batik-util" ,java-batik-util)
     ("java-batik-xml" ,java-batik-xml)
     ("java-w3c-sac" ,java-w3c-sac)
     ("java-w3c-smil" ,java-w3c-smil-3.0)
     ("java-xalan" ,java-xalan))))

(define-public java-batik-awt-util
  (java-batik-package "batik-awt-util"
   `(("java-batik-i18n" ,java-batik-i18n)
     ("java-batik-util" ,java-batik-util)
     ("java-xmlgraphics-commons" ,java-xmlgraphics-commons))))

(define-public java-batik-parser
  (java-batik-package "batik-parser"
   `(("java-batik-awt-util" ,java-batik-awt-util)
     ("java-batik-i18n" ,java-batik-i18n)
     ("java-batik-util" ,java-batik-util)
     ("java-batik-xml" ,java-batik-xml)
     ("java-w3c-svg" ,java-w3c-svg-1.0))))

(define-public java-batik-svg-dom
  (java-batik-package "batik-svg-dom"
   `(("java-batik-constants" ,java-batik-constants)
     ("java-batik-awt-util" ,java-batik-awt-util)
     ("java-batik-css" ,java-batik-css)
     ("java-batik-dom" ,java-batik-dom)
     ("java-batik-i18n" ,java-batik-i18n)
     ("java-batik-parser" ,java-batik-parser)
     ("java-batik-util" ,java-batik-util)
     ("java-w3c-smil" ,java-w3c-smil-3.0)
     ("java-w3c-svg" ,java-w3c-svg-1.0))))

debug log:

solving e03369589 ...
found e03369589 in https://yhetil.org/guix-patches/20181005155020.10239-14-dannym@scratchpost.org/
found 93d04fdf0 in https://yhetil.org/guix-patches/20181005155020.10239-13-dannym@scratchpost.org/
found 682236637 in https://yhetil.org/guix-patches/20181005155020.10239-12-dannym@scratchpost.org/
found 1bb83bc15 in https://yhetil.org/guix-patches/20181005155020.10239-11-dannym@scratchpost.org/
found 095f2f080 in https://yhetil.org/guix-patches/20181005155020.10239-10-dannym@scratchpost.org/
found 1fa36c1ac in https://yhetil.org/guix-patches/20181005155020.10239-9-dannym@scratchpost.org/
found 05ca234ea in https://yhetil.org/guix-patches/20181005155020.10239-8-dannym@scratchpost.org/
found ccab88568 in https://yhetil.org/guix-patches/20181005155020.10239-7-dannym@scratchpost.org/
found 88be05042 in https://yhetil.org/guix-patches/20181005155020.10239-6-dannym@scratchpost.org/
found b5672bb20 in https://yhetil.org/guix-patches/20181005155020.10239-5-dannym@scratchpost.org/
found b950a8967 in https://yhetil.org/guix-patches/20181005155020.10239-4-dannym@scratchpost.org/
found f04704a2e in https://yhetil.org/guix-patches/20181005155020.10239-3-dannym@scratchpost.org/
found f0c3b8efb in https://yhetil.org/guix-patches/20181005155020.10239-2-dannym@scratchpost.org/
found 2ca15b763 in https://yhetil.org/guix-patches/20181005155020.10239-1-dannym@scratchpost.org/

applying [1/14] https://yhetil.org/guix-patches/20181005155020.10239-1-dannym@scratchpost.org/
diff --git a/gnu/packages/batik.scm b/gnu/packages/batik.scm
new file mode 100644
index 000000000..2ca15b763


applying [2/14] https://yhetil.org/guix-patches/20181005155020.10239-2-dannym@scratchpost.org/
diff --git a/gnu/packages/batik.scm b/gnu/packages/batik.scm
index 2ca15b763..f0c3b8efb 100644


applying [3/14] https://yhetil.org/guix-patches/20181005155020.10239-3-dannym@scratchpost.org/
diff --git a/gnu/packages/batik.scm b/gnu/packages/batik.scm
index f0c3b8efb..f04704a2e 100644


applying [4/14] https://yhetil.org/guix-patches/20181005155020.10239-4-dannym@scratchpost.org/
diff --git a/gnu/packages/batik.scm b/gnu/packages/batik.scm
index f04704a2e..b950a8967 100644


applying [5/14] https://yhetil.org/guix-patches/20181005155020.10239-5-dannym@scratchpost.org/
diff --git a/gnu/packages/batik.scm b/gnu/packages/batik.scm
index b950a8967..b5672bb20 100644


applying [6/14] https://yhetil.org/guix-patches/20181005155020.10239-6-dannym@scratchpost.org/
diff --git a/gnu/packages/batik.scm b/gnu/packages/batik.scm
index b5672bb20..88be05042 100644


applying [7/14] https://yhetil.org/guix-patches/20181005155020.10239-7-dannym@scratchpost.org/
diff --git a/gnu/packages/batik.scm b/gnu/packages/batik.scm
index 88be05042..ccab88568 100644


applying [8/14] https://yhetil.org/guix-patches/20181005155020.10239-8-dannym@scratchpost.org/
diff --git a/gnu/packages/batik.scm b/gnu/packages/batik.scm
index ccab88568..05ca234ea 100644


applying [9/14] https://yhetil.org/guix-patches/20181005155020.10239-9-dannym@scratchpost.org/
diff --git a/gnu/packages/batik.scm b/gnu/packages/batik.scm
index 05ca234ea..1fa36c1ac 100644


applying [10/14] https://yhetil.org/guix-patches/20181005155020.10239-10-dannym@scratchpost.org/
diff --git a/gnu/packages/batik.scm b/gnu/packages/batik.scm
index 1fa36c1ac..095f2f080 100644


applying [11/14] https://yhetil.org/guix-patches/20181005155020.10239-11-dannym@scratchpost.org/
diff --git a/gnu/packages/batik.scm b/gnu/packages/batik.scm
index 095f2f080..1bb83bc15 100644


applying [12/14] https://yhetil.org/guix-patches/20181005155020.10239-12-dannym@scratchpost.org/
diff --git a/gnu/packages/batik.scm b/gnu/packages/batik.scm
index 1bb83bc15..682236637 100644


applying [13/14] https://yhetil.org/guix-patches/20181005155020.10239-13-dannym@scratchpost.org/
diff --git a/gnu/packages/batik.scm b/gnu/packages/batik.scm
index 682236637..93d04fdf0 100644


applying [14/14] https://yhetil.org/guix-patches/20181005155020.10239-14-dannym@scratchpost.org/
diff --git a/gnu/packages/batik.scm b/gnu/packages/batik.scm
index 93d04fdf0..e03369589 100644

Checking patch gnu/packages/batik.scm...
Applied patch gnu/packages/batik.scm cleanly.
Checking patch gnu/packages/batik.scm...
Applied patch gnu/packages/batik.scm cleanly.
Checking patch gnu/packages/batik.scm...
Applied patch gnu/packages/batik.scm cleanly.
Checking patch gnu/packages/batik.scm...
Applied patch gnu/packages/batik.scm cleanly.
Checking patch gnu/packages/batik.scm...
Applied patch gnu/packages/batik.scm cleanly.
Checking patch gnu/packages/batik.scm...
Applied patch gnu/packages/batik.scm cleanly.
Checking patch gnu/packages/batik.scm...
Applied patch gnu/packages/batik.scm cleanly.
Checking patch gnu/packages/batik.scm...
Applied patch gnu/packages/batik.scm cleanly.
Checking patch gnu/packages/batik.scm...
Applied patch gnu/packages/batik.scm cleanly.
Checking patch gnu/packages/batik.scm...
Applied patch gnu/packages/batik.scm cleanly.
Checking patch gnu/packages/batik.scm...
Applied patch gnu/packages/batik.scm cleanly.
Checking patch gnu/packages/batik.scm...
Applied patch gnu/packages/batik.scm cleanly.
Checking patch gnu/packages/batik.scm...
Applied patch gnu/packages/batik.scm cleanly.
Checking patch gnu/packages/batik.scm...
Applied patch gnu/packages/batik.scm cleanly.

index at:
100644 e0336958913b3b6007076abba4f5fceddddd06ea	gnu/packages/batik.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

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).