Package Details: godot-blender-exporter-git 271.b8b883d-1

Git Clone URL: https://aur.archlinux.org/godot-blender-exporter-git.git (read-only, click to copy)
Package Base: godot-blender-exporter-git
Description: Exporter for Blender, made for the Godot Engine
Upstream URL: https://github.com/godotengine/godot-blender-exporter
Keywords: blender godot
Licenses: GPL-2.0
Conflicts: godot-blender-exporter
Provides: godot-blender-exporter
Submitter: rcorre
Maintainer: rcorre
Last Packager: rcorre
Votes: 6
Popularity: 0.000000
First Submitted: 2020-06-14 17:10 (UTC)
Last Updated: 2023-01-19 11:38 (UTC)

Pinned Comments

Latest Comments

gandalf3 commented on 2022-11-28 03:03 (UTC)

Update for github disabling unauthenticated git:// protocol:

diff --git a/PKGBUILD b/PKGBUILD
index f0b90ce..9c439a3 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -11,7 +11,7 @@ depends=('blender' 'python')
 makedepends=('git')
 provides=('godot-blender-exporter')
 conflicts=('godot-blender-exporter')
-source=("$pkgname::git://github.com/godotengine/godot-blender-exporter.git")
+source=("$pkgname::git+https://github.com/godotengine/godot-blender-exporter.git")
 md5sums=('SKIP')
 _blenderver=$(blender -v | head -n1 | cut -f2 -d ' ' | cut -d. -f-2)

rcorre commented on 2020-12-23 17:29 (UTC)

Good catch @1ace. Fixed, thanks!

1ace commented on 2020-12-20 15:37 (UTC)

_blenderver (line 16) needs | sed 's/\.0$//', without that this package is broken right now :)

rcorre commented on 2020-06-14 17:14 (UTC)

Good point! I've created https://aur.archlinux.org/packages/godot-blender-exporter-git which you can start using now, and submitted a request to merge this into the new one. Thanks!

ronjouch commented on 2020-06-14 14:29 (UTC) (edited on 2020-06-14 14:30 (UTC) by ronjouch)

Nit: could this package be renamed to godot-blender-exporter-git (ending with -git), and be added a Provides: godot-blender-exporter ? The fact that it's not causes AUR helpers (I use yay) to not know it's a git package, for which the version is computed during build, and that causes warnings:

 -> godot-blender-exporter: local (228.274f668-1) is newer than AUR (132.fb7f25d-1)

Thanks for the packaging!

rcorre commented on 2019-01-19 17:00 (UTC)

My formatting got mangled in the comment, so here's what the diff looks like: https://github.com/rcorre/pkgbuilds/commit/006c7e8722532c20d9d6e027b4b9bba3f8ed90e1

rcorre commented on 2019-01-05 14:17 (UTC)

This PKGBUILD now doesn't work with the subdirectories in converters/. The following fixed it for me:

package() { _addondir="$pkgdir/usr/share/blender/$_blenderver/scripts/addons/io_scene_godot" find $srcdir/$pkgname/io_scene_godot/ -mindepth 1 -type d -printf '%P\n' | while read dir; do install -dm755 $_addondir/$dir done find $srcdir/$pkgname/io_scene_godot/ -type f -name '*.py' -printf '%P\n' | while read f; do echo "install $f to $_addondir/$f" install -Dm644 $srcdir/$pkgname/io_scene_godot/$f $_addondir/$f done install -dm755 $pkgdir/usr/share/licenses/$pkgname/licenses install -Dm644 $srcdir/$pkgname/LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/licenses }