From patchwork Mon Jun 6 13:22:57 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Ricardo Wurmus X-Patchwork-Id: 12789 Received: (qmail 120190 invoked by uid 89); 6 Jun 2016 13:23:49 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Checked: by ClamAV 0.99.1 on sourceware.org X-Virus-Found: No X-Spam-Flag: YES X-Spam-SWARE-Status: Yes, score=9.7 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD, SPAM_BODY1, SPF_PASS autolearn=no version=3.3.2 spammy=expenses, stocks, transactions, Hx-languages-length:1374 X-Spam-Status: Yes, score=9.7 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD, SPAM_BODY1, SPF_PASS autolearn=no version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on sourceware.org X-Spam-Level: ********* X-HELO: lists.gnu.org Received: from lists.gnu.org (HELO lists.gnu.org) (208.118.235.17) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Mon, 06 Jun 2016 13:23:39 +0000 Received: from localhost ([::1]:42483 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b9uVF-000609-8J for patchwork@sourceware.org; Mon, 06 Jun 2016 09:23:37 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41748) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b9uV8-0005ys-Cn for guix-devel@gnu.org; Mon, 06 Jun 2016 09:23:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b9uV2-00059z-Cw for guix-devel@gnu.org; Mon, 06 Jun 2016 09:23:30 -0400 Received: from sender163-mail.zoho.com ([74.201.84.163]:24382) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b9uV2-00059m-4a for guix-devel@gnu.org; Mon, 06 Jun 2016 09:23:24 -0400 Received: from localhost (x5f72c649.dyn.telefonica.de [95.114.198.73]) by mx.zohomail.com with SMTPS id 1465219401432329.6242296983196; Mon, 6 Jun 2016 06:23:21 -0700 (PDT) From: Ricardo Wurmus To: guix-devel@gnu.org Subject: [PATCH 1/5] gnu: gnucash: Add "license:" prefix. Date: Mon, 6 Jun 2016 15:22:57 +0200 Message-Id: <20160606132301.21077-2-rekado@elephly.net> X-Mailer: git-send-email 2.8.3 In-Reply-To: <20160606132301.21077-1-rekado@elephly.net> References: <20160606132301.21077-1-rekado@elephly.net> MIME-Version: 1.0 X-ZohoMail: Z_26063301 SPT_1 Z_26062608 SPT_0 X-Zoho-Virus-Status: 2 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 74.201.84.163 X-BeenThere: guix-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list 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+patchwork=sourceware.org@gnu.org Sender: "Guix-devel" * gnu/packages/gnucash.scm: Import licenses with "license:" prefix. (gnucash)[license]: Add prefix. --- gnu/packages/gnucash.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/gnucash.scm b/gnu/packages/gnucash.scm index 5c0ce4f..c39324c 100644 --- a/gnu/packages/gnucash.scm +++ b/gnu/packages/gnucash.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2015 Ricardo Wurmus +;;; Copyright © 2015, 2016 Ricardo Wurmus ;;; Copyright © 2015 Eric Bavier ;;; Copyright © 2016 Efraim Flashner ;;; @@ -19,7 +19,7 @@ ;;; along with GNU Guix. If not, see . (define-module (gnu packages gnucash) - #:use-module (guix licenses) + #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) @@ -106,4 +106,4 @@ It can be used to track bank accounts, stocks, income and expenses, based on the double-entry accounting practice. It includes support for QIF/OFX/HBCI import and transaction matching. It also automates several tasks, such as financial calculations or scheduled transactions.") - (license gpl3+))) + (license license:gpl3+)))