;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2016 Chris Marusich ;;; Copyright © 2018, 2020 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 scsi) #:use-module ((guix licenses) #:select (gpl2+ bsd-2 bsd-3)) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu)) (define-public sg3-utils (package (name "sg3-utils") (version "1.45") (source (origin (method url-fetch) (uri (string-append "http://sg.danny.cz/sg/p/sg3_utils-" version ".tar.xz")) (sha256 (base32 "1vmjb17y33a73sv7jg8fzs6bhr7yh2k9sba81sjiyf1pvi3vbnn7")))) (build-system gnu-build-system) (home-page "http://sg.danny.cz/sg/sg3_utils.html") (synopsis "SCSI device utilities") (description "sg3-utils is a collection of utilities for devices that use the Small Computer System Interface (@dfn{SCSI}) command set. It includes utilities to read data from, write data to, control, modify, and query the state of SCSI devices. For example, this package provides command-line tools to: @itemize @item copy data based on @code{dd} syntax and semantics (called @command{sg_dd}, @command{sgp_dd}, and @command{sgm_dd}) @item check @code{INQUIRY} data and @code{VPD pages} (@command{sg_inq}) @item check mode and log pages (@command{sginfo}, @command{sg_modes}, and @command{sg_logs}) @item spin up and down disks (@command{sg_start}) @item do self-tests (@code{sg_senddiag}) @item parse sense data (@code{sg_decode_sense}) @item and perform various other functions. @end itemize In addition, this package includes a library, called libsgutils, which can be used in C and C++ programs to interact with SCSI devices.") ;; See README: "All utilities and libraries have either a "2 clause" BSD ;; license or are "GPL-2ed". [...] That BSD license was updated from the ;; "3 clause" to the newer "2 clause" version on 20180119. To save space ;; various source code files refer to a file called "BSD_LICENSE" [...]." ;; Some files (like sg_compare_and_write.c) retain their 3-clause headers! (license (list gpl2+ bsd-2 bsd-3)))) ..* gnu/packages/language.scm (nimf)[inputs]: Replace librsvg with librsvg-for-system. Efraim Flashner 2023-08-07gnu: praat: Honor #:tests?....* gnu/packages/language.scm (praat)[arguments]: Check #:tests? in 'check phase. Ludovic Courtès 2023-08-07gnu: praat: Update style....* gnu/packages/language.scm (praat): [arguments]: Use g-exps. [#:phases]: Drop trailing #t. [inputs]: Use new format. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Preston M. Firestone 2023-08-07gnu: praat: Add tests to praat....* gnu/packages/language.scm (praat): Run non-graphical tests. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Preston M. Firestone 2023-08-07gnu: praat: Update to 6.3.10....* gnu/packages/language.scm (praat): Update to 6.3.10. [make-flags]: Use (cc-for-target). Signed-off-by: Ludovic Courtès <ludo@gnu.org> Preston M. Firestone 2023-08-07gnu: praat: Update to 6.1.49....Version 6.1.30 of praat can't be built with GCC. Version 6.1.49 patches this. See https://github.com/praat/praat/pull/1622 for more information. -- >8 -- * gnu/packages/language.scm (praat): Update to 6.1.49. [inputs]: Replace gtk+-2 with gtk+. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Preston M. Firestone 2023-05-30gnu: Add skktools....* gnu/packages/language.scm (skktools): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> gemmaro 2023-04-21gnu: nimf: Remove patch-docbook-xml phase....* gnu/packages/language.scm (nimf) [arguments]: Remove patch-docbook-xml phase. Remove trailing #t. Use gexps. Modify the patch-paths to avoid having to refer to specific GTK inputs. [native-inputs, inputs, propagated-inputs]: Remove labels. Maxim Cournoyer 2023-04-01gnu: Add mecab-unidic....* gnu/packages/language.scm (mecab-unidic): New variable. Julien Lepiller 2023-04-01gnu: Add mecab-ipadic....* gnu/packages/language.scm (mecab-ipadic): New variable. Julien Lepiller 2023-04-01gnu: Add mecab....* gnu/packages/language.scm (mecab): New variable. * gnu/packages/patches/mecab-variable-param.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. Julien Lepiller