aboutsummaryrefslogtreecommitdiff
# GNU Guix --- Functional package management for GNU
# Copyright © 2016 Eric Bavier <bavier@member.fsf.org>
# Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org>
# Copyright © 2013 Andreas Enge <andreas@enge.fr>
# Copyright © 2016 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
# Copyright © 2016, 2018 Mathieu Lirzin <mthl@gnu.org>
# Copyright © 2018, 2021 Julien Lepiller <julien@lepiller.eu>
# Copyright © 2019 Timothy Sample <samplet@ngyro.com>
# Copyright © 2024 Janneke Nieuwenhuizen <janneke@gnu.org>
# Copyright © 2024 gemmaro <gemmaro.dev@gmail.com>
#
# 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/>.

# If adding a language, update the following variables, and info_TEXINFOS.
MANUAL_LANGUAGES = de es fr pt_BR ru zh_CN
COOKBOOK_LANGUAGES = de fr ko pt_BR sk sv

# Arg1: A list of languages codes.
# Arg2: The file name stem.
lang_to_texinfo = $(foreach lang,$(1),%D%/$(2).$(lang).texi)

# Automake does not understand GNU Make non-standard extensions,
# unfortunately, so we cannot use the above patsubst-based function here.
info_TEXINFOS = %D%/guix.texi			\
  %D%/guix.de.texi				\
  %D%/guix.es.texi				\
  %D%/guix.fr.texi				\
  %D%/guix.pt_BR.texi				\
  %D%/guix.ru.texi				\
  %D%/guix.zh_CN.texi				\
  %D%/guix-cookbook.texi			\
  %D%/guix-cookbook.de.texi			\
  %D%/guix-cookbook.fr.texi			\
  %D%/guix-cookbook.ko.texi			\
  %D%/guix-cookbook.pt_BR.texi			\
  %D%/guix-cookbook.sk.texi			\
  %D%/guix-cookbook.sv.texi

%C%_guix_TEXINFOS = \
  %D%/contributing.texi \
  %D%/fdl-1.3.texi

DOT_FILES =					\
  %D%/images/bootstrap-graph.dot		\
  %D%/images/bootstrap-packages.dot		\
  %D%/images/coreutils-graph.dot		\
  %D%/images/coreutils-bag-graph.dot		\
  %D%/images/gcc-core-mesboot0-graph.dot	\
  %D%/images/service-graph.dot			\
  %D%/images/shepherd-graph.dot

DOT_VECTOR_GRAPHICS =				\
  $(DOT_FILES:%.dot=%.eps)			\
  $(DOT_FILES:%.dot=%.pdf)

EXTRA_DIST +=					\
  %D%/htmlxref.cnf				\
  $(DOT_FILES)					\
  $(DOT_VECTOR_GRAPHICS)			\
  %D%/images/coreutils-size-map.eps		\
  %D%/environment-gdb.scm			\
  %D%/package-hello.scm				\
  %D%/package-hello.json

OS_CONFIG_EXAMPLES_TEXI =			\
  %D%/os-config-bare-bones.texi			\
  %D%/os-config-desktop.texi			\
  %D%/os-config-lightweight-desktop.texi	\
  %D%/he-config-bare-bones.scm

TRANSLATED_INFO = 						\
  $(call lang_to_texinfo,$(MANUAL_LANGUAGES),guix)		\
  $(call lang_to_texinfo,$(MANUAL_LANGUAGES),contributing)	\
  $(call lang_to_texinfo,$(COOKBOOK_LANGUAGES),guix-cookbook)

# Bundle this file so that makeinfo finds it in out-of-source-tree builds.
BUILT_SOURCES        += $(OS_CONFIG_EXAMPLES_TEXI) $(TRANSLATED_INFO)
EXTRA_DIST           += $(OS_CONFIG_EXAMPLES_TEXI) $(TRANSLATED_INFO)
MAINTAINERCLEANFILES  = $(OS_CONFIG_EXAMPLES_TEXI) $(TRANSLATED_INFO)

# When a change to guix.texi occurs, it is not translated immediately.
# Because @pxref and @xref commands are references to sections by name, they
# should be translated. If a modification adds a reference to a section, this
# reference is not translated, which means it references a section that does not
# exist.
define xref_command
$(top_builddir)/pre-inst-env $(GUILE) --no-auto-compile	\
  "$(top_srcdir)/build-aux/convert-xref.scm"		\
  $@.tmp $<
endef

# If /dev/null is used for this POT file path, a warning will be issued
# because the path extension is not 'pot'.
dummy_pot = $(shell mktemp --suffix=.pot)

%D%:
	$(AM_V_GEN)$(MKDIR_P) "$@"

%D%/guix.%.texi: po/doc/guix-manual.%.po %D%/contributing.%.texi \
		guix/build/po.go | %D%
	-$(AM_V_PO4A)$(PO4A) --no-update			\
	    --variable localized="$@.tmp"			\
	    --variable master="$(srcdir)/%D%/guix.texi"		\
	    --variable po="$<"					\
	    --variable pot=$(dummy_pot)			\
	    $(srcdir)/po/doc/po4a.cfg
	-sed -i "s|guix\.info|$$(basename "$@" | sed 's|texi$$|info|')|" "$@.tmp"
	-$(AM_V_POXREF)LC_ALL=en_US.UTF-8 $(xref_command)
	-mv "$@.tmp" "$@"

