aboutsummaryrefslogtreecommitdiff
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2017, 2019 Ludovic Courtès <ludo@gnu.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 (test-search-paths)
  #:use-module (guix search-paths)
  #:use-module (ice-9 match)
  #:use-module (srfi srfi-64))

(define %top-srcdir
  (dirname (search-path %load-path "guix.scm")))


(test-begin "search-paths")

(test-equal "evaluate-search-paths, separator is #f"
  (string-append %top-srcdir
                 "/gnu/packages/aux-files/linux-libre")

  ;; The following search path spec should evaluate to a single item: the
  ;; first directory that matches the "-linux$" pattern in
  ;; gnu/packages/bootstrap.
  (let ((spec (search-path-specification
               (variable "CHBOUIB")
               (files '("gnu/packages/aux-files"))
               (file-type 'directory)
               (separator #f)
               (file-pattern "^linux"))))
    (match (evaluate-search-paths (list spec)
                                  (list %top-srcdir))
      (((spec* . value))
       (and (eq? spec* spec) value)))))

(test-end "search-paths")
class='msg-avail'>...* gnu/packages/qt.scm (python-sip): Update to 4.18.1. Efraim Flashner 2016-12-12gnu: python-pyqt-4: Use 'modify-phases' syntax....* gnu/packages/qt.scm (python-pyqt-4)[arguments]: Use 'modify-phases' syntax. Efraim Flashner 2016-12-12gnu: python-pyqt@5.5: Remove variable....* gnu/packages/qt.scm (python-pyqt@5.5, python2-pyqt@5.5): Remove them. Efraim Flashner 2016-12-12gnu: python-pyqt: Build with more qt modules....* gnu/packages/qt.scm (python-pyqt)[inputs]: Add qtbase, qtconnectivity, qtdeclarative, qtlocation, qtmultimedia, qtsensors, qtserialport, qtsvg, qttools, qtwebchannel, qtwebkit, qtwebsockets, qtx11extras, qtxmlpatterns. (python2-pyqt)[inputs]: Same. (python-pyqt@4)[inputs]: Only use python. Efraim Flashner 2016-12-09gnu: python-pyqt: Fix build by explicitly setting the stubsdir....* gnu/packages.qt.scm (python-pyqt, python2-pyqt)[arguments]: In phase 'configure' pass option --stubsdir. Hartmut Goebel 2016-12-09gnu: python-pyqt-5.5: Use non-inherited "configure" phase....This allows passing different options for 5.5 than for the main version (which is currently 5.6). * gnu/packages.qt.scm (python-pyqt-5.5, python2-pyqt-5.5)[arguments]: Copy from (python-pyqt)[arguments]. Hartmut Goebel 2016-12-09gnu: python2-pyqt-4: Change package name to python2-pyqt....* gnu/packages/qt.scm (python2-pyqt-4)[package]: Change "name" python2-pyqt. Hartmut Goebel 2016-12-03gnu: Add grantlee....* gnu/packages/qt.scm (grantlee): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Thomas Danckaert 2016-11-07gnu: Add qtwebkit....* gnu/packages/qt.scm (qtwebkit): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Thomas Danckaert 2016-11-06gnu: qtmultimedia: Remove bundled library....* gnu/packages/qt.scm (qtmultimedia)[source]: Remove bundled library. Efraim Flashner 2016-11-06gnu: qtimageformats: Remove bundled libraries....* gnu/packages/qt.scm (qtimagesformats)[source]: Remove bundled 3rd party libraries. Efraim Flashner 2016-10-28gnu: Add qwt....* gnu/packages/qt.scm (qwt): New variable. Signed-off-by: Marius Bakke <mbakke@fastmail.com> Thomas Danckaert 2016-10-15gnu: qt: Update to 5.6.2....* gnu/packages/qt.scm (qt): Update to 5.6.2. [home-page]: Update to new home-page. Efraim Flashner