Package Base Details: manimce

Git Clone URL: https://aur.archlinux.org/manimce.git (read-only, click to copy)
Keywords: animation graphics manim maths python
Submitter: groctel
Maintainer: groctel (naveen521kk)
Last Packager: groctel
Votes: 14
Popularity: 0.37
First Submitted: 2020-10-24 14:29 (UTC)
Last Updated: 2026-02-27 20:17 (UTC)

Packages (1)

Latest Comments

1 2 3 4 Next › Last »

micwoj92 commented on 2026-02-13 00:12 (UTC)

@Sasoo What you mean are probably check errors.

@groctel You are probably not seeing errors in cleanroot, because the package skips these currently.

    if [ -z "$XDG_SESSION_TYPE" ]; then
        echo "Tests require a graphical environment. Skipping..."
        return
    fi

To fix this, you could use xvfb-run. I tried this attempt, however I was getting segfauls on opengl tests, didn't investigate further:

diff --git a/PKGBUILD b/PKGBUILD
index dca3538..1413095 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -59,6 +59,11 @@ makedepends=(
     "python-setuptools"
     "python-wheel"
 )
+checkdepends=(
+    "python-pytest"
+    "python-pytest-cov"
+    "xorg-server-xvfb"
+)
 optdepends=(
     "python-dearpygui: Graphical frontend"
     "jupyterlab: Jupyter integration"
@@ -76,15 +81,10 @@ build() {
 check() {
     cd "$srcdir/$pkgname-$pkgver"

-    if [ -z "$XDG_SESSION_TYPE" ]; then
-        echo "Tests require a graphical environment. Skipping..."
-        return
-    fi
-
     sed -i 's/-n auto --dist=loadfile//' pyproject.toml # Remove unrecognised pytest args

     # Suppress two failing tests until I find a solution
-    pytest \
+    xvfb-run pytest \
         -k "not test_plugin_warning" \
         -k "not test_input_file_via_cfg"
 }

MithicSpirit commented on 2025-12-31 05:31 (UTC)

There has been an incident that took down a lot of Manim infra. See https://manim.community/ (archived: https://web.archive.org/web/20251227085509/https://manim.community/) for more info (although they are still quite sparse with the details).

viniavila commented on 2025-12-30 21:51 (UTC)

Got error 404 trying to compile this package. Apparently https://github.com/ManimCommunity is down

groctel commented on 2025-10-18 11:52 (UTC)

@Sasoo I'm not getting eny errors in my cleanroot environment. Can you share an error log? Otherwise, lots of errors is not a descriptive report I can iterate on :/

Sasoo commented on 2025-10-03 15:24 (UTC)

still get lots of errors when building this

Irfan_hossain commented on 2025-02-28 06:45 (UTC) (edited on 2025-03-01 05:04 (UTC) by Irfan_hossain)

he manim is not installing without this dependencies present

python-pyaudio 
python-opengl 
python-setuptools 
python-flit->used for pyglet
python-av
python-bs4

micwoj92 commented on 2025-02-24 22:24 (UTC)

Needs additional python-poetry-core in makedeps and python-av python-beautifulsoup4 in deps.

micwoj92 commented on 2025-02-20 19:28 (UTC)

Please also bump pkgrel

groctel commented on 2025-02-20 09:04 (UTC)

@micwoj92: I have removed those dependencies. Thanks for the catch!