%D%/guix-cookbook.%.texi: po/doc/guix-cookbook.%.po guix/build/po.go | %D%
	-$(AM_V_PO4A)$(PO4A) --no-update			\
	    --variable localized="$@.tmp"			\
	    --variable master="$(srcdir)/%D%/guix-cookbook.texi" \
	    --variable po="$<"					\
	    --variable pot=$(dummy_pot)			\
	    $(srcdir)/po/doc/po4a.cfg
	-sed -i "s|guix-cookbook\.info|$$(basename "$@" | sed 's|texi$$|info|')|" "$@.tmp"
	-$(AM_V_POXREF)LC_ALL=en_US.UTF-8 $(xref_command)
	-mv "$@.tmp" "$@"

%D%/contributing.%.texi: po/doc/guix-manual.%.po guix/build/po.go | %D%
	-$(AM_V_PO4A)$(PO4A) --no-update			\
	    --variable localized="$@.tmp"			\
	    --variable master="$(srcdir)/%D%/contributing.texi"	\
	    --variable po="$<"					\
	    --variable pot=$(dummy_pot)			\
	    $(srcdir)/po/doc/po4a.cfg
	-$(AM_V_POXREF)LC_ALL=en_US.UTF-8 $(xref_command)
	-mv "$@.tmp" "$@"

%D%/os-config-%.texi: gnu/system/examples/%.tmpl | %D%
	cp "$<" "$@"

infoimagedir = $(infodir)/images
dist_infoimage_DATA =				\
  $(DOT_FILES:%.dot=%.png)			\
  %D%/images/coreutils-size-map.png		\
  %D%/images/installer-network.png		\
  %D%/images/installer-partitions.png		\
  %D%/images/installer-resume.png

# Ask for warnings about cross-referenced manuals that are not listed in
# htmlxref.cnf.
AM_MAKEINFOHTMLFLAGS = --set-customization-variable CHECK_HTMLXREF=true

# Try hard to obtain an image size and aspect that's reasonable for inclusion
# in an Info or PDF document.
DOT_OPTIONS =					\
  -Gratio=.9 -Gnodesep=.005 -Granksep=.00005	\
  -Nfontsize=9 -Nheight=.1 -Nwidth=.1

.dot.png:
	$(AM_V_GEN)$(MKDIR_P) "$$(dirname "$@")"
	$(AM_V_DOT)$(DOT) -Tpng $(DOT_OPTIONS) < "$<" > "$@.tmp"
	$(AM_V_at)mv "$@.tmp" "$@"

.dot.pdf:
	$(AM_V_GEN)$(MKDIR_P) "$$(dirname "$@")"
	$(AM_V_DOT)set -e; export TZ=UTC0;				\
	    $(DOT) -Tpdf $(DOT_OPTIONS) < "$<" > "$@.tmp"
	$(AM_V_at)sed -ri					\
	    -e 's,(/CreationDate \(D:).*\),\119700101000000),'	\
	    "$@.tmp"
	$(AM_V_at)mv "$@.tmp" "$@"

.dot.eps:
	$(AM_V_GEN)$(MKDIR_P) "$$(dirname "$@")"
	$(AM_V_DOT)$(DOT) -Teps $(DOT_OPTIONS) < "$<" > "$@.tmp"
	$(AM_v_at)! grep -q %%CreationDate "$@.tmp"
	$(AM_V_at)mv "$@.tmp" "$@"

.png.eps:
	$(AM_V_GEN)$(MKDIR_P) "$$(dirname "$@")"
	$(AM_V_GEN)convert "$<" "$@-tmp.eps"
	$(AM_V_at)mv "$@-tmp.eps" "$@"

# We cannot add new dependencies to `%D%/guix.pdf' & co. (info "(automake)
# Extending").  Using the `-local' rules is imperfect, because they may be
# triggered after the main rule.  Oh, well.
pdf-local: $(DOT_FILES=%.dot=$(top_srcdir)/%.pdf)
info-local: $(DOT_FILES=%.dot=$(top_srcdir)/%.png)
ps-local: $(DOT_FILES=%.dot=$(top_srcdir)/%.eps)		\
	  $(top_srcdir)/%D%/images/coreutils-size-map.eps
dvi-local: ps-local

## ----------- ##
##  Man pages. ##
## ----------- ##

# The man pages are generated using GNU Help2man.  In makefiles rules they
# depend not on the binary, but on the source files.  This usage allows a
# manual page to be generated by the maintainer and included in the
# distribution without requiring the end-user to have 'help2man' installed.
# They are built in $(srcdir) like info manuals.

sub_commands_mans =				\
  $(srcdir)/%D%/guix-archive.1			\
  $(srcdir)/%D%/guix-build.1			\
  $(srcdir)/%D%/guix-challenge.1		\
  $(srcdir)/%D%/guix-container.1		\
  $(srcdir)/%D%/guix-copy.1			\
  $(srcdir)/%D%/guix-deploy.1			\
  $(srcdir)/%D%/guix-describe.1			\
  $(srcdir)/%D%/guix-download.1			\
  $(srcdir)/%D%/guix-edit.1			\
  $(srcdir)/%D%/guix-environment.1		\
  $(srcdir)/%D%/guix-gc.1			\
  $(srcdir)/%D%/guix-git.1			\
  $(srcdir)/%D%/guix-graph.1			\
  $(srcdir)/%D%/guix-hash.1			\
  $(srcdir)/%D%/guix-home.1			\
  $(srcdir)/%D%/guix-import.1			\
  $(srcdir)/%D%/guix-lint.1			\
  $(srcdir)/%D%/guix-offload.1			\
  $(srcdir)/%D%/guix-pack.1			\
  $(srcdir)/%D%/guix-package.1			\
  $(srcdir)/%D%/guix-processes.1		\
  $(srcdir)/%D%/guix-publish.1			\
  $(srcdir)/%D%/guix-pull.1			\
  $(srcdir)/%D%/guix-refresh.1			\
  $(srcdir)/%D%/guix-repl.1			\
  $(srcdir)/%D%/guix-shell.1			\
  $(srcdir)/%D%/guix-size.1			\
  $(srcdir)/%D%/guix-style.1			\
  $(srcdir)/%D%/guix-system.1			\
  $(srcdir)/%D%/guix-time-machine.1		\
  $(srcdir)/%D%/guix-weather.1

