;;; copyright.el --- Insert a Guix copyright. ;; Copyright © 2020 Oleg Pykhalov ;; 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 this program. If not, see . ;;; Commentary: ;; This package provides skeleton to insert a copyright with `guix-copyright'. ;;; Code: (define-skeleton guix-copyright "Insert a copyright by $USER notice at cursor." "FULL_NAME : " comment-start ";; Copyright © " `(format-time-string "%Y") " " (or (format "%s <%s>" user-full-name user-mail-address) str) comment-end) ;;; copyright.el ends here c244a08ddd72d15cfeeb3ba0'>refslogtreecommitdiff
AgeCommit message (Expand)Author
2022-01-18gnu: python-sparqlwrapper: Build with older setuptools....* gnu/packages/rdf.scm (python-sparqlwrapper)[native-inputs]: Add PYTHON-SETUPTOOLS. Marius Bakke
2022-01-18gnu: python-rdflib-jsonld: Update to 0.6.2....* gnu/packages/rdf.scm (python-rdflib-jsonld): Update to 0.6.2. Marius Bakke
2022-01-18gnu: python-rdflib: Update to 6.1.1....* gnu/packages/rdf.scm (python-rdflib): Update to 6.1.1. [arguments]: Remove #:tests. Add #:phases. [native-inputs]: Change from PYTHON-NOSE to PYTHON-PYTEST. (python-rdflib-5): New variable. (python2-rdflib): Inherit from PYTHON-RDFLIB-5. * gnu/packages/python-xyz.scm (python-prov): Change from PYTHON-RDFLIB to PYTHON-RDFLIB-5. * gnu/packages/bioinformatics.scm (cwltool): Likewise. Marius Bakke
2022-01-05gnu: lucene++: Use G-expressions....* gnu/packages/rdf.scm (lucene++)[arguments]: Rewrite as G-expressions. Tobias Geerinckx-Rice
2022-01-05gnu: lucene++: Update to 3.0.8....* gnu/packages/rdf.scm (lucene++): Update to 3.0.8. [source]: Add a nice snippet. [arguments]: Don't install the entire gtest suite. Add a custom 'check phase. [inputs]: Add zlib. Tobias Geerinckx-Rice
2021-12-13gnu: Simplify package inputs....This commit was obtained by running: ./pre-inst-env guix style without any additional argument. Ludovic Courtès
2021-11-11gnu: Move a few Python packages to (gnu packages python-build)....This is in prevision of updating python-pypa-build, which now requires python-packaging and adding python-tomli, which requires python-six. * gnu/packages/python-xyz.scm (python-six) (python-six-bootstrap, python2-six-bootstrap) (python-pyparsing, python2-pyparsing, python-pyparsing-2.4.7) (python-packaging-bootstrap, python2-packaging-bootstrap): Move packages to... * gnu/packages/python-build.scm: ... here. Update python-parsing to latest. * gnu/packages/python-xyz.scm (python-six, python-packaging): Adjust to inherit from their bootstrap versions. Maxim Cournoyer
2021-07-21gnu: Add python-sparqlwrapper....* gnu/packages/rdf.scm (python-sparqlwrapper): New variable. Lars-Dominik Braun