aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/pem.scm
blob: 2fba63336f20de939fd278e356d64124868e41e7 (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
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013 Eric Bavier <bavier@member.fsf.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 pem)
  #:use-module (guix packages)
  #:use-module (guix licenses)
  #:use-module (guix download)
  #:use-module (guix build-system gnu)
  #:use-module (gnu packages perl))

(define-public pem
  (package
    (name "pem")
    (version "0.7.9")
    (source
     (origin
      (method url-fetch)
      (uri (string-append "mirror://gnu/pem/pem-"
                          version ".tar.gz"))
      (sha256
       (base32
        "03iqcki1lakkck1akdyvljjapgqda3l0rh38id7jhrac9kcxqgg2"))))
    (build-system gnu-build-system)
    (inputs (list perl))
    (home-page "https://www.gnu.org/software/pem/")
    (synopsis "Personal expenses manager")
    (description
     "GNU Pem is a simple tool for tracking personal income and
expenses.  It operates from the command line and it stores its data
in a basic text format in your home directory.  It can easily print
reports of your spending on different expenses via a basic search
feature.")
    (license gpl3+)))
span>Guillaume Le Vaillant 2020-12-05gnu: cl-asdf: Improve priorities of configuration file search....* gnu/packages/patches/cl-asdf-config-directories.patch: New file. * gnu/local.mk (dist_PATCH_DATA): Add it. * gnu/packages/lisp.scm (cl-asdf)[native-inputs]: Add it. [arguments]: Apply the new patch. Co-authored-by: Pierre Neidhardt <mail@ambrevar.xyz> Guillaume Le Vaillant 2020-12-03gnu: lisp-repl-core-dumper: Update to 0.3.0....* gnu/packages/lisp.scm (lisp-repl-core-dumper): Update to 0.3.0. Pierre Neidhardt 2020-12-02gnu: lisp-repl-core-dumper: Update to 0.2.0....* gnu/packages/lisp.scm (lisp-repl-core-dumper): Update to 0.2.0. Pierre Neidhardt 2020-12-01gnu: Add lisp-repl-core-dumper....* gnu/packages/lisp.scm (lisp-repl-core-dumper): New variable. Pierre Neidhardt 2020-12-01gnu: sbcl: Increase default maximum heap size....* gnu/packages/lisp.scm (sbcl)[arguments]: Build with a max heap size of 3 GiB. Guillaume Le Vaillant 2020-11-30gnu: sbcl: Update to 2.0.11....* gnu/packages/lisp.scm (sbcl): Update to 2.0.11. Pierre Neidhardt 2020-11-30gnu: clisp: Enable ASDF module and parallel build, remove old patch....* gnu/packages/lisp.scm (clisp)[source]: Remove patch that does not seem to be needed anymore. [arguments]: Remove (obsolete?) #:build keyword. Enable ASDF and explicitly enable ffcall, readline, sigsegv. Enable parallel-build since they seem to work now. Pierre Neidhardt 2020-11-22Merge branch 'master' into stagingMarius Bakke 2020-11-20gnu: Add janet....* gnu/packages/lisp.scm (janet): New variable. Pierre Neidhardt 2020-11-07Merge branch 'master' into staging... Conflicts: gnu/local.mk gnu/packages/gdb.scm gnu/packages/lisp-xyz.scm gnu/packages/web-browsers.scm Marius Bakke 2020-11-02gnu: sbcl: Update to 2.0.10....* gnu/packages/lisp.scm (sbcl): Update to 2.0.10. Pierre Neidhardt 2020-10-20gnu: sbcl: Update to 2.0.9....* gnu/packages/lisp.scm (sbcl): Update to 2.0.9. Pierre Neidhardt 2020-10-13Merge branch 'master' into stagingMarius Bakke 2020-10-13gnu: txr: Update to 244....* gnu/packages/lisp.scm (txr): Update to 244. [native-inputs]: Remove bison and flex. Guillaume Le Vaillant 2020-09-12gnu: cl-asdf: Update to 3.3.4....* gnu/packages/lisp.scm (cl-asdf): Update to 3.3.4. [arguments]: Add small patch for default ASDF configuration. (asdf-substitutions): Remove variable. (sbcl, ecl)[arguments]: Remove call to 'asdf-substitutions'. Guillaume Le Vaillant 2020-09-12build-system: asdf: Switch from bundles to regular compilation....* gnu/packages/lisp.scm (sbcl, ecl)[native-search-paths]: Add 'XDG_CONFIG_DIRS'. * guix/build-system/asdf.scm (asdf-build): Replace 'asd-file' and 'asd-system-name' keywords by 'asd-files' and 'asd-systems'. * guix/build/asdf-build-system.scm (%object-prefix, %lisp-source-install-prefix): Update variables. (install): Update variable. (main-system-name): New variable. (copy-source): Replace 'asd-file' and 'asd-system-name' keywords by 'asd-files' and 'asd-systems'. (configure): New variable. (build, check): Replace 'asd-file' and 'asd-system-name' keywords by 'asd-files' and 'asd-systems'. (create-asd-file, symlink-asd-files): Remove variables. (create-asdf-configuration): New variable. (cleanup-files): Update variable. (%standard-phases): Remove 'create-asd-file' and 'symlink-asd-files' phases. Add 'configure' and 'create-asdf-configuration' phases. * guix/build/lisp-utils.scm (%bundle-install-prefix, normalize-dependency, inputs->asd-file-map, asdf-load-all, compile-system): Remove variables. (compile-systems): New variable. (system-dependencies, compiled-system, generate-system-definition): Remove variable. (test-system): Replace 'asd-file' parameter by 'asd-files'. (generate-executable-for-system): Update variable. (generate-dependency-links, make-asd-file, bundle-asd-file): Remove variables. (make-asdf-configuration): New variable. (build-program, build-image): Set 'XDG_CONFIG_DIRS'. (generate-executable): Update variable. Guillaume Le Vaillant 2020-09-04gnu: txr: Update to 243....* gnu/packages/lisp.scm (txr): Update to 243. Guillaume Le Vaillant 2020-09-02gnu: sbcl: Update to 2.0.8....* gnu/packages/lisp.scm (sbcl): Update to 2.0.8. Pierre Neidhardt 2020-08-18gnu: txr: Update to 242....* gnu/packages/lisp.scm (txr): Update to 242. Guillaume Le Vaillant 2020-08-01gnu: sbcl: Update to 2.0.7....* gnu/packages/lisp.scm (sbcl): Update to 2.0.7. Pierre Neidhardt 2020-07-03gnu: sbcl: Add comment explaining out-of-date version....Make sure no one repeats this mistake. This is a follow-up to commit 809aa3c51c5a0f3d8e3d8133b22684702cb90287. * gnu/packages/lisp.scm (sbcl): Add a comment advising against updating to 2.0.6. Jakub Kądziołka 2020-07-03Revert "gnu: sbcl: Update to 2.0.6."...This reverts commit 1ac4959c6a94a89fc8d3a73239d107cfb1d96240. SBCL 2.0.6 breaks named-readtables and consequently many Common Lisp packages. See https://github.com/melisgl/named-readtables/issues/19. Pierre Neidhardt 2020-07-01gnu: sbcl: Update to 2.0.6....* gnu/packages/lisp.scm (sbcl): Update to 2.0.6. Pierre Neidhardt