From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36326) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eABBT-0003oO-HS for guix-patches@gnu.org; Thu, 02 Nov 2017 04:49:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eABBR-0006km-Us for guix-patches@gnu.org; Thu, 02 Nov 2017 04:49:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:38187) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eABBR-0006ke-R4 for guix-patches@gnu.org; Thu, 02 Nov 2017 04:49:05 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eABBR-0003H9-Jf for guix-patches@gnu.org; Thu, 02 Nov 2017 04:49:05 -0400 Subject: [bug#29114] [PATCH 10/10] gnu: prison: Move to be in alphabetical order. Resent-Message-ID: From: Hartmut Goebel Date: Thu, 2 Nov 2017 09:47:50 +0100 Message-Id: <20171102084750.21368-10-h.goebel@crazy-compilers.com> In-Reply-To: <20171102084750.21368-1-h.goebel@crazy-compilers.com> References: <20171102084750.21368-1-h.goebel@crazy-compilers.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 29114@debbugs.gnu.org I was trapped be the definitions not being in alphabetical order. * gnu/packages/kde-frameworks.scm (prison): Move in front of solid. --- gnu/packages/kde-frameworks.scm | 50 ++++++++++++++++++++--------------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index b3a7bfdfb..72dff868c 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -1197,6 +1197,31 @@ which are used in DBus communication.") (license license:lgpl3+) (properties '((upstream-name . "oxygen-icons5"))))) +(define-public prison + (package + (name "prison") + (version "5.39.0") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/frameworks/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 "1b0ji341xcamrd19z54r2nkm8cglbr4qfxyxmqzn8yc6icfl61nv")))) + (build-system cmake-build-system) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules))) + (inputs + `(("libdmtx", libdmtx) + ("qrencode" ,qrencode) + ("qtbase" ,qtbase))) ;; TODO: rethink: nix propagates this + (home-page "https://api.kde.org/frameworks/prison/html/index.html") + (synopsis "Barcode generation abstraction layer") + (description "Prison is a Qt-based barcode abstraction layer/library and +provides uniform access to generation of barcodes with data.") + (license license:lgpl2.1+))) + (define-public solid (package (name "solid") @@ -1236,31 +1261,6 @@ querying and interacting with hardware independently of the underlying operating system.") (license license:lgpl2.1+))) -(define-public prison - (package - (name "prison") - (version "5.39.0") - (source - (origin - (method url-fetch) - (uri (string-append "mirror://kde/stable/frameworks/" - (version-major+minor version) "/" - name "-" version ".tar.xz")) - (sha256 - (base32 "1b0ji341xcamrd19z54r2nkm8cglbr4qfxyxmqzn8yc6icfl61nv")))) - (build-system cmake-build-system) - (native-inputs - `(("extra-cmake-modules" ,extra-cmake-modules))) - (inputs - `(("libdmtx", libdmtx) - ("qrencode" ,qrencode) - ("qtbase" ,qtbase))) ;; TODO: rethink: nix propagates this - (home-page "https://api.kde.org/frameworks/prison/html/index.html") - (synopsis "Barcode generation abstraction layer") - (description "Prison is a Qt-based barcode abstraction layer/library and -provides uniform access to generation of barcodes with data.") - (license license:lgpl2.1+))) - (define-public sonnet (package (name "sonnet") -- 2.13.5