unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob 732f2bb6cc8a31681ba53593d62eb8b5cccf65ed 3807 bytes (raw)
name: gnu/packages/dictd.scm 	 # note: path name is non-authoritative(*)

 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
 
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2024 Runciter <runciter@whispers-vpn.org>
;;;
;;; 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 dictd)
  #:use-module (guix packages)
  #:use-module (guix gexp)
  #:use-module ((guix licenses) #:select (gpl2+))
  #:use-module (guix download)
  #:use-module (guix build-system gnu)
  #:use-module (gnu packages)
  #:use-module (gnu packages autotools)
  #:use-module (gnu packages bison)
  #:use-module (gnu packages flex)
  #:use-module (gnu packages compression))

(define-public libmaa-1.3.2
  (package
    (name "libmaa")
    (version "1.3.2")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "mirror://sourceforge/dict/libmaa/"
                           "libmaa-"
                           version
                           "/libmaa-"
                           version
                           ".tar.gz"))
       (sha256
        (base32 "1idi4c30pi79g5qfl7rr9s17krbjbg93bi8f2qrbsdlh78ga19ar"))))
    (native-inputs (list libtool))
    (arguments
     (list
      #:make-flags #~'("CFLAGS=-DHAVE_CONFIG_H  -Wall -Wno-error -g -O2 $(VERCFLAGS) -I. -I${srcdir}")
      #:test-target "test"))
    (build-system gnu-build-system)
    (synopsis "Low-level data structures used by the dictd program")
    (description
     "The libmaa library provides many low-level
data structures which are helpful for writing compilers, including hash
tables, sets, lists, debugging support, and memory management.  Although
libmaa was designed and implemented as a foundation for the Khepara
transformation system, the data structures are generally applicable to a
wide range of programming problems.

  The memory management routines are especially helpful for improving
the performance of memory-intensive applications.")
    (home-page "https://sourceforge.net/projects/dict/")
    (license gpl2+)))

(define-public dictd-1.13.1
  (package
    (name "dictd")
    (version "1.13.1")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "mirror://sourceforge/dict/dictd/"
                           "dictd-"
                           version
                           "/dictd-"
                           version
                           ".tar.gz"))
       (sha256
        (base32 "06racmv25ihwgwf67fgj2703ik0m5i2cjzcxasa88kc92rysdwg4"))))
    (inputs (list libmaa-1.3.2 zlib))
    (native-inputs (list libtool bison flex))
    (arguments
     (list
      #:test-target "test"))
    (build-system gnu-build-system)
    (synopsis "@command{dict}, @command{dictd} and @command{dictfmt} programs")
    (description
     "The DICT Interchange Format (DICF) is a human-readable
 format for the interchange of dictionary databases for the use with
DICT protocol client/server software.

This package provides a client @command{dict} and a server program
@command{dictd} for the DICT protocol, as well as a utility
@command{dictfmt} to convert various dictionary formats into
dictionaries that can be served by @command{dictd} or @command{dicos}")
    (home-page "https://sourceforge.net/projects/dict/")
    (license gpl2+)))

debug log:

solving 732f2bb6cc ...
found 732f2bb6cc in https://yhetil.org/guix-patches/c75dcb1d968391132b2e593a91ca3e7c376569a7.1731747114.git.runciter@whispers-vpn.org/ ||
	https://yhetil.org/guix-patches/f4622e5320856f4cd90e2280ab9ca3dda0bfd335.1732150157.git.runciter@whispers-vpn.org/
found fed41def64 in https://yhetil.org/guix-patches/cbf779e8e68e2e83ba03e386ef2da5355fa8a0a0.1731747114.git.runciter@whispers-vpn.org/ ||
	https://yhetil.org/guix-patches/cbf779e8e68e2e83ba03e386ef2da5355fa8a0a0.1732150157.git.runciter@whispers-vpn.org/

applying [1/2] https://yhetil.org/guix-patches/cbf779e8e68e2e83ba03e386ef2da5355fa8a0a0.1731747114.git.runciter@whispers-vpn.org/
diff --git a/gnu/packages/dictd.scm b/gnu/packages/dictd.scm
new file mode 100644
index 0000000000..fed41def64

Checking patch gnu/packages/dictd.scm...
Applied patch gnu/packages/dictd.scm cleanly.

skipping https://yhetil.org/guix-patches/cbf779e8e68e2e83ba03e386ef2da5355fa8a0a0.1732150157.git.runciter@whispers-vpn.org/ for fed41def64
index at:
100644 fed41def6484c1661ad02a70a5b951a1a04df6f9	gnu/packages/dictd.scm

applying [2/2] https://yhetil.org/guix-patches/c75dcb1d968391132b2e593a91ca3e7c376569a7.1731747114.git.runciter@whispers-vpn.org/
diff --git a/gnu/packages/dictd.scm b/gnu/packages/dictd.scm
index fed41def64..732f2bb6cc 100644

Checking patch gnu/packages/dictd.scm...
Applied patch gnu/packages/dictd.scm cleanly.

skipping https://yhetil.org/guix-patches/f4622e5320856f4cd90e2280ab9ca3dda0bfd335.1732150157.git.runciter@whispers-vpn.org/ for 732f2bb6cc
index at:
100644 732f2bb6cc8a31681ba53593d62eb8b5cccf65ed	gnu/packages/dictd.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).