From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mathieu Othacehe Subject: bug#26441: [PATCH 2/2] gnu: findutils: Reindent package definition. Date: Thu, 13 Apr 2017 22:06:36 +0200 Message-ID: <20170413200636.8332-2-m.othacehe@gmail.com> References: <8737dc9jy1.fsf@fastmail.com> <20170413200636.8332-1-m.othacehe@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53453) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cyl2E-0007Vv-1o for bug-guix@gnu.org; Thu, 13 Apr 2017 16:08:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cyl2A-00020k-SZ for bug-guix@gnu.org; Thu, 13 Apr 2017 16:08:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:47907) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cyl2A-00020e-P6 for bug-guix@gnu.org; Thu, 13 Apr 2017 16:08:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1cyl29-0006Tn-O7 for bug-guix@gnu.org; Thu, 13 Apr 2017 16:08:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <20170413200636.8332-1-m.othacehe@gmail.com> List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: 26441@debbugs.gnu.org * gnu/packages/base.scm (findutils): Reindent, no functional change. --- gnu/packages/base.scm | 64 +++++++++++++++++++++++++-------------------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index 1ae3c8911..e620d9cea 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -251,43 +251,43 @@ interactive means to merge two files.") (define-public findutils (package - (name "findutils") - (version "4.6.0") - (source (origin - (method url-fetch) - (uri (string-append "mirror://gnu/findutils/findutils-" - version ".tar.gz")) - (sha256 - (base32 - "178nn4dl7wbcw499czikirnkniwnx36argdnqgz4ik9i6zvwkm6y")) - (patches (search-patches - "findutils-localstatedir.patch" - "findutils-test-xargs.patch" - ;; test-lock has performance issues on multi-core - ;; machines, it hangs or takes a long time to complete. - ;; This is a commit from gnulib to fix this issue. - "findutils-gnulib-multi-core.patch")))) - (build-system gnu-build-system) - (arguments - `(#:configure-flags (list - ;; Tell 'updatedb' to write to /var. - "--localstatedir=/var" - - ;; Work around cross-compilation failure. See - ;; . - ,@(if (%current-target-system) - '("gl_cv_func_wcwidth_works=yes") - '())))) - (synopsis "Operating on files matching given criteria") - (description - "Findutils supplies the basic file directory searching utilities of the + (name "findutils") + (version "4.6.0") + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnu/findutils/findutils-" + version ".tar.gz")) + (sha256 + (base32 + "178nn4dl7wbcw499czikirnkniwnx36argdnqgz4ik9i6zvwkm6y")) + (patches (search-patches + "findutils-localstatedir.patch" + "findutils-test-xargs.patch" + ;; test-lock has performance issues on multi-core + ;; machines, it hangs or takes a long time to complete. + ;; This is a commit from gnulib to fix this issue. + "findutils-gnulib-multi-core.patch")))) + (build-system gnu-build-system) + (arguments + `(#:configure-flags (list + ;; Tell 'updatedb' to write to /var. + "--localstatedir=/var" + + ;; Work around cross-compilation failure. See + ;; . + ,@(if (%current-target-system) + '("gl_cv_func_wcwidth_works=yes") + '())))) + (synopsis "Operating on files matching given criteria") + (description + "Findutils supplies the basic file directory searching utilities of the GNU system. It consists of two primary searching utilities: \"find\" recursively searches for files in a directory according to given criteria and \"locate\" lists files in a database that match a query. Two auxiliary tools are included: \"updatedb\" updates the file name database and \"xargs\" may be used to apply commands with arbitrarily long arguments.") - (license gpl3+) - (home-page "https://www.gnu.org/software/findutils/"))) + (license gpl3+) + (home-page "https://www.gnu.org/software/findutils/"))) (define-public coreutils (package -- 2.12.2