;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2020 Leo Prikler ;;; ;;; 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 convmv) #:use-module (gnu packages) #:use-module (gnu packages perl) #:use-module (guix licenses) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu)) (define-public convmv (package (name "convmv") (version "2.05") (source (origin (method url-fetch) (uri (string-append "https://www.j3e.de/linux/convmv/convmv-" version ".tar.gz")) (sha256 (base32 "19hwv197p7c23f43vvav5bs19z9b72jzca2npkjsxgprwj5ardjk")))) (build-system gnu-build-system) (arguments `(#:test-target "test" #:make-flags `(,(string-append "PREFIX=" (assoc-ref %outputs "out"))) #:phases (modify-phases %standard-phases (delete 'bootstrap) (delete 'configure) (add-before 'check 'unpack-testsuite (lambda _ (invoke "tar" "xf" "testsuite.tar") (patch-shebang "suite/dotests.sh") (patch-shebang "suite/parsable_tester.pl") #t))))) (inputs `(("perl" ,perl))) (synopsis "Convert filenames between character sets") (description "convmv is a file renamer, that converts between different encodings, e.g. from ISO-8859-1 to UTF-8. It is particularly usefuls for files with names, that display incorrectly.") (license (list gpl2 gpl3)) (home-page "https://www.j3e.de/"))) ff67'>packages/julia.scm
AgeCommit message (Expand)Author
2020-05-17gnu: julia: Specify correct llvm version....* gnu/packages/julia.scm (julia)[arguments]: Adjust configure-flag to specify the correct llvm version. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> nixo
2020-05-12gnu: julia: Update to 1.4.1....* gnu/packages/julia.scm (julia): Update to 1.4.1. * gnu/packages/julia.scm (julia-llvm): Update to 8. Signed-off-by: Ludovic Courtès <ludo@gnu.org> nixo
2020-05-12gnu: Add libwhich....* gnu/packages/julia.scm (libwhich): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> nixo
2020-05-12gnu: julia: Fix patch URL....* gnu/packages/julia.scm (julia-patch-url): Add ".patch". Signed-off-by: Ludovic Courtès <ludo@gnu.org> nixo
2020-04-12gnu: julia: Use libgit2-0.28....* gnu/packages/julia.scm (julia)[inputs]: Replace libgit2 with libgit2-0.28. Efraim Flashner
2020-04-07gnu: julia: Upgrade to 1.3.1....* gnu/packages/julia.scm (libuv-julia): Upgrade to 2.0.0-1.35b1504. (libunwind-julia): New variable. (llvm-patch): Rename to ... (julia-patch): ... this. Update to 1.3.1. (llvm-julia): Adjust patch-set based on above change. Adjust indent. (julia): Update to 1.3.1. [source]: Add patch. [arguments]: Adjust custom 'prepare-deps (llvm-patch): Rename to ... (julia-patch): ... this. Update to 1.3.1. (llvm-julia): Adjust patch-set based on above change. (julia): Upgrade to 1.3.1. [arguments]: Adjust custom 'prepare-deps phase based on changed inputs. Remove most of 'hardcode-soname-map. Adjust 'fix-include-and-link-paths. Add new 'fix-precompile phase. Adjust custom 'disable-broken-tests phase. Add new 'make-wrapper phase. Adjust make-flags. [inputs]: Add p7zip, mbedtls-apache, curl libssh2. Remove openspecfun, fftw, fftwf, python2-virtualenv, rmath. Replace libunwind with libunwind-julia, custom suitesparse with system suitesparse, custom dsfmt with system dsfmt. [native-search-paths]: Add JULIA_DEPOT_PATH. * gnu/packages/patches/julia-SOURCE_DATE_EPOCH-mtime.patch: New file. * gnu/local.mk (dist_patch_DATA): Register it. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Nicolò Balzarotti
2020-04-07gnu: julia.scm: Fix indentaion....* gnu/packages/julia.scm: Re-indent file. Efraim Flashner