me
/
guix
Archived
1
0
Fork 0

gnu, guix: Yearly ritual purging of the filesystems.

* gnu/packages/android.scm (android-ext4-utils)[synopsis]: Fix ‘file
system’ spelling.
* gnu/packages/disk.scm (rmlint)[synopsis, description]: Likewise.
* gnu/packages/golang.scm (go-github-com-kr-fs)[synopsis, description]:
Likewise & edit for grammar.
* gnu/packages/ipfs.scm (gx, go-ipfs)[description]: Likewise.
* /gnu/packages/java.scm (java-commons-vfs)[synopsis]: Likewise.
* gnu/packages/linux.scm (fuseiso)[description]: Likewise.
(genext2fs)[synopsis, description]: Likewise.
* gnu/packages/package-management.scm (libostree)[description]: Likewise.
* gnu/packages/python-xyz.scm (python-requests-file)[description]:
Likewise & mark up.
* gnu/packages/rails.scm (ruby-with-advisory-lock)[description]:
Likewise.
* gnu/packages/ruby.scm (ruby-rerun)[description]: Likewise.
* guix/build/go-build-system.scm (setup-go-environment)<docstring>:
Likewise.
* guix/store/deduplication.scm (get-temp-link)<docstring>: Likewise.
master
Tobias Geerinckx-Rice 2019-04-24 19:31:39 +02:00
parent 7ecd1761a2
commit 52beae7b8a
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
12 changed files with 23 additions and 22 deletions

View File

@ -538,7 +538,7 @@ that is safe to use for user space. It also includes
(native-inputs (native-inputs
`(("android-core" ,(android-platform-system-core version)))) `(("android-core" ,(android-platform-system-core version))))
(home-page "https://developer.android.com/") (home-page "https://developer.android.com/")
(synopsis "Android ext4 filesystem utils") (synopsis "Android ext4 file system utilities")
(description "@code{android-ext4-utils} is a library in common use by the (description "@code{android-ext4-utils} is a library in common use by the
Android core.") Android core.")
(license license:asl2.0))) (license license:asl2.0)))

View File

@ -3168,8 +3168,9 @@ have super fancy logs.")
(arguments (arguments
'(#:import-path "github.com/kr/fs")) '(#:import-path "github.com/kr/fs"))
(home-page "https://github.com/kr/fs") (home-page "https://github.com/kr/fs")
(synopsis "Filesystem-related functions for Go") (synopsis "File-system-related functions for Go")
(description "Package fs provides filesystem-related functions.") (description
"The fs package provides file-system-related Go functions.")
(license license:bsd-3)))) (license license:bsd-3))))
(define-public go-github-com-direnv-go-dotenv (define-public go-github-com-direnv-go-dotenv

View File

@ -5241,7 +5241,7 @@ file systems.")
("automake" ,automake))) ("automake" ,automake)))
(home-page "https://github.com/jeremie-koenig/genext2fs") (home-page "https://github.com/jeremie-koenig/genext2fs")
(synopsis "Generate ext2 file system as a normal user") (synopsis "Generate ext2 file system as a normal user")
(description "This package provides a program to general an ext2 (description "This package provides a program to generate an ext2
file system as a normal (non-root) user. It does not require you to mount file system as a normal (non-root) user. It does not require you to mount
the image file to copy files on it, nor does it require that you become the image file to copy files on it, nor does it require that you become
the superuser to make device nodes.") the superuser to make device nodes.")

View File

@ -14423,7 +14423,7 @@ introspection.")
(synopsis "File transport adapter for Requests") (synopsis "File transport adapter for Requests")
(description (description
"Requests-File is a transport adapter for use with the Requests Python "Requests-File is a transport adapter for use with the Requests Python
library to allow local filesystem access via file:// URLs.") library to allow local file system access via @code{file://} URLs.")
(license license:asl2.0))) (license license:asl2.0)))
(define-public python2-requests-file (define-public python2-requests-file

View File

@ -79,7 +79,7 @@ unused by the time you create anything with that name, but a good shot."
(define* (get-temp-link target #:optional (link-prefix (dirname target))) (define* (get-temp-link target #:optional (link-prefix (dirname target)))
"Like mkstemp!, but instead of creating a new file and giving you the name, "Like mkstemp!, but instead of creating a new file and giving you the name,
it creates a new hardlink to TARGET and gives you the name. Since it creates a new hardlink to TARGET and gives you the name. Since
cross-filesystem hardlinks don't work, the temp link must be created on the cross-file-system hardlinks don't work, the temp link must be created on the
same file system - where in that file system it is can be controlled by same file system - where in that file system it is can be controlled by
LINK-PREFIX." LINK-PREFIX."
(let try ((tempname (tempname-in link-prefix))) (let try ((tempname (tempname-in link-prefix)))