aboutsummaryrefslogtreecommitdiff
path: root/gnu/tests
ModeNameSize
-rw-r--r--admin.scm4196logplainabout
-rw-r--r--audio.scm2409logplainabout
-rw-r--r--base.scm27596logplainabout
-rw-r--r--databases.scm8049logplainabout
-rw-r--r--desktop.scm3845logplainabout
-rw-r--r--dict.scm5064logplainabout
-rw-r--r--install.scm31690logplainabout
-rw-r--r--mail.scm9313logplainabout
-rw-r--r--messaging.scm8452logplainabout
-rw-r--r--networking.scm8569logplainabout
-rw-r--r--nfs.scm4597logplainabout
-rw-r--r--rsync.scm4229logplainabout
-rw-r--r--ssh.scm9197logplainabout
-rw-r--r--version-control.scm10247logplainabout
-rw-r--r--virtualization.scm2990logplainabout
-rw-r--r--web.scm8685logplainabout
t cyrus-sasl mit-krb5 nettle raptor2 zlib)) (native-inputs (list autoconf automake libtool pkg-config)) (home-page "https://github.com/swh/LRDF") (synopsis "Lightweight RDF library for accessing LADSPA plugin metadata") (description "LRDF is a library to make it easy to manipulate RDF files describing LADSPA plugins. It can also be used for general RDF manipulation. It can read RDF/XLM and N3 files and export N3 files, and it also has a light taxonomic inference capability.") (license license:gpl2))) (define-public rasqal (package (name "rasqal") (version "0.9.33") (source (origin (method url-fetch) (uri (string-append "http://download.librdf.org/source/" name "-" version ".tar.gz")) (sha256 (base32 "0z6rrwn4jsagvarg8d5zf0j352kjgi33py39jqd29gbhcnncj939")))) (build-system gnu-build-system) (native-inputs (list perl perl-xml-dom ; for the tests pkg-config)) (inputs (list libgcrypt libxml2 mpfr pcre `(,util-linux "lib"))) (propagated-inputs (list raptor2)) ; stipulated by rasqal.pc (arguments `(#:parallel-tests? #f ; test failure reported upstream, see ; http://bugs.librdf.org/mantis/view.php?id=571 #:tests? #f)) (home-page "https://librdf.org/rasqal/") (synopsis "RDF query library") (description "Rasqal is a C library that handles Resource Description Framework (RDF) query language syntaxes, query construction and execution of queries returning results as bindings, boolean, RDF graphs/triples or syntaxes. The supported query languages are SPARQL Query 1.0, SPARQL Query 1.1, SPARQL Update 1.1 (no executing) and the Experimental SPARQL extensions (LAQRS). Rasqal can write binding query results in the SPARQL XML, SPARQL JSON, CSV, TSV, HTML, ASCII tables, RDF/XML and Turtle/N3 and read them in SPARQL XML, RDF/XML and Turtle/N3.") (license license:lgpl2.1+))) ; or any choice of gpl2+ or asl2.0 (define-public redland (package (name "redland") (version "1.0.17") (source (origin (method url-fetch) (uri (string-append "http://download.librdf.org/source/" name "-" version ".tar.gz")) (sha256 (base32 "109n0kp39p966dpiasad2bb7q66rwbcb9avjvimw28chnpvlf66y")))) (build-system gnu-build-system) (native-inputs (list perl ; needed for installation pkg-config)) (propagated-inputs (list rasqal)) ; in Requires.private field of .pc (inputs (list bdb)) (home-page "https://librdf.org/") (synopsis "RDF library") (description "The Redland RDF Library (librdf) provides the RDF API and triple stores.") (license license:lgpl2.1+))) ; or any choice of gpl2+ or asl2.0 (define-public serd (package (name "serd") (version "0.32.0") (source (origin (method url-fetch) (uri (string-append "https://download.drobilla.net/serd-" version ".tar.xz")) (sha256 (base32 "18cwj8xxsaq6iw45kcljbhrral0cqvav80p4mdv2l7g0d2a6ks6i")))) (build-system meson-build-system) (native-inputs (list python-minimal)) (home-page "https://drobilla.net/software/serd.html") (synopsis "Library for RDF syntax supporting Turtle and NTriples") (description "Serd is a lightweight C library for RDF syntax which supports reading and writing Turtle and NTriples. Serd is not intended to be a swiss-army knife of RDF syntax, but rather is suited to resource limited or performance critical applications (e.g. converting many gigabytes of NTriples to Turtle), or situations where a simple reader/writer with minimal dependencies is ideal (e.g. in LV2 implementations or embedded applications).") (license license:isc))) (define-public sord (package (name "sord") (version "0.16.16") (source (origin (method url-fetch) (uri (string-append "https://download.drobilla.net/sord-" version ".tar.xz")) (sha256 (base32 "1l2zjz6gypxbf1z32zyqkljdcn9mz452djc4xq1dlhv1fmnqfzr5")))) (build-system meson-build-system) (inputs (list pcre)) (native-inputs (list pkg-config)) (propagated-inputs (list serd zix)) ;required by sord-0.pc (home-page "https://drobilla.net/software/sord.html") (synopsis "C library for storing RDF data in memory") (description "Sord is a lightweight C library for storing RDF data in memory.") (license license:isc))) (define-public python-rdflib (package (name "python-rdflib") (version "6.1.1") (source (origin (method url-fetch) (uri (pypi-uri "rdflib" version)) (sha256 (base32 "0m7pyq771vl4zf9xd3pxjbg7x6ac97b3djfbv9qq9fch56ps1gwd")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (add-after 'unpack 'adjust-tests (lambda _ (for-each delete-file '(;; This test needs a font that is not shipped. "test/test_so_69984830.py" ;; These tests need internet access. "test/jsonld/test_onedotone.py" "test/test_sparql_service.py" "test/test_graph.py")))) (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest" "-vv" "test/"))))))) (native-inputs (list python-pytest)) (propagated-inputs (list python-html5lib python-isodate python-pyparsing)) (home-page "https://github.com/RDFLib/rdflib") (synopsis "Python RDF library") (description "RDFLib is a Python library for working with RDF, a simple yet powerful language for representing information.") (license (license:non-copyleft "file://LICENSE" "See LICENSE in the distribution.")))) (define-public python-cfgraph (package (name "python-cfgraph") (version "0.2.1") (source (origin (method url-fetch) (uri (pypi-uri "CFGraph" version)) (sha256 (base32 "0x7yz0lvqb6mkhl5fbml27sppmscgpf8v2ism9jzzf0h982ffzxm")))) (build-system python-build-system) (propagated-inputs (list python-rdflib)) (home-page "https://github.com/hsolbrig/CFGraph") (synopsis "RDF Collections flattener for rdflib") (description "This package contains RDF Collections flattener for @code{rdflib}.") (license license:asl2.0))) (define-public hdt-cpp (package (name "hdt-cpp") (version "1.3.3") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/rdfhdt/hdt-cpp") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1vsq80jnix6cy78ayag7v8ajyw7h8dqyad1q6xkf2hzz3skvr34z")))) (build-system gnu-build-system) (inputs (list serd zlib)) (native-inputs (list autoconf automake libtool pkg-config)) (home-page "https://github.com/rdfhdt/hdt-cpp") (synopsis "C++ implementation of the HDT compression format") (description "Header Dictionary Triples (HDT) is a compression format for RDF data that can also be queried for Triple Patterns. This package provides a C++ library as well as various command-line tools to to work with HDT.") (license license:lgpl2.1+))) (define-public python-pyrdfa3 (package (name "python-pyrdfa3") (version "3.6.2") (source (origin (method url-fetch) (uri (pypi-uri "pyRdfa3" version)) (sha256 (base32 "1hhlhgqkc3igzdpxllf41drrqxm5aswqhwvnjqb90q3zjnmiss3k")))) (build-system pyproject-build-system) (arguments (list #:tests? #f)) ;no test suite (propagated-inputs (list python-html5lib python-rdflib python-requests)) (home-page "https://www.w3.org/2012/pyRdfa/") (synopsis "RDFa Python distiller/parser library") (description "This library can extract RDFa 1.1 from (X)HTML, SVG, or XML. It can produce serialized versions of the extracted graph, or an RDFLib Graph.") (license license:bsd-3))) (define-public python-sparqlwrapper (package (name "python-sparqlwrapper") (version "2.0.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/RDFLib/sparqlwrapper") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "1b4vg754kcxvinwdv7pjfmwbnmgm50w8mb2naf2lwp27bpyllvkb")))) (build-system python-build-system) (arguments '(#:tests? #f)) ; The test suite simply queries external HTTP endpoints. (propagated-inputs (list python-rdflib)) (home-page "https://rdflib.dev/sparqlwrapper/") (synopsis "SPARQL Endpoint interface to Python") (description "Python wrapper around a SPARQL service. It helps in creating the query URI and, possibly, convert the result into a more manageable format.") (license license:w3c)))