Package Details: ratarmount-git 1:0.13.0.r18.g8e6296c-2

Git Clone URL: https://aur.archlinux.org/ratarmount-git.git (read-only, click to copy)
Package Base: ratarmount-git
Description: Mount tar files via fusepy. Supports Recursive Mounting, Compressed Files, Read-Only Bind Mounting, Union Mounting and Write Overlays. A fast random access alternative to archivemount.
Upstream URL: https://github.com/mxmlnkn/ratarmount
Keywords: archivemount fuse fusepy tarindexer
Licenses: MIT
Conflicts: ratarmount
Provides: ratarmount
Submitter: jose1711
Maintainer: RubenKelevra
Last Packager: RubenKelevra
Votes: 2
Popularity: 0.011355
First Submitted: 2019-06-11 09:30 (UTC)
Last Updated: 2023-05-12 16:56 (UTC)

Dependencies (17)

Required by (0)

Sources (1)

Latest Comments

RubenKelevra commented on 2022-12-04 11:21 (UTC)

Thanks for the suggestions. Added all of them.

Give feedback if now everything works as expected!

MoeRT09 commented on 2022-10-25 12:22 (UTC)

It is also missing a dependency to python-setuptools.

JoeCool commented on 2022-08-05 17:32 (UTC) (edited on 2022-08-05 17:41 (UTC) by JoeCool)

This package has the same problem as the non -git version:

the core module isn't built. This patch fixes that:

diff --git a/PKGBUILD b/PKGBUILD
index 07b8aee..8fb482c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
 # Contributor: Jose Riha <jose1711 [at] gmail (dot) com>

 pkgname=ratarmount-git
-pkgver=20191206
+pkgver=20220625
 pkgrel=1
 pkgdesc="Mount tar file using fuse with fast read-only random access (git version)"
 arch=('any')
@@ -19,12 +19,16 @@ pkgver() {
 }

 build() {
+  cd $srcdir/ratarmount/core
+  python setup.py build
   cd $srcdir/ratarmount
   python setup.py build
 }


 package() {
+  cd $srcdir/ratarmount/core
+  python setup.py install --root="$pkgdir" --optimize=1
   cd $srcdir/ratarmount
   python setup.py install --root="$pkgdir" --optimize=1
   install -Dm755 "${srcdir}/ratarmount/README.md" "${pkgdir}/usr/share/doc/ratarmount/README.md"

Useful other optional dependencies might be: python-indexed-zstd and python-indexed-bzip2 (currently missing from aur).

FabioLolix commented on 2022-07-19 21:32 (UTC) (edited on 2022-07-19 21:37 (UTC) by FabioLolix)

Hello,

rxvisser commented on 2021-11-05 19:23 (UTC) (edited on 2021-11-05 19:35 (UTC) by rxvisser)

Please update optional dependency "python-indexed_gzip" to its new name "python-indexed-gzip"

Thank you :)

Edit: ratarmount does not work for me with the current PKGBUILD, see trace:

https://pastebin.com/Bjk1g0RJ

ModuleNotFoundError: No module named 'ratarmountcore'