From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: Re: [PATCH] gnu: Add fluid. Date: Mon, 09 Jan 2017 14:15:04 +0000 Message-ID: <87mvf0qpzr.fsf@wasp.i-did-not-set--mail-host-address--so-tickle-me> References: <87r34c7cw6.fsf@wasp.i-did-not-set--mail-host-address--so-tickle-me> <20170109124413.2448-1-ng0@libertad.pw> <20170109124413.2448-2-ng0@libertad.pw> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41368) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cQaic-0007JE-AV for guix-devel@gnu.org; Mon, 09 Jan 2017 09:14:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cQaiZ-0005FS-6R for guix-devel@gnu.org; Mon, 09 Jan 2017 09:14:38 -0500 Received: from aibo.runbox.com ([91.220.196.211]:52830) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cQaiY-0005Ek-Su for guix-devel@gnu.org; Mon, 09 Jan 2017 09:14:35 -0500 Received: from [10.9.9.211] (helo=mailfront11.runbox.com) by bars.runbox.com with esmtp (Exim 4.71) (envelope-from ) id 1cQaiV-0004pG-O7 for guix-devel@gnu.org; Mon, 09 Jan 2017 15:14:31 +0100 Received: from [46.183.221.231] (helo=localhost) by mailfront11.runbox.com with esmtpsa (uid:892961 ) (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) id 1cQaiF-0003pH-U1 for guix-devel@gnu.org; Mon, 09 Jan 2017 15:14:16 +0100 In-Reply-To: <20170109124413.2448-2-ng0@libertad.pw> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org ng0 writes: > * gnu/packages/kde-frameworks.scm (fluid): New variable. > --- > gnu/packages/kde-frameworks.scm | 57 +++++++++++++++++++++++++++++++++++++++++ > gnu/packages/qt.scm | 1 + > 2 files changed, 58 insertions(+) > > diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm > index 94145fb95..224b35666 100644 > --- a/gnu/packages/kde-frameworks.scm > +++ b/gnu/packages/kde-frameworks.scm > @@ -3,6 +3,7 @@ > ;;; Copyright © 2016 Efraim Flashner > ;;; Copyright © 2016 Hartmut Goebel > ;;; Copyright © 2016 David Craven > +;;; Copyright © 2017 ng0 > ;;; > ;;; This file is part of GNU Guix. > ;;; > @@ -2896,3 +2897,59 @@ script engines.") > > (define kinit-bootstrap > ((package-input-rewriting `((,kdbusaddons . ,kdbusaddons-bootstrap))) kinit)) > + > +(define-public fluid > + (package > + (name "fluid") > + (version "0.9.0") > + (source > + (origin > + (method url-fetch) > + (uri (string-append "https://github.com/lirios/fluid/releases/download/" > + "v" version "/" name "-" version ".tar.xz")) > + (file-name (string-append name "-" version ".tar.xz")) > + (sha256 > + (base32 > + "0m6mijlnizgvmh0z2wcrmkfl5cdrylxz3d7bqii8dasmm0q8f68y")))) > + (build-system cmake-build-system) > + (arguments > + `(#:phases > + (modify-phases %standard-phases > + (add-before 'check 'set-path-for-check > + ;; The tests do not find the fluid module. > + (lambda* (#:key inputs outputs #:allow-other-keys) > + (let* ((out (assoc-ref outputs "out")) > + (bin (string-append out "/bin")) > + (qtb (assoc-ref inputs "qtbase")) > + (qtd (assoc-ref inputs "qtdeclarative")) > + (qts (assoc-ref inputs "qtsvg")) > + (qtq (assoc-ref inputs "qtquickcontrol2"))) > + (setenv "PATH" (string-append (getenv "PATH") Should this be a string-join instead? > + ":" bin ":" qtb ":" > + qtd ":" qtd ":" qts > + ":" qtq)) > + (setenv "QML2_IMPORT_PATH" > + (string-append (getcwd) > + "/test_root/usr/lib/" > + "qt5/qml")) > + (setenv "LD_LIBRARY_PATH" (string-append (getcwd) "/lib")) > + (setenv "HOME" (getcwd)) > + (setenv "CTEST_OUTPUT_ON_FAILURE" "1") ; Enable debug output > + (setenv "QT_QPA_PLATFORM" "offscreen")) > + #t)) > + (add-after 'install 'check > + ;; Swap check and install phases and set paths to installed binaries. > + (assoc-ref %standard-phases 'check))))) > + (native-inputs > + `(("extra-cmake-modules" ,extra-cmake-modules))) > + (inputs > + `(("qtbase" ,qtbase) > + ("qtdeclarative" ,qtdeclarative) > + ("qtsvg" ,qtsvg) > + ("qtquickcontrols2" ,qtquickcontrols2))) > + (home-page "https://github.com/lirios/fluid") > + (synopsis "Library for QtQuick applications") > + (description > + "Fluid is a collection of cross-platform QtQuick components for > +building fluid and dynamic applications.") > + (license license:mpl2.0))) > diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm > index df6fe168a..0846e5f89 100644 > --- a/gnu/packages/qt.scm > +++ b/gnu/packages/qt.scm > @@ -46,6 +46,7 @@ > #:use-module (gnu packages gtk) > #:use-module (gnu packages icu4c) > #:use-module (gnu packages image) > + #:use-module (gnu packages kde-frameworks) > #:use-module (gnu packages linux) > #:use-module (gnu packages databases) > #:use-module (gnu packages pciutils) > -- > 2.11.0 > > -- ♥Ⓐ ng0 -- https://www.inventati.org/patternsinthechaos/