2013-08-24 08:41:07 +00:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2015-10-18 10:09:13 +00:00
|
|
|
;;; Copyright © 2013, 2014, 2015 Andreas Enge <andreas@enge.fr>
|
2014-02-10 22:44:57 +00:00
|
|
|
;;; Copyright © 2014 Sree Harsha Totakura <sreeharsha@totakura.in>
|
2020-06-17 10:14:23 +00:00
|
|
|
;;; Copyright © 2015, 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org>
|
2020-01-22 08:06:56 +00:00
|
|
|
;;; Copyright © 2015, 2017, 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
|
2016-01-13 17:36:31 +00:00
|
|
|
;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net>
|
2016-04-05 02:52:51 +00:00
|
|
|
;;; Copyright © 2016 Mark H Weaver <mhw@netris.org>
|
2020-05-19 22:06:05 +00:00
|
|
|
;;; Copyright © 2016, 2017, 2018, 2019, 2020 Nikita <nikita@n0.is>
|
2020-02-16 20:04:33 +00:00
|
|
|
;;; Copyright © 2016, 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
2018-12-30 22:48:50 +00:00
|
|
|
;;; Copyright © 2018 Alex Vong <alexvong1995@gmail.com>
|
2019-12-24 00:19:34 +00:00
|
|
|
;;; Copyright © 2019 Brett Gilio <brettg@gnu.org>
|
2020-02-19 10:18:53 +00:00
|
|
|
;;; Copyright © 2020 Tanguy Le Carrour <tanguy@bioneland.org>
|
2020-07-27 02:07:50 +00:00
|
|
|
;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
|
2013-08-24 08:41:07 +00:00
|
|
|
;;;
|
|
|
|
;;; 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 gnunet)
|
2014-01-30 23:33:36 +00:00
|
|
|
#:use-module (gnu packages)
|
2015-01-28 13:23:14 +00:00
|
|
|
#:use-module (gnu packages file)
|
2016-01-13 17:36:31 +00:00
|
|
|
#:use-module (gnu packages aidc)
|
2013-08-24 08:41:07 +00:00
|
|
|
#:use-module (gnu packages autotools)
|
|
|
|
#:use-module (gnu packages compression)
|
2020-07-10 13:39:54 +00:00
|
|
|
#:use-module (gnu packages crypto)
|
2013-08-24 09:40:57 +00:00
|
|
|
#:use-module (gnu packages curl)
|
gnu: gettext: Rename binding to 'gnu-gettext'.
* gnu/packages/gettext.scm (gettext): Rename to...
(gnu-gettext): ... this. This is used to work around the circular
dependency introduced in commit c42a4b7, which users with a #:renamer
cannot cope with.
* gnu/packages/acl.scm, gnu/packages/attr.scm, gnu/packages/cdrom.scm,
gnu/packages/fdisk.scm, gnu/packages/gkrellm.scm, gnu/packages/glib.scm,
gnu/packages/gnunet.scm, gnu/packages/grub.scm, gnu/packages/linux.scm,
gnu/packages/maths.scm, gnu/packages/nano.scm, gnu/packages/parted.scm,
gnu/packages/system.scm, gnu/packages/version-control.scm,
gnu/packages/vpn.scm, gnu/packages/w3m.scm, gnu/packages/wget.scm:
Adjust accordingly.
2013-11-20 21:12:49 +00:00
|
|
|
#:use-module (gnu packages gettext)
|
2013-08-24 08:41:07 +00:00
|
|
|
#:use-module (gnu packages glib)
|
2016-01-13 17:36:31 +00:00
|
|
|
#:use-module (gnu packages gnome)
|
2013-08-24 09:40:57 +00:00
|
|
|
#:use-module (gnu packages gnupg)
|
2014-01-29 12:59:11 +00:00
|
|
|
#:use-module (gnu packages groff)
|
2016-01-13 17:36:31 +00:00
|
|
|
#:use-module (gnu packages gtk)
|
2015-11-06 15:07:07 +00:00
|
|
|
#:use-module (gnu packages guile)
|
2013-11-23 17:16:03 +00:00
|
|
|
#:use-module (gnu packages gstreamer)
|
2014-01-29 12:59:11 +00:00
|
|
|
#:use-module (gnu packages libidn)
|
2016-09-16 13:28:01 +00:00
|
|
|
#:use-module (gnu packages linux)
|
gnu: Consolidate libjpeg, libpng, and libtiff into one module.
* gnu/packages/image.scm: New file.
* gnu-system.am (GNU_SYSTEM_MODULES): Add image.scm and remove libjpeg.scm,
libpng.scm, and libtiff.scm.
* gnu/packages/libjpeg.scm, gnu/packages/libpng.scm, gnu/packages/libtiff.scm:
Delete files.
* gnu/packages/emacs.scm gnu/packages/games.scm, gnu/packages/gd.scm,
gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/gimp.scm, gnu/packages/gnome.scm, gnu/packages/gnunet.scm,
gnu/packages/gnustep.scm, gnu/packages/gnuzilla.scm,
gnu/packages/graphviz.scm, gnu/packages/gtk.scm,
gnu/packages/imagemagick.scm, gnu/packages/inkscape.scm,
gnu/packages/netpbm.scm, gnu/packages/pdf.scm, gnu/packages/plotutils.scm,
gnu/packages/qemu.scm, gnu/packages/qt.scm, gnu/packages/scheme.scm,
gnu/packages/sdl.scm, gnu/packages/slim.scm, gnu/packages/tcl.scm,
gnu/packages/texlive.scm, gnu/packages/video.scm, gnu/packages/xiph.scm,
gnu/packages/xorg.scm: Use (gnu packages image) module.
2014-06-25 12:39:02 +00:00
|
|
|
#:use-module (gnu packages image)
|
2014-01-30 23:33:36 +00:00
|
|
|
#:use-module (gnu packages libunistring)
|
|
|
|
#:use-module (gnu packages maths)
|
2016-09-16 13:28:01 +00:00
|
|
|
#:use-module (gnu packages multiprecision)
|
2017-02-09 13:37:03 +00:00
|
|
|
#:use-module (gnu packages music)
|
2016-09-16 13:28:01 +00:00
|
|
|
#:use-module (gnu packages ncurses)
|
gnu: Move nss & co. to nss.scm.
* gnu/packages/gnuzilla.scm (nspr, nss): Move to...
* gnu/packages/nss.scm: ... here. New file.
* gnu/packages/chromium.scm, gnu/packages/disk.scm,
gnu/packages/freedesktop.scm, gnu/packages/gnome.scm,
gnu/packages/gnunet.scm, gnu/packages/java.scm,
gnu/packages/libreoffice.scm, gnu/packages/linux.scm,
gnu/packages/mate.scm, gnu/packages/openldap.scm,
gnu/packages/package-management.scm, gnu/packages/password-utils.scm,
gnu/packages/polkit.scm, gnu/packages/qt.scm,
gnu/packages/sssd.scm, gnu/packages/storage.scm,
gnu/packages/vpn.scm, gnu/packages/web.scm, gnu/packages/xml.scm: Adjust
accordingly.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add nss.scm.
2019-04-04 13:14:57 +00:00
|
|
|
#:use-module (gnu packages nss)
|
2017-02-09 13:37:03 +00:00
|
|
|
#:use-module (gnu packages package-management)
|
2013-08-24 08:41:07 +00:00
|
|
|
#:use-module (gnu packages pkg-config)
|
2014-01-29 12:59:11 +00:00
|
|
|
#:use-module (gnu packages perl)
|
2014-01-30 23:33:36 +00:00
|
|
|
#:use-module (gnu packages pulseaudio)
|
2014-01-29 12:59:11 +00:00
|
|
|
#:use-module (gnu packages python)
|
gnu: Move sqlite to separate module.
* gnu/packages/databases.scm (sqlite, sqlite-3.26.0, sqlite-with-fts5,
sqlite-with-column-metadata): Move variables from here...
* gnu/packages/sqlite.scm: ...to this new module.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
* gnu/packages/apl.scm,
gnu/packages/bittorrent.scm,
gnu/packages/calendar.scm,
gnu/packages/code.scm,
gnu/packages/crypto.scm,
gnu/packages/databases.scm,
gnu/packages/dc.scm,
gnu/packages/disk.scm,
gnu/packages/ebook.scm,
gnu/packages/education.scm,
gnu/packages/emacs.scm,
gnu/packages/emulators.scm,
gnu/packages/file-systems.scm,
gnu/packages/freedesktop.scm,
gnu/packages/ftp.scm,
gnu/packages/games.scm,
gnu/packages/geo.scm,
gnu/packages/gnome.scm,
gnu/packages/gnunet.scm,
gnu/packages/gnupg.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/gps.scm,
gnu/packages/guile.scm,
gnu/packages/ibus.scm,
gnu/packages/kerberos.scm,
gnu/packages/kodi.scm,
gnu/packages/lisp.scm,
gnu/packages/mail.scm,
gnu/packages/messaging.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/nfs.scm,
gnu/packages/ocaml.scm,
gnu/packages/package-management.scm,
gnu/packages/pdf.scm,
gnu/packages/photo.scm,
gnu/packages/php.scm,
gnu/packages/python.scm,
gnu/packages/qt.scm,
gnu/packages/ruby.scm,
gnu/packages/scheme.scm,
gnu/packages/sync.scm,
gnu/packages/syndication.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/web-browsers.scm,
gnu/packages/webkit.scm: Adjust module references.
2019-01-15 20:47:05 +00:00
|
|
|
#:use-module (gnu packages sqlite)
|
gnu: Rename module gnutls to tls.
* gnu/packages/gnutls.scm: Rename to...
* gnu/packages/tls.scm: ... this. Change module name accordingly.
* gnu/packages/{admin.scm, cups.scm, curl.scm, dc.scm, dns.scm, emacs.scm,
ftp.scm, gnome.scm, gnunet.scm, gnupg.scm, gsasl.scm, lynx.scm,
mail.scm, messaging.scm, package-management.scm, shishi.scm,
task-management.scm, version-control.scm, video.scm, vpn.scm,
webkit.scm, weechat.scm, wget.scm, wine.scm, xml.scm}: Adapt module
import to new name.
* gnu-system.am (GNU_SYSTEM_MODULES): Rename gnutls module to tls.
2015-07-03 19:41:22 +00:00
|
|
|
#:use-module (gnu packages tls)
|
gnu: gnunet: Update to 0.11.8.
* gnu/packages/gnunet.scm: Update to 0.11.8.
[inputs]: Add libidn2, miniupnpc, zbar. Remove glib, gmp,
gst-plugins-base, libidn, nss, openssl, perl, python-2.
[native-inputs]: Add python, xxd, which.
[arguments]: Remove configure-flags. Add phase to remove network
dependent tests. Re-arrange location of new 'check phase.
2019-11-21 17:53:52 +00:00
|
|
|
#:use-module (gnu packages upnp)
|
2013-11-23 17:16:03 +00:00
|
|
|
#:use-module (gnu packages video)
|
gnu: gnunet: Update to 0.11.8.
* gnu/packages/gnunet.scm: Update to 0.11.8.
[inputs]: Add libidn2, miniupnpc, zbar. Remove glib, gmp,
gst-plugins-base, libidn, nss, openssl, perl, python-2.
[native-inputs]: Add python, xxd, which.
[arguments]: Remove configure-flags. Add phase to remove network
dependent tests. Re-arrange location of new 'check phase.
2019-11-21 17:53:52 +00:00
|
|
|
#:use-module (gnu packages vim)
|
2016-09-16 13:28:01 +00:00
|
|
|
#:use-module (gnu packages web)
|
2014-01-23 18:05:09 +00:00
|
|
|
#:use-module (gnu packages xiph)
|
2016-08-03 13:42:27 +00:00
|
|
|
#:use-module (gnu packages backup)
|
Use #:prefix instead of #:renamer with 'symbol-prefix-proc'.
* gnu/packages/abiword.scm, gnu/packages/admin.scm, gnu/packages/aidc.scm,
gnu/packages/backup.scm, gnu/packages/bittorrent.scm,
gnu/packages/boost.scm, gnu/packages/compression.scm,
gnu/packages/cryptsetup.scm, gnu/packages/curl.scm,
gnu/packages/cyrus-sasl.scm, gnu/packages/dc.scm, gnu/packages/emacs.scm,
gnu/packages/fonts.scm, gnu/packages/fontutils.scm, gnu/packages/geeqie.scm,
gnu/packages/ghostscript.scm, gnu/packages/gimp.scm,
gnu/packages/gkrellm.scm, gnu/packages/gl.scm, gnu/packages/glib.scm,
gnu/packages/gnome.scm, gnu/packages/gnunet.scm, gnu/packages/gnupg.scm,
gnu/packages/gnutls.scm, gnu/packages/gnuzilla.scm, gnu/packages/gsasl.scm,
gnu/packages/gtk.scm, gnu/packages/gv.scm, gnu/packages/image.scm,
gnu/packages/indent.scm, gnu/packages/inkscape.scm,
gnu/packages/lesstif.scm, gnu/packages/links.scm, gnu/packages/lisp.scm,
gnu/packages/lsh.scm, gnu/packages/lsof.scm, gnu/packages/maths.scm,
gnu/packages/mp3.scm, gnu/packages/openssl.scm, gnu/packages/ots.scm,
gnu/packages/pciutils.scm, gnu/packages/pcre.scm, gnu/packages/pdf.scm,
gnu/packages/pulseaudio.scm, gnu/packages/python.scm, gnu/packages/slim.scm,
gnu/packages/ssh.scm, gnu/packages/texlive.scm, gnu/packages/vim.scm,
gnu/packages/vpn.scm, gnu/packages/web.scm, gnu/packages/wv.scm,
gnu/packages/xiph.scm, gnu/packages/xml.scm, gnu/packages/xorg.scm,
gnu/packages/yasm.scm, gnu/packages/zip.scm,
guix/build/cmake-build-system.scm, guix/build/perl-build-system.scm,
guix/build/python-build-system.scm, guix/download.scm: Replaces uses of
#:renamer and 'symbol-prefix-proc' with #:prefix.
2014-09-23 20:44:22 +00:00
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
2013-08-24 08:41:07 +00:00
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
2015-11-06 15:07:07 +00:00
|
|
|
#:use-module (guix git-download)
|
2013-08-24 08:41:07 +00:00
|
|
|
#:use-module (guix build-system gnu))
|
|
|
|
|
|
|
|
(define-public libextractor
|
|
|
|
(package
|
|
|
|
(name "libextractor")
|
2020-07-27 02:07:50 +00:00
|
|
|
(version "1.10")
|
2013-08-24 08:41:07 +00:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://gnu/libextractor/libextractor-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2020-07-27 02:07:50 +00:00
|
|
|
"0mr38g7kfn3p050hd3hckbcz2yd3za6dwl1c26x2kjf7vnsi3vcy"))))
|
2013-08-24 08:41:07 +00:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
;; WARNING: Checks require /dev/shm to be in the build chroot, especially
|
|
|
|
;; not to be a symbolic link to /run/shm.
|
|
|
|
;; FIXME:
|
|
|
|
;; The following dependencies are all optional, but should be
|
|
|
|
;; available for maximum coverage:
|
2017-02-09 13:37:03 +00:00
|
|
|
;; * librpm (rpm) ; investigate failure
|
2020-07-27 02:07:50 +00:00
|
|
|
;; * libtidy-html (tidy-html) ; investigate failure
|
2013-08-24 08:41:07 +00:00
|
|
|
(inputs
|
2013-11-23 17:28:00 +00:00
|
|
|
`(("exiv2" ,exiv2)
|
2017-02-09 13:37:03 +00:00
|
|
|
("bzip2" ,bzip2)
|
2013-08-24 08:41:07 +00:00
|
|
|
("flac" ,flac)
|
2020-02-10 21:21:16 +00:00
|
|
|
("ffmpeg" ,ffmpeg)
|
2015-01-28 13:23:14 +00:00
|
|
|
("file" ,file) ;libmagic, for the MIME plug-in
|
2013-08-24 08:41:07 +00:00
|
|
|
("glib" ,glib)
|
2020-07-27 02:07:50 +00:00
|
|
|
("giflib" ,giflib)
|
2013-11-23 17:16:03 +00:00
|
|
|
("gstreamer" ,gstreamer)
|
|
|
|
("gst-plugins-base" ,gst-plugins-base)
|
2016-08-03 13:42:27 +00:00
|
|
|
("gtk+" ,gtk+)
|
|
|
|
("libarchive" ,libarchive)
|
|
|
|
("libgsf" ,libgsf)
|
gnu: Replace uses of 'libjpeg' with 'libjpeg-turbo'.
* gnu/packages/abiword.scm (abiword)[inputs]: Change from LIBJPEG to
LIBJPEG-TURBO.
* gnu/packages/admin.scm (testdisk)[inputs]: Likewise.
* gnu/packages/algebra.scm (giac)[inputs]: Likewise.
* gnu/packages/animation.scm (synfig)[inputs]: Likewise.
* gnu/packages/astronomy.scm (gnuastro, celestia)[inputs]: Likewise.
* gnu/packages/cdrom.scm (dvdstyler)[inputs]: Likewise.
* gnu/packages/cran.scm (r-jpeg, r-tiff, r-readbitmap)[inputs]: Likewise.
* gnu/packages/cups.scm (cups-filters, hplip)[inputs]: Likewise.
* gnu/packages/display-managers.scm (slim)[inputs]: Likewise.
* gnu/packages/ebook.scm (fbreader)[inputs]: Likewise.
* gnu/packages/emacs.scm (emacs)[inputs]: Likewise.
* gnu/packages/enlightenment.scm (efl)[propagated-inputs]: Likewise.
* gnu/packages/fltk.scm (fltk, ntk)[inputs]: Likewise.
* gnu/packages/fontutils.scm (fontforge)[inputs]: Likewise.
* gnu/packages/freedesktop.scm (weston)[inputs]: Likewise.
* gnu/packages/game-development.scm (sfml, allegro, aseprite, python-pygame,
eureka, ioquake3)[inputs]: Likewise.
* gnu/packages/games.scm (adanaxisgpl, freedroidrpg, irrlicht, minetest,
fizmo, supertuxkart, gzdoom, xmoto, xonotic)[inputs]: Likewise.
* gnu/packages/gd.scm (gd, perl-gd)[inputs]: Likewise.
* gnu/packages/ghostscript.scm (lcms)[inputs]: Likewise.
(ghostscript)[inputs, native-inputs]: Likewise.
* gnu/packages/gimp.scm (gegl, gimp)[inputs]: Likewise.
* gnu/packages/gnome.scm (libgnomeui, eog, tracker-miners, gthumb)[inputs]: Likewise.
* gnu/packages/gnunet.scm (libextractor)[inputs]: Likewise.
* gnu/packages/gnustep.scm (windowmaker)[inputs]: Likewise.
* gnu/packages/graphics.scm (blender, blender-2.79, openimageio,
openscenegraph, openscenegraph-3.4, povray, fgallery)[inputs]: Likewise.
* gnu/packages/graphviz.scm (graphviz)[inputs]: Likewise.
* gnu/packages/gstreamer.scm (gst-plugins-good)[inputs]: Likewise.
* gnu/packages/gtk.scm (gdk-pixbuf)[inputs]: Likewise.
* gnu/packages/image-processing.scm (dcmtk, mia, vtk, opencv, vips, nip2, vxl,
insight-toolkit)[inputs]: Likewise.
* gnu/packages/image-viewers.scm (gpicview, luminance-hdr)[inputs]: Likewise.
* gnu/packages/image.scm (jpegoptim, libtiff, leptonica, imlib2, freeimage,
vigra, libwebp, libmng, jasper, steghide, jp2a)[inputs]: Likewise.
* gnu/packages/imagemagick.scm (imagemagick, graphicsmagick)[inputs]: Likewise.
* gnu/packages/java.scm (icedtea-6, icedtea-7, openjdk9, openjdk11,
openjdk12)[inputs]: Likewise.
* gnu/packages/kde-frameworks.scm (khtml)[inputs]: Likewise.
* gnu/packages/kodi.scm (kodi)[inputs]: Likewise.
* gnu/packages/machine-learning.scm (dlib, tensorflow)[inputs]: Likewise.
* gnu/packages/mate.scm (atril, eom)[inputs]: Likewise.
* gnu/packages/maths.scm (hdf4, hdf-java, hdf-eos2, netcdf)[inputs]: Likewise.
* gnu/packages/netpbm.scm (netpbm)[inputs]: Likewise.
* gnu/packages/pdf.scm (zathura-pdf-mupdf, podofo, mupdf, fbida)[inputs]: Likewise.
* gnu/packages/photo.scm (libraw, libpano13, enblend-enfuse, darktable, hugin,
rawtherapee)[inputs]: Likewise.
* gnu/packages/prolog.scm (swi-prolog)[native-inputs]: Likewise.
* gnu/packages/python-xyz.scm (python-hdf4, python-pillow)[inputs]: Likewise.
* gnu/packages/qt.scm (qtbase, qtwebkit)[inputs]: Likewise.
* gnu/packages/rdesktop.scm (freerdp)[inputs]: Likewise.
* gnu/packages/scanner.scm (sane-backends, xsane)[inputs]: Likewise.
* gnu/packages/scheme.scm (racket)[inputs]: Likewise.
* gnu/packages/scribus.scm (scribus)[inputs]: Likewise.
* gnu/packages/sdl.scm (sdl-image)[propagated-inputs]: Likewise.
(guile-sdl)[native-inputs]: Likewise.
* gnu/packages/spice.scm (spice-gtk)[inputs]: Likewise.
* gnu/packages/statistics.scm (r-with-tests)[inputs]: Likewise.
* gnu/packages/tcl.scm (perl-tk)[inputs]: Likewise.
* gnu/packages/upnp.scm (readymedia)[inputs]: Likewise.
* gnu/packages/video.scm (mplayer, mpv, v4l-utils, motion)[inputs]: Likewise.
* gnu/packages/web-browsers.scm (dillo, links)[inputs]: Likewise.
* gnu/packages/web.scm (netsurf)[inputs]: Likewise.
* gnu/packages/webkit.scm (webkitgtk)[inputs]: Likewise.
* gnu/packages/wine.scm (wine)[inputs]: Likewise.
* gnu/packages/wv.scm (wv)[inputs]: Likewise.
* gnu/packages/wxwidgets.scm (wxwidgets, wxwidgets-2)[inputs]: Likewise.
* gnu/packages/xdisorg.scm (xscreensaver)[inputs]: Likewise.
* gnu/packages/xfce.scm (tumbler)[inputs]: Likewise.
* gnu/packages/xfig.scm (xfig, transfig)[inputs]: Likewise.
* gnu/packages/xorg.scm (xpra)[inputs]: Likewise.
2020-01-17 18:27:01 +00:00
|
|
|
("libjpeg" ,libjpeg-turbo)
|
2016-08-03 13:42:27 +00:00
|
|
|
("libltdl" ,libltdl)
|
|
|
|
("libmpeg2" ,libmpeg2)
|
2017-02-09 13:37:03 +00:00
|
|
|
("libmp4v2" ,libmp4v2)
|
|
|
|
("libsmf" ,libsmf)
|
2013-08-24 08:41:07 +00:00
|
|
|
("libogg" ,libogg)
|
|
|
|
("libtiff" ,libtiff)
|
|
|
|
("libvorbis" ,libvorbis)
|
|
|
|
("zlib" ,zlib)))
|
gnu: Move numerous "inputs" which should be "native-inputs".
* gnu/packages/avahi.scm, gnu/packages/cdrom.scm, gnu/packages/cryptsetup.scm,
gnu/packages/curl.scm, gnu/packages/emacs.scm, gnu/packages/fontutils.scm,
gnu/packages/gdb.scm, gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/glib.scm, gnu/packages/gnome.scm, gnu/packages/gnunet.scm,
gnu/packages/gnupg.scm, gnu/packages/gnuzilla.scm, gnu/packages/graphviz.scm,
gnu/packages/groff.scm, gnu/packages/gstreamer.scm, gnu/packages/gtk.scm,
gnu/packages/gv.scm, gnu/packages/imagemagick.scm, gnu/packages/irssi.scm,
gnu/packages/kde.scm, gnu/packages/libcanberra.scm, gnu/packages/libtiff.scm,
gnu/packages/linux.scm, gnu/packages/lvm.scm, gnu/packages/mp3.scm,
gnu/packages/netpbm.scm, gnu/packages/parted.scm, gnu/packages/pdf.scm,
gnu/packages/pulseaudio.scm, gnu/packages/qemu.scm, gnu/packages/qt.scm,
gnu/packages/ratpoison.scm, gnu/packages/rdf.scm, gnu/packages/slim.scm,
gnu/packages/texlive.scm, gnu/packages/version-control.scm,
gnu/packages/video.scm, gnu/packages/vpn.scm, gnu/packages/w3m.scm,
gnu/packages/xml.scm, gnu/packages/xnee.scm, gnu/packages/xorg.scm,
gnu/packages/zip.scm: Move some build-time dependencies from `inputs' to
`native-inputs'.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2013-12-15 11:01:56 +00:00
|
|
|
(native-inputs
|
2016-08-03 13:42:27 +00:00
|
|
|
`(("pkg-config" ,pkg-config)))
|
2017-02-09 13:37:04 +00:00
|
|
|
(outputs '("out"
|
|
|
|
"static")) ; 396 KiB .a files
|
2016-08-03 13:42:27 +00:00
|
|
|
(arguments
|
|
|
|
`(#:configure-flags
|
|
|
|
(list (string-append "--with-ltdl="
|
2020-07-27 02:07:50 +00:00
|
|
|
(assoc-ref %build-inputs "libltdl")))
|
2017-02-09 13:37:04 +00:00
|
|
|
#:parallel-tests? #f
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
2020-07-27 02:07:50 +00:00
|
|
|
(add-after 'configure 'fix-exiv2-tests
|
|
|
|
;; exiv2>=0.27.3 rounds geolocation
|
|
|
|
;; https://github.com/Exiv2/exiv2/pull/1107/commits/db1be4ae8e1077949fcb6a960e93069d6a41b395#diff-f3f55183ccbe956c720c86e61f708d9f
|
|
|
|
(lambda _
|
|
|
|
(substitute* "src/plugins/test_exiv2.c"
|
|
|
|
(("17.585\\\\\" ") "18\\\"")
|
|
|
|
(("21.713\\\\\" ") "22\\\""))
|
|
|
|
#t))
|
2017-02-09 13:37:04 +00:00
|
|
|
(add-after 'install 'move-static-libraries
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
;; Move static libraries to the "static" output.
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(lib (string-append out "/lib"))
|
|
|
|
(static (assoc-ref outputs "static"))
|
|
|
|
(slib (string-append static "/lib")))
|
|
|
|
(mkdir-p slib)
|
|
|
|
(for-each (lambda (file)
|
|
|
|
(install-file file slib)
|
|
|
|
(delete-file file))
|
|
|
|
(find-files lib "\\.a$"))
|
|
|
|
#t))))))
|
2013-08-24 08:41:07 +00:00
|
|
|
(synopsis "Library to extract meta-data from media files")
|
|
|
|
(description
|
2013-12-01 21:33:23 +00:00
|
|
|
"GNU libextractor is a library for extracting metadata from files. It
|
Synchronize package descriptions with the Womb.
* gnu/packages/algebra.scm,
gnu/packages/aspell.scm,
gnu/packages/autotools.scm,
gnu/packages/base.scm,
gnu/packages/bash.scm,
gnu/packages/bison.scm,
gnu/packages/cdrom.scm,
gnu/packages/cflow.scm,
gnu/packages/compression.scm,
gnu/packages/cpio.scm,
gnu/packages/cppi.scm,
gnu/packages/ddrescue.scm,
gnu/packages/dejagnu.scm,
gnu/packages/ed.scm,
gnu/packages/emacs.scm,
gnu/packages/fdisk.scm,
gnu/packages/freeipmi.scm,
gnu/packages/gawk.scm,
gnu/packages/gcal.scm,
gnu/packages/gcc.scm,
gnu/packages/gdb.scm,
gnu/packages/gdbm.scm,
gnu/packages/gettext.scm,
gnu/packages/ghostscript.scm,
gnu/packages/global.scm,
gnu/packages/gnunet.scm,
gnu/packages/gnupg.scm,
gnu/packages/gnutls.scm,
gnu/packages/gperf.scm,
gnu/packages/gprolog.scm,
gnu/packages/groff.scm,
gnu/packages/grub.scm,
gnu/packages/gsasl.scm,
gnu/packages/guile.scm,
gnu/packages/gv.scm,
gnu/packages/help2man.scm,
gnu/packages/idutils.scm,
gnu/packages/indent.scm,
gnu/packages/less.scm,
gnu/packages/libidn.scm,
gnu/packages/libsigsegv.scm,
gnu/packages/libunistring.scm,
gnu/packages/lightning.scm,
gnu/packages/linux.scm,
gnu/packages/lsh.scm,
gnu/packages/m4.scm,
gnu/packages/mail.scm,
gnu/packages/maths.scm,
gnu/packages/multiprecision.scm,
gnu/packages/nano.scm,
gnu/packages/ncurses.scm,
gnu/packages/nettle.scm,
gnu/packages/ocrad.scm,
gnu/packages/oggvorbis.scm,
gnu/packages/parted.scm,
gnu/packages/plotutils.scm,
gnu/packages/pth.scm,
gnu/packages/readline.scm,
gnu/packages/recutils.scm,
gnu/packages/rush.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/shishi.scm,
gnu/packages/smalltalk.scm,
gnu/packages/system.scm,
gnu/packages/texinfo.scm,
gnu/packages/time.scm,
gnu/packages/unrtf.scm,
gnu/packages/version-control.scm,
gnu/packages/wdiff.scm,
gnu/packages/wget.scm,
gnu/packages/which.scm,
gnu/packages/xnee.scm,
gnu/packages/zile.scm: Change value of the 'description' field to that
of the Womb.
2013-10-09 14:14:23 +00:00
|
|
|
supports a very large number of file formats, including audio files, document
|
|
|
|
files, and archive files. Each file format is implemented as a plugin, so
|
2013-12-01 21:33:23 +00:00
|
|
|
new formats can be added easily. The package also contains a command-line
|
Synchronize package descriptions with the Womb.
* gnu/packages/algebra.scm,
gnu/packages/aspell.scm,
gnu/packages/autotools.scm,
gnu/packages/base.scm,
gnu/packages/bash.scm,
gnu/packages/bison.scm,
gnu/packages/cdrom.scm,
gnu/packages/cflow.scm,
gnu/packages/compression.scm,
gnu/packages/cpio.scm,
gnu/packages/cppi.scm,
gnu/packages/ddrescue.scm,
gnu/packages/dejagnu.scm,
gnu/packages/ed.scm,
gnu/packages/emacs.scm,
gnu/packages/fdisk.scm,
gnu/packages/freeipmi.scm,
gnu/packages/gawk.scm,
gnu/packages/gcal.scm,
gnu/packages/gcc.scm,
gnu/packages/gdb.scm,
gnu/packages/gdbm.scm,
gnu/packages/gettext.scm,
gnu/packages/ghostscript.scm,
gnu/packages/global.scm,
gnu/packages/gnunet.scm,
gnu/packages/gnupg.scm,
gnu/packages/gnutls.scm,
gnu/packages/gperf.scm,
gnu/packages/gprolog.scm,
gnu/packages/groff.scm,
gnu/packages/grub.scm,
gnu/packages/gsasl.scm,
gnu/packages/guile.scm,
gnu/packages/gv.scm,
gnu/packages/help2man.scm,
gnu/packages/idutils.scm,
gnu/packages/indent.scm,
gnu/packages/less.scm,
gnu/packages/libidn.scm,
gnu/packages/libsigsegv.scm,
gnu/packages/libunistring.scm,
gnu/packages/lightning.scm,
gnu/packages/linux.scm,
gnu/packages/lsh.scm,
gnu/packages/m4.scm,
gnu/packages/mail.scm,
gnu/packages/maths.scm,
gnu/packages/multiprecision.scm,
gnu/packages/nano.scm,
gnu/packages/ncurses.scm,
gnu/packages/nettle.scm,
gnu/packages/ocrad.scm,
gnu/packages/oggvorbis.scm,
gnu/packages/parted.scm,
gnu/packages/plotutils.scm,
gnu/packages/pth.scm,
gnu/packages/readline.scm,
gnu/packages/recutils.scm,
gnu/packages/rush.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/shishi.scm,
gnu/packages/smalltalk.scm,
gnu/packages/system.scm,
gnu/packages/texinfo.scm,
gnu/packages/time.scm,
gnu/packages/unrtf.scm,
gnu/packages/version-control.scm,
gnu/packages/wdiff.scm,
gnu/packages/wget.scm,
gnu/packages/which.scm,
gnu/packages/xnee.scm,
gnu/packages/zile.scm: Change value of the 'description' field to that
of the Womb.
2013-10-09 14:14:23 +00:00
|
|
|
tool to extract metadata from a file and print the results.")
|
2013-08-24 08:41:07 +00:00
|
|
|
(license license:gpl3+)
|
2017-03-29 22:48:16 +00:00
|
|
|
(home-page "https://www.gnu.org/software/libextractor/")))
|
2013-08-24 09:40:57 +00:00
|
|
|
|
|
|
|
(define-public libmicrohttpd
|
|
|
|
(package
|
|
|
|
(name "libmicrohttpd")
|
2020-08-16 02:08:53 +00:00
|
|
|
(version "0.9.71")
|
2013-08-24 09:40:57 +00:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://gnu/libmicrohttpd/libmicrohttpd-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2020-08-16 02:08:53 +00:00
|
|
|
"10mii4mifmfs3v7kgciqml7f0fj7ljp0sngrx64pnwmgbzl4bx78"))))
|
2013-08-24 09:40:57 +00:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("curl" ,curl)
|
2017-08-21 09:45:54 +00:00
|
|
|
("gnutls" ,gnutls/dane)
|
2013-08-24 09:40:57 +00:00
|
|
|
("libgcrypt" ,libgcrypt)
|
|
|
|
("openssl" ,openssl)
|
|
|
|
("zlib" ,zlib)))
|
|
|
|
(synopsis "C library implementing an HTTP 1.1 server")
|
|
|
|
(description
|
2013-10-30 22:07:50 +00:00
|
|
|
"GNU libmicrohttpd is a small, embeddable HTTP server implemented as a
|
|
|
|
C library. It makes it easy to run an HTTP server as part of another
|
Synchronize package descriptions with the Womb.
* gnu/packages/algebra.scm,
gnu/packages/aspell.scm,
gnu/packages/autotools.scm,
gnu/packages/base.scm,
gnu/packages/bash.scm,
gnu/packages/bison.scm,
gnu/packages/cdrom.scm,
gnu/packages/cflow.scm,
gnu/packages/compression.scm,
gnu/packages/cpio.scm,
gnu/packages/cppi.scm,
gnu/packages/ddrescue.scm,
gnu/packages/dejagnu.scm,
gnu/packages/ed.scm,
gnu/packages/emacs.scm,
gnu/packages/fdisk.scm,
gnu/packages/freeipmi.scm,
gnu/packages/gawk.scm,
gnu/packages/gcal.scm,
gnu/packages/gcc.scm,
gnu/packages/gdb.scm,
gnu/packages/gdbm.scm,
gnu/packages/gettext.scm,
gnu/packages/ghostscript.scm,
gnu/packages/global.scm,
gnu/packages/gnunet.scm,
gnu/packages/gnupg.scm,
gnu/packages/gnutls.scm,
gnu/packages/gperf.scm,
gnu/packages/gprolog.scm,
gnu/packages/groff.scm,
gnu/packages/grub.scm,
gnu/packages/gsasl.scm,
gnu/packages/guile.scm,
gnu/packages/gv.scm,
gnu/packages/help2man.scm,
gnu/packages/idutils.scm,
gnu/packages/indent.scm,
gnu/packages/less.scm,
gnu/packages/libidn.scm,
gnu/packages/libsigsegv.scm,
gnu/packages/libunistring.scm,
gnu/packages/lightning.scm,
gnu/packages/linux.scm,
gnu/packages/lsh.scm,
gnu/packages/m4.scm,
gnu/packages/mail.scm,
gnu/packages/maths.scm,
gnu/packages/multiprecision.scm,
gnu/packages/nano.scm,
gnu/packages/ncurses.scm,
gnu/packages/nettle.scm,
gnu/packages/ocrad.scm,
gnu/packages/oggvorbis.scm,
gnu/packages/parted.scm,
gnu/packages/plotutils.scm,
gnu/packages/pth.scm,
gnu/packages/readline.scm,
gnu/packages/recutils.scm,
gnu/packages/rush.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/shishi.scm,
gnu/packages/smalltalk.scm,
gnu/packages/system.scm,
gnu/packages/texinfo.scm,
gnu/packages/time.scm,
gnu/packages/unrtf.scm,
gnu/packages/version-control.scm,
gnu/packages/wdiff.scm,
gnu/packages/wget.scm,
gnu/packages/which.scm,
gnu/packages/xnee.scm,
gnu/packages/zile.scm: Change value of the 'description' field to that
of the Womb.
2013-10-09 14:14:23 +00:00
|
|
|
application. The library is fully HTTP 1.1 compliant. It can listen on
|
2013-10-30 22:07:50 +00:00
|
|
|
multiple ports, supports four different threading models, and supports
|
2017-11-28 07:35:27 +00:00
|
|
|
IPv6. It also features security features such as basic and digest
|
|
|
|
authentication and support for SSL3 and TLS.")
|
2013-08-24 09:40:57 +00:00
|
|
|
(license license:lgpl2.1+)
|
2016-11-15 13:25:15 +00:00
|
|
|
(home-page "https://www.gnu.org/software/libmicrohttpd/")))
|
2014-01-29 12:59:11 +00:00
|
|
|
|
|
|
|
(define-public gnurl
|
|
|
|
(package
|
|
|
|
(name "gnurl")
|
2020-05-19 22:06:05 +00:00
|
|
|
(version "7.70.0")
|
2014-01-29 12:59:11 +00:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2020-04-07 19:41:58 +00:00
|
|
|
(uri (string-append "mirror://gnu/gnunet/gnurl-" version ".tar.gz"))
|
2014-01-29 12:59:11 +00:00
|
|
|
(sha256
|
2016-07-04 00:24:58 +00:00
|
|
|
(base32
|
2020-05-19 22:06:05 +00:00
|
|
|
"0px9la8v4bj1dzxb95fx3yxk0rcjqjrxpj733ga27cza45wwzkqa"))))
|
2014-01-29 12:59:11 +00:00
|
|
|
(build-system gnu-build-system)
|
2016-12-23 11:29:33 +00:00
|
|
|
(outputs '("out"
|
2020-01-22 08:06:56 +00:00
|
|
|
"doc")) ; 1.8 MiB of man3 pages
|
2017-08-21 09:38:55 +00:00
|
|
|
(inputs `(("gnutls" ,gnutls/dane)
|
2020-01-22 08:06:56 +00:00
|
|
|
("libidn2" ,libidn2)
|
2014-01-29 12:59:11 +00:00
|
|
|
("zlib" ,zlib)))
|
|
|
|
(native-inputs
|
2017-09-21 14:59:43 +00:00
|
|
|
`(("libtool" ,libtool)
|
2014-02-12 15:15:32 +00:00
|
|
|
("perl" ,perl)
|
|
|
|
("pkg-config" ,pkg-config)
|
2020-01-22 08:06:56 +00:00
|
|
|
("python" ,python)))
|
2014-01-29 12:59:11 +00:00
|
|
|
(arguments
|
2020-01-22 08:06:56 +00:00
|
|
|
`(#:configure-flags
|
|
|
|
;; All of these produce errors during configure.
|
|
|
|
(list "--disable-ftp"
|
|
|
|
"--disable-file"
|
|
|
|
"--disable-ldap"
|
|
|
|
"--disable-rtsp"
|
|
|
|
"--disable-dict"
|
|
|
|
"--disable-telnet"
|
|
|
|
"--disable-tftp"
|
|
|
|
"--disable-pop3"
|
|
|
|
"--disable-imap"
|
|
|
|
"--disable-smb"
|
|
|
|
"--disable-smtp"
|
|
|
|
"--disable-gopher"
|
|
|
|
"--without-ssl"
|
|
|
|
"--without-libpsl"
|
|
|
|
"--without-librtmp"
|
|
|
|
"--disable-ntlm-wb")
|
2016-09-10 12:19:03 +00:00
|
|
|
#:phases
|
2016-09-11 06:06:02 +00:00
|
|
|
(modify-phases %standard-phases
|
2016-12-23 11:29:33 +00:00
|
|
|
(add-after 'install 'move-man3-pages
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
;; Move section 3 man pages to "doc".
|
|
|
|
(let ((out (assoc-ref outputs "out"))
|
|
|
|
(doc (assoc-ref outputs "doc")))
|
|
|
|
(mkdir-p (string-append doc "/share/man"))
|
|
|
|
(rename-file (string-append out "/share/man/man3")
|
|
|
|
(string-append doc "/share/man/man3"))
|
|
|
|
#t)))
|
2020-01-22 08:06:56 +00:00
|
|
|
;; We have to patch runtests.pl in tests/ directory
|
2016-12-23 11:29:32 +00:00
|
|
|
(replace 'check
|
2016-12-23 11:29:31 +00:00
|
|
|
(lambda _
|
2016-09-11 06:06:02 +00:00
|
|
|
(substitute* "tests/runtests.pl"
|
|
|
|
(("/bin/sh") (which "sh")))
|
2016-12-23 11:29:32 +00:00
|
|
|
|
|
|
|
;; Make test output more verbose.
|
2018-01-23 11:14:55 +00:00
|
|
|
(invoke "make" "-C" "tests" "test"))))))
|
2014-01-29 12:59:11 +00:00
|
|
|
(synopsis "Microfork of cURL with support for the HTTP/HTTPS/GnuTLS subset of cURL")
|
|
|
|
(description
|
|
|
|
"Gnurl is a microfork of cURL, a command line tool for transferring data
|
gnu: Some cleanup based on lint checkers.
* gnu/packages/admin.scm, gnu/packages/aidc.scm, gnu/packages/algebra.scm,
gnu/packages/apr.scm, gnu/packages/avahi.scm, gnu/packages/backup.scm,
gnu/packages/base.scm, gnu/packages/calcurse.scm, gnu/packages/cdrom.scm,
gnu/packages/check.scm, gnu/packages/compression.scm, gnu/packages/cook.scm,
gnu/packages/crypto.scm, gnu/packages/cryptsetup.scm, gnu/packages/curl.scm,
gnu/packages/cyrus-sasl.scm, gnu/packages/databases.scm,
gnu/packages/doxygen.scm, gnu/packages/dwm.scm, gnu/packages/elf.scm,
gnu/packages/emacs.scm, gnu/packages/feh.scm, gnu/packages/file.scm,
gnu/packages/fish.scm, gnu/packages/flex.scm, gnu/packages/fltk.scm,
gnu/packages/fontutils.scm, gnu/packages/games.scm, gnu/packages/gcal.scm,
gnu/packages/gcc.scm, gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/gimp.scm, gnu/packages/gl.scm, gnu/packages/glib.scm,
gnu/packages/gnome.scm, gnu/packages/gnunet.scm, gnu/packages/gnupg.scm,
gnu/packages/gperf.scm, gnu/packages/grub.scm, gnu/packages/gsasl.scm,
gnu/packages/gtk.scm, gnu/packages/guile-wm.scm, gnu/packages/guile.scm,
gnu/packages/hurd.scm, gnu/packages/icu4c.scm, gnu/packages/image.scm,
gnu/packages/imagemagick.scm, gnu/packages/irssi.scm, gnu/packages/kde.scm,
gnu/packages/libdaemon.scm, gnu/packages/libevent.scm,
gnu/packages/libidn.scm, gnu/packages/libusb.scm, gnu/packages/linux.scm,
gnu/packages/lout.scm, gnu/packages/lsh.scm, gnu/packages/lsof.scm,
gnu/packages/lua.scm, gnu/packages/maths.scm, gnu/packages/mcrypt.scm,
gnu/packages/mp3.scm, gnu/packages/netpbm.scm, gnu/packages/noweb.scm,
gnu/packages/ocaml.scm, gnu/packages/openssl.scm, gnu/packages/pcre.scm,
gnu/packages/pdf.scm, gnu/packages/pkg-config.scm,
gnu/packages/pretty-print.scm, gnu/packages/python.scm, gnu/packages/qt.scm,
gnu/packages/rsync.scm, gnu/packages/scheme.scm, gnu/packages/scrot.scm,
gnu/packages/sdl.scm, gnu/packages/skribilo.scm, gnu/packages/ssh.scm,
gnu/packages/stalonetray.scm, gnu/packages/tcl.scm, gnu/packages/tcsh.scm,
gnu/packages/telephony.scm, gnu/packages/texlive.scm, gnu/packages/tor.scm,
gnu/packages/valgrind.scm, gnu/packages/version-control.scm,
gnu/packages/vim.scm, gnu/packages/vpn.scm, gnu/packages/w3m.scm,
gnu/packages/web.scm, gnu/packages/wordnet.scm, gnu/packages/xiph.scm,
gnu/packages/xml.scm, gnu/packages/xorg.scm, gnu/packages/zile.scm,
gnu/packages/zip.scm, gnu/packages/zsh.scm [synopsis, description]: Adjust
according to lint checkers.
* gnu/packages/fltk.scm (fltk)[source]: Wrap long line in uri.
* /gnu/packages/xiph.scm (libogg, libtheora, vorbis-tools)[source]: Same.
2014-10-24 04:46:59 +00:00
|
|
|
with URL syntax. While cURL supports many crypto backends, libgnurl only
|
2016-08-05 14:44:38 +00:00
|
|
|
supports HTTP, HTTPS and GnuTLS.")
|
gnu: Update packages to use 'non-copyleft' instead of 'bsd-style'.
* gnu/packages/avr.scm, gnu/packages/compression.scm,
gnu/packages/curl.scm, gnu/packages/cyrus-sasl.scm,
gnu/packages/databases.scm, gnu/packages/firmware.scm,
gnu/packages/flex.scm, gnu/packages/fontutils.scm,
gnu/packages/gd.scm, gnu/packages/ghostscript.scm,
gnu/packages/gnunet.scm, gnu/packages/graphics.scm,
gnu/packages/hugs.scm, gnu/packages/image.scm,
gnu/packages/linux.scm, gnu/packages/mail.scm,
gnu/packages/maths.scm, gnu/packages/mit-krb5.scm,
gnu/packages/python.scm, gnu/packages/rdf.scm,
gnu/packages/ssh.scm, gnu/packages/tcl.scm,
gnu/packages/xdisorg.scm, gnu/packages/xiph.scm,
gnu/packages/yasm.scm, gnu/packages/zip.scm: Use 'non-copyleft'
instead of 'bsd-style'.
2015-03-14 18:26:34 +00:00
|
|
|
(license (license:non-copyleft "file://COPYING"
|
|
|
|
"See COPYING in the distribution."))
|
2019-01-16 17:48:02 +00:00
|
|
|
(properties '((ftp-server . "ftp.gnu.org")
|
|
|
|
(ftp-directory . "/gnunet")))
|
2020-06-17 10:14:23 +00:00
|
|
|
(home-page "https://gnunet.org/en/gnurl.html")))
|
2014-01-30 23:33:36 +00:00
|
|
|
|
|
|
|
(define-public gnunet
|
|
|
|
(package
|
|
|
|
(name "gnunet")
|
2020-07-12 23:02:29 +00:00
|
|
|
(version "0.13.1")
|
2014-01-30 23:33:36 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://gnu/gnunet/gnunet-" version
|
|
|
|
".tar.gz"))
|
2016-09-16 13:28:01 +00:00
|
|
|
(sha256
|
|
|
|
(base32
|
2020-07-12 23:02:29 +00:00
|
|
|
"15jnca5zxng7r6m3qzq9lr73xxq0v6mvcp0lny3zrlkz5s2nmmq3"))))
|
2014-01-30 23:33:36 +00:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
gnu: gnunet: Update to 0.11.8.
* gnu/packages/gnunet.scm: Update to 0.11.8.
[inputs]: Add libidn2, miniupnpc, zbar. Remove glib, gmp,
gst-plugins-base, libidn, nss, openssl, perl, python-2.
[native-inputs]: Add python, xxd, which.
[arguments]: Remove configure-flags. Add phase to remove network
dependent tests. Re-arrange location of new 'check phase.
2019-11-21 17:53:52 +00:00
|
|
|
`(("bluez" ,bluez)
|
|
|
|
("glpk" ,glpk)
|
2014-02-10 22:44:57 +00:00
|
|
|
("gnurl" ,gnurl)
|
2017-08-21 09:48:32 +00:00
|
|
|
("gnutls" ,gnutls/dane)
|
gnu: gnunet: Update to 0.11.8.
* gnu/packages/gnunet.scm: Update to 0.11.8.
[inputs]: Add libidn2, miniupnpc, zbar. Remove glib, gmp,
gst-plugins-base, libidn, nss, openssl, perl, python-2.
[native-inputs]: Add python, xxd, which.
[arguments]: Remove configure-flags. Add phase to remove network
dependent tests. Re-arrange location of new 'check phase.
2019-11-21 17:53:52 +00:00
|
|
|
("gstreamer" ,gstreamer)
|
|
|
|
("jansson" ,jansson)
|
2014-01-30 23:33:36 +00:00
|
|
|
("libextractor" ,libextractor)
|
gnu: gnunet: Update to 0.11.8.
* gnu/packages/gnunet.scm: Update to 0.11.8.
[inputs]: Add libidn2, miniupnpc, zbar. Remove glib, gmp,
gst-plugins-base, libidn, nss, openssl, perl, python-2.
[native-inputs]: Add python, xxd, which.
[arguments]: Remove configure-flags. Add phase to remove network
dependent tests. Re-arrange location of new 'check phase.
2019-11-21 17:53:52 +00:00
|
|
|
("libidn" ,libidn2)
|
2014-01-30 23:33:36 +00:00
|
|
|
("libgcrypt" ,libgcrypt)
|
2020-03-18 18:41:08 +00:00
|
|
|
("libjpeg" ,libjpeg-turbo)
|
2015-01-07 08:44:10 +00:00
|
|
|
("libltdl" ,libltdl)
|
gnu: gnunet: Update to 0.11.8.
* gnu/packages/gnunet.scm: Update to 0.11.8.
[inputs]: Add libidn2, miniupnpc, zbar. Remove glib, gmp,
gst-plugins-base, libidn, nss, openssl, perl, python-2.
[native-inputs]: Add python, xxd, which.
[arguments]: Remove configure-flags. Add phase to remove network
dependent tests. Re-arrange location of new 'check phase.
2019-11-21 17:53:52 +00:00
|
|
|
("libmicrohttpd" ,libmicrohttpd)
|
|
|
|
("libogg" ,libogg)
|
2020-07-10 13:39:54 +00:00
|
|
|
("libsodium" ,libsodium)
|
gnu: gnunet: Update to 0.11.8.
* gnu/packages/gnunet.scm: Update to 0.11.8.
[inputs]: Add libidn2, miniupnpc, zbar. Remove glib, gmp,
gst-plugins-base, libidn, nss, openssl, perl, python-2.
[native-inputs]: Add python, xxd, which.
[arguments]: Remove configure-flags. Add phase to remove network
dependent tests. Re-arrange location of new 'check phase.
2019-11-21 17:53:52 +00:00
|
|
|
("libunistring" ,libunistring)
|
|
|
|
("miniupnpc" ,miniupnpc)
|
|
|
|
("opus" ,opus)
|
|
|
|
("pulseaudio" ,pulseaudio)
|
|
|
|
("sqlite" ,sqlite)
|
|
|
|
("zbar" ,zbar)
|
|
|
|
("zlib" ,zlib)))
|
2014-01-30 23:33:36 +00:00
|
|
|
(native-inputs
|
2020-07-10 13:39:54 +00:00
|
|
|
`(("curl" ,curl)
|
|
|
|
("pkg-config" ,pkg-config)
|
gnu: gnunet: Update to 0.11.8.
* gnu/packages/gnunet.scm: Update to 0.11.8.
[inputs]: Add libidn2, miniupnpc, zbar. Remove glib, gmp,
gst-plugins-base, libidn, nss, openssl, perl, python-2.
[native-inputs]: Add python, xxd, which.
[arguments]: Remove configure-flags. Add phase to remove network
dependent tests. Re-arrange location of new 'check phase.
2019-11-21 17:53:52 +00:00
|
|
|
("python" ,python)
|
|
|
|
("xxd" ,xxd)
|
|
|
|
("which" ,(@ (gnu packages base) which))))
|
2014-01-30 23:33:36 +00:00
|
|
|
(arguments
|
gnu: gnunet: Update to 0.11.8.
* gnu/packages/gnunet.scm: Update to 0.11.8.
[inputs]: Add libidn2, miniupnpc, zbar. Remove glib, gmp,
gst-plugins-base, libidn, nss, openssl, perl, python-2.
[native-inputs]: Add python, xxd, which.
[arguments]: Remove configure-flags. Add phase to remove network
dependent tests. Re-arrange location of new 'check phase.
2019-11-21 17:53:52 +00:00
|
|
|
'(#:parallel-tests? #f ; Parallel tests aren't supported.
|
2015-03-06 23:16:04 +00:00
|
|
|
#:phases
|
2016-09-11 06:08:10 +00:00
|
|
|
(modify-phases %standard-phases
|
gnu: gnunet: Update to 0.11.8.
* gnu/packages/gnunet.scm: Update to 0.11.8.
[inputs]: Add libidn2, miniupnpc, zbar. Remove glib, gmp,
gst-plugins-base, libidn, nss, openssl, perl, python-2.
[native-inputs]: Add python, xxd, which.
[arguments]: Remove configure-flags. Add phase to remove network
dependent tests. Re-arrange location of new 'check phase.
2019-11-21 17:53:52 +00:00
|
|
|
(add-after 'configure 'remove-failing-tests
|
2020-02-19 10:18:53 +00:00
|
|
|
;; These tests fail in Guix's building environment.
|
gnu: gnunet: Update to 0.11.8.
* gnu/packages/gnunet.scm: Update to 0.11.8.
[inputs]: Add libidn2, miniupnpc, zbar. Remove glib, gmp,
gst-plugins-base, libidn, nss, openssl, perl, python-2.
[native-inputs]: Add python, xxd, which.
[arguments]: Remove configure-flags. Add phase to remove network
dependent tests. Re-arrange location of new 'check phase.
2019-11-21 17:53:52 +00:00
|
|
|
(lambda _
|
|
|
|
(substitute* "src/transport/Makefile"
|
2020-02-19 10:18:53 +00:00
|
|
|
(("\\$\\(am__EXEEXT_15\\)") "") ; test_transport_api_https
|
|
|
|
(("test_transport_api_manipulation_cfg\\$\\(EXEEXT\\) \\\\\n") "")
|
gnu: gnunet: Update to 0.11.8.
* gnu/packages/gnunet.scm: Update to 0.11.8.
[inputs]: Add libidn2, miniupnpc, zbar. Remove glib, gmp,
gst-plugins-base, libidn, nss, openssl, perl, python-2.
[native-inputs]: Add python, xxd, which.
[arguments]: Remove configure-flags. Add phase to remove network
dependent tests. Re-arrange location of new 'check phase.
2019-11-21 17:53:52 +00:00
|
|
|
(("test_transport_api_udp_nat\\$\\(EXEEXT\\) \\\\\n") "")
|
2020-02-19 10:18:53 +00:00
|
|
|
(("test_transport_blacklisting_multiple_plugins\\$\\(EXEEXT\\) \\\\\n") ""))
|
|
|
|
(substitute* "src/testbed/Makefile"
|
|
|
|
(("test_testbed_api_2peers_1controller\\$\\(EXEEXT\\) \\\\\n") "")
|
|
|
|
(("test_testbed_api_statistics\\$\\(EXEEXT\\) \\\\\n") "")
|
2020-07-10 13:39:54 +00:00
|
|
|
(("test_testbed_api_test\\$\\(EXEEXT\\) \\\\\n") "")
|
|
|
|
(("test_testbed_api_test_timeout\\$\\(EXEEXT\\) \\\\\n") "")
|
2020-02-19 10:18:53 +00:00
|
|
|
(("test_testbed_api_topology\\$\\(EXEEXT\\) \\\\\n") "")
|
|
|
|
(("test_testbed_api_topology_clique\\$\\(EXEEXT\\) \\\\\n") ""))
|
gnu: gnunet: Update to 0.11.8.
* gnu/packages/gnunet.scm: Update to 0.11.8.
[inputs]: Add libidn2, miniupnpc, zbar. Remove glib, gmp,
gst-plugins-base, libidn, nss, openssl, perl, python-2.
[native-inputs]: Add python, xxd, which.
[arguments]: Remove configure-flags. Add phase to remove network
dependent tests. Re-arrange location of new 'check phase.
2019-11-21 17:53:52 +00:00
|
|
|
(substitute* "src/topology/Makefile"
|
|
|
|
(("^check_PROGRAMS.*") "\n")
|
|
|
|
(("test_gnunet_daemon_topology\\$\\(EXEEXT\\)\n") ""))
|
|
|
|
(substitute* "src/namestore/Makefile"
|
|
|
|
(("\\$\\(am__append_2\\)") ""))
|
|
|
|
(substitute* "src/gns/Makefile"
|
|
|
|
(("\\$\\(am__append_4\\)") ""))
|
|
|
|
(substitute* "contrib/Makefile"
|
|
|
|
(("^check_PROGRAMS.*") "\n"))
|
|
|
|
;; 'test' from coreutils doesn't behave as the test expects.
|
|
|
|
(substitute* '("src/gns/gnunet-gns-proxy-setup-ca.in"
|
|
|
|
"src/transport/gnunet-transport-certificate-creation.in")
|
|
|
|
(("gnutls-certtool") "certtool"))
|
|
|
|
#t))
|
2020-02-19 10:18:53 +00:00
|
|
|
(add-before 'check 'set-env-var-for-tests
|
|
|
|
(lambda _
|
|
|
|
(setenv "LANG" "en_US.UTF-8")))
|
gnu: gnunet: Update to 0.11.8.
* gnu/packages/gnunet.scm: Update to 0.11.8.
[inputs]: Add libidn2, miniupnpc, zbar. Remove glib, gmp,
gst-plugins-base, libidn, nss, openssl, perl, python-2.
[native-inputs]: Add python, xxd, which.
[arguments]: Remove configure-flags. Add phase to remove network
dependent tests. Re-arrange location of new 'check phase.
2019-11-21 17:53:52 +00:00
|
|
|
;; Swap 'check and 'install phases and add installed binaries to $PATH.
|
2016-09-11 06:08:10 +00:00
|
|
|
(add-before 'check 'set-path-for-check
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
|
|
|
(setenv "GNUNET_PREFIX" (string-append out "/lib"))
|
|
|
|
(setenv "PATH" (string-append (getenv "PATH") ":" out "/bin")))
|
|
|
|
#t))
|
gnu: gnunet: Update to 0.11.8.
* gnu/packages/gnunet.scm: Update to 0.11.8.
[inputs]: Add libidn2, miniupnpc, zbar. Remove glib, gmp,
gst-plugins-base, libidn, nss, openssl, perl, python-2.
[native-inputs]: Add python, xxd, which.
[arguments]: Remove configure-flags. Add phase to remove network
dependent tests. Re-arrange location of new 'check phase.
2019-11-21 17:53:52 +00:00
|
|
|
(delete 'check)
|
2016-09-11 06:08:10 +00:00
|
|
|
(add-after 'install 'check
|
gnu: gnunet: Update to 0.11.8.
* gnu/packages/gnunet.scm: Update to 0.11.8.
[inputs]: Add libidn2, miniupnpc, zbar. Remove glib, gmp,
gst-plugins-base, libidn, nss, openssl, perl, python-2.
[native-inputs]: Add python, xxd, which.
[arguments]: Remove configure-flags. Add phase to remove network
dependent tests. Re-arrange location of new 'check phase.
2019-11-21 17:53:52 +00:00
|
|
|
(assoc-ref %standard-phases 'check)))))
|
2014-04-06 19:17:42 +00:00
|
|
|
(synopsis "Secure, decentralized, peer-to-peer networking framework")
|
2014-01-30 23:33:36 +00:00
|
|
|
(description
|
2016-07-29 08:13:12 +00:00
|
|
|
"GNUnet is a framework for secure peer-to-peer networking. The
|
|
|
|
high-level goal is to provide a strong foundation of free software for a
|
|
|
|
global, distributed network that provides security and privacy. GNUnet in
|
|
|
|
that sense aims to replace the current internet protocol stack. Along with
|
|
|
|
an application for secure publication of files, it has grown to include all
|
|
|
|
kinds of basic applications for the foundation of a GNU internet.")
|
2019-12-24 00:19:34 +00:00
|
|
|
(license license:agpl3+)
|
2014-01-30 23:33:36 +00:00
|
|
|
(home-page "https://gnunet.org/")))
|
2015-11-06 15:07:07 +00:00
|
|
|
|
|
|
|
(define-public guile-gnunet ;GSoC 2015!
|
2018-12-30 23:00:39 +00:00
|
|
|
(let ((commit "d12167ab3c8d7d6caffd9c606e389ef043760602")
|
|
|
|
(revision "1"))
|
2015-11-06 15:07:07 +00:00
|
|
|
(package
|
|
|
|
(name "guile-gnunet")
|
2018-12-30 23:00:39 +00:00
|
|
|
(version (git-version "0.0" revision commit))
|
2015-11-06 15:07:07 +00:00
|
|
|
(source (origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
2017-07-22 22:50:29 +00:00
|
|
|
(url "https://git.savannah.gnu.org/git/guix/gnunet.git/")
|
2015-11-06 15:07:07 +00:00
|
|
|
(commit commit)))
|
2018-12-30 23:00:39 +00:00
|
|
|
(file-name (git-file-name name version))
|
2015-11-06 15:07:07 +00:00
|
|
|
(sha256
|
|
|
|
(base32
|
2018-12-30 23:00:39 +00:00
|
|
|
"0nqc18jh9j30y4l6yh6j35byfg6qalq7yr3frv9rk10qa041c2sv"))))
|
2015-11-06 15:07:07 +00:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(native-inputs `(("pkg-config" ,pkg-config)
|
2018-03-09 22:11:48 +00:00
|
|
|
("autoconf" ,autoconf-wrapper)
|
2015-11-06 15:07:07 +00:00
|
|
|
("automake" ,automake)))
|
|
|
|
(inputs `(("guile" ,guile-2.0)
|
|
|
|
("gnunet" ,gnunet)))
|
|
|
|
(synopsis "Guile bindings for GNUnet services")
|
|
|
|
(description
|
|
|
|
"This package provides Guile bindings to the client libraries of various
|
|
|
|
GNUnet services, including the @dfn{identity} and @dfn{file sharing}
|
|
|
|
services.")
|
2016-08-27 13:38:36 +00:00
|
|
|
(home-page "https://gnu.org/software/guix")
|
2015-11-06 15:07:07 +00:00
|
|
|
(license license:gpl3+))))
|
2016-01-13 17:36:31 +00:00
|
|
|
|
|
|
|
;; FIXME: "gnunet-setup" segfaults under certain conditions and "gnunet-gtk"
|
|
|
|
;; does not seem to be fully functional. This has been reported upstream:
|
|
|
|
;; http://lists.gnu.org/archive/html/gnunet-developers/2016-02/msg00004.html
|
|
|
|
(define-public gnunet-gtk
|
|
|
|
(package (inherit gnunet)
|
|
|
|
(name "gnunet-gtk")
|
2020-07-29 04:17:34 +00:00
|
|
|
(version "0.13.1")
|
2016-01-13 17:36:31 +00:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://gnu/gnunet/gnunet-gtk-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2020-07-29 04:17:34 +00:00
|
|
|
"1zdzgq16h77w6ybwg3lqjsjr965np6iqvncqvkbj07glqd4wss0j"))))
|
2016-01-13 17:36:31 +00:00
|
|
|
(arguments
|
|
|
|
`(#:configure-flags
|
2016-08-22 23:13:03 +00:00
|
|
|
(list "--with-libunique"
|
2016-07-29 17:45:25 +00:00
|
|
|
"--with-qrencode"
|
|
|
|
(string-append "--with-gnunet="
|
|
|
|
(assoc-ref %build-inputs "gnunet")))))
|
2016-01-13 17:36:31 +00:00
|
|
|
(inputs
|
2019-11-23 19:40:33 +00:00
|
|
|
`(("glade3" ,glade3)
|
|
|
|
("gnunet" ,gnunet)
|
2019-11-23 19:39:08 +00:00
|
|
|
("gnutls" ,gnutls/dane)
|
2016-01-13 17:36:31 +00:00
|
|
|
("gtk+" ,gtk+)
|
|
|
|
("libextractor" ,libextractor)
|
2019-11-23 19:40:33 +00:00
|
|
|
("libgcrypt" ,libgcrypt)
|
|
|
|
("libunique" ,libunique)
|
|
|
|
("qrencode" ,qrencode)))
|
2016-01-13 17:36:31 +00:00
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)
|
|
|
|
("libglade" ,libglade)))
|
2019-11-21 20:04:03 +00:00
|
|
|
(synopsis "Graphical front-end tools for GNUnet")
|
|
|
|
(properties '((ftp-server . "ftp.gnu.org")
|
|
|
|
(ftp-directory . "/gnunet")))))
|