# Assume that cross-compiled commands cannot be executed.
if !CROSS_COMPILING

dist_man1_MANS =				\
  $(srcdir)/%D%/guix.1				\
  $(sub_commands_mans)

endif

gen_man =						\
  LANGUAGE= $(top_builddir)/pre-inst-env $(HELP2MAN)	\
  $(HELP2MANFLAGS)

HELP2MANFLAGS = --source=GNU --info-page=$(PACKAGE_TARNAME)
# help2man reproducibility
SOURCE_DATE_EPOCH = $(shell git show HEAD --format=%ct --no-patch 2>/dev/null || echo 1)
export SOURCE_DATE_EPOCH

$(srcdir)/%D%/guix.1: scripts/guix.in $(sub_commands_mans)
	-$(AM_V_HELP2MAN)$(gen_man) --output="$@" `basename "$@" .1`

# The 'case' ensures the man pages are only generated if the corresponding
# source script (the first prerequisite) has been changed.  The $(GOBJECTS)
# prerequisite is solely meant to force these docs to be made only after all
# Guile modules have been compiled.  We also need the guix script to exist.
$(srcdir)/%D%/guix-%.1: guix/scripts/%.scm $(GOBJECTS) scripts/guix
	-@case '$?' in								\
	  *$<*) $(AM_V_HELP2MAN:@%=%)$(gen_man) --output="$@" "guix $*";;	\
	  *)    : ;;								\
	esac

if BUILD_DAEMON
if !CROSS_COMPILING

dist_man1_MANS += $(srcdir)/%D%/guix-daemon.1

$(srcdir)/%D%/guix-daemon.1: guix-daemon$(EXEEXT)
	-$(AM_V_HELP2MAN)$(gen_man) --output="$@" `basename "$@" .1`

endif
endif

# Reproducible tarball

DIST_CONFIGURE_FLAGS =				\
  --localstatedir=/var				\
  --sysconfdir=/etc

# Delete all Autotools-generated files and rerun configure to ensure
# a clean cache and distributing reproducible versions.
auto-clean: maintainer-clean-vti doc-clean
	rm -f ABOUT-NLS INSTALL
	rm -f aclocal.m4 configure libtool Makefile.in
	if test -e .git; then				\
	    git clean -fdx -- '.am*' build-aux m4 po;	\
	else						\
	    rm -rf .am*;				\
	    $(MAKE) -C po/guix maintainer-clean;	\
	    $(MAKE) -C po/packages maintainer-clean;	\
	fi
	rm -f guile
	rm -f guix-daemon nix/nix-daemon/guix_daemon-guix-daemon.o
# Automake fails if guix-cookbook-LANG.texi stubs are missing; running
# autoreconf -vif is not enough.
	./bootstrap
# The dependency chain for the guix-cookbook-LANG.texi was cut on purpose;
# they must be deleted to ensure a rebuild.
	rm -f $(filter-out %D%/guix.texi %D%/guix-cookbook.texi, $(info_TEXINFOS))
	./configure $(DIST_CONFIGURE_FLAGS)

