From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44386) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dbPzW-0003GS-6G for guix-patches@gnu.org; Sat, 29 Jul 2017 07:33:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dbPzS-0002Dp-5T for guix-patches@gnu.org; Sat, 29 Jul 2017 07:33:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:57988) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dbPzS-0002Di-1K for guix-patches@gnu.org; Sat, 29 Jul 2017 07:33:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dbPzR-0006A2-SP for guix-patches@gnu.org; Sat, 29 Jul 2017 07:33:01 -0400 Subject: [bug#27868] [PATCH] gnu: Add f2fs-tools. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44327) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dbPz1-0003Et-VX for guix-patches@gnu.org; Sat, 29 Jul 2017 07:32:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dbPyx-00026p-TY for guix-patches@gnu.org; Sat, 29 Jul 2017 07:32:36 -0400 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:59739) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dbPyx-00026K-DW for guix-patches@gnu.org; Sat, 29 Jul 2017 07:32:31 -0400 From: Marius Bakke Date: Sat, 29 Jul 2017 13:32:06 +0200 Message-Id: <20170729113206.9610-1-mbakke@fastmail.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: 27868@debbugs.gnu.org * gnu/packages/linux.scm (f2fs-tools): New variable. --- gnu/packages/linux.scm | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index d0504f823..4e2216b03 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -3170,6 +3170,43 @@ repair and easy administration.") from the btrfs-progs package. It is meant to be used in initrds.") (license (package-license btrfs-progs)))) +(define-public f2fs-tools + (package + (name "f2fs-tools") + (version "1.8.0") + (source (origin + (method url-fetch) + (uri (string-append + "https://git.kernel.org/cgit/linux/kernel/git/jaegeuk" + "/f2fs-tools.git/snapshot/" name "-" version ".tar.gz")) + (sha256 + (base32 + "1bir9ladb58ijlcvrjrq1fb1xv5ys50zdjaq0yzliib0apsyrnyl")))) + (build-system gnu-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'bootstrap + (lambda _ + (zero? (system* "autoreconf" "-vif"))))))) + (native-inputs + `(("autoconf" ,autoconf) + ("automake" ,automake) + ("libtool" ,libtool) + ("pkg-config" ,pkg-config))) + (inputs + `(("libuuid" ,util-linux))) + (home-page "https://f2fs.wiki.kernel.org/") + (synopsis "Userland tools for f2fs") + (description + "F2FS, the Flash-Friendly File System, is a modern file system +designed to be fast and durable on flash devices such as solid-state +disks and SD cards. This package provides utilities to create and +manage f2fs file systems.") + ;; The formatting utility, libf2fs and include/f2fs_fs.h is dual + ;; GPL2/LGPL2.1, everything else is GPL2 only. See 'COPYING'. + (license (list license:gpl2 license:lgpl2.1)))) + (define-public freefall (package (name "freefall") -- 2.13.3