Package Details: mimeo 2023-12

Git Clone URL: https://aur.archlinux.org/mimeo.git (read-only, click to copy)
Package Base: mimeo
Description: Open files by MIME-type or file name using regular expressions.
Upstream URL: https://xyne.dev/projects/mimeo
Keywords: utilities
Licenses: GPL
Submitter: Xyne
Maintainer: Xyne
Last Packager: Xyne
Votes: 145
Popularity: 0.29
First Submitted: 2009-12-16 02:54 (UTC)
Last Updated: 2023-06-27 09:32 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 .. 12 Next › Last »

ectospasm commented on 2022-07-21 01:02 (UTC)

@vlas: Instead of using Xyne's repo, just download the PKGBUILD from the AUR directly. It's Python so there shouldn't be too much to compile.

vlas commented on 2022-07-20 18:44 (UTC)

Can't upgrade - no access to xyne.dev without help of VPN https://i.imgur.com/4k3pZdq.png

Xyne commented on 2021-12-14 16:16 (UTC)

You can also use my repo to update automatically if you're not using an AUR helper. https://xyne.dev/repos/

nyi commented on 2021-12-14 12:03 (UTC)

@komex: Reinstalling the AUR package should fix that error. It is caused by a Python upgrade, but your AUR python packages are not aware of the upgrade. You thus need to rebuild all AUR packages using python.

komex commented on 2021-12-13 14:08 (UTC)

$ miemo
Traceback (most recent call last):
  File "/usr/bin/mimeo", line 5, in <module>
    from Mimeo import run_main
ModuleNotFoundError: No module named 'Mimeo'

How to fix it?

Xyne commented on 2021-11-12 04:11 (UTC)

@johnhamelink That's expected. Even though my key is in the Arch Linux keyring on the system, makepkg only uses the user's keyring so all keys have to be imported by the user.

johnhamelink commented on 2021-10-03 14:19 (UTC)

Hi there, I was struggling to download this tool with the default PKGBUILD as the keyserver that was used was not resolving. Importing like so allowed me to install correctly:

gpg --recv-keys --keyserver keyserver.ubuntu.com 1D1F0DC78F173680

Poroing commented on 2021-02-11 18:23 (UTC) (edited on 2021-02-11 18:26 (UTC) by Poroing)

In the mimeo script, in the shebang line, the path to the interpreter isn't absolute. That should be the case (See https://en.wikipedia.org/wiki/Shebang_%28Unix%29#Syntax). It currently is #!python but should be something like /bin/env python or /usr/bin/pythin.

ectospasm commented on 2021-01-07 03:17 (UTC)

I worked around my problem. I had another AUR package (goobook), which depends on the AUR package python-xdg. python-xdg conflicts with the Community (non-AUR) package python-pyxdg. python-xdg and python-pyxdg install to the same path if installed via pacman (or AUR PKGBUILD), so installing one means you have to uninstall the other, and any Python package depending on the other will be broken.

I was able to work around the conflict by using a Python venv for python-xdg. See https://bbs.archlinux.org/viewtopic.php?id=262403 for details on how exactly I fixed it.

ectospasm commented on 2020-12-28 22:48 (UTC) (edited on 2020-12-28 22:49 (UTC) by ectospasm)

mimeo is broken for me, and it looks like it has to do with the python-xdg/python-pyxdg dependency conflict:

Traceback (most recent call last):
   File "/usr/lib/python3.9/runpy.py", line 197, in _run_module_as_main
       return _run_code(code, main_globals, None,
   File "/usr/lib/python3.9/runpy.py", line 87, in _run_code
       exec(code, run_globals)
   File "/usr/lib/python3.9/site-packages/Mimeo.py", line 58, in <module>
       import xdg.BaseDirectory
 ModuleNotFoundError: No module named 'xdg.BaseDirectory'

I upgraded another Python package that requires python-xdg. python-xdg conflicts with python-pyxdg. so I removed python-pyxdg. Even though mimeo appears to depend on python-xdg, it appears to be importing the python-pyxdg "xdg" modules. I believe this broke when Arch updated to Python 3.9 earlier this month.