2014-01-13 12:53:26 -05:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2018-03-11 16:46:30 -04:00
|
|
|
;;; Copyright © 2014, 2017, 2018 Ludovic Courtès <ludo@gnu.org>
|
2016-09-01 05:30:52 -04:00
|
|
|
;;; Copyright © 2016 John Darrington <jmd@gnu.org>
|
2018-01-03 15:36:25 -05:00
|
|
|
;;; Copyright © 2017, 2018 Leo Famulari <leo@famulari.name>
|
2018-02-08 12:21:02 -05:00
|
|
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
2019-06-16 02:21:11 -04:00
|
|
|
;;; Copyright © 2019 Marius Bakke <mbakke@fastmail.com>
|
2020-04-12 17:04:49 -04:00
|
|
|
;;; Copyright © 2020 Ricardo Wurmus <rekado@elephly.net>
|
2014-01-13 12:53:26 -05: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 onc-rpc)
|
|
|
|
#:use-module (guix licenses)
|
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
2019-06-15 03:18:51 -04:00
|
|
|
#:use-module (guix git-download)
|
2017-05-04 21:26:03 -04:00
|
|
|
#:use-module (gnu packages)
|
2018-01-03 18:48:26 -05:00
|
|
|
#:use-module (gnu packages autotools)
|
|
|
|
#:use-module (gnu packages gettext)
|
gnu: Move Kerberos implemetations to (gnu packages kerberos).
* gnu/packages/mit-krb5.scm: Remove.
* gnu/packages/shishi.scm: Remove.
* gnu/packages/kerberos.scm: New file, from the concatenation of these
two.
* gnu/local.mk (GNU_SYSTEM_MODULES): Adjust accordingly.
* gnu/packages/admin.scm, gnu/packages/cyrus-sasl.scm,
gnu/packages/gnome.scm, gnu/packages/gnuzilla.scm,
gnu/packages/gsasl.scm, gnu/packages/java.scm,
gnu/packages/networking.scm, gnu/packages/nfs.scm,
gnu/packages/onc-rpc.scm, gnu/packages/ssh.scm,
gnu/packages/web.scm: Adjust accordingly.
2017-01-18 03:57:43 -05:00
|
|
|
#:use-module (gnu packages kerberos)
|
2016-09-01 05:30:52 -04:00
|
|
|
#:use-module (gnu packages pkg-config)
|
2020-04-12 17:04:49 -04:00
|
|
|
#:use-module (guix build-system gnu)
|
|
|
|
#:use-module (guix utils))
|
2014-01-13 12:53:26 -05:00
|
|
|
|
|
|
|
(define-public libtirpc
|
|
|
|
(package
|
|
|
|
(name "libtirpc")
|
2020-02-12 10:54:55 -05:00
|
|
|
(version "1.2.5")
|
2014-01-13 12:53:26 -05:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2016-07-21 02:35:30 -04:00
|
|
|
(uri (string-append "mirror://sourceforge/libtirpc/libtirpc/"
|
2014-01-13 12:53:26 -05:00
|
|
|
version "/libtirpc-"
|
|
|
|
version ".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2020-02-12 10:54:55 -05:00
|
|
|
"1jl6a5kkw2vrp4gb6pmvf72rqimywvwfb9f7iz2xjg4wgq63bdpk"))))
|
2014-01-13 12:53:26 -05:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
2019-07-03 09:39:30 -04:00
|
|
|
`(#:configure-flags '("--disable-static")
|
|
|
|
#:phases
|
2016-08-28 12:58:16 -04:00
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-after 'unpack 'remote-dangling-symlink
|
|
|
|
(lambda _
|
2016-12-07 09:23:52 -05:00
|
|
|
(substitute* '("man/netconfig.5"
|
|
|
|
"man/getnetconfig.3t"
|
|
|
|
"man/getnetpath.3t"
|
|
|
|
"man/rpc.3t"
|
|
|
|
"src/getnetconfig.c"
|
|
|
|
"tirpc/netconfig.h")
|
|
|
|
(("/etc/netconfig") (string-append %output "/etc/netconfig")))
|
|
|
|
|
2016-08-28 12:58:16 -04:00
|
|
|
;; Remove the dangling symlinks since it breaks the
|
|
|
|
;; 'patch-source-shebangs' file tree traversal.
|
2018-03-17 14:39:48 -04:00
|
|
|
(delete-file "INSTALL")
|
|
|
|
#t)))))
|
2016-08-27 13:57:22 -04:00
|
|
|
(inputs `(("mit-krb5" ,mit-krb5)))
|
gnu: Use HTTPS for all sourceforge.net home pages.
* gnu/packages/admin.scm (mingetty, clusterssh)[home-page]: Use HTTPS.
* gnu/packages/audio.scm (libbs2b, soxr)[home-page]: Likewise.
* gnu/packages/bioinformatics.scm (bless)[home-page]: Likewise.
* gnu/packages/display-managers.scm (slim)[home-page]: Likewise.
* gnu/packages/games.scm (extremetuxracer)[home-page]: Likewise.
* gnu/packages/ghostscript.scm (gs-fonts)[home-page]: Likewise.
* gnu/packages/haskell.scm (ghc-regex-base, ghc-regex-posix,
ghc-regex-compat)[home-page]: Likewise.
* gnu/packages/image.scm (imlib2)[home-page]: Likewise.
* gnu/packages/libreoffice.scm (librevenge, libcmis, libodfgen, libmwaw)
[home-page]: Likewise.
* gnu/packages/linux.scm (hdparm, acpid, libavc1394, rng-tools)
[home-page]: Likewise.
* gnu/packages/mail.scm (esmtp)[home-page]: Likewise.
* gnu/packages/mp3.scm (ripperx)[home-page]: Likewise.
* gnu/packages/onc-rpc.scm (libtirpc)[home-page]: Likewise.
* gnu/packages/perl.scm (perl-czplib)[home-page]: Likewise.
* gnu/packages/python.scm (python-pyasn1-modules)[home-page]: Likewise.
* gnu/packages/xdisorg.scm (xosd)[home-page]: Likewise.
2017-01-03 19:30:46 -05:00
|
|
|
(home-page "https://sourceforge.net/projects/libtirpc/")
|
2014-01-13 12:53:26 -05:00
|
|
|
(synopsis "Transport-independent Sun/ONC RPC implementation")
|
|
|
|
(description
|
|
|
|
"This package provides a library that implements the Sun/ONC RPC (remote
|
|
|
|
procedure calls) protocol in a transport-independent manner. It supports both
|
|
|
|
IPv4 and IPv6. ONC RPC is notably used by the network file system (NFS).")
|
|
|
|
(license bsd-3)))
|
2016-09-01 05:30:52 -04:00
|
|
|
|
2020-04-12 17:04:49 -04:00
|
|
|
(define-public libtirpc/hurd
|
|
|
|
(package
|
|
|
|
(inherit libtirpc)
|
|
|
|
(name "libtirpc-hurd")
|
|
|
|
(source (origin (inherit (package-source libtirpc))
|
|
|
|
(patches (search-patches "libtirpc-hurd.patch"
|
|
|
|
"libtirpc-hurd-client.patch"))))
|
|
|
|
(arguments
|
|
|
|
(substitute-keyword-arguments (package-arguments libtirpc)
|
|
|
|
((#:configure-flags flags ''())
|
|
|
|
;; When cross-building the target system's krb5-config should be used.
|
|
|
|
`(list (string-append "ac_cv_prog_KRB5_CONFIG="
|
|
|
|
(assoc-ref %build-inputs "mit-krb5")
|
|
|
|
"/bin/krb5-config")))))))
|
|
|
|
|
2016-09-01 05:30:52 -04:00
|
|
|
(define-public rpcbind
|
|
|
|
(package
|
|
|
|
(name "rpcbind")
|
2017-05-04 21:04:33 -04:00
|
|
|
(version "0.2.4")
|
2016-09-01 05:30:52 -04:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://sourceforge/" name "/" name "/"
|
|
|
|
version "/"
|
|
|
|
name "-" version ".tar.bz2"))
|
2017-05-04 21:26:03 -04:00
|
|
|
(patches (search-patches "rpcbind-CVE-2017-8779.patch"))
|
2016-09-01 05:30:52 -04:00
|
|
|
(sha256
|
|
|
|
(base32
|
2017-05-04 21:04:33 -04:00
|
|
|
"0rjc867mdacag4yqvs827wqhkh27135rp9asj06ixhf71m9rljh7"))))
|
2016-09-01 05:30:52 -04:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:configure-flags
|
2016-09-03 12:00:25 -04:00
|
|
|
`("--with-systemdsystemunitdir=no" "--enable-warmstarts")))
|
2016-09-01 05:30:52 -04:00
|
|
|
(inputs
|
2018-01-03 18:48:43 -05:00
|
|
|
`(("libnsl" ,libnsl)
|
|
|
|
("libtirpc" ,libtirpc)))
|
2016-09-01 05:30:52 -04:00
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
(home-page "http://rpcbind.sourceforge.net/")
|
|
|
|
(synopsis "Server to convert RPC program numbers into universal addresses")
|
|
|
|
(description
|
|
|
|
"@command{Rpcbind} is a server that converts RPC program numbers into
|
|
|
|
universal addresses.")
|
|
|
|
(license bsd-3)))
|
|
|
|
|
2019-06-16 02:21:11 -04:00
|
|
|
(define-public rpcsvc-proto
|
|
|
|
(package
|
|
|
|
(name "rpcsvc-proto")
|
|
|
|
(version "1.4")
|
|
|
|
(home-page "https://github.com/thkukuk/rpcsvc-proto")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append home-page "/releases/download/v" version
|
|
|
|
"/rpcsvc-proto-" version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0i93wbpw5dk2gf5v4a5hq6frh814wzgjydh7saj28wlgbpqdaja1"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(synopsis "RPCSVC protocol definitions")
|
|
|
|
(description
|
|
|
|
"This package provides @code{rpcsvc} @file{protocol.x} files and headers
|
|
|
|
that are not included with the @code{libtirpc} package. Additionally it
|
|
|
|
contains @command{rpcgen}, which is used to produce header files and sources
|
|
|
|
from the protocol files.")
|
|
|
|
(license bsd-3)))
|
2018-01-03 18:48:26 -05:00
|
|
|
|
|
|
|
(define-public libnsl
|
|
|
|
(package
|
|
|
|
(name "libnsl")
|
|
|
|
(version "1.2.0")
|
|
|
|
(source (origin
|
2019-06-15 03:18:51 -04:00
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
gnu: Remove ".git" from "https://github/…/….git".
Until now, 'lookup-origin' and thus 'lookup-origin-revision' in (guix
swh) would sometimes return #f for these because the ".git" URLs are
redirects to the non-".git" URLs. Consequently, 'guix lint -c archival'
would keep saying "scheduled Software Heritage archival"; likewise, the
fallback download code would fail.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/aidc.scm,
gnu/packages/algebra.scm,
gnu/packages/android.scm,
gnu/packages/animation.scm,
gnu/packages/arcan.scm,
gnu/packages/assembly.scm,
gnu/packages/audio.scm,
gnu/packages/authentication.scm,
gnu/packages/avr.scm,
gnu/packages/axoloti.scm,
gnu/packages/backup.scm,
gnu/packages/bash.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioconductor.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/boost.scm,
gnu/packages/build-tools.scm,
gnu/packages/c.scm,
gnu/packages/calendar.scm,
gnu/packages/cdrom.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/chez.scm,
gnu/packages/clojure.scm,
gnu/packages/code.scm,
gnu/packages/compression.scm,
gnu/packages/compton.scm,
gnu/packages/coq.scm,
gnu/packages/cpp.scm,
gnu/packages/cran.scm,
gnu/packages/crypto.scm,
gnu/packages/curl.scm,
gnu/packages/databases.scm,
gnu/packages/datastructures.scm,
gnu/packages/debug.scm,
gnu/packages/disk.scm,
gnu/packages/distributed.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/dns.scm,
gnu/packages/docker.scm,
gnu/packages/education.scm,
gnu/packages/efi.scm,
gnu/packages/elixir.scm,
gnu/packages/emacs-xyz.scm,
gnu/packages/embedded.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/erlang.scm,
gnu/packages/fabric-management.scm,
gnu/packages/file-systems.scm,
gnu/packages/finance.scm,
gnu/packages/firmware.scm,
gnu/packages/flashing-tools.scm,
gnu/packages/fonts.scm,
gnu/packages/fontutils.scm,
gnu/packages/fpga.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/genealogy.scm,
gnu/packages/genimage.scm,
gnu/packages/geo.scm,
gnu/packages/gimp.scm,
gnu/packages/gl.scm,
gnu/packages/gnome-xyz.scm,
gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/golang.scm,
gnu/packages/gpodder.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/groff.scm,
gnu/packages/groovy.scm,
gnu/packages/gtk.scm,
gnu/packages/guile-xyz.scm,
gnu/packages/guile.scm,
gnu/packages/hardware.scm,
gnu/packages/haskell-apps.scm,
gnu/packages/haskell-xyz.scm,
gnu/packages/hexedit.scm,
gnu/packages/i2p.scm,
gnu/packages/ibus.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/ipfs.scm,
gnu/packages/java-graphics.scm,
gnu/packages/java-maths.scm,
gnu/packages/java.scm,
gnu/packages/javascript.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/jupyter.scm,
gnu/packages/kodi.scm,
gnu/packages/language.scm,
gnu/packages/lego.scm,
gnu/packages/less.scm,
gnu/packages/libusb.scm,
gnu/packages/linux.scm,
gnu/packages/lirc.scm,
gnu/packages/lisp-xyz.scm,
gnu/packages/llvm.scm,
gnu/packages/logging.scm,
gnu/packages/lolcode.scm,
gnu/packages/lua.scm,
gnu/packages/lxde.scm,
gnu/packages/lxqt.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/markup.scm,
gnu/packages/maths.scm,
gnu/packages/maven.scm,
gnu/packages/mes.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/node-xyz.scm,
gnu/packages/ocaml.scm,
gnu/packages/ocr.scm,
gnu/packages/onc-rpc.scm,
gnu/packages/opencl.scm,
gnu/packages/opencog.scm,
gnu/packages/pantheon.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/perl6.scm,
gnu/packages/phabricator.scm,
gnu/packages/popt.scm,
gnu/packages/printers.scm,
gnu/packages/prolog.scm,
gnu/packages/protobuf.scm,
gnu/packages/pulseaudio.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/python-xyz.scm,
gnu/packages/qt.scm,
gnu/packages/radio.scm,
gnu/packages/rails.scm,
gnu/packages/rdf.scm,
gnu/packages/rednotebook.scm,
gnu/packages/rpc.scm,
gnu/packages/rsync.scm,
gnu/packages/ruby.scm,
gnu/packages/rust.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/security-token.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/shellutils.scm,
gnu/packages/simh.scm,
gnu/packages/sml.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/stenography.scm,
gnu/packages/sync.scm,
gnu/packages/syncthing.scm,
gnu/packages/synergy.scm,
gnu/packages/telephony.scm,
gnu/packages/terminals.scm,
gnu/packages/tex.scm,
gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tmux.scm,
gnu/packages/tor.scm,
gnu/packages/toys.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/vim.scm,
gnu/packages/virtualization.scm,
gnu/packages/vlang.scm,
gnu/packages/vnc.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wireservice.scm,
gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xml.scm,
gnu/packages/xorg.scm,
tests/lint.scm: Remove trailing ".git" from 'git-reference' URL.
2020-07-12 16:53:28 -04:00
|
|
|
(url "https://github.com/thkukuk/libnsl")
|
2019-06-15 03:18:51 -04:00
|
|
|
(commit (string-append "v" version))))
|
|
|
|
(file-name (git-file-name name version))
|
2018-01-03 18:48:26 -05:00
|
|
|
(sha256
|
|
|
|
(base32
|
2019-06-15 03:18:51 -04:00
|
|
|
"1chzqhcgh0yia9js8mh92cmhyka7rh32ql6b3mgdk26n94dqzs8b"))))
|
2018-01-03 18:48:26 -05:00
|
|
|
(build-system gnu-build-system)
|
2019-07-15 15:18:01 -04:00
|
|
|
(arguments
|
2019-07-15 15:19:35 -04:00
|
|
|
`(#:configure-flags '("--disable-static")
|
|
|
|
#:phases (modify-phases %standard-phases
|
2019-07-15 15:18:01 -04:00
|
|
|
(add-before 'bootstrap 'gettextize
|
|
|
|
(lambda _
|
|
|
|
;; Regenerate the bundled Makefile.in.in to avoid a
|
|
|
|
;; "gettext infrastructure mismatch" because the
|
|
|
|
;; existing version was generated by an older gettext.
|
|
|
|
(invoke "gettextize" "-f"))))))
|
2018-01-03 18:48:26 -05:00
|
|
|
(native-inputs
|
|
|
|
`(("autoconf" ,autoconf)
|
|
|
|
("automake" ,automake)
|
|
|
|
("gettext" ,gettext-minimal)
|
|
|
|
("libtool" ,libtool)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(inputs
|
|
|
|
`(("libtirpc" ,libtirpc)))
|
|
|
|
(synopsis "Public client interface for NIS(YP) and NIS+")
|
|
|
|
(description "Libnsl is the public client interface for the Network
|
|
|
|
Information Service / Yellow Pages (NIS/YP) and NIS+. It includes IPv6 support.
|
|
|
|
This library was part of glibc < 2.26, but is now distributed separately.")
|
|
|
|
(home-page "https://github.com/thkukuk/libnsl")
|
|
|
|
;; The package is distributed under the LGPL 2.1. Some files in
|
|
|
|
;; 'src/nisplus/' are LGPL 2.1+, and some files in 'src/rpcsvc/' are BSD-3.
|
|
|
|
(license lgpl2.1)))
|