# Delete all generated doc files to ensure a clean cache and distributing
# reproducible versions.
doc-clean:
	rm -f $(srcdir)/doc/*.1
	rm -f $(srcdir)/doc/stamp*
	rm -f $(DOT_FILES:%.dot=%.png)
	rm -f $(DOT_VECTOR_GRAPHICS)
	rm -f doc/images/coreutils-size-map.eps
href='#n347'>347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2023 Liliana Marie Prikler <liliana.prikler@gmail.com>
;;;
;;; 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 (gnu packages java-rdf)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages)
  #:use-module (guix gexp)
  #:use-module (guix download)
  #:use-module (guix git-download)
  #:use-module (guix build-system ant)
  #:use-module (guix utils)
  #:use-module (gnu packages)
  #:use-module (gnu packages compression)
  #:use-module (gnu packages java))

(define-public java-jsonld-java
  (package
    (name "java-jsonld-java")
    (version "0.13.4")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                    (url "https://github.com/jsonld-java/jsonld-java")
                    (commit (string-append "v" version))))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "0d113szja4p16k2n2way8mmdj1kxzanjcnnsdan65iw27qag7dr0"))))
    (build-system ant-build-system)
    (arguments
     (list #:tests? #f                  ; no tests included
           #:jar-name "jsonld-java.jar"
           #:source-dir "core/src/main/java"
           #:test-dir "core/src/test"
           #:phases
           #~(modify-phases %standard-phases
               (add-before 'install 'generate-pom.xml
                 (generate-pom.xml "guix-pom.xml"
                                   "com.github.jsonld-java"
                                   "jsonld-java" #$version))
               (replace 'install
                 (install-from-pom "guix-pom.xml")))))
    (inputs (list java-slf4j-api java-guava
                  java-commons-io
                  java-httpcomponents-httpcore
                  java-httpcomponents-httpcore-osgi
                  java-httpcomponents-httpclient
                  java-httpcomponents-httpclient-cache
                  java-httpcomponents-httpclient-osgi
                  java-fasterxml-jackson-core
                  java-fasterxml-jackson-databind))
    (home-page "https://github.com/jsonld-java/jsonld-java")
    (synopsis "Java implementation of JSON-LD")
    (description "This package provides a Java implementation of JSON-LD 1.0.")
    (license license:bsd-3)))

(define-public java-commons-rdf-api
  (package
    (name "java-commons-rdf-api")
    (version "0.5.0")
    (source (origin
              (method url-fetch)
              (uri (string-append "mirror://apache/commons/rdf/source/"
                                  "apache-commons-rdf-" version
                                  "-source-release.zip"))
              (sha256
               (base32
                "14ihqgpbci6z5a5xlksbhjjxaw1kb80gx1k8l20v8w41in53rzqz"))))
    (build-system ant-build-system)
    (arguments
     (list #:jar-name "commons-rdf-api.jar"
           #:source-dir "src/main/java"
           #:test-dir "src/test"
           #:phases
           #~(modify-phases %standard-phases
               (add-after 'unpack 'chdir
                 (lambda _ (chdir "commons-rdf-api")))
               (replace 'install
                 (install-from-pom "pom.xml")))))
    (native-inputs (list java-junit java-slf4j-simple unzip))
    (home-page "https://commons.apache.org/proper/commons-rdf/")
    (synopsis "Java interfaces for RDF 1.1 concepts")
    (description "This package provides Java interfaces for RDF 1.1 concepts.")
    (license license:asl2.0)))

(define-public java-commons-rdf-api-tests
  (package
    (inherit java-commons-rdf-api)
    (name "java-commons-rdf-api-tests")
    (arguments
     (list #:tests? #f
           #:jar-name "commons-rdf-api-tests.jar"
           #:source-dir "commons-rdf-api/src/test/java"))
    (propagated-inputs (list java-commons-rdf-api
                             java-junit
                             java-slf4j-simple))
    (native-inputs (list unzip))
    (description "This package provides common test classes for packages
implementing java-commons-rdf-api.")))

(define-public java-commons-rdf-simple
  (package
    (inherit java-commons-rdf-api)
    (name "java-commons-rdf-simple")
    (arguments
     (list #:jar-name "commons-rdf-api.jar"
           #:source-dir "src/main/java"
           #:test-dir "src/test"
           #:phases
           #~(modify-phases %standard-phases
               (add-after 'unpack 'chdir
                 (lambda _ (chdir "commons-rdf-simple")))
               (add-after 'chdir 'delete-failing-tests
                 (lambda _
                   (with-directory-excursion "src/test/java/org/apache/commons/"
                     (delete-file "rdf/simple/SimpleServiceLoaderTest.java"))))
               (add-before 'install 'fix-pom
                 (lambda _
                   (substitute* "pom.xml"
                     (("\\$\\{project\\.parent\\.groupId\\}")
                      "org.apache.commons"))))
               (replace 'install
                 (install-from-pom "pom.xml")))))
    (propagated-inputs (list java-commons-rdf-api))
    (native-inputs (list java-commons-rdf-api-tests unzip))
    (synopsis "Simple implementation of RDF 1.1 concepts")
    (description "This package provides a simple implementation of RDF 1.1
concepts in Java.")))

(define %rdf4j-version "3.7.7")
(define %rdf4j-sha256
  (base32 "1lala4wjl5lbg45jdgd94rfkvdg6r4vq23k3q54bkk9q3w9v2bdx"))
(define %rdf4j-source
  (origin
   (method git-fetch)
   (uri (git-reference
         (url "https://github.com/eclipse/rdf4j")
         (commit %rdf4j-version)))
   (file-name (git-file-name "rdf4j" %rdf4j-version))
   (sha256 %rdf4j-sha256)
   (modules '((guix build utils)))
   (snippet #~(begin (delete-file-recursively "site")))))

(define (rdf4j-common-arguments jar-name directory)
  (list #:source-dir "src/main/java"
        #:test-dir "src/test/java"
        #:tests? #f                     ; tests require junit 5
        #:jar-name jar-name
        #:phases
        #~(modify-phases %standard-phases
            (add-after 'unpack 'chdir (lambda _ (chdir #$directory)))
            (add-after 'chdir 'fix-pom
              (lambda _
                (substitute* "pom.xml"
                  (("\\$\\{project\\.groupId\\}") "org.eclipse.rdf4j"))))
            (replace 'install
              (install-from-pom "pom.xml")))))

(define-public java-eclipse-rdf4j-http-client
  (package
    (name "java-eclipse-rdf4j-http-client")
    (version %rdf4j-version)
    (source %rdf4j-source)
    (build-system ant-build-system)
    (arguments
     (substitute-keyword-arguments
         (rdf4j-common-arguments "rdf4j-http-client.jar"
                                 "core/http/client")
       ((#:phases phases)
       #~(modify-phases #$phases
           (add-before 'install 'generate-pom.xml
             (generate-pom.xml "guix-pom.xml"
                               "org.eclipse.rdf4j"
                               "rdf4j-http-client" #$version))
           (replace 'install
             (install-from-pom "guix-pom.xml"))))))
    (inputs (list java-commons-io
                  java-httpcomponents-httpcore
                  java-httpcomponents-httpclient
                  java-slf4j-api))
    (propagated-inputs (list java-eclipse-rdf4j-http-protocol
                             java-eclipse-rdf4j-repository-api
                             java-eclipse-rdf4j-queryparser-sparql
                             java-eclipse-rdf4j-queryresultio-api
                             java-eclipse-rdf4j-queryresultio-binary
                             java-eclipse-rdf4j-queryresultio-sparqlxml
                             java-eclipse-rdf4j-queryresultio-sparqljson))
    (home-page "https://rdf4j.org/")
    (synopsis "HTTP client for RDF4J")
    (description "This package provides a client for communicating with RDF4J
servers.")
    (license license:epl1.0)))

(define-public java-eclipse-rdf4j-http-protocol
  (package
    (name "java-eclipse-rdf4j-http-protocol")
    (version %rdf4j-version)
    (source %rdf4j-source)
    (build-system ant-build-system)
    (arguments
     (substitute-keyword-arguments
         (rdf4j-common-arguments "rdf4j-http-protocol.jar"
                                 "core/http/protocol")
       ((#:phases phases)
       #~(modify-phases #$phases
           (add-before 'install 'generate-pom.xml
             (generate-pom.xml "guix-pom.xml"
                               "org.eclipse.rdf4j"
                               "rdf4j-http-protocol" #$version))
           (replace 'install
             (install-from-pom "guix-pom.xml"))))))
    (propagated-inputs (list java-eclipse-rdf4j-rio-ntriples
                             java-eclipse-rdf4j-repository-api
                             java-eclipse-rdf4j-model))
    (home-page "https://rdf4j.org/")
    (synopsis "HTTP protocol for RDF4J")
    (description "This package provides a protocol for communicating RDF
resourcess over HTTP.")
    (license license:epl1.0)))

(define-public java-eclipse-rdf4j-model
  (package
    (name "java-eclipse-rdf4j-model")
    (version %rdf4j-version)
    (source %rdf4j-source)
    (build-system ant-build-system)
    (arguments
     (rdf4j-common-arguments "rdf4j-model.jar"
                             "core/model"))
    (inputs (list java-slf4j-api java-guava))
    (propagated-inputs (list java-eclipse-rdf4j-util
                             java-eclipse-rdf4j-model-api
                             java-eclipse-rdf4j-model-vocabulary))
    (home-page "https://rdf4j.org/")
    (synopsis "Implementation of RDF data model")
    (description "This package provides the RDF model implementation used by
Eclipse RDF4J.")
    (license license:epl1.0)))

(define-public java-eclipse-rdf4j-model-api
  (package
    (name "java-eclipse-rdf4j-model-api")
    (version %rdf4j-version)
    (source %rdf4j-source)
    (build-system ant-build-system)
    (arguments
     (rdf4j-common-arguments "rdf4j-model-api.jar"
                             "core/model-api"))
    (home-page "https://rdf4j.org/")
    (synopsis "RDF4J model interfaces")
    (description "This package provides interfaces for the RDF data model used
in the RDF4J framework.")
    (license license:epl1.0)))

(define-public java-eclipse-rdf4j-model-vocabulary
  (package
    (name "java-eclipse-rdf4j-model-vocabulary")
    (version %rdf4j-version)
    (source %rdf4j-source)
    (build-system ant-build-system)
    (arguments
     (rdf4j-common-arguments "rdf4j-model-vocabulary.jar"
                             "core/model-vocabulary"))
    (propagated-inputs (list java-eclipse-rdf4j-model-api))
    (home-page "https://rdf4j.org/")
    (synopsis "Well known RDF vocabularies")
    (description "This package provides Java classes for well known
RDF vocabularies.")
    (license license:epl1.0)))

(define-public java-eclipse-rdf4j-query
  (package
    (name "java-eclipse-rdf4j-query")
    (version %rdf4j-version)
    (source %rdf4j-source)
    (build-system ant-build-system)
    (arguments
     (substitute-keyword-arguments
      (rdf4j-common-arguments "rdf4j-query.jar"
                              "core/query")
      ((#:phases phases)
       #~(modify-phases #$phases
           (add-before 'install 'generate-pom.xml
             (generate-pom.xml "guix-pom.xml"
                               "org.eclipse.rdf4j"
                               "rdf4j-query" #$version))
           (replace 'install
             (install-from-pom "guix-pom.xml"))))))
    (inputs (list java-commons-text
                  java-slf4j-api
                  java-fasterxml-jackson-annotations
                  java-fasterxml-jackson-core
                  java-fasterxml-jackson-databind))
    (propagated-inputs (list java-eclipse-rdf4j-model
                             java-eclipse-rdf4j-rio-api))
    (home-page "https://rdf4j.org/")
    (synopsis "Querying RDF")
    (description "This package provides an interface and implementation for
querying RDF.")
    (license license:epl1.0)))

(define-public java-eclipse-rdf4j-queryalgebra-model
  (package
    (name "java-eclipse-rdf4j-queryalgebra-model")
    (version %rdf4j-version)
    (source %rdf4j-source)
    (build-system ant-build-system)
    (arguments
     (rdf4j-common-arguments "rdf4j-queryalgebra-model.jar"
                             "core/queryalgebra/model"))
    (inputs (list java-fasterxml-jackson-annotations
                  java-guava))
    (propagated-inputs (list java-eclipse-rdf4j-model
                             java-eclipse-rdf4j-query))
    (home-page "https://rdf4j.org/")
    (synopsis "RDF query algebra")
    (description "This package provides an algebra model for RDF queries.")
    (license license:epl1.0)))

(define-public java-eclipse-rdf4j-queryparser-api
  (package
    (name "java-eclipse-rdf4j-queryparser-api")
    (version %rdf4j-version)
    (source %rdf4j-source)
    (build-system ant-build-system)
    (arguments
     (rdf4j-common-arguments "rdf4j-queryparser-api.jar"
                             "core/queryparser/api"))
    (propagated-inputs (list java-eclipse-rdf4j-query
                             java-eclipse-rdf4j-queryalgebra-model))
    (home-page "https://rdf4j.org/")
    (synopsis "Generic query parser API")
    (description "This package provides a common API for query parsers in
RDF4J.")
    (license license:epl1.0)))

(define-public java-eclipse-rdf4j-queryparser-sparql
  (package
    (name "java-eclipse-rdf4j-queryparser-sparql")
    (version %rdf4j-version)
    (source %rdf4j-source)
    (build-system ant-build-system)
    (arguments
     (rdf4j-common-arguments "rdf4j-queryparser-sparql.jar"
                             "core/queryparser/sparql"))
    (propagated-inputs (list java-eclipse-rdf4j-queryparser-api
                             java-eclipse-rdf4j-model
                             java-eclipse-rdf4j-rio-trig))
    (home-page "https://rdf4j.org/")
    (synopsis "SPARQL query parser")
    (description "This package provides a parser for SPARQL queries.")
    (license license:epl1.0)))

(define-public java-eclipse-rdf4j-queryresultio-api
  (package
    (name "java-eclipse-rdf4j-queryresultio-api")
    (version %rdf4j-version)
    (source %rdf4j-source)
    (build-system ant-build-system)
    (arguments
     (rdf4j-common-arguments "rdf4j-queryresultio-api.jar"
                             "core/queryresultio/api"))
    (propagated-inputs (list java-eclipse-rdf4j-query
                             java-eclipse-rdf4j-rio-api
                             java-eclipse-rdf4j-sail-api))
    (home-page "https://rdf4j.org/")
    (synopsis "Handling RDF query results")
    (description "This package provides an API for handling input and output
on RDF query results.")
    (license license:epl1.0)))

(define-public java-eclipse-rdf4j-queryresultio-binary
  (package
    (name "java-eclipse-rdf4j-queryresultio-binary")
    (version %rdf4j-version)
    (source %rdf4j-source)
    (build-system ant-build-system)
    (arguments
     (rdf4j-common-arguments "rdf4j-queryresultio-binary.jar"
                             "core/queryresultio/binary"))
    (inputs (list java-slf4j-api))
    (propagated-inputs (list java-eclipse-rdf4j-queryresultio-api))
    (home-page "https://rdf4j.org/")
    (synopsis "Handling RDF query results")
    (description "This package provides binary input and output for RDF
queries.")
    (license license:epl1.0)))

(define-public java-eclipse-rdf4j-queryresultio-sparqlxml
  (package
    (name "java-eclipse-rdf4j-queryresultio-sparqlxml")
    (version %rdf4j-version)
    (source %rdf4j-source)
    (build-system ant-build-system)
    (arguments
     (rdf4j-common-arguments "rdf4j-queryresultio-sparqlxml.jar"
                             "core/queryresultio/sparqlxml"))
    (inputs (list java-slf4j-api java-commons-lang3))
    (propagated-inputs (list java-eclipse-rdf4j-queryresultio-api))
    (home-page "https://rdf4j.org/")
    (synopsis "Handling RDF query results")
    (description "This package provides classes for handling SPARQL/XML-based
RDF queries.")
    (license license:epl1.0)))

(define-public java-eclipse-rdf4j-queryresultio-sparqljson
  (package
    (name "java-eclipse-rdf4j-queryresultio-sparqljson")
    (version %rdf4j-version)
    (source %rdf4j-source)
    (build-system ant-build-system)
    (arguments
     (substitute-keyword-arguments
      (rdf4j-common-arguments "rdf4j-queryresultio-sparqljson.jar"
                              "core/queryresultio/sparqljson")
      ((#:phases phases)
       #~(modify-phases #$phases
           (add-before 'install 'generate-pom.xml
             (generate-pom.xml "guix-pom.xml"
                               "org.eclipse.rdf4j"
                               "rdf4j-queryresultio-sparqljson" #$version))
           (replace 'install
             (install-from-pom "guix-pom.xml"))))))
    (inputs (list java-slf4j-api
                  java-commons-lang3
                  java-fasterxml-jackson-core))
    (propagated-inputs (list java-eclipse-rdf4j-queryresultio-api))
    (home-page "https://rdf4j.org/")
    (synopsis "Handling RDF query results")
    (description "This package provides classes for handling SPARQL/JSON-based
RDF queries.")
    (license license:epl1.0)))

(define-public java-eclipse-rdf4j-repository-api
  (package
    (name "java-eclipse-rdf4j-repository-api")
    (version %rdf4j-version)
    (source %rdf4j-source)
    (build-system ant-build-system)
    (arguments
     (rdf4j-common-arguments "rdf4j-repository-api.jar"
                             "core/repository/api"))
    (inputs (list java-slf4j-api java-commons-lang3))
    (propagated-inputs (list java-eclipse-rdf4j-model
                             java-eclipse-rdf4j-rio-api
                             java-eclipse-rdf4j-query))
    (home-page "https://rdf4j.org/")
    (synopsis "Interact with RDF repositories")
    (description "This package provides an API for interacting with repositories
of RDF data.")
    (license license:epl1.0)))

(define-public java-eclipse-rdf4j-repository-sparql
  (package
    (name "java-eclipse-rdf4j-repository-sparql")
    (version %rdf4j-version)
    (source %rdf4j-source)
    (build-system ant-build-system)
    (arguments
     (rdf4j-common-arguments "rdf4j-repository-sparql.jar"
                             "core/repository/sparql"))
    (inputs (list java-httpcomponents-httpclient
                  java-slf4j-api))
    (propagated-inputs (list java-eclipse-rdf4j-http-client
                             java-eclipse-rdf4j-queryparser-sparql
                             java-eclipse-rdf4j-repository-api))
    (home-page "https://rdf4j.org/")
    (synopsis "Repository based on SPARQL")
    (description "This package provides a repository implementation that SPARQL.")
    (license license:epl1.0)))

(define-public java-eclipse-rdf4j-rio-api
  (package
    (name "java-eclipse-rdf4j-rio-api")
    (version %rdf4j-version)
    (source %rdf4j-source)
    (build-system ant-build-system)
    (arguments
     (substitute-keyword-arguments
         (rdf4j-common-arguments "rdf4j-rio-api.jar"
                                 "core/rio/api")
       ((#:phases phases)
        #~(modify-phases #$phases
            (add-before 'install 'generate-pom.xml
              (generate-pom.xml "guix-pom.xml"
                                "org.eclipse.rdf4j"
                                "rdf4j-rio-api" #$version))
            (replace 'install
              (install-from-pom "guix-pom.xml"))))))
    (inputs (list java-commons-codec java-commons-io java-slf4j-api
                  java-jsonld-java))
    (propagated-inputs (list java-eclipse-rdf4j-model))
    (home-page "https://rdf4j.org/")
    (synopsis "RDF Input/Output API")
    (description "This package provides an API for parsers and writers of
various RDF formats.")
    (license license:epl1.0)))

(define-public java-eclipse-rdf4j-rio-datatypes
  (package
    (name "java-eclipse-rdf4j-rio-datatypes")
    (version %rdf4j-version)
    (source %rdf4j-source)
    (build-system ant-build-system)
    (arguments
     (rdf4j-common-arguments "rdf4j-rio-datatypes.jar"
                             "core/rio/datatypes"))
    (propagated-inputs (list java-eclipse-rdf4j-model
                             java-eclipse-rdf4j-rio-api))
    (home-page "https://rdf4j.org/")
    (synopsis "RDF datatype handlers")
    (description "This package provides datatype handlers used in RDF4J.")
    (license license:epl1.0)))

(define-public java-eclipse-rdf4j-rio-jsonld
  (package
    (name "java-eclipse-rdf4j-rio-jsonld")
    (version %rdf4j-version)
    (source %rdf4j-source)
    (build-system ant-build-system)
    (arguments
     (substitute-keyword-arguments
         (rdf4j-common-arguments "rdf4j-rio-jsonld.jar"
                                 "core/rio/jsonld")
       ((#:phases phases)
        #~(modify-phases #$phases
            (add-before 'install 'generate-pom.xml
              (generate-pom.xml "guix-pom.xml"
                                "org.eclipse.rdf4j"
                                "rdf4j-rio-jsonld" #$version))
            (replace 'install
              (install-from-pom "guix-pom.xml"))))))
    (inputs (list java-commons-io
                  java-slf4j-api
                  java-fasterxml-jackson-core
                  java-fasterxml-jackson-databind
                  java-jsonld-java))
    (propagated-inputs (list java-eclipse-rdf4j-rio-api
                             java-eclipse-rdf4j-rio-datatypes
                             java-eclipse-rdf4j-rio-languages
                             java-eclipse-rdf4j-model))
    (home-page "https://rdf4j.org/")
    (synopsis "RDF JSON-LD serialization")
    (description "This package provides an implementation of the RDF4J Rio API,
which reads and writes JSON-LD.")
    (license license:epl1.0)))

(define-public java-eclipse-rdf4j-rio-languages
  (package
    (name "java-eclipse-rdf4j-rio-languages")
    (version %rdf4j-version)
    (source %rdf4j-source)
    (build-system ant-build-system)
    (arguments
     (rdf4j-common-arguments "rdf4j-rio-languages.jar"
                             "core/rio/languages"))
    (propagated-inputs (list java-eclipse-rdf4j-model
                             java-eclipse-rdf4j-rio-api))
    (home-page "https://rdf4j.org/")
    (synopsis "RDF language handlers")
    (description "This package provides language handlers used in RDF4J.")
    (license license:epl1.0)))

(define-public java-eclipse-rdf4j-rio-ntriples
  (package
    (name "java-eclipse-rdf4j-rio-ntriples")
    (version %rdf4j-version)
    (source %rdf4j-source)
    (build-system ant-build-system)
    (arguments
     (rdf4j-common-arguments "rdf4j-rio-ntriples.jar"
                             "core/rio/ntriples"))
    (inputs (list java-commons-io java-slf4j-api))
    (propagated-inputs (list java-eclipse-rdf4j-rio-api
                             java-eclipse-rdf4j-rio-datatypes
                             java-eclipse-rdf4j-rio-languages
                             java-eclipse-rdf4j-model))
    (home-page "https://rdf4j.org/")
    (synopsis "RDF NTriples serialization")
    (description "This package provides an implementation of the RDF4J Rio API,
which reads and writes NTriples.")
    (license license:epl1.0)))

(define-public java-eclipse-rdf4j-rio-nquads
  (package
    (name "java-eclipse-rdf4j-rio-nquads")
    (version %rdf4j-version)
    (source %rdf4j-source)
    (build-system ant-build-system)
    (arguments
     (rdf4j-common-arguments "rdf4j-rio-nquads.jar"
                             "core/rio/nquads"))
    (inputs (list java-commons-io java-slf4j-api))
    (propagated-inputs (list java-eclipse-rdf4j-rio-api
                             java-eclipse-rdf4j-rio-datatypes
                             java-eclipse-rdf4j-rio-languages
                             java-eclipse-rdf4j-rio-ntriples
                             java-eclipse-rdf4j-model))
    (home-page "https://rdf4j.org/")
    (synopsis "RDF NQuads serialization")
    (description "This package provides an implementation of the RDF4J Rio API,
which reads and writes NQuads.")
    (license license:epl1.0)))

(define-public java-eclipse-rdf4j-rio-rdfxml
  (package
    (name "java-eclipse-rdf4j-rio-rdfxml")
    (version %rdf4j-version)
    (source %rdf4j-source)
    (build-system ant-build-system)
    (arguments
     (rdf4j-common-arguments "rdf4j-rio-rdfxml.jar"
                             "core/rio/rdfxml"))
    (inputs (list java-commons-io java-slf4j-api))
    (propagated-inputs (list java-eclipse-rdf4j-rio-api
                             java-eclipse-rdf4j-rio-datatypes
                             java-eclipse-rdf4j-rio-languages
                             java-eclipse-rdf4j-model))
    (home-page "https://rdf4j.org/")
    (synopsis "RDF XML serialization")
    (description "This package provides an implementation of the RDF4J Rio API,
which reads and writes XML.")
    (license license:epl1.0)))

(define-public java-eclipse-rdf4j-rio-turtle
  (package
    (name "java-eclipse-rdf4j-rio-turtle")
    (version %rdf4j-version)
    (source %rdf4j-source)
    (build-system ant-build-system)
    (arguments
     (rdf4j-common-arguments "rdf4j-rio-turtle.jar"
                             "core/rio/turtle"))
    (inputs (list java-commons-io java-slf4j-api))
    (propagated-inputs (list java-eclipse-rdf4j-rio-api
                             java-eclipse-rdf4j-rio-datatypes
                             java-eclipse-rdf4j-rio-languages
                             java-eclipse-rdf4j-model))
    (home-page "https://rdf4j.org/")
    (synopsis "RDF Turtle serialization")
    (description "This package provides an implementation of the RDF4J Rio API,
which reads and writes Turtle.")
    (license license:epl1.0)))

(define-public java-eclipse-rdf4j-rio-trig
  (package
    (name "java-eclipse-rdf4j-rio-trig")
    (version %rdf4j-version)
    (source %rdf4j-source)
    (build-system ant-build-system)
    (arguments
     (rdf4j-common-arguments "rdf4j-rio-trig.jar"
                             "core/rio/trig"))
    (inputs (list java-commons-io java-slf4j-api))
    (propagated-inputs (list java-eclipse-rdf4j-rio-api
                             java-eclipse-rdf4j-rio-datatypes
                             java-eclipse-rdf4j-rio-languages
                             java-eclipse-rdf4j-rio-turtle
                             java-eclipse-rdf4j-model))
    (home-page "https://rdf4j.org/")
    (synopsis "RDF TriG serialization")
    (description "This package provides an implementation of the RDF4J Rio API,
which reads and writes TriG.")
    (license license:epl1.0)))

(define-public java-eclipse-rdf4j-sail-api
  (package
    (name "java-eclipse-rdf4j-sail-api")
    (version %rdf4j-version)
    (source %rdf4j-source)
    (build-system ant-build-system)
    (arguments
     (rdf4j-common-arguments "rdf4j-sail-api.jar"
                             "core/sail/api"))
    (inputs (list java-slf4j-api))
    (propagated-inputs (list java-eclipse-rdf4j-query
                             java-eclipse-rdf4j-queryalgebra-model
                             java-eclipse-rdf4j-model))
    (home-page "https://rdf4j.org/")
    (synopsis "Interfaces for low-level access to RDF data")
    (description "The @acronym{SAIL, Storage And Interface Layer} API
decouples database implementations and the functional modules of the RDF4J
framework.")
    (license license:epl1.0)))

(define-public java-eclipse-rdf4j-util
  (package
    (name "java-eclipse-rdf4j-util")
    (version %rdf4j-version)
    (source %rdf4j-source)
    (build-system ant-build-system)
    (arguments
     (rdf4j-common-arguments "rdf4j-util.jar"
                             "core/util"))
    (inputs (list java-slf4j-api))
    (propagated-inputs (list java-eclipse-rdf4j-model-api))
    (home-page "https://rdf4j.org/")
    (synopsis "RDF4J model interfaces")
    (description "This package provides utility classes used throughout the
RDF4J framework.")
    (license license:epl1.0)))