This is an automated email from the git hooks/post-receive script.
efraim pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new cecee6c gnu: dbxfs: Download using git-fetch.
cecee6c is described below
commit cecee6ca7656526bc4037acfea193c07a5673c69
Author: Efraim Flashner <[email protected]>
AuthorDate: Fri Oct 15 13:42:29 2021 +0300
gnu: dbxfs: Download using git-fetch.
* gnu/packages/file-systems.scm (dbxfs)[source]: Download using
git-fetch.
---
gnu/packages/file-systems.scm | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm
index f195dc2..5f0c848 100644
--- a/gnu/packages/file-systems.scm
+++ b/gnu/packages/file-systems.scm
@@ -1533,11 +1533,15 @@ Dropbox API v2.")
(version "1.0.51")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "dbxfs" version))
+ ;; Release tarball contains files not in git repository.
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://thelig.ht/code/dbxfs")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
(base32
- "1zz82d0mnql55397x4jx7z5rn857rf9zhjv895j93wpxdq10xwvk"))
+ "0bidb1gg5lqa1561f20qnj7gy323q65qwzfrb8h8gs6dsl3g6yfg"))
(patches (search-patches "dbxfs-remove-sentry-sdk.patch"))))
(build-system python-build-system)
(arguments