unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#40669: New "official" exfat-utils package
@ 2020-04-16 17:39 Leo Famulari
  2020-04-16 17:46 ` Tobias Geerinckx-Rice via Bug reports for GNU Guix
  2020-04-16 21:58 ` bug#40669: [PATCH] gnu: Add exfatprogs Tobias Geerinckx-Rice via Bug reports for GNU Guix
  0 siblings, 2 replies; 4+ messages in thread
From: Leo Famulari @ 2020-04-16 17:39 UTC (permalink / raw)
  To: 40669

There is a new package for working with Linux-native exFAT filesystems:

https://github.com/exfatprogs/exfatprogs
https://lkml.org/lkml/2020/4/8/1014

It was originally called exfat-utils, like our existing FUSE-based
exfat-utils package, but it will be renamed exfatprogs in the next
release.

Help wanted packaging the new exfatprogs!

^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#40669: New "official" exfat-utils package
  2020-04-16 17:39 bug#40669: New "official" exfat-utils package Leo Famulari
@ 2020-04-16 17:46 ` Tobias Geerinckx-Rice via Bug reports for GNU Guix
  2020-04-16 21:58 ` bug#40669: [PATCH] gnu: Add exfatprogs Tobias Geerinckx-Rice via Bug reports for GNU Guix
  1 sibling, 0 replies; 4+ messages in thread
From: Tobias Geerinckx-Rice via Bug reports for GNU Guix @ 2020-04-16 17:46 UTC (permalink / raw)
  To: 40669

[-- Attachment #1: Type: text/plain, Size: 152 bytes --]

Leo,

Leo Famulari 写道:
> Help wanted packaging the new exfatprogs!

I already have a package.  I'll send it here.

Kind regards,

T G-R

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 227 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#40669: [PATCH] gnu: Add exfatprogs.
  2020-04-16 17:39 bug#40669: New "official" exfat-utils package Leo Famulari
  2020-04-16 17:46 ` Tobias Geerinckx-Rice via Bug reports for GNU Guix
@ 2020-04-16 21:58 ` Tobias Geerinckx-Rice via Bug reports for GNU Guix
  2020-05-29  3:03   ` Leo Famulari
  1 sibling, 1 reply; 4+ messages in thread
From: Tobias Geerinckx-Rice via Bug reports for GNU Guix @ 2020-04-16 21:58 UTC (permalink / raw)
  To: 40669

* gnu/packages/file-systems.scm (exfatprogs): New public variable.
---

Leo,

Here 't is.  Boring, but avoids you some duplicate busywork.

> New "official" package

I'm not…  I'm really not biting, you know.  Nope.  Nein!

Enjoy,

T G-R

 gnu/packages/file-systems.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm
index b5ca37d43e..1e4464e22f 100644
--- a/gnu/packages/file-systems.scm
+++ b/gnu/packages/file-systems.scm
@@ -113,6 +113,37 @@ caching system, and lets you assign different roles to each device based on its
 performance and other characteristics.")
       (license license:gpl2+))))
 
+(define-public exfatprogs
+  (package
+    (name "exfatprogs")
+    (version "1.0.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/exfatprogs/exfatprogs")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0ndc0vsf5m7n79fjxhkg1qw3gy9zdpx2jrdgl0dqjr6cm06jd0b5"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:configure-flags
+       (list "--disable-static")))
+    (native-inputs
+     `(("autoconf" ,autoconf)
+       ("automake" ,automake)
+       ("libtool" ,libtool)
+       ("pkg-config" ,pkg-config)))
+    (home-page "https://github.com/exfatprogs/exfatprogs")
+    (synopsis "Tools to create, check, and repair exFAT file systems")
+    (description
+     "These are command-line user space tools for the @acronym{exFAT,
+Extensible File Allocation Table} file systems.  Included are
+@command{mkfs.exfat} to create (format) new exFAT file systems, and
+@command{fsck.exfat} to check their consistency and repair them.")
+    (license license:gpl2+)))
+
 (define-public httpfs2
   (package
     (name "httpfs2")
-- 
2.25.2

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#40669: [PATCH] gnu: Add exfatprogs.
  2020-04-16 21:58 ` bug#40669: [PATCH] gnu: Add exfatprogs Tobias Geerinckx-Rice via Bug reports for GNU Guix
@ 2020-05-29  3:03   ` Leo Famulari
  0 siblings, 0 replies; 4+ messages in thread
From: Leo Famulari @ 2020-05-29  3:03 UTC (permalink / raw)
  To: Tobias Geerinckx-Rice; +Cc: 40669-done

On Thu, Apr 16, 2020 at 11:58:37PM +0200, Tobias Geerinckx-Rice via Bug reports for GNU Guix wrote:
> * gnu/packages/file-systems.scm (exfatprogs): New public variable.

Thanks!

> +    (version "1.0.1")

I updated it to 1.0.3 and pushed as d7aef3ab59837b9ed8abbe199debf8ed687f6782




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-05-29  3:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-16 17:39 bug#40669: New "official" exfat-utils package Leo Famulari
2020-04-16 17:46 ` Tobias Geerinckx-Rice via Bug reports for GNU Guix
2020-04-16 21:58 ` bug#40669: [PATCH] gnu: Add exfatprogs Tobias Geerinckx-Rice via Bug reports for GNU Guix
2020-05-29  3:03   ` Leo Famulari

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).