2014-01-13 18:53:26 +01:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2018-03-11 21:46:30 +01:00
|
|
|
;;; Copyright © 2014, 2017, 2018 Ludovic Courtès <ludo@gnu.org>
|
2016-09-01 11:30:52 +02:00
|
|
|
;;; Copyright © 2016 John Darrington <jmd@gnu.org>
|
2018-01-03 21:36:25 +01:00
|
|
|
;;; Copyright © 2017, 2018 Leo Famulari <leo@famulari.name>
|
2018-02-08 18:21:02 +01:00
|
|
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
2014-01-13 18:53:26 +01: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)
|
2017-05-05 03:26:03 +02:00
|
|
|
#:use-module (gnu packages)
|
2018-01-04 00:48:26 +01: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 09:57:43 +01:00
|
|
|
#:use-module (gnu packages kerberos)
|
2016-09-01 11:30:52 +02:00
|
|
|
#:use-module (gnu packages pkg-config)
|
2014-01-13 18:53:26 +01:00
|
|
|
#:use-module (guix build-system gnu))
|
|
|
|
|
|
|
|
(define-public libtirpc
|
|
|
|
(package
|
|
|
|
(name "libtirpc")
|
2018-03-17 19:40:48 +01:00
|
|
|
(version "1.0.3")
|
2014-01-13 18:53:26 +01:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2016-07-21 08:35:30 +02:00
|
|
|
(uri (string-append "mirror://sourceforge/libtirpc/libtirpc/"
|
2014-01-13 18:53:26 +01:00
|
|
|
version "/libtirpc-"
|
|
|
|
version ".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2018-03-17 19:40:48 +01:00
|
|
|
"0ppxl3k3nsz0qdakq844i2kj4fvh9h937lhx26bgmpmxq67sghw6"))))
|
2014-01-13 18:53:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
2016-08-28 18:58:16 +02:00
|
|
|
`(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-after 'unpack 'remote-dangling-symlink
|
|
|
|
(lambda _
|
2016-12-07 15:23:52 +01: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 18:58:16 +02:00
|
|
|
;; Remove the dangling symlinks since it breaks the
|
|
|
|
;; 'patch-source-shebangs' file tree traversal.
|
2018-03-17 19:39:48 +01:00
|
|
|
(delete-file "INSTALL")
|
|
|
|
#t)))))
|
2016-08-27 19:57:22 +02: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-04 01:30:46 +01:00
|
|
|
(home-page "https://sourceforge.net/projects/libtirpc/")
|
2014-01-13 18:53:26 +01: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 11:30:52 +02:00
|
|
|
|
|
|
|
(define-public rpcbind
|
|
|
|
(package
|
|
|
|
(name "rpcbind")
|
2017-05-05 03:04:33 +02:00
|
|
|
(version "0.2.4")
|
2016-09-01 11:30:52 +02:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://sourceforge/" name "/" name "/"
|
|
|
|
version "/"
|
|
|
|
name "-" version ".tar.bz2"))
|
2017-05-05 03:26:03 +02:00
|
|
|
(patches (search-patches "rpcbind-CVE-2017-8779.patch"))
|
2016-09-01 11:30:52 +02:00
|
|
|
(sha256
|
|
|
|
(base32
|
2017-05-05 03:04:33 +02:00
|
|
|
"0rjc867mdacag4yqvs827wqhkh27135rp9asj06ixhf71m9rljh7"))))
|
2016-09-01 11:30:52 +02:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:configure-flags
|
2016-09-03 18:00:25 +02:00
|
|
|
`("--with-systemdsystemunitdir=no" "--enable-warmstarts")))
|
2016-09-01 11:30:52 +02:00
|
|
|
(inputs
|
2018-01-04 00:48:43 +01:00
|
|
|
`(("libnsl" ,libnsl)
|
|
|
|
("libtirpc" ,libtirpc)))
|
2016-09-01 11:30:52 +02: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)))
|
|
|
|
|
2018-01-04 00:48:26 +01:00
|
|
|
|
|
|
|
(define-public libnsl
|
|
|
|
(package
|
|
|
|
(name "libnsl")
|
|
|
|
(version "1.2.0")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://github.com/thkukuk/libnsl/archive/v"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1y6kmxmv1difzvdhx7grqzw0j2v2b74mg4kjb803m8jcgkqqx8m5"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(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)))
|