Package Details: python-pyglm 2.7.3-1

Git Clone URL: https://aur.archlinux.org/python-pyglm.git (read-only, click to copy)
Package Base: python-pyglm
Description: OpenGL Mathematics library for Python
Upstream URL: https://github.com/Zuzu-Typ/PyGLM
Licenses: zlib
Submitter: ahmubashshir
Maintainer: ahmubashshir
Last Packager: ahmubashshir
Votes: 3
Popularity: 0.36
First Submitted: 2021-09-03 15:22 (UTC)
Last Updated: 2024-10-28 05:17 (UTC)

Latest Comments

groctel commented on 2025-04-01 14:07 (UTC) (edited on 2025-04-01 16:28 (UTC) by groctel)

This failure is blocking the dependencies for python-moderngl-window. I've taken a look at the PKGBUILD and I've produced a patch to fix this and other things:

diff --git a/PKGBUILD b/PKGBUILD
index b31da77..9db6d67 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,34 +3,16 @@
 # what: PyGLM

 pkgname='python-pyglm'
-pkgver='2.7.3'
+pkgver='2.8.1'
 pkgrel=1
 pkgdesc="OpenGL Mathematics library for Python"
 url="https://github.com/Zuzu-Typ/PyGLM"
-depends=('python')
+depends=('glm' 'python')
 makedepends=('python-setuptools' 'git')
-license=('ZLIB')
-arch=('any')
-source=(
-    "$pkgname::git+https://github.com/Zuzu-Typ/PyGLM.git#tag=$pkgver"
-    "pyglm-typing::git+https://github.com/esoma/pyglm-typing.git"
-    "glm::git+https://github.com/Zuzu-Typ/glm.git"
-)
-sha256sums=('b9b968b15859d8e40502c935dd77a9851c7710e0d0841a73d7390df634099c47'
-            'SKIP'
-            'SKIP')
-
-prepare() {
-    local mod
-
-    cd "$srcdir/$pkgname"
-    git submodule init
-    for mod in glm pyglm-typing; do
-        git config "submodule.$mod.url" "$srcdir/$mod"
-    done
-
-    git -c protocol.file.allow=always submodule update
-}
+license=('Zlib')
+arch=('x86_64')
+source=("$pkgname::git+https://github.com/Zuzu-Typ/PyGLM.git#tag=$pkgver")
+sha256sums=('9df6a05eae86a5b67c28effbbe96e03833f30fe2600c58597b8428544fc48fb4')

 build() {
     cd "$srcdir/$pkgname"

This fixes the following things:

  • Bumps the pkgver to the latest release.
  • Changes the licence string to an SPDX-compliant one.
  • Changes arch to x86_64 as this builds a binary package.
  • Removes the manual submodule download, instead using the package-provided ones.
  • Removes prepare() as it's not required as per last point.

Cheers!

ahmubashshir commented on 2024-11-16 08:13 (UTC)

that specific commit was removed from upstream

fbc534be6

Does anyone know how to fix this?

TotoShampoin commented on 2024-10-30 07:18 (UTC) (edited on 2024-10-30 07:19 (UTC) by TotoShampoin)

It errors, outputting this:
fatal: Fetched in submodule path 'glm', but it did not contain fbc534be62f8c785db989f8ae7526edf6d0dc306. Direct fetching of that commit failed.

Any clue what that might be?

saltedcoffii commented on 2022-12-01 14:55 (UTC)

PyGLM 2.6.0 fails to build. This fatal error happens during the build step:

Traceback (most recent call last):
  File "/tmp/makepkg/python-pyglm/src/PyGLM-2.6.0/setup.py", line 33, in <module>
    shutil.copy2("pyglm-typing/src/glm_typing/__init__.py", "glm-stubs/glm_typing.py")
  File "/usr/lib/python3.10/shutil.py", line 434, in copy2
    copyfile(src, dst, follow_symlinks=follow_symlinks)
  File "/usr/lib/python3.10/shutil.py", line 254, in copyfile
    with open(src, 'rb') as fsrc:
FileNotFoundError: [Errno 2] No such file or directory: 'pyglm-typing/src/glm_typing/__init__.py'