;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2013 Ludovic Courtès ;;; Copyright © 2015, 2016, 2017, 2020, 2021, 2022 Efraim Flashner ;;; Copyright © 2019–2022 Tobias Geerinckx-Rice ;;; ;;; 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 . (define-module (gnu packages freeipmi) #:use-module (guix packages) #:use-module (guix utils) #:use-module (guix gexp) #:use-module (guix licenses) #:use-module (guix download) #:use-module (guix build-system gnu) #:use-module (gnu packages autotools) #:use-module (gnu packages gnupg)) (define-public freeipmi (package (name "freeipmi") (version "1.6.14") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/freeipmi/freeipmi-" version ".tar.gz")) (sha256 (base32 "1dgd2izbp6mqk7l0bgw9fkpvl4mjz672p8baz3ac9k5pfrfaqg8s")))) (build-system gnu-build-system) (arguments (append (if (and (%current-target-system) (target-riscv64?)) (list #:phases #~(modify-phases %standard-phases (add-after 'unpack 'update-config-scripts (lambda* (#:key inputs native-inputs #:allow-other-keys) ;; Replace outdated config.guess and config.sub. (for-each (lambda (file) (install-file (search-input-file (or native-inputs inputs) (string-append "/bin/" file)) "config")) '("config.guess" "config.sub")))))) '()) (list #:configure-flags #~'("--disable-static" #$@(if (%current-target-system) ;; We cannot check for these devices ;; when cross compiling. `("ac_cv_file__dev_random=yes" "ac_cv_file__dev_urandom=yes") '()))))) (native-inputs (if (and (%current-target-system) (target-riscv64?)) (list config) '())) (inputs (list libgcrypt)) (home-page "https://www.gnu.org/software/freeipmi/") (synopsis "Platform management, including sensor and power monitoring") (description "GNU FreeIPMI is a collection of in-band and out-of-band IPMI software in accordance with the IPMI v1.5/2.0 specification. These programs provide a set of interfaces for platform management. Common functionality includes sensor monitoring, system event monitoring, power control and serial-over-LAN.") (license gpl3+))) Amélia Coutard-Sander 2024-06-22gnu: gnunet: Update to 0.21.2....* gnu/packages/gnunet.scm (gnunet): Update to 0.21.2. Change-Id: Ie7c3a5092e1ab67ba911702607161f854b86efa4 Signed-off-by: Christopher Baines <mail@cbaines.net> Andy Tai 2024-04-18gnu: gnurl: Properly deprecate package....* gnu/packages/gnunet.scm (gnurl): Move to... * gnu/packages/curl.scm (gnurl): ... here. Deprecate via 'deprecated-package'. Reported-by: Ludovic Courtès <ludo@gnu.org> Change-Id: I779ff9a7923d6532fbac2c2bfd65d6aa56524f1f Maxim Cournoyer 2024-04-06gnu: gnurl: Deprecate in favor of curl....gnurl is no longer maintained, is abandoned by upstream (see: https://bugs.gnunet.org/view.php?id=8684#c22105). * gnu/packages/gnunet.scm (gnurl): Alias to curl. Change-Id: I7829ac03c516b666e1ab96444cc45c852f065f90 Maxim Cournoyer 2024-03-31gnu: gnunet-gtk: Update to 0.21.0....* gnu/packages/gnunet.scm (gnunet-gtk): Update to 0.21.0. Remove stale comment. Change-Id: I2aad59de4af06ba8534487618366b17e259a4880 Maxim Cournoyer 2024-03-31gnu: gnunet: Update to 0.21.1....* gnu/packages/gnunet.scm (gnunet): Update to 0.21.1. [phases]: Adjust disable-problematic-tests phase. Change-Id: Ia4b1c1ee9c3646e191669ea465d57acc006018e7 Maxim Cournoyer 2024-03-31gnu: gnurl: Update to 7.72.0....* gnu/packages/gnunet.scm (gnurl): Update to 7.72.0. [arguments] <test-target>: Specify 'test-nonflaky' target. <configure-flags>: Use gexps. <phases>: Likewise. Add patch-paths phase. Change-Id: Idcb6a6f2115176c9aa6074b916313e9640416033 Maxim Cournoyer 2024-03-31gnu: libmicrohttpd: Update to 1.0.1....* gnu/packages/gnunet.scm (libmicrohttpd): Update to 1.0.1. Change-Id: I10e40d2a4d5634f9936c349c0678876e4cbba9ab Maxim Cournoyer