aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/nvi.scm
blob: f1f461f2b46cde26ca37aba31d1c00a712b02fa7 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014 Marek Benc <merkur32@gmail.com>
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
;;;
;;; 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 nvi)
  #:use-module (gnu packages)
  #:use-module (gnu packages autotools)
  #:use-module (gnu packages dbm)
  #:use-module (gnu packages ncurses)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu)
  #:use-module (guix licenses)
  #:use-module (guix utils))

(define-public nvi
  (package
    (name "nvi")
    (version "1.81.6")
    (source
      (origin
        (method url-fetch)
        (uri          ;; sites.google.coma/bostic.com/keithbostic/vi is stale.
          (string-append "http://harrier.slackbuilds.org/misc/nvi-" version
                         ".tar.bz2"))
        (sha256
          (base32 "0nbbs1inyrqds0ywn3ln5slv54v5zraq7lszkg8nsavv4kivhh9l"))
        (patches (search-patches "nvi-assume-preserve-path.patch"
                                 "nvi-dbpagesize-binpower.patch"
                                 "nvi-db4.patch"))
        (modules '((guix build utils)))
        (snippet
          ;; Create a wrapper for the configure script, make it executable.
          '(let ((conf-wrap (open-output-file "configure")))
             (display "#!/bin/sh" conf-wrap)
             (newline conf-wrap)
             (display
               "../nvi-1.81.6/dist/configure --srcdir=../nvi-1.81.6/dist $@"
               conf-wrap)
             (newline conf-wrap)
             (close-output-port conf-wrap)
             (chmod "configure" #o0755)

             ;; Glibc 2.30 removed the deprecated <sys/stropts.h>, so fall back
             ;; to the internal PTY allocation logic.
             (substitute* "ex/ex_script.c"
               (("#ifdef HAVE_SYS5_PTY")
                "#if defined(HAVE_SYS5_PTY) && !defined(__GLIBC__)"))
             #t))))

    (build-system gnu-build-system)
    (arguments
      `(#:out-of-source? #t
        #:configure-flags
        '("--enable-widechar"
          ,@(if (%current-target-system)
                '("vi_cv_sprintf_count=yes")
                '()))
        #:phases
        (modify-phases %standard-phases
          (add-before 'configure 'fix-configure
            (lambda* (#:key inputs native-inputs #:allow-other-keys)
              ;; Replace outdated config.sub and config.guess:
              (with-directory-excursion "dist"
                (for-each (lambda (file)
                            (chmod file #o755)
                            (install-file
                             (string-append
                              (assoc-ref
                               (or native-inputs inputs) "automake")
                              "/share/automake-"
                              ,(version-major+minor
                                (package-version automake))
                              "/" file) "."))
                          '("config.sub")))
              #t)))))
    (inputs
      (list bdb ncurses))
    (native-inputs
     (list automake)) ;Up to date 'config.guess' and 'config.sub'.
    (synopsis "The Berkeley Vi Editor")
    (description
      "Vi is the original screen based text editor for Unix systems.  It is
considered the standard text editor, and is available on almost all Unix
systems.  Nvi is intended as a \"bug-for-bug compatible\" clone of the
original BSD vi editor.  As such, it doesn't have a lot of snazzy features as
do some of the other vi clones such as elvis and vim.  However, if all you
want is vi, this is the one to get.")
    (home-page "https://sites.google.com/a/bostic.com/keithbostic/vi")
    (license bsd-3)))
gnu: rizin: Update to 0.6.2....* gnu/packages/engineering.scm (rizin): Update to 0.6.2. [inputs]: Re-indent. Tobias Geerinckx-Rice 2023-09-24gnu: minicom: Update package style....* gnu/packages/engineering.scm (minicom)[arguments]: Rewrite as G-expressions. [native-inputs]: Remove input labels. Tobias Geerinckx-Rice 2023-09-24gnu: minicom: Update to 2.9....* gnu/packages/engineering.scm (minicom): Update to 2.9. [arguments]: Don't explicitly return #t from phases. [native-inputs]: Upgrade autoconf to autoconf-2.71. Tobias Geerinckx-Rice 2023-09-26gnu: capstone: Update to 5.0.1....* gnu/packages/engineering.scm (capstone): Update to 5.0.1. Maxim Cournoyer 2023-09-05gnu: Add libmodbus....* gnu/packages/engineering.scm (libmodbus): New variable. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Vinicius Monego 2023-09-02gnu: poke: Update to 3.3...* gnu/packages/engineering.scm (poke): Update to 3.3 Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Andy Tai 2023-09-02gnu: freecad: Update to 0.21.1....* gnu/packages/engineering.scm (freecad): Update to 0.21.1. Vinicius Monego 2023-09-02gnu: libngspice: Update to 41....* gnu/packages/engineering.scm (libngspice, ngspice): Update to 41. Vinicius Monego 2023-08-26gnu: rizin: Update to 0.6.1....* gnu/packages/engineering.scm (rizin): Update to 0.6.1. [arguments]<#:phases>: Enable a now passing test (analysis_var). 宋文武 2023-08-18gnu: kicad: Update to 7.0.7....* gnu/packages/engineering.scm (kicad): Update to 7.0.7. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net> Peter Polidoro 2023-08-15gnu: pcb2gcode: Build with librsvg-for-system....* gnu/packages/engineering.scm (pcb2gcode)[inputs]: Replace librsvg with librsvg-for-system. Efraim Flashner 2023-08-11gnu: Sort use-module alphabetically in (gnu packages engineering)...* gnu/packages/engineering.scm: Sort use-module alphabetically to ease maintenance. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Sharlatan Hellseher 2023-08-11gnu: fritzing: Improve package style....* gnu/package/engineering.scm (fritzing): Improve package style. Use Gexp. [inputs]: Remove labels. Sort alphabetically. [native-inputs]: Introduce it, use fritzing-parts instead local source. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Sharlatan Hellseher 2023-08-11gnu: Add fritzing-parts....* gnu/packages/engineering.scm (fritzing-parts): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Sharlatan Hellseher 2023-08-10gnu: Do not use (gnu packages commencement) in engineering.scm....This avoids a circular dependency evidenced by the following commit. * gnu/packages/engineering.scm (freehdl)[inputs]: Resolve 'gcc-toolchain' from here rather than by using (gnu packages commencement). Ludovic Courtès 2023-08-05gnu: freecad: Update to 0.21.0....* gnu/packages/engineering.scm (freecad): Update to 0.21.0. [inputs]: Add fmt. Vinicius Monego 2023-07-30gnu: cutter: Update source URL....* gnu/packages/engineering.scm (cutter)[source]: Update. Tobias Geerinckx-Rice 2023-07-30gnu: cutter: Update home page....* gnu/packages/engineering.scm (cutter)[home-page]: Update. Tobias Geerinckx-Rice 2023-08-01gnu: Add python-asyncua....* gnu/packages/engineering.scm (python-asyncua): New variable. Danny Milosavljevic 2023-07-29gnu: python-scikit-rf: Update to 0.28.0....* gnu/packages/engineering.scm (python-scikit-rf): Update to 0.28.0. Vinicius Monego 2023-07-18gnu: Deprecate `texlive-tiny'....At this point, there are three equivalent TeX Live sub-systems: texlive-scheme-basic, texlive-tiny, and (texlive-updmap.cfg). It is confusing to keep so many around. * doc/contributing.texi (Submitting Patches): Remove reference to TEXLIVE-TINY. * gnu/packages/algebra.scm (pari-gp)[native-inputs]: (giac)[native-inputs]: * gnu/packages/chez.scm (chez-sockets)[native-inputs]: * gnu/packages/engineering.scm (fastcap)[native-inputs]: * gnu/packages/gettext.scm (po4a)[native-inputs]: * gnu/packages/maths.scm (cddlib)[native-inputs]: (gnuplot)[native-inputs]: (itpp)[native-inputs]: * gnu/packages/ocaml.scm (unison)[native-inputs]: * gnu/packages/pdf.scm (extractpdfmark)[native-inputs]: * gnu/packages/photo.scm (enblend-enfuse): Replace TEXLIVE-TINY with a call to TEXLIVE-UPDMAP.CFG. * gnu/packages/radio.scm (gnuradio)[native-inputs]: Remove unnecessary TEXLIVE-TINY. * gnu/packages/tex.scm (texlive-tiny): Deprecate it in favor of TEXLIVE-SCHEME-BASIC. (texlive-makecmds)[native-inputs]: Replace TEXLIVE-TINY with a call to TEXLIVE-UPDMAP.CFG. * guix/lint.scm (check-inputs-should-be-native): Check only for "texlive-updmap.cfg" input name. Nicolas Goaziou 2023-07-18gnu: Rationalize texlive-updmap.cfg and texlive-tiny inputs....TEXLIVE-UPDMAP.CFG and TEXLIVE-TINY should only be used as native inputs. Also remove texlive packages already provided by them. * doc/build.scm (pdf-manual): * gnu/packages/algebra.scm (pari-gp): * gnu/packages/bioinformatics.scm (discrover): (phyml): (velvet): * gnu/packages/chemistry.scm (yaehmop): * gnu/packages/chez.scm (stex-bootstrap): (chez-web): (chez-sockets): * gnu/packages/cran.scm (r-prereg): * gnu/packages/docbook.scm (dblatex): * gnu/packages/emacs-xyz.scm (emacs-auctex): * gnu/packages/engineering.scm (fastcap): * gnu/packages/fsf.scm (book-faif): * gnu/packages/graphviz.scm (dot2tex): * gnu/packages/maths.scm (hypre): * gnu/packages/ocaml.scm (unison): (ocaml-bibtex2html): * gnu/packages/plotutils.scm (asymptote): * gnu/packages/python-xyz.scm (python-nbconvert): (python-pypandoc): * gnu/packages/radio.scm (gnuradio): (libosmo-dsp): * gnu/packages/statistics.scm (r-with-tests): * gnu/packages/tex.scm (texlive-makecmds): (texlive-innerscript): (teximpatient): (texlive-xkeyval): Remove texlive packages already provided by TEXLIVE-UPDMAP.CFG. Don't add TEXLIVE-TINY or TEXLIVE-UPDMAP.CFG as inputs. Nicolas Goaziou 2023-07-16gnu: pcb-rnd: Prepare for cross-compilation....* gnu/packages/engineering.scm (pcb-rnd)[arguments]: Use CC-FOR-TARGET. Tobias Geerinckx-Rice 2023-07-16gnu: pcb-rnd: Update to 3.1.1....* gnu/packages/engineering.scm (pcb-rnd): Update to 3.1.1. Tobias Geerinckx-Rice 2023-07-16gnu: librnd: Prepare for cross-compilation....* gnu/packages/engineering.scm (librnd)[arguments]: Use CC-FOR-TARGET. Tobias Geerinckx-Rice 2023-07-16gnu: librnd: Update to 4.0.2....* gnu/packages/engineering.scm (librnd): Update to 4.0.2. Tobias Geerinckx-Rice 2023-07-16gnu: linsmith: Fix input types....* gnu/packages/engineering.scm (linsmith)[native-inputs]: Remove input labels. Move gtk+-2 and libgnomeui from here… [inputs]: …to here. Tobias Geerinckx-Rice 2023-07-16gnu: linsmith: Update to 0.99.33....* gnu/packages/engineering.scm (linsmith): Update to 0.99.33. Tobias Geerinckx-Rice 2023-07-10gnu: kicad: Update to 7.0.6....* gnu/packages/engineering.scm (kicad): Update to 7.0.6. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net> Peter Polidoro 2023-06-02gnu: kicad: Update to 7.0.5....* gnu/packages/engineering.scm (kicad): Update to 7.0.5. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net> Peter Polidoro