Fri Feb 21 16:36:54 2020 UTC ()
blender: Update to 2.82

Release notes:
https://www.blender.org/download/releases/2-82/

TBB being optional is broken with this release


(nia)
diff -r1.154 -r1.155 pkgsrc/graphics/blender/Makefile
diff -r1.30 -r1.31 pkgsrc/graphics/blender/PLIST
diff -r1.54 -r1.55 pkgsrc/graphics/blender/distinfo
diff -r0 -r1.1 pkgsrc/graphics/blender/patches/patch-extern_wcwidth_wcwidth.h
diff -r0 -r1.1 pkgsrc/graphics/blender/patches/patch-source_blender_blenlib_BLI__sys__types.h

cvs diff -r1.154 -r1.155 pkgsrc/graphics/blender/Makefile (expand / switch to unified diff)

--- pkgsrc/graphics/blender/Makefile 2020/01/18 21:49:34 1.154
+++ pkgsrc/graphics/blender/Makefile 2020/02/21 16:36:53 1.155
@@ -1,51 +1,48 @@ @@ -1,51 +1,48 @@
1# $NetBSD: Makefile,v 1.154 2020/01/18 21:49:34 jperkin Exp $ 1# $NetBSD: Makefile,v 1.155 2020/02/21 16:36:53 nia Exp $
2 2
3DISTNAME= blender-2.81 3DISTNAME= blender-2.82
4PKGREVISION= 2 
5CATEGORIES= graphics 4CATEGORIES= graphics
6MASTER_SITES= https://download.blender.org/source/ 5MASTER_SITES= https://download.blender.org/source/
7EXTRACT_SUFX= .tar.xz 6EXTRACT_SUFX= .tar.xz
8 7
9MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
10HOMEPAGE= https://www.blender.org/ 9HOMEPAGE= https://www.blender.org/
11COMMENT= Fully integrated 3D graphics creation suite 10COMMENT= Fully integrated 3D graphics creation suite
12LICENSE= gnu-gpl-v2 11LICENSE= gnu-gpl-v2
13 12
14USE_TOOLS+= gmake sed 
15USE_CMAKE= yes 13USE_CMAKE= yes
16USE_LANGUAGES= c c++11 14USE_LANGUAGES= c c++
17 15
18# C++11 16# C++11
19GCC_REQD+= 4.7 17GCC_REQD+= 4.7
20 18
21CONFIGURE_DIRS= build 19CONFIGURE_DIRS= build
22CMAKE_ARG_PATH= .. 20CMAKE_ARG_PATH= ..
23 21
24CMAKE_ARGS+= -DCMAKE_BUILD_TYPE="Release" 22CMAKE_ARGS+= -DCMAKE_BUILD_TYPE="Release"
25 23
26CMAKE_ARGS+= -DWITH_MEM_JEMALLOC=OFF 24CMAKE_ARGS+= -DWITH_MEM_JEMALLOC=OFF
27CMAKE_ARGS+= -DWITH_PYTHON_INSTALL=OFF 25CMAKE_ARGS+= -DWITH_PYTHON_INSTALL=OFF
28CMAKE_ARGS+= -DWITH_INSTALL_PORTABLE=OFF 26CMAKE_ARGS+= -DWITH_INSTALL_PORTABLE=OFF
29 27
30CMAKE_ARGS+= -DWITH_BULLET=OFF 28CMAKE_ARGS+= -DWITH_BULLET=OFF
31CMAKE_ARGS+= -DWITH_OPENCOLORIO=ON 29CMAKE_ARGS+= -DWITH_OPENCOLORIO=ON
32CMAKE_ARGS+= -DWITH_FFTW3=ON 30CMAKE_ARGS+= -DWITH_FFTW3=ON
33CMAKE_ARGS+= -DWITH_SDL=ON 31CMAKE_ARGS+= -DWITH_SDL=ON
34CMAKE_ARGS+= -DWITH_SDL_DYNLOAD=OFF 32CMAKE_ARGS+= -DWITH_SDL_DYNLOAD=OFF
35CMAKE_ARGS+= -DWITH_CODEC_FFMPEG=ON 33CMAKE_ARGS+= -DWITH_CODEC_FFMPEG=ON
36CMAKE_ARGS+= -DWITH_CODEC_SNDFILE=ON 34CMAKE_ARGS+= -DWITH_CODEC_SNDFILE=ON
37CMAKE_ARGS+= -DWITH_SYSTEM_GLEW=ON 35CMAKE_ARGS+= -DWITH_SYSTEM_GLEW=ON
38CMAKE_ARGS+= -DWITH_TBB=OFF 
39 36
40CMAKE_ARGS+= -DWITH_PYTHON_INSTALL_NUMPY=OFF 37CMAKE_ARGS+= -DWITH_PYTHON_INSTALL_NUMPY=OFF
41CMAKE_ARGS+= -DWITH_PYTHON_INSTALL_REQUESTS=OFF 38CMAKE_ARGS+= -DWITH_PYTHON_INSTALL_REQUESTS=OFF
42 39
43.include "../../graphics/MesaLib/buildlink3.mk" 40.include "../../graphics/MesaLib/buildlink3.mk"
44.if ${MESALIB_SUPPORTS_EGL} == "yes" 41.if ${MESALIB_SUPPORTS_EGL} == "yes"
45#CMAKE_ARGS+= -DWITH_GL_EGL=ON 42#CMAKE_ARGS+= -DWITH_GL_EGL=ON
46.endif 43.endif
47 44
48PLIST_SUBST+= BLENDERVER=${PKGVERSION_NOREV:C/[a-z]//} 45PLIST_SUBST+= BLENDERVER=${PKGVERSION_NOREV:C/[a-z]//}
49 46
50REPLACE_PYTHON= release/bin/blender-thumbnailer.py 47REPLACE_PYTHON= release/bin/blender-thumbnailer.py
51 48
@@ -69,17 +66,18 @@ pre-configure: @@ -69,17 +66,18 @@ pre-configure:
69.include "../../graphics/freetype2/buildlink3.mk" 66.include "../../graphics/freetype2/buildlink3.mk"
70.include "../../graphics/glew/buildlink3.mk" 67.include "../../graphics/glew/buildlink3.mk"
71.include "../../graphics/glu/buildlink3.mk" 68.include "../../graphics/glu/buildlink3.mk"
72.include "../../graphics/hicolor-icon-theme/buildlink3.mk" 69.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
73.include "../../graphics/openexr/buildlink3.mk" 70.include "../../graphics/openexr/buildlink3.mk"
74.include "../../graphics/opencolorio/buildlink3.mk" 71.include "../../graphics/opencolorio/buildlink3.mk"
75.include "../../graphics/openimageio/buildlink3.mk" 72.include "../../graphics/openimageio/buildlink3.mk"
76.include "../../graphics/openjpeg/buildlink3.mk" 73.include "../../graphics/openjpeg/buildlink3.mk"
77.include "../../graphics/png/buildlink3.mk" 74.include "../../graphics/png/buildlink3.mk"
78.include "../../graphics/tiff/buildlink3.mk" 75.include "../../graphics/tiff/buildlink3.mk"
79.include "../../math/fftw/buildlink3.mk" 76.include "../../math/fftw/buildlink3.mk"
80.include "../../math/py-numpy/buildlink3.mk" 77.include "../../math/py-numpy/buildlink3.mk"
81.include "../../multimedia/ffmpeg4/buildlink3.mk" 78.include "../../multimedia/ffmpeg4/buildlink3.mk"
 79.include "../../parallel/threadingbuildingblocks/buildlink3.mk"
82.include "../../security/openssl/buildlink3.mk" 80.include "../../security/openssl/buildlink3.mk"
83.include "../../sysutils/desktop-file-utils/desktopdb.mk" 81.include "../../sysutils/desktop-file-utils/desktopdb.mk"
84.include "../../lang/python/application.mk" 82.include "../../lang/python/application.mk"
85.include "../../mk/bsd.pkg.mk" 83.include "../../mk/bsd.pkg.mk"

cvs diff -r1.30 -r1.31 pkgsrc/graphics/blender/PLIST (expand / switch to unified diff)

--- pkgsrc/graphics/blender/PLIST 2019/11/23 23:47:14 1.30
+++ pkgsrc/graphics/blender/PLIST 2020/02/21 16:36:53 1.31
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.30 2019/11/23 23:47:14 nia Exp $ 1@comment $NetBSD: PLIST,v 1.31 2020/02/21 16:36:53 nia Exp $
2bin/blender 2bin/blender
3bin/blender-thumbnailer.py 3bin/blender-thumbnailer.py
4share/applications/blender.desktop 4share/applications/blender.desktop
5share/blender/${PKGVERSION}/datafiles/colormanagement/config.ocio 5share/blender/${PKGVERSION}/datafiles/colormanagement/config.ocio
6share/blender/${PKGVERSION}/datafiles/colormanagement/filmic/filmic_desat65cube.spi3d 6share/blender/${PKGVERSION}/datafiles/colormanagement/filmic/filmic_desat65cube.spi3d
7share/blender/${PKGVERSION}/datafiles/colormanagement/filmic/filmic_false_color.spi3d 7share/blender/${PKGVERSION}/datafiles/colormanagement/filmic/filmic_false_color.spi3d
8share/blender/${PKGVERSION}/datafiles/colormanagement/filmic/filmic_to_0-35_1-30.spi1d 8share/blender/${PKGVERSION}/datafiles/colormanagement/filmic/filmic_to_0-35_1-30.spi1d
9share/blender/${PKGVERSION}/datafiles/colormanagement/filmic/filmic_to_0-48_1-09.spi1d 9share/blender/${PKGVERSION}/datafiles/colormanagement/filmic/filmic_to_0-48_1-09.spi1d
10share/blender/${PKGVERSION}/datafiles/colormanagement/filmic/filmic_to_0-60_1-04.spi1d 10share/blender/${PKGVERSION}/datafiles/colormanagement/filmic/filmic_to_0-60_1-04.spi1d
11share/blender/${PKGVERSION}/datafiles/colormanagement/filmic/filmic_to_0-70_1-03.spi1d 11share/blender/${PKGVERSION}/datafiles/colormanagement/filmic/filmic_to_0-70_1-03.spi1d
12share/blender/${PKGVERSION}/datafiles/colormanagement/filmic/filmic_to_0-85_1-011.spi1d 12share/blender/${PKGVERSION}/datafiles/colormanagement/filmic/filmic_to_0-85_1-011.spi1d
13share/blender/${PKGVERSION}/datafiles/colormanagement/filmic/filmic_to_0.99_1-0075.spi1d 13share/blender/${PKGVERSION}/datafiles/colormanagement/filmic/filmic_to_0.99_1-0075.spi1d
14share/blender/${PKGVERSION}/datafiles/colormanagement/filmic/filmic_to_1.20_1-00.spi1d 14share/blender/${PKGVERSION}/datafiles/colormanagement/filmic/filmic_to_1.20_1-00.spi1d
@@ -55,35 +55,37 @@ share/blender/${PKGVERSION}/datafiles/ic @@ -55,35 +55,37 @@ share/blender/${PKGVERSION}/datafiles/ic
55share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.blob.dat 55share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.blob.dat
56share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.clay.dat 56share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.clay.dat
57share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.clay_strips.dat 57share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.clay_strips.dat
58share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.crease.dat 58share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.crease.dat
59share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.draw.dat 59share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.draw.dat
60share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.draw_sharp.dat 60share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.draw_sharp.dat
61share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.elastic_deform.dat 61share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.elastic_deform.dat
62share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.fill.dat 62share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.fill.dat
63share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.flatten.dat 63share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.flatten.dat
64share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.grab.dat 64share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.grab.dat
65share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.inflate.dat 65share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.inflate.dat
66share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.layer.dat 66share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.layer.dat
67share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.mask.dat 67share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.mask.dat
 68share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.multiplane_scrape.dat
68share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.nudge.dat 69share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.nudge.dat
69share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.pinch.dat 70share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.pinch.dat
70share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.pose.dat 71share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.pose.dat
71share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.rotate.dat 72share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.rotate.dat
72share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.scrape.dat 73share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.scrape.dat
73share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.simplify.dat 74share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.simplify.dat
74share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.smooth.dat 75share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.smooth.dat
75share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.snake_hook.dat 76share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.snake_hook.dat
76share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.thumb.dat 77share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.thumb.dat
 78share/blender/${PKGVERSION}/datafiles/icons/brush.sculpt.topology.dat
77share/blender/${PKGVERSION}/datafiles/icons/brush.uv_sculpt.grab.dat 79share/blender/${PKGVERSION}/datafiles/icons/brush.uv_sculpt.grab.dat
78share/blender/${PKGVERSION}/datafiles/icons/brush.uv_sculpt.pinch.dat 80share/blender/${PKGVERSION}/datafiles/icons/brush.uv_sculpt.pinch.dat
79share/blender/${PKGVERSION}/datafiles/icons/brush.uv_sculpt.relax.dat 81share/blender/${PKGVERSION}/datafiles/icons/brush.uv_sculpt.relax.dat
80share/blender/${PKGVERSION}/datafiles/icons/none.dat 82share/blender/${PKGVERSION}/datafiles/icons/none.dat
81share/blender/${PKGVERSION}/datafiles/icons/ops.armature.bone.roll.dat 83share/blender/${PKGVERSION}/datafiles/icons/ops.armature.bone.roll.dat
82share/blender/${PKGVERSION}/datafiles/icons/ops.armature.extrude_cursor.dat 84share/blender/${PKGVERSION}/datafiles/icons/ops.armature.extrude_cursor.dat
83share/blender/${PKGVERSION}/datafiles/icons/ops.armature.extrude_move.dat 85share/blender/${PKGVERSION}/datafiles/icons/ops.armature.extrude_move.dat
84share/blender/${PKGVERSION}/datafiles/icons/ops.curve.draw.dat 86share/blender/${PKGVERSION}/datafiles/icons/ops.curve.draw.dat
85share/blender/${PKGVERSION}/datafiles/icons/ops.curve.extrude_cursor.dat 87share/blender/${PKGVERSION}/datafiles/icons/ops.curve.extrude_cursor.dat
86share/blender/${PKGVERSION}/datafiles/icons/ops.curve.extrude_move.dat 88share/blender/${PKGVERSION}/datafiles/icons/ops.curve.extrude_move.dat
87share/blender/${PKGVERSION}/datafiles/icons/ops.curve.radius.dat 89share/blender/${PKGVERSION}/datafiles/icons/ops.curve.radius.dat
88share/blender/${PKGVERSION}/datafiles/icons/ops.curve.vertex_random.dat 90share/blender/${PKGVERSION}/datafiles/icons/ops.curve.vertex_random.dat
89share/blender/${PKGVERSION}/datafiles/icons/ops.generic.cursor.dat 91share/blender/${PKGVERSION}/datafiles/icons/ops.generic.cursor.dat
@@ -95,26 +97,27 @@ share/blender/${PKGVERSION}/datafiles/ic @@ -95,26 +97,27 @@ share/blender/${PKGVERSION}/datafiles/ic
95share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.draw.eraser.dat 97share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.draw.eraser.dat
96share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.draw.line.dat 98share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.draw.line.dat
97share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.draw.poly.dat 99share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.draw.poly.dat
98share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.edit_bend.dat 100share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.edit_bend.dat
99share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.edit_mirror.dat 101share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.edit_mirror.dat
100share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.edit_shear.dat 102share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.edit_shear.dat
101share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.edit_to_sphere.dat 103share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.edit_to_sphere.dat
102share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.extrude_move.dat 104share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.extrude_move.dat
103share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.primitive_arc.dat 105share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.primitive_arc.dat
104share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.primitive_box.dat 106share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.primitive_box.dat
105share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.primitive_circle.dat 107share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.primitive_circle.dat
106share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.primitive_curve.dat 108share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.primitive_curve.dat
107share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.primitive_line.dat 109share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.primitive_line.dat
 110share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.primitive_polyline.dat
108share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.radius.dat 111share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.radius.dat
109share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.sculpt_clone.dat 112share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.sculpt_clone.dat
110share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.sculpt_grab.dat 113share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.sculpt_grab.dat
111share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.sculpt_pinch.dat 114share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.sculpt_pinch.dat
112share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.sculpt_push.dat 115share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.sculpt_push.dat
113share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.sculpt_randomize.dat 116share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.sculpt_randomize.dat
114share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.sculpt_smooth.dat 117share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.sculpt_smooth.dat
115share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.sculpt_strength.dat 118share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.sculpt_strength.dat
116share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.sculpt_thickness.dat 119share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.sculpt_thickness.dat
117share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.sculpt_twist.dat 120share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.sculpt_twist.dat
118share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.sculpt_weight.dat 121share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.sculpt_weight.dat
119share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.stroke_cutter.dat 122share/blender/${PKGVERSION}/datafiles/icons/ops.gpencil.stroke_cutter.dat
120share/blender/${PKGVERSION}/datafiles/icons/ops.mesh.bevel.dat 123share/blender/${PKGVERSION}/datafiles/icons/ops.mesh.bevel.dat
@@ -130,26 +133,27 @@ share/blender/${PKGVERSION}/datafiles/ic @@ -130,26 +133,27 @@ share/blender/${PKGVERSION}/datafiles/ic
130share/blender/${PKGVERSION}/datafiles/icons/ops.mesh.polybuild_hover.dat 133share/blender/${PKGVERSION}/datafiles/icons/ops.mesh.polybuild_hover.dat
131share/blender/${PKGVERSION}/datafiles/icons/ops.mesh.primitive_cone_add_gizmo.dat 134share/blender/${PKGVERSION}/datafiles/icons/ops.mesh.primitive_cone_add_gizmo.dat
132share/blender/${PKGVERSION}/datafiles/icons/ops.mesh.primitive_cube_add_gizmo.dat 135share/blender/${PKGVERSION}/datafiles/icons/ops.mesh.primitive_cube_add_gizmo.dat
133share/blender/${PKGVERSION}/datafiles/icons/ops.mesh.primitive_cylinder_add_gizmo.dat 136share/blender/${PKGVERSION}/datafiles/icons/ops.mesh.primitive_cylinder_add_gizmo.dat
134share/blender/${PKGVERSION}/datafiles/icons/ops.mesh.primitive_grid_add_gizmo.dat 137share/blender/${PKGVERSION}/datafiles/icons/ops.mesh.primitive_grid_add_gizmo.dat
135share/blender/${PKGVERSION}/datafiles/icons/ops.mesh.primitive_sphere_add_gizmo.dat 138share/blender/${PKGVERSION}/datafiles/icons/ops.mesh.primitive_sphere_add_gizmo.dat
136share/blender/${PKGVERSION}/datafiles/icons/ops.mesh.primitive_torus_add_gizmo.dat 139share/blender/${PKGVERSION}/datafiles/icons/ops.mesh.primitive_torus_add_gizmo.dat
137share/blender/${PKGVERSION}/datafiles/icons/ops.mesh.rip.dat 140share/blender/${PKGVERSION}/datafiles/icons/ops.mesh.rip.dat
138share/blender/${PKGVERSION}/datafiles/icons/ops.mesh.rip_edge.dat 141share/blender/${PKGVERSION}/datafiles/icons/ops.mesh.rip_edge.dat
139share/blender/${PKGVERSION}/datafiles/icons/ops.mesh.spin.dat 142share/blender/${PKGVERSION}/datafiles/icons/ops.mesh.spin.dat
140share/blender/${PKGVERSION}/datafiles/icons/ops.mesh.spin.duplicate.dat 143share/blender/${PKGVERSION}/datafiles/icons/ops.mesh.spin.duplicate.dat
141share/blender/${PKGVERSION}/datafiles/icons/ops.mesh.vertices_smooth.dat 144share/blender/${PKGVERSION}/datafiles/icons/ops.mesh.vertices_smooth.dat
142share/blender/${PKGVERSION}/datafiles/icons/ops.node.links_cut.dat 145share/blender/${PKGVERSION}/datafiles/icons/ops.node.links_cut.dat
 146share/blender/${PKGVERSION}/datafiles/icons/ops.paint.eyedropper_add.dat
143share/blender/${PKGVERSION}/datafiles/icons/ops.paint.vertex_color_fill.dat 147share/blender/${PKGVERSION}/datafiles/icons/ops.paint.vertex_color_fill.dat
144share/blender/${PKGVERSION}/datafiles/icons/ops.paint.weight_fill.dat 148share/blender/${PKGVERSION}/datafiles/icons/ops.paint.weight_fill.dat
145share/blender/${PKGVERSION}/datafiles/icons/ops.paint.weight_gradient.dat 149share/blender/${PKGVERSION}/datafiles/icons/ops.paint.weight_gradient.dat
146share/blender/${PKGVERSION}/datafiles/icons/ops.paint.weight_sample.dat 150share/blender/${PKGVERSION}/datafiles/icons/ops.paint.weight_sample.dat
147share/blender/${PKGVERSION}/datafiles/icons/ops.paint.weight_sample_group.dat 151share/blender/${PKGVERSION}/datafiles/icons/ops.paint.weight_sample_group.dat
148share/blender/${PKGVERSION}/datafiles/icons/ops.pose.breakdowner.dat 152share/blender/${PKGVERSION}/datafiles/icons/ops.pose.breakdowner.dat
149share/blender/${PKGVERSION}/datafiles/icons/ops.pose.push.dat 153share/blender/${PKGVERSION}/datafiles/icons/ops.pose.push.dat
150share/blender/${PKGVERSION}/datafiles/icons/ops.pose.relax.dat 154share/blender/${PKGVERSION}/datafiles/icons/ops.pose.relax.dat
151share/blender/${PKGVERSION}/datafiles/icons/ops.sculpt.border_hide.dat 155share/blender/${PKGVERSION}/datafiles/icons/ops.sculpt.border_hide.dat
152share/blender/${PKGVERSION}/datafiles/icons/ops.sculpt.border_mask.dat 156share/blender/${PKGVERSION}/datafiles/icons/ops.sculpt.border_mask.dat
153share/blender/${PKGVERSION}/datafiles/icons/ops.sculpt.lasso_mask.dat 157share/blender/${PKGVERSION}/datafiles/icons/ops.sculpt.lasso_mask.dat
154share/blender/${PKGVERSION}/datafiles/icons/ops.sculpt.mesh_filter.dat 158share/blender/${PKGVERSION}/datafiles/icons/ops.sculpt.mesh_filter.dat
155share/blender/${PKGVERSION}/datafiles/icons/ops.transform.bone_envelope.dat 159share/blender/${PKGVERSION}/datafiles/icons/ops.transform.bone_envelope.dat
@@ -232,26 +236,33 @@ share/blender/${PKGVERSION}/datafiles/st @@ -232,26 +236,33 @@ share/blender/${PKGVERSION}/datafiles/st
232share/blender/${PKGVERSION}/datafiles/studiolights/studio/basic.sl 236share/blender/${PKGVERSION}/datafiles/studiolights/studio/basic.sl
233share/blender/${PKGVERSION}/datafiles/studiolights/studio/outdoor.sl 237share/blender/${PKGVERSION}/datafiles/studiolights/studio/outdoor.sl
234share/blender/${PKGVERSION}/datafiles/studiolights/studio/rim.sl 238share/blender/${PKGVERSION}/datafiles/studiolights/studio/rim.sl
235share/blender/${PKGVERSION}/datafiles/studiolights/studio/studio.sl 239share/blender/${PKGVERSION}/datafiles/studiolights/studio/studio.sl
236share/blender/${PKGVERSION}/datafiles/studiolights/world/city.exr 240share/blender/${PKGVERSION}/datafiles/studiolights/world/city.exr
237share/blender/${PKGVERSION}/datafiles/studiolights/world/courtyard.exr 241share/blender/${PKGVERSION}/datafiles/studiolights/world/courtyard.exr
238share/blender/${PKGVERSION}/datafiles/studiolights/world/forest.exr 242share/blender/${PKGVERSION}/datafiles/studiolights/world/forest.exr
239share/blender/${PKGVERSION}/datafiles/studiolights/world/interior.exr 243share/blender/${PKGVERSION}/datafiles/studiolights/world/interior.exr
240share/blender/${PKGVERSION}/datafiles/studiolights/world/license.txt 244share/blender/${PKGVERSION}/datafiles/studiolights/world/license.txt
241share/blender/${PKGVERSION}/datafiles/studiolights/world/night.exr 245share/blender/${PKGVERSION}/datafiles/studiolights/world/night.exr
242share/blender/${PKGVERSION}/datafiles/studiolights/world/studio.exr 246share/blender/${PKGVERSION}/datafiles/studiolights/world/studio.exr
243share/blender/${PKGVERSION}/datafiles/studiolights/world/sunrise.exr 247share/blender/${PKGVERSION}/datafiles/studiolights/world/sunrise.exr
244share/blender/${PKGVERSION}/datafiles/studiolights/world/sunset.exr 248share/blender/${PKGVERSION}/datafiles/studiolights/world/sunset.exr
 249share/blender/${PKGVERSION}/scripts/addons/add_camera_rigs/__init__.py
 250share/blender/${PKGVERSION}/scripts/addons/add_camera_rigs/build_rigs.py
 251share/blender/${PKGVERSION}/scripts/addons/add_camera_rigs/composition_guides_menu.py
 252share/blender/${PKGVERSION}/scripts/addons/add_camera_rigs/create_widgets.py
 253share/blender/${PKGVERSION}/scripts/addons/add_camera_rigs/operators.py
 254share/blender/${PKGVERSION}/scripts/addons/add_camera_rigs/prefs.py
 255share/blender/${PKGVERSION}/scripts/addons/add_camera_rigs/ui_panels.py
245share/blender/${PKGVERSION}/scripts/addons/add_curve_extra_objects/__init__.py 256share/blender/${PKGVERSION}/scripts/addons/add_curve_extra_objects/__init__.py
246share/blender/${PKGVERSION}/scripts/addons/add_curve_extra_objects/add_curve_aceous_galore.py 257share/blender/${PKGVERSION}/scripts/addons/add_curve_extra_objects/add_curve_aceous_galore.py
247share/blender/${PKGVERSION}/scripts/addons/add_curve_extra_objects/add_curve_braid.py 258share/blender/${PKGVERSION}/scripts/addons/add_curve_extra_objects/add_curve_braid.py
248share/blender/${PKGVERSION}/scripts/addons/add_curve_extra_objects/add_curve_celtic_links.py 259share/blender/${PKGVERSION}/scripts/addons/add_curve_extra_objects/add_curve_celtic_links.py
249share/blender/${PKGVERSION}/scripts/addons/add_curve_extra_objects/add_curve_curly.py 260share/blender/${PKGVERSION}/scripts/addons/add_curve_extra_objects/add_curve_curly.py
250share/blender/${PKGVERSION}/scripts/addons/add_curve_extra_objects/add_curve_simple.py 261share/blender/${PKGVERSION}/scripts/addons/add_curve_extra_objects/add_curve_simple.py
251share/blender/${PKGVERSION}/scripts/addons/add_curve_extra_objects/add_curve_spirals.py 262share/blender/${PKGVERSION}/scripts/addons/add_curve_extra_objects/add_curve_spirals.py
252share/blender/${PKGVERSION}/scripts/addons/add_curve_extra_objects/add_curve_spirofit_bouncespline.py 263share/blender/${PKGVERSION}/scripts/addons/add_curve_extra_objects/add_curve_spirofit_bouncespline.py
253share/blender/${PKGVERSION}/scripts/addons/add_curve_extra_objects/add_curve_torus_knots.py 264share/blender/${PKGVERSION}/scripts/addons/add_curve_extra_objects/add_curve_torus_knots.py
254share/blender/${PKGVERSION}/scripts/addons/add_curve_extra_objects/add_surface_plane_cone.py 265share/blender/${PKGVERSION}/scripts/addons/add_curve_extra_objects/add_surface_plane_cone.py
255share/blender/${PKGVERSION}/scripts/addons/add_curve_extra_objects/beveltaper_curve.py 266share/blender/${PKGVERSION}/scripts/addons/add_curve_extra_objects/beveltaper_curve.py
256share/blender/${PKGVERSION}/scripts/addons/add_curve_ivygen.py 267share/blender/${PKGVERSION}/scripts/addons/add_curve_ivygen.py
257share/blender/${PKGVERSION}/scripts/addons/add_curve_sapling/__init__.py 268share/blender/${PKGVERSION}/scripts/addons/add_curve_sapling/__init__.py
@@ -272,42 +283,92 @@ share/blender/${PKGVERSION}/scripts/addo @@ -272,42 +283,92 @@ share/blender/${PKGVERSION}/scripts/addo
272share/blender/${PKGVERSION}/scripts/addons/add_mesh_discombobulator/mesh_discombobulator.py 283share/blender/${PKGVERSION}/scripts/addons/add_mesh_discombobulator/mesh_discombobulator.py
273share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/Blocks.py 284share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/Blocks.py
274share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/Wallfactory.py 285share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/Wallfactory.py
275share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/__init__.py 286share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/__init__.py
276share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_empty_as_parent.py 287share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_empty_as_parent.py
277share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_3d_function_surface.py 288share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_3d_function_surface.py
278share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_beam_builder.py 289share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_beam_builder.py
279share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_gears.py 290share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_gears.py
280share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_gemstones.py 291share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_gemstones.py
281share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_honeycomb.py 292share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_honeycomb.py
282share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_menger_sponge.py 293share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_menger_sponge.py
283share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_pipe_joint.py 294share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_pipe_joint.py
284share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_pyramid.py 295share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_pyramid.py
 296share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_rocks/__init__.py
 297share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_rocks/add_mesh_rocks.xml
 298share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_rocks/factory.xml
 299share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_rocks/randomize_texture.py
 300share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_rocks/rockgen.py
 301share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_rocks/settings.py
 302share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_rocks/utils.py
285share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_round_brilliant.py 303share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_round_brilliant.py
286share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_round_cube.py 304share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_round_cube.py
287share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_solid.py 305share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_solid.py
288share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_star.py 306share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_star.py
289share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_supertoroid.py 307share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_supertoroid.py
290share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_teapot.py 308share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_teapot.py
291share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_torusknot.py 309share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_torusknot.py
292share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_triangles.py 310share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_triangles.py
293share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_twisted_torus.py 311share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_twisted_torus.py
294share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_vertex.py 312share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/add_mesh_vertex.py
 313share/blender/${PKGVERSION}/scripts/addons/add_mesh_extra_objects/utils.py
295share/blender/${PKGVERSION}/scripts/addons/add_mesh_geodesic_domes/__init__.py 314share/blender/${PKGVERSION}/scripts/addons/add_mesh_geodesic_domes/__init__.py
296share/blender/${PKGVERSION}/scripts/addons/add_mesh_geodesic_domes/add_shape_geodesic.py 315share/blender/${PKGVERSION}/scripts/addons/add_mesh_geodesic_domes/add_shape_geodesic.py
297share/blender/${PKGVERSION}/scripts/addons/add_mesh_geodesic_domes/forms_271.py 316share/blender/${PKGVERSION}/scripts/addons/add_mesh_geodesic_domes/forms_271.py
298share/blender/${PKGVERSION}/scripts/addons/add_mesh_geodesic_domes/geodesic_classes_271.py 317share/blender/${PKGVERSION}/scripts/addons/add_mesh_geodesic_domes/geodesic_classes_271.py
299share/blender/${PKGVERSION}/scripts/addons/add_mesh_geodesic_domes/third_domes_panel_271.py 318share/blender/${PKGVERSION}/scripts/addons/add_mesh_geodesic_domes/third_domes_panel_271.py
300share/blender/${PKGVERSION}/scripts/addons/add_mesh_geodesic_domes/vefm_271.py 319share/blender/${PKGVERSION}/scripts/addons/add_mesh_geodesic_domes/vefm_271.py
 320share/blender/${PKGVERSION}/scripts/addons/amaranth/__init__.py
 321share/blender/${PKGVERSION}/scripts/addons/amaranth/animation/__init__.py
 322share/blender/${PKGVERSION}/scripts/addons/amaranth/animation/frame_current.py
 323share/blender/${PKGVERSION}/scripts/addons/amaranth/animation/jump_frames.py
 324share/blender/${PKGVERSION}/scripts/addons/amaranth/animation/motion_paths.py
 325share/blender/${PKGVERSION}/scripts/addons/amaranth/animation/timeline_extra_info.py
 326share/blender/${PKGVERSION}/scripts/addons/amaranth/misc/__init__.py
 327share/blender/${PKGVERSION}/scripts/addons/amaranth/misc/color_management.py
 328share/blender/${PKGVERSION}/scripts/addons/amaranth/misc/dupli_group_id.py
 329share/blender/${PKGVERSION}/scripts/addons/amaranth/misc/sequencer_extra_info.py
 330share/blender/${PKGVERSION}/scripts/addons/amaranth/misc/toggle_wire.py
 331share/blender/${PKGVERSION}/scripts/addons/amaranth/modeling/__init__.py
 332share/blender/${PKGVERSION}/scripts/addons/amaranth/modeling/symmetry_tools.py
 333share/blender/${PKGVERSION}/scripts/addons/amaranth/node_editor/__init__.py
 334share/blender/${PKGVERSION}/scripts/addons/amaranth/node_editor/display_image.py
 335share/blender/${PKGVERSION}/scripts/addons/amaranth/node_editor/id_panel.py
 336share/blender/${PKGVERSION}/scripts/addons/amaranth/node_editor/node_shader_extra.py
 337share/blender/${PKGVERSION}/scripts/addons/amaranth/node_editor/node_stats.py
 338share/blender/${PKGVERSION}/scripts/addons/amaranth/node_editor/normal_node.py
 339share/blender/${PKGVERSION}/scripts/addons/amaranth/node_editor/simplify_nodes.py
 340share/blender/${PKGVERSION}/scripts/addons/amaranth/node_editor/switch_material.py
 341share/blender/${PKGVERSION}/scripts/addons/amaranth/node_editor/templates/__init__.py
 342share/blender/${PKGVERSION}/scripts/addons/amaranth/node_editor/templates/vectorblur.py
 343share/blender/${PKGVERSION}/scripts/addons/amaranth/node_editor/templates/vignette.py
 344share/blender/${PKGVERSION}/scripts/addons/amaranth/prefs.py
 345share/blender/${PKGVERSION}/scripts/addons/amaranth/render/__init__.py
 346share/blender/${PKGVERSION}/scripts/addons/amaranth/render/border_camera.py
 347share/blender/${PKGVERSION}/scripts/addons/amaranth/render/final_resolution.py
 348share/blender/${PKGVERSION}/scripts/addons/amaranth/render/meshlight_add.py
 349share/blender/${PKGVERSION}/scripts/addons/amaranth/render/meshlight_select.py
 350share/blender/${PKGVERSION}/scripts/addons/amaranth/render/passepartout.py
 351share/blender/${PKGVERSION}/scripts/addons/amaranth/render/render_output_z.py
 352share/blender/${PKGVERSION}/scripts/addons/amaranth/render/samples_scene.py
 353share/blender/${PKGVERSION}/scripts/addons/amaranth/scene/__init__.py
 354share/blender/${PKGVERSION}/scripts/addons/amaranth/scene/current_blend.py
 355share/blender/${PKGVERSION}/scripts/addons/amaranth/scene/debug.py
 356share/blender/${PKGVERSION}/scripts/addons/amaranth/scene/goto_library.py
 357share/blender/${PKGVERSION}/scripts/addons/amaranth/scene/material_remove_unassigned.py
 358share/blender/${PKGVERSION}/scripts/addons/amaranth/scene/refresh.py
 359share/blender/${PKGVERSION}/scripts/addons/amaranth/scene/save_reload.py
 360share/blender/${PKGVERSION}/scripts/addons/amaranth/scene/stats.py
 361share/blender/${PKGVERSION}/scripts/addons/amaranth/utils.py
301share/blender/${PKGVERSION}/scripts/addons/animation_add_corrective_shape_key.py 362share/blender/${PKGVERSION}/scripts/addons/animation_add_corrective_shape_key.py
302share/blender/${PKGVERSION}/scripts/addons/animation_animall.py 363share/blender/${PKGVERSION}/scripts/addons/animation_animall.py
303share/blender/${PKGVERSION}/scripts/addons/ant_landscape/ErosionR.txt 364share/blender/${PKGVERSION}/scripts/addons/ant_landscape/ErosionR.txt
304share/blender/${PKGVERSION}/scripts/addons/ant_landscape/__init__.py 365share/blender/${PKGVERSION}/scripts/addons/ant_landscape/__init__.py
305share/blender/${PKGVERSION}/scripts/addons/ant_landscape/add_mesh_ant_landscape.py 366share/blender/${PKGVERSION}/scripts/addons/ant_landscape/add_mesh_ant_landscape.py
306share/blender/${PKGVERSION}/scripts/addons/ant_landscape/ant_functions.py 367share/blender/${PKGVERSION}/scripts/addons/ant_landscape/ant_functions.py
307share/blender/${PKGVERSION}/scripts/addons/ant_landscape/ant_noise.py 368share/blender/${PKGVERSION}/scripts/addons/ant_landscape/ant_noise.py
308share/blender/${PKGVERSION}/scripts/addons/ant_landscape/eroder.py 369share/blender/${PKGVERSION}/scripts/addons/ant_landscape/eroder.py
309share/blender/${PKGVERSION}/scripts/addons/ant_landscape/mesh_ant_displace.py 370share/blender/${PKGVERSION}/scripts/addons/ant_landscape/mesh_ant_displace.py
310share/blender/${PKGVERSION}/scripts/addons/ant_landscape/stats.py 371share/blender/${PKGVERSION}/scripts/addons/ant_landscape/stats.py
311share/blender/${PKGVERSION}/scripts/addons/ant_landscape/test.py 372share/blender/${PKGVERSION}/scripts/addons/ant_landscape/test.py
312share/blender/${PKGVERSION}/scripts/addons/ant_landscape/utils.py 373share/blender/${PKGVERSION}/scripts/addons/ant_landscape/utils.py
313share/blender/${PKGVERSION}/scripts/addons/archimesh/__init__.py 374share/blender/${PKGVERSION}/scripts/addons/archimesh/__init__.py
@@ -431,60 +492,63 @@ share/blender/${PKGVERSION}/scripts/addo @@ -431,60 +492,63 @@ share/blender/${PKGVERSION}/scripts/addo
431share/blender/${PKGVERSION}/scripts/addons/blenderkit/asset_inspector.py 492share/blender/${PKGVERSION}/scripts/addons/blenderkit/asset_inspector.py
432share/blender/${PKGVERSION}/scripts/addons/blenderkit/autothumb.py 493share/blender/${PKGVERSION}/scripts/addons/blenderkit/autothumb.py
433share/blender/${PKGVERSION}/scripts/addons/blenderkit/autothumb_material_bg.py 494share/blender/${PKGVERSION}/scripts/addons/blenderkit/autothumb_material_bg.py
434share/blender/${PKGVERSION}/scripts/addons/blenderkit/autothumb_model_bg.py 495share/blender/${PKGVERSION}/scripts/addons/blenderkit/autothumb_model_bg.py
435share/blender/${PKGVERSION}/scripts/addons/blenderkit/bg_blender.py 496share/blender/${PKGVERSION}/scripts/addons/blenderkit/bg_blender.py
436share/blender/${PKGVERSION}/scripts/addons/blenderkit/bkit_oauth.py 497share/blender/${PKGVERSION}/scripts/addons/blenderkit/bkit_oauth.py
437share/blender/${PKGVERSION}/scripts/addons/blenderkit/blendfiles/cleaned.blend 498share/blender/${PKGVERSION}/scripts/addons/blenderkit/blendfiles/cleaned.blend
438share/blender/${PKGVERSION}/scripts/addons/blenderkit/blendfiles/material_thumbnailer_cycles.blend 499share/blender/${PKGVERSION}/scripts/addons/blenderkit/blendfiles/material_thumbnailer_cycles.blend
439share/blender/${PKGVERSION}/scripts/addons/blenderkit/blendfiles/thumbnailer.blend 500share/blender/${PKGVERSION}/scripts/addons/blenderkit/blendfiles/thumbnailer.blend
440share/blender/${PKGVERSION}/scripts/addons/blenderkit/categories.py 501share/blender/${PKGVERSION}/scripts/addons/blenderkit/categories.py
441share/blender/${PKGVERSION}/scripts/addons/blenderkit/colors.py 502share/blender/${PKGVERSION}/scripts/addons/blenderkit/colors.py
442share/blender/${PKGVERSION}/scripts/addons/blenderkit/data/categories.json 503share/blender/${PKGVERSION}/scripts/addons/blenderkit/data/categories.json
443share/blender/${PKGVERSION}/scripts/addons/blenderkit/download.py 504share/blender/${PKGVERSION}/scripts/addons/blenderkit/download.py
 505share/blender/${PKGVERSION}/scripts/addons/blenderkit/icons.py
444share/blender/${PKGVERSION}/scripts/addons/blenderkit/oauth.py 506share/blender/${PKGVERSION}/scripts/addons/blenderkit/oauth.py
445share/blender/${PKGVERSION}/scripts/addons/blenderkit/overrides.py 507share/blender/${PKGVERSION}/scripts/addons/blenderkit/overrides.py
446share/blender/${PKGVERSION}/scripts/addons/blenderkit/paths.py 508share/blender/${PKGVERSION}/scripts/addons/blenderkit/paths.py
447share/blender/${PKGVERSION}/scripts/addons/blenderkit/ratings.py 509share/blender/${PKGVERSION}/scripts/addons/blenderkit/ratings.py
448share/blender/${PKGVERSION}/scripts/addons/blenderkit/rerequests.py 510share/blender/${PKGVERSION}/scripts/addons/blenderkit/rerequests.py
449share/blender/${PKGVERSION}/scripts/addons/blenderkit/search.py 511share/blender/${PKGVERSION}/scripts/addons/blenderkit/search.py
450share/blender/${PKGVERSION}/scripts/addons/blenderkit/tasks_queue.py 512share/blender/${PKGVERSION}/scripts/addons/blenderkit/tasks_queue.py
451share/blender/${PKGVERSION}/scripts/addons/blenderkit/thumbnails/arrow_left.png 513share/blender/${PKGVERSION}/scripts/addons/blenderkit/thumbnails/arrow_left.png
452share/blender/${PKGVERSION}/scripts/addons/blenderkit/thumbnails/arrow_right.png 514share/blender/${PKGVERSION}/scripts/addons/blenderkit/thumbnails/arrow_right.png
453share/blender/${PKGVERSION}/scripts/addons/blenderkit/thumbnails/bar_slider.png 515share/blender/${PKGVERSION}/scripts/addons/blenderkit/thumbnails/bar_slider.png
 516share/blender/${PKGVERSION}/scripts/addons/blenderkit/thumbnails/flp.png
 517share/blender/${PKGVERSION}/scripts/addons/blenderkit/thumbnails/fp.png
454share/blender/${PKGVERSION}/scripts/addons/blenderkit/thumbnails/locked.png 518share/blender/${PKGVERSION}/scripts/addons/blenderkit/thumbnails/locked.png
455share/blender/${PKGVERSION}/scripts/addons/blenderkit/thumbnails/locked_large.png 519share/blender/${PKGVERSION}/scripts/addons/blenderkit/thumbnails/locked_large.png
456share/blender/${PKGVERSION}/scripts/addons/blenderkit/thumbnails/rating_ui.png 520share/blender/${PKGVERSION}/scripts/addons/blenderkit/thumbnails/rating_ui.png
457share/blender/${PKGVERSION}/scripts/addons/blenderkit/thumbnails/rating_ui_empty.png 521share/blender/${PKGVERSION}/scripts/addons/blenderkit/thumbnails/rating_ui_empty.png
458share/blender/${PKGVERSION}/scripts/addons/blenderkit/thumbnails/star_white.png 522share/blender/${PKGVERSION}/scripts/addons/blenderkit/thumbnails/star_white.png
459share/blender/${PKGVERSION}/scripts/addons/blenderkit/thumbnails/thumbnail_notready.jpg 523share/blender/${PKGVERSION}/scripts/addons/blenderkit/thumbnails/thumbnail_notready.jpg
460share/blender/${PKGVERSION}/scripts/addons/blenderkit/thumbnails/vs_deleted.png 524share/blender/${PKGVERSION}/scripts/addons/blenderkit/thumbnails/vs_deleted.png
461share/blender/${PKGVERSION}/scripts/addons/blenderkit/thumbnails/vs_on_hold.png 525share/blender/${PKGVERSION}/scripts/addons/blenderkit/thumbnails/vs_on_hold.png
462share/blender/${PKGVERSION}/scripts/addons/blenderkit/thumbnails/vs_ready.png 526share/blender/${PKGVERSION}/scripts/addons/blenderkit/thumbnails/vs_ready.png
 527share/blender/${PKGVERSION}/scripts/addons/blenderkit/thumbnails/vs_rejected.png
463share/blender/${PKGVERSION}/scripts/addons/blenderkit/thumbnails/vs_uploaded.png 528share/blender/${PKGVERSION}/scripts/addons/blenderkit/thumbnails/vs_uploaded.png
464share/blender/${PKGVERSION}/scripts/addons/blenderkit/thumbnails/vs_uploading.png 529share/blender/${PKGVERSION}/scripts/addons/blenderkit/thumbnails/vs_uploading.png
465share/blender/${PKGVERSION}/scripts/addons/blenderkit/ui.py 530share/blender/${PKGVERSION}/scripts/addons/blenderkit/ui.py
466share/blender/${PKGVERSION}/scripts/addons/blenderkit/ui_bgl.py 531share/blender/${PKGVERSION}/scripts/addons/blenderkit/ui_bgl.py
467share/blender/${PKGVERSION}/scripts/addons/blenderkit/ui_panels.py 532share/blender/${PKGVERSION}/scripts/addons/blenderkit/ui_panels.py
468share/blender/${PKGVERSION}/scripts/addons/blenderkit/upload.py 533share/blender/${PKGVERSION}/scripts/addons/blenderkit/upload.py
469share/blender/${PKGVERSION}/scripts/addons/blenderkit/upload_bg.py 534share/blender/${PKGVERSION}/scripts/addons/blenderkit/upload_bg.py
470share/blender/${PKGVERSION}/scripts/addons/blenderkit/utils.py 535share/blender/${PKGVERSION}/scripts/addons/blenderkit/utils.py
471share/blender/${PKGVERSION}/scripts/addons/blenderkit/version_checker.py 536share/blender/${PKGVERSION}/scripts/addons/blenderkit/version_checker.py
472share/blender/${PKGVERSION}/scripts/addons/bone_selection_sets.py 537share/blender/${PKGVERSION}/scripts/addons/bone_selection_sets.py
473share/blender/${PKGVERSION}/scripts/addons/btrace/__init__.py 538share/blender/${PKGVERSION}/scripts/addons/btrace/__init__.py
474share/blender/${PKGVERSION}/scripts/addons/btrace/bTrace.py 539share/blender/${PKGVERSION}/scripts/addons/btrace/bTrace.py
475share/blender/${PKGVERSION}/scripts/addons/btrace/bTrace_panel.py 540share/blender/${PKGVERSION}/scripts/addons/btrace/bTrace_panel.py
476share/blender/${PKGVERSION}/scripts/addons/btrace/bTrace_props.py 541share/blender/${PKGVERSION}/scripts/addons/btrace/bTrace_props.py
477share/blender/${PKGVERSION}/scripts/addons/camera_dolly_crane_rigs.py 
478share/blender/${PKGVERSION}/scripts/addons/camera_turnaround.py 542share/blender/${PKGVERSION}/scripts/addons/camera_turnaround.py
479share/blender/${PKGVERSION}/scripts/addons/curve_assign_shapekey.py 543share/blender/${PKGVERSION}/scripts/addons/curve_assign_shapekey.py
480share/blender/${PKGVERSION}/scripts/addons/curve_simplify.py 544share/blender/${PKGVERSION}/scripts/addons/curve_simplify.py
481share/blender/${PKGVERSION}/scripts/addons/curve_tools/__init__.py 545share/blender/${PKGVERSION}/scripts/addons/curve_tools/__init__.py
482share/blender/${PKGVERSION}/scripts/addons/curve_tools/auto_loft.py 546share/blender/${PKGVERSION}/scripts/addons/curve_tools/auto_loft.py
483share/blender/${PKGVERSION}/scripts/addons/curve_tools/cad.py 547share/blender/${PKGVERSION}/scripts/addons/curve_tools/cad.py
484share/blender/${PKGVERSION}/scripts/addons/curve_tools/curves.py 548share/blender/${PKGVERSION}/scripts/addons/curve_tools/curves.py
485share/blender/${PKGVERSION}/scripts/addons/curve_tools/exports.py 549share/blender/${PKGVERSION}/scripts/addons/curve_tools/exports.py
486share/blender/${PKGVERSION}/scripts/addons/curve_tools/fillet.py 550share/blender/${PKGVERSION}/scripts/addons/curve_tools/fillet.py
487share/blender/${PKGVERSION}/scripts/addons/curve_tools/internal.py 551share/blender/${PKGVERSION}/scripts/addons/curve_tools/internal.py
488share/blender/${PKGVERSION}/scripts/addons/curve_tools/intersections.py 552share/blender/${PKGVERSION}/scripts/addons/curve_tools/intersections.py
489share/blender/${PKGVERSION}/scripts/addons/curve_tools/mathematics.py 553share/blender/${PKGVERSION}/scripts/addons/curve_tools/mathematics.py
490share/blender/${PKGVERSION}/scripts/addons/curve_tools/operators.py 554share/blender/${PKGVERSION}/scripts/addons/curve_tools/operators.py
@@ -606,26 +670,27 @@ share/blender/${PKGVERSION}/scripts/addo @@ -606,26 +670,27 @@ share/blender/${PKGVERSION}/scripts/addo
606share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernel_path_surface.h 670share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernel_path_surface.h
607share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernel_path_volume.h 671share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernel_path_volume.h
608share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernel_profiling.h 672share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernel_profiling.h
609share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernel_projection.h 673share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernel_projection.h
610share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernel_queues.h 674share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernel_queues.h
611share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernel_random.h 675share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernel_random.h
612share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernel_shader.h 676share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernel_shader.h
613share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernel_shadow.h 677share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernel_shadow.h
614share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernel_subsurface.h 678share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernel_subsurface.h
615share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernel_textures.h 679share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernel_textures.h
616share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernel_types.h 680share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernel_types.h
617share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernel_volume.h 681share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernel_volume.h
618share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernel_work_stealing.h 682share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernel_work_stealing.h
 683share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernel_write_passes.h
619share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernels/cuda/filter.cu 684share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernels/cuda/filter.cu
620share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernels/cuda/kernel.cu 685share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernels/cuda/kernel.cu
621share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernels/cuda/kernel_config.h 686share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernels/cuda/kernel_config.h
622share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernels/cuda/kernel_cuda_image.h 687share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernels/cuda/kernel_cuda_image.h
623share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernels/cuda/kernel_split.cu 688share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernels/cuda/kernel_split.cu
624share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernels/opencl/filter.cl 689share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernels/opencl/filter.cl
625share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernels/opencl/kernel_background.cl 690share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernels/opencl/kernel_background.cl
626share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernels/opencl/kernel_bake.cl 691share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernels/opencl/kernel_bake.cl
627share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernels/opencl/kernel_base.cl 692share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernels/opencl/kernel_base.cl
628share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernels/opencl/kernel_buffer_update.cl 693share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernels/opencl/kernel_buffer_update.cl
629share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernels/opencl/kernel_data_init.cl 694share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernels/opencl/kernel_data_init.cl
630share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernels/opencl/kernel_direct_lighting.cl 695share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernels/opencl/kernel_direct_lighting.cl
631share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernels/opencl/kernel_displace.cl 696share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/kernels/opencl/kernel_displace.cl
@@ -665,26 +730,27 @@ share/blender/${PKGVERSION}/scripts/addo @@ -665,26 +730,27 @@ share/blender/${PKGVERSION}/scripts/addo
665share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/split/kernel_queue_enqueue.h 730share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/split/kernel_queue_enqueue.h
666share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/split/kernel_scene_intersect.h 731share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/split/kernel_scene_intersect.h
667share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/split/kernel_shader_eval.h 732share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/split/kernel_shader_eval.h
668share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/split/kernel_shader_setup.h 733share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/split/kernel_shader_setup.h
669share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/split/kernel_shader_sort.h 734share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/split/kernel_shader_sort.h
670share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/split/kernel_shadow_blocked_ao.h 735share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/split/kernel_shadow_blocked_ao.h
671share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/split/kernel_shadow_blocked_dl.h 736share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/split/kernel_shadow_blocked_dl.h
672share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/split/kernel_split_common.h 737share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/split/kernel_split_common.h
673share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/split/kernel_split_data.h 738share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/split/kernel_split_data.h
674share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/split/kernel_split_data_types.h 739share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/split/kernel_split_data_types.h
675share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/split/kernel_subsurface_scatter.h 740share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/split/kernel_subsurface_scatter.h
676share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/svm/svm.h 741share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/svm/svm.h
677share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/svm/svm_ao.h 742share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/svm/svm_ao.h
 743share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/svm/svm_aov.h
678share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/svm/svm_attribute.h 744share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/svm/svm_attribute.h
679share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/svm/svm_bevel.h 745share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/svm/svm_bevel.h
680share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/svm/svm_blackbody.h 746share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/svm/svm_blackbody.h
681share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/svm/svm_brick.h 747share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/svm/svm_brick.h
682share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/svm/svm_brightness.h 748share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/svm/svm_brightness.h
683share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/svm/svm_bump.h 749share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/svm/svm_bump.h
684share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/svm/svm_camera.h 750share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/svm/svm_camera.h
685share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/svm/svm_checker.h 751share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/svm/svm_checker.h
686share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/svm/svm_clamp.h 752share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/svm/svm_clamp.h
687share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/svm/svm_closure.h 753share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/svm/svm_closure.h
688share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/svm/svm_color_util.h 754share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/svm/svm_color_util.h
689share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/svm/svm_convert.h 755share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/svm/svm_convert.h
690share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/svm/svm_displace.h 756share/blender/${PKGVERSION}/scripts/addons/cycles/source/kernel/svm/svm_displace.h
@@ -837,26 +903,29 @@ share/blender/${PKGVERSION}/scripts/addo @@ -837,26 +903,29 @@ share/blender/${PKGVERSION}/scripts/addo
837share/blender/${PKGVERSION}/scripts/addons/io_import_dxf/dxfgrabber/sections.py 903share/blender/${PKGVERSION}/scripts/addons/io_import_dxf/dxfgrabber/sections.py
838share/blender/${PKGVERSION}/scripts/addons/io_import_dxf/dxfgrabber/styles.py 904share/blender/${PKGVERSION}/scripts/addons/io_import_dxf/dxfgrabber/styles.py
839share/blender/${PKGVERSION}/scripts/addons/io_import_dxf/dxfgrabber/tablessection.py 905share/blender/${PKGVERSION}/scripts/addons/io_import_dxf/dxfgrabber/tablessection.py
840share/blender/${PKGVERSION}/scripts/addons/io_import_dxf/dxfgrabber/tags.py 906share/blender/${PKGVERSION}/scripts/addons/io_import_dxf/dxfgrabber/tags.py
841share/blender/${PKGVERSION}/scripts/addons/io_import_dxf/dxfimport/__init__.py 907share/blender/${PKGVERSION}/scripts/addons/io_import_dxf/dxfimport/__init__.py
842share/blender/${PKGVERSION}/scripts/addons/io_import_dxf/dxfimport/convert.py 908share/blender/${PKGVERSION}/scripts/addons/io_import_dxf/dxfimport/convert.py
843share/blender/${PKGVERSION}/scripts/addons/io_import_dxf/dxfimport/do.py 909share/blender/${PKGVERSION}/scripts/addons/io_import_dxf/dxfimport/do.py
844share/blender/${PKGVERSION}/scripts/addons/io_import_dxf/dxfimport/fake_entities.py 910share/blender/${PKGVERSION}/scripts/addons/io_import_dxf/dxfimport/fake_entities.py
845share/blender/${PKGVERSION}/scripts/addons/io_import_dxf/dxfimport/groupsort.py 911share/blender/${PKGVERSION}/scripts/addons/io_import_dxf/dxfimport/groupsort.py
846share/blender/${PKGVERSION}/scripts/addons/io_import_dxf/dxfimport/is_.py 912share/blender/${PKGVERSION}/scripts/addons/io_import_dxf/dxfimport/is_.py
847share/blender/${PKGVERSION}/scripts/addons/io_import_dxf/dxfimport/line_merger.py 913share/blender/${PKGVERSION}/scripts/addons/io_import_dxf/dxfimport/line_merger.py
848share/blender/${PKGVERSION}/scripts/addons/io_import_dxf/transverse_mercator.py 914share/blender/${PKGVERSION}/scripts/addons/io_import_dxf/transverse_mercator.py
849share/blender/${PKGVERSION}/scripts/addons/io_import_images_as_planes.py 915share/blender/${PKGVERSION}/scripts/addons/io_import_images_as_planes.py
 916share/blender/${PKGVERSION}/scripts/addons/io_import_palette/__init__.py
 917share/blender/${PKGVERSION}/scripts/addons/io_import_palette/import_ase.py
 918share/blender/${PKGVERSION}/scripts/addons/io_import_palette/import_krita.py
850share/blender/${PKGVERSION}/scripts/addons/io_mesh_atomic/__init__.py 919share/blender/${PKGVERSION}/scripts/addons/io_mesh_atomic/__init__.py
851share/blender/${PKGVERSION}/scripts/addons/io_mesh_atomic/atom_info.dat 920share/blender/${PKGVERSION}/scripts/addons/io_mesh_atomic/atom_info.dat
852share/blender/${PKGVERSION}/scripts/addons/io_mesh_atomic/pdb_export.py 921share/blender/${PKGVERSION}/scripts/addons/io_mesh_atomic/pdb_export.py
853share/blender/${PKGVERSION}/scripts/addons/io_mesh_atomic/pdb_gui.py 922share/blender/${PKGVERSION}/scripts/addons/io_mesh_atomic/pdb_gui.py
854share/blender/${PKGVERSION}/scripts/addons/io_mesh_atomic/pdb_import.py 923share/blender/${PKGVERSION}/scripts/addons/io_mesh_atomic/pdb_import.py
855share/blender/${PKGVERSION}/scripts/addons/io_mesh_atomic/utility_gui.py 924share/blender/${PKGVERSION}/scripts/addons/io_mesh_atomic/utility_gui.py
856share/blender/${PKGVERSION}/scripts/addons/io_mesh_atomic/utility_panel.py 925share/blender/${PKGVERSION}/scripts/addons/io_mesh_atomic/utility_panel.py
857share/blender/${PKGVERSION}/scripts/addons/io_mesh_atomic/xyz_export.py 926share/blender/${PKGVERSION}/scripts/addons/io_mesh_atomic/xyz_export.py
858share/blender/${PKGVERSION}/scripts/addons/io_mesh_atomic/xyz_gui.py 927share/blender/${PKGVERSION}/scripts/addons/io_mesh_atomic/xyz_gui.py
859share/blender/${PKGVERSION}/scripts/addons/io_mesh_atomic/xyz_import.py 928share/blender/${PKGVERSION}/scripts/addons/io_mesh_atomic/xyz_import.py
860share/blender/${PKGVERSION}/scripts/addons/io_mesh_ply/__init__.py 929share/blender/${PKGVERSION}/scripts/addons/io_mesh_ply/__init__.py
861share/blender/${PKGVERSION}/scripts/addons/io_mesh_ply/export_ply.py 930share/blender/${PKGVERSION}/scripts/addons/io_mesh_ply/export_ply.py
862share/blender/${PKGVERSION}/scripts/addons/io_mesh_ply/import_ply.py 931share/blender/${PKGVERSION}/scripts/addons/io_mesh_ply/import_ply.py
@@ -869,100 +938,100 @@ share/blender/${PKGVERSION}/scripts/addo @@ -869,100 +938,100 @@ share/blender/${PKGVERSION}/scripts/addo
869share/blender/${PKGVERSION}/scripts/addons/io_mesh_uv_layout/export_uv_svg.py 938share/blender/${PKGVERSION}/scripts/addons/io_mesh_uv_layout/export_uv_svg.py
870share/blender/${PKGVERSION}/scripts/addons/io_scene_fbx/__init__.py 939share/blender/${PKGVERSION}/scripts/addons/io_scene_fbx/__init__.py
871share/blender/${PKGVERSION}/scripts/addons/io_scene_fbx/data_types.py 940share/blender/${PKGVERSION}/scripts/addons/io_scene_fbx/data_types.py
872share/blender/${PKGVERSION}/scripts/addons/io_scene_fbx/encode_bin.py 941share/blender/${PKGVERSION}/scripts/addons/io_scene_fbx/encode_bin.py
873share/blender/${PKGVERSION}/scripts/addons/io_scene_fbx/export_fbx_bin.py 942share/blender/${PKGVERSION}/scripts/addons/io_scene_fbx/export_fbx_bin.py
874share/blender/${PKGVERSION}/scripts/addons/io_scene_fbx/fbx2json.py 943share/blender/${PKGVERSION}/scripts/addons/io_scene_fbx/fbx2json.py
875share/blender/${PKGVERSION}/scripts/addons/io_scene_fbx/fbx_utils.py 944share/blender/${PKGVERSION}/scripts/addons/io_scene_fbx/fbx_utils.py
876share/blender/${PKGVERSION}/scripts/addons/io_scene_fbx/import_fbx.py 945share/blender/${PKGVERSION}/scripts/addons/io_scene_fbx/import_fbx.py
877share/blender/${PKGVERSION}/scripts/addons/io_scene_fbx/json2fbx.py 946share/blender/${PKGVERSION}/scripts/addons/io_scene_fbx/json2fbx.py
878share/blender/${PKGVERSION}/scripts/addons/io_scene_fbx/parse_fbx.py 947share/blender/${PKGVERSION}/scripts/addons/io_scene_fbx/parse_fbx.py
879share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/__init__.py 948share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/__init__.py
880share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/com/gltf2_blender_conversion.py 949share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/com/gltf2_blender_conversion.py
881share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/com/gltf2_blender_data_path.py 950share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/com/gltf2_blender_data_path.py
882share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/com/gltf2_blender_image.py 951share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/com/gltf2_blender_extras.py
883share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/com/gltf2_blender_json.py 952share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/com/gltf2_blender_json.py
884share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/com/gltf2_blender_material_helpers.py 953share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/com/gltf2_blender_material_helpers.py
885share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/com/gltf2_blender_math.py 954share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/com/gltf2_blender_math.py
886share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_export.py 955share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_export.py
887share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_export_keys.py 956share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_export_keys.py
888share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_extract.py 957share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_extract.py
889share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather.py 958share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather.py
890share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_accessors.py 959share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_accessors.py
891share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_animation_channel_target.py 960share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_animation_channel_target.py
892share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_animation_channels.py 961share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_animation_channels.py
893share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_animation_sampler_keyframes.py 962share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_animation_sampler_keyframes.py
894share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_animation_samplers.py 963share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_animation_samplers.py
895share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_animations.py 964share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_animations.py
896share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_cache.py 965share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_cache.py
897share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_cameras.py 966share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_cameras.py
 967share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_drivers.py
898share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_image.py 968share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_image.py
899share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_joints.py 969share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_joints.py
900share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_light_spots.py 970share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_light_spots.py
901share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_lights.py 971share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_lights.py
902share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_material_normal_texture_info_class.py 972share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_material_normal_texture_info_class.py
903share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_material_occlusion_texture_info_class.py 973share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_material_occlusion_texture_info_class.py
904share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_materials.py 974share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_materials.py
905share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_materials_pbr_metallic_roughness.py 975share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_materials_pbr_metallic_roughness.py
906share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_mesh.py 976share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_mesh.py
907share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_nodes.py 977share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_nodes.py
908share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_primitive_attributes.py 978share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_primitive_attributes.py
909share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_primitives.py 979share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_primitives.py
910share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_sampler.py 980share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_sampler.py
911share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_skins.py 981share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_skins.py
912share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_texture.py 982share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_texture.py
913share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_texture_info.py 983share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_texture_info.py
914share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_generate_extras.py 
915share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_get.py 984share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_get.py
916share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gltf2_exporter.py 985share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gltf2_exporter.py
917share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_image.py 986share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_image.py
918share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_search_node_tree.py 987share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_search_node_tree.py
919share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_utils.py 988share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_utils.py
920share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_KHR_materials_pbrSpecularGlossiness.py 989share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_KHR_materials_pbrSpecularGlossiness.py
921share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_KHR_materials_unlit.py 990share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_KHR_materials_unlit.py
922share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_animation.py 991share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_animation.py
923share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_animation_bone.py 992share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_animation_bone.py
924share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_animation_node.py 993share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_animation_node.py
925share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_animation_utils.py 994share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_animation_utils.py
926share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_animation_weight.py 995share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_animation_weight.py
927share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_camera.py 996share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_camera.py
928share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_gltf.py 997share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_gltf.py
929share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_image.py 998share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_image.py
930share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_light.py 999share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_light.py
931share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_map_emissive.py 1000share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_map_emissive.py
932share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_map_normal.py 1001share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_map_normal.py
933share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_map_occlusion.py 1002share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_map_occlusion.py
934share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_material.py 1003share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_material.py
 1004share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_material_utils.py
935share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_mesh.py 1005share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_mesh.py
936share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_node.py 1006share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_node.py
937share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_pbrMetallicRoughness.py 1007share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_pbrMetallicRoughness.py
938share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_primitive.py 1008share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_primitive.py
939share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_scene.py 1009share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_scene.py
940share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_skin.py 1010share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_skin.py
941share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_texture.py 
942share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/__init__.py 1011share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/__init__.py
943share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/com/gltf2_io.py 1012share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/com/gltf2_io.py
944share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/com/gltf2_io_color_management.py 1013share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/com/gltf2_io_color_management.py
945share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/com/gltf2_io_constants.py 1014share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/com/gltf2_io_constants.py
946share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/com/gltf2_io_debug.py 1015share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/com/gltf2_io_debug.py
947share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/com/gltf2_io_extensions.py 1016share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/com/gltf2_io_extensions.py
948share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/com/gltf2_io_image.py 
949share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/com/gltf2_io_lights_punctual.py 1017share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/com/gltf2_io_lights_punctual.py
950share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/com/gltf2_io_trs.py 1018share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/com/gltf2_io_trs.py
951share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/exp/gltf2_io_binary_data.py 1019share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/exp/gltf2_io_binary_data.py
952share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/exp/gltf2_io_buffer.py 1020share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/exp/gltf2_io_buffer.py
953share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/exp/gltf2_io_draco_compression_extension.py 1021share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/exp/gltf2_io_draco_compression_extension.py
954share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/exp/gltf2_io_export.py 1022share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/exp/gltf2_io_export.py
955share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/exp/gltf2_io_image_data.py 1023share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/exp/gltf2_io_image_data.py
 1024share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/exp/gltf2_io_user_extensions.py
956share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/imp/__init__.py 1025share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/imp/__init__.py
957share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/imp/gltf2_io_binary.py 1026share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/imp/gltf2_io_binary.py
958share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/imp/gltf2_io_gltf.py 1027share/blender/${PKGVERSION}/scripts/addons/io_scene_gltf2/io/imp/gltf2_io_gltf.py
959share/blender/${PKGVERSION}/scripts/addons/io_scene_obj/__init__.py 1028share/blender/${PKGVERSION}/scripts/addons/io_scene_obj/__init__.py
960share/blender/${PKGVERSION}/scripts/addons/io_scene_obj/export_obj.py 1029share/blender/${PKGVERSION}/scripts/addons/io_scene_obj/export_obj.py
961share/blender/${PKGVERSION}/scripts/addons/io_scene_obj/import_obj.py 1030share/blender/${PKGVERSION}/scripts/addons/io_scene_obj/import_obj.py
962share/blender/${PKGVERSION}/scripts/addons/io_scene_x3d/__init__.py 1031share/blender/${PKGVERSION}/scripts/addons/io_scene_x3d/__init__.py
963share/blender/${PKGVERSION}/scripts/addons/io_scene_x3d/export_x3d.py 1032share/blender/${PKGVERSION}/scripts/addons/io_scene_x3d/export_x3d.py
964share/blender/${PKGVERSION}/scripts/addons/io_scene_x3d/import_x3d.py 1033share/blender/${PKGVERSION}/scripts/addons/io_scene_x3d/import_x3d.py
965share/blender/${PKGVERSION}/scripts/addons/io_shape_mdd/__init__.py 1034share/blender/${PKGVERSION}/scripts/addons/io_shape_mdd/__init__.py
966share/blender/${PKGVERSION}/scripts/addons/io_shape_mdd/export_mdd.py 1035share/blender/${PKGVERSION}/scripts/addons/io_shape_mdd/export_mdd.py
967share/blender/${PKGVERSION}/scripts/addons/io_shape_mdd/import_mdd.py 1036share/blender/${PKGVERSION}/scripts/addons/io_shape_mdd/import_mdd.py
968share/blender/${PKGVERSION}/scripts/addons/lighting_dynamic_sky.py 1037share/blender/${PKGVERSION}/scripts/addons/lighting_dynamic_sky.py
@@ -1005,48 +1074,47 @@ share/blender/${PKGVERSION}/scripts/addo @@ -1005,48 +1074,47 @@ share/blender/${PKGVERSION}/scripts/addo
1005share/blender/${PKGVERSION}/scripts/addons/magic_uv/ui/uvedit_uv_manipulation.py 1074share/blender/${PKGVERSION}/scripts/addons/magic_uv/ui/uvedit_uv_manipulation.py
1006share/blender/${PKGVERSION}/scripts/addons/magic_uv/ui/view3d_copy_paste_uv_editmode.py 1075share/blender/${PKGVERSION}/scripts/addons/magic_uv/ui/view3d_copy_paste_uv_editmode.py
1007share/blender/${PKGVERSION}/scripts/addons/magic_uv/ui/view3d_copy_paste_uv_objectmode.py 1076share/blender/${PKGVERSION}/scripts/addons/magic_uv/ui/view3d_copy_paste_uv_objectmode.py
1008share/blender/${PKGVERSION}/scripts/addons/magic_uv/ui/view3d_uv_manipulation.py 1077share/blender/${PKGVERSION}/scripts/addons/magic_uv/ui/view3d_uv_manipulation.py
1009share/blender/${PKGVERSION}/scripts/addons/magic_uv/ui/view3d_uv_mapping.py 1078share/blender/${PKGVERSION}/scripts/addons/magic_uv/ui/view3d_uv_mapping.py
1010share/blender/${PKGVERSION}/scripts/addons/magic_uv/updater.py 1079share/blender/${PKGVERSION}/scripts/addons/magic_uv/updater.py
1011share/blender/${PKGVERSION}/scripts/addons/magic_uv/utils/__init__.py 1080share/blender/${PKGVERSION}/scripts/addons/magic_uv/utils/__init__.py
1012share/blender/${PKGVERSION}/scripts/addons/magic_uv/utils/addon_updater.py 1081share/blender/${PKGVERSION}/scripts/addons/magic_uv/utils/addon_updater.py
1013share/blender/${PKGVERSION}/scripts/addons/magic_uv/utils/bl_class_registry.py 1082share/blender/${PKGVERSION}/scripts/addons/magic_uv/utils/bl_class_registry.py
1014share/blender/${PKGVERSION}/scripts/addons/magic_uv/utils/compatibility.py 1083share/blender/${PKGVERSION}/scripts/addons/magic_uv/utils/compatibility.py
1015share/blender/${PKGVERSION}/scripts/addons/magic_uv/utils/property_class_registry.py 1084share/blender/${PKGVERSION}/scripts/addons/magic_uv/utils/property_class_registry.py
1016share/blender/${PKGVERSION}/scripts/addons/materials_library_vx/__init__.py 1085share/blender/${PKGVERSION}/scripts/addons/materials_library_vx/__init__.py
1017share/blender/${PKGVERSION}/scripts/addons/materials_library_vx/categories.txt 1086share/blender/${PKGVERSION}/scripts/addons/materials_library_vx/categories.txt
1018share/blender/${PKGVERSION}/scripts/addons/materials_library_vx/cycles_materials.blend 1087share/blender/${PKGVERSION}/scripts/addons/materials_library_vx/sample_materials.blend
1019share/blender/${PKGVERSION}/scripts/addons/materials_library_vx/cycles_templates.blend 1088share/blender/${PKGVERSION}/scripts/addons/materials_library_vx/templates.blend
1020share/blender/${PKGVERSION}/scripts/addons/materials_utils/__init__.py 1089share/blender/${PKGVERSION}/scripts/addons/materials_utils/__init__.py
1021share/blender/${PKGVERSION}/scripts/addons/materials_utils/enum_values.py 1090share/blender/${PKGVERSION}/scripts/addons/materials_utils/enum_values.py
1022share/blender/${PKGVERSION}/scripts/addons/materials_utils/functions.py 1091share/blender/${PKGVERSION}/scripts/addons/materials_utils/functions.py
1023share/blender/${PKGVERSION}/scripts/addons/materials_utils/menus.py 1092share/blender/${PKGVERSION}/scripts/addons/materials_utils/menus.py
1024share/blender/${PKGVERSION}/scripts/addons/materials_utils/operators.py 1093share/blender/${PKGVERSION}/scripts/addons/materials_utils/operators.py
1025share/blender/${PKGVERSION}/scripts/addons/materials_utils/preferences.py 1094share/blender/${PKGVERSION}/scripts/addons/materials_utils/preferences.py
1026share/blender/${PKGVERSION}/scripts/addons/measureit/__init__.py 1095share/blender/${PKGVERSION}/scripts/addons/measureit/__init__.py
1027share/blender/${PKGVERSION}/scripts/addons/measureit/measureit_geometry.py 1096share/blender/${PKGVERSION}/scripts/addons/measureit/measureit_geometry.py
1028share/blender/${PKGVERSION}/scripts/addons/measureit/measureit_main.py 1097share/blender/${PKGVERSION}/scripts/addons/measureit/measureit_main.py
1029share/blender/${PKGVERSION}/scripts/addons/measureit/measureit_render.py 1098share/blender/${PKGVERSION}/scripts/addons/measureit/measureit_render.py
1030share/blender/${PKGVERSION}/scripts/addons/mesh_auto_mirror.py 1099share/blender/${PKGVERSION}/scripts/addons/mesh_auto_mirror.py
1031share/blender/${PKGVERSION}/scripts/addons/mesh_bsurfaces.py 1100share/blender/${PKGVERSION}/scripts/addons/mesh_bsurfaces.py
1032share/blender/${PKGVERSION}/scripts/addons/mesh_f2.py 1101share/blender/${PKGVERSION}/scripts/addons/mesh_f2.py
1033share/blender/${PKGVERSION}/scripts/addons/mesh_inset/__init__.py 1102share/blender/${PKGVERSION}/scripts/addons/mesh_inset/__init__.py
1034share/blender/${PKGVERSION}/scripts/addons/mesh_inset/geom.py 1103share/blender/${PKGVERSION}/scripts/addons/mesh_inset/geom.py
1035share/blender/${PKGVERSION}/scripts/addons/mesh_inset/model.py 1104share/blender/${PKGVERSION}/scripts/addons/mesh_inset/model.py
1036share/blender/${PKGVERSION}/scripts/addons/mesh_inset/offset.py 1105share/blender/${PKGVERSION}/scripts/addons/mesh_inset/offset.py
1037share/blender/${PKGVERSION}/scripts/addons/mesh_inset/triquad.py 1106share/blender/${PKGVERSION}/scripts/addons/mesh_inset/triquad.py
1038share/blender/${PKGVERSION}/scripts/addons/mesh_looptools.py 1107share/blender/${PKGVERSION}/scripts/addons/mesh_looptools.py
1039share/blender/${PKGVERSION}/scripts/addons/mesh_relax.py 
1040share/blender/${PKGVERSION}/scripts/addons/mesh_snap_utilities_line/__init__.py 1108share/blender/${PKGVERSION}/scripts/addons/mesh_snap_utilities_line/__init__.py
1041share/blender/${PKGVERSION}/scripts/addons/mesh_snap_utilities_line/common_classes.py 1109share/blender/${PKGVERSION}/scripts/addons/mesh_snap_utilities_line/common_classes.py
1042share/blender/${PKGVERSION}/scripts/addons/mesh_snap_utilities_line/common_utilities.py 1110share/blender/${PKGVERSION}/scripts/addons/mesh_snap_utilities_line/common_utilities.py
1043share/blender/${PKGVERSION}/scripts/addons/mesh_snap_utilities_line/drawing_utilities.py 1111share/blender/${PKGVERSION}/scripts/addons/mesh_snap_utilities_line/drawing_utilities.py
1044share/blender/${PKGVERSION}/scripts/addons/mesh_snap_utilities_line/icons/ops.mesh.snap_utilities_line.dat 1112share/blender/${PKGVERSION}/scripts/addons/mesh_snap_utilities_line/icons/ops.mesh.snap_utilities_line.dat
1045share/blender/${PKGVERSION}/scripts/addons/mesh_snap_utilities_line/keys.py 1113share/blender/${PKGVERSION}/scripts/addons/mesh_snap_utilities_line/keys.py
1046share/blender/${PKGVERSION}/scripts/addons/mesh_snap_utilities_line/navigation_ops.py 1114share/blender/${PKGVERSION}/scripts/addons/mesh_snap_utilities_line/navigation_ops.py
1047share/blender/${PKGVERSION}/scripts/addons/mesh_snap_utilities_line/op_line.py 1115share/blender/${PKGVERSION}/scripts/addons/mesh_snap_utilities_line/op_line.py
1048share/blender/${PKGVERSION}/scripts/addons/mesh_snap_utilities_line/preferences.py 1116share/blender/${PKGVERSION}/scripts/addons/mesh_snap_utilities_line/preferences.py
1049share/blender/${PKGVERSION}/scripts/addons/mesh_snap_utilities_line/snap_context_l/__init__.py 1117share/blender/${PKGVERSION}/scripts/addons/mesh_snap_utilities_line/snap_context_l/__init__.py
1050share/blender/${PKGVERSION}/scripts/addons/mesh_snap_utilities_line/snap_context_l/mesh_drawing.py 1118share/blender/${PKGVERSION}/scripts/addons/mesh_snap_utilities_line/snap_context_l/mesh_drawing.py
1051share/blender/${PKGVERSION}/scripts/addons/mesh_snap_utilities_line/snap_context_l/shaders/ID_color_frag.glsl 1119share/blender/${PKGVERSION}/scripts/addons/mesh_snap_utilities_line/snap_context_l/shaders/ID_color_frag.glsl
1052share/blender/${PKGVERSION}/scripts/addons/mesh_snap_utilities_line/snap_context_l/shaders/ID_color_vert.glsl 1120share/blender/${PKGVERSION}/scripts/addons/mesh_snap_utilities_line/snap_context_l/shaders/ID_color_vert.glsl
@@ -1077,40 +1145,46 @@ share/blender/${PKGVERSION}/scripts/addo @@ -1077,40 +1145,46 @@ share/blender/${PKGVERSION}/scripts/addo
1077share/blender/${PKGVERSION}/scripts/addons/mesh_tissue/utils.py 1145share/blender/${PKGVERSION}/scripts/addons/mesh_tissue/utils.py
1078share/blender/${PKGVERSION}/scripts/addons/mesh_tissue/uv_to_mesh.py 1146share/blender/${PKGVERSION}/scripts/addons/mesh_tissue/uv_to_mesh.py
1079share/blender/${PKGVERSION}/scripts/addons/mesh_tools/__init__.py 1147share/blender/${PKGVERSION}/scripts/addons/mesh_tools/__init__.py
1080share/blender/${PKGVERSION}/scripts/addons/mesh_tools/face_inset_fillet.py 1148share/blender/${PKGVERSION}/scripts/addons/mesh_tools/face_inset_fillet.py
1081share/blender/${PKGVERSION}/scripts/addons/mesh_tools/mesh_cut_faces.py 1149share/blender/${PKGVERSION}/scripts/addons/mesh_tools/mesh_cut_faces.py
1082share/blender/${PKGVERSION}/scripts/addons/mesh_tools/mesh_edge_roundifier.py 1150share/blender/${PKGVERSION}/scripts/addons/mesh_tools/mesh_edge_roundifier.py
1083share/blender/${PKGVERSION}/scripts/addons/mesh_tools/mesh_edges_floor_plan.py 1151share/blender/${PKGVERSION}/scripts/addons/mesh_tools/mesh_edges_floor_plan.py
1084share/blender/${PKGVERSION}/scripts/addons/mesh_tools/mesh_edges_length.py 1152share/blender/${PKGVERSION}/scripts/addons/mesh_tools/mesh_edges_length.py
1085share/blender/${PKGVERSION}/scripts/addons/mesh_tools/mesh_edgetools.py 1153share/blender/${PKGVERSION}/scripts/addons/mesh_tools/mesh_edgetools.py
1086share/blender/${PKGVERSION}/scripts/addons/mesh_tools/mesh_extrude_and_reshape.py 1154share/blender/${PKGVERSION}/scripts/addons/mesh_tools/mesh_extrude_and_reshape.py
1087share/blender/${PKGVERSION}/scripts/addons/mesh_tools/mesh_filletplus.py 1155share/blender/${PKGVERSION}/scripts/addons/mesh_tools/mesh_filletplus.py
1088share/blender/${PKGVERSION}/scripts/addons/mesh_tools/mesh_mextrude_plus.py 1156share/blender/${PKGVERSION}/scripts/addons/mesh_tools/mesh_mextrude_plus.py
1089share/blender/${PKGVERSION}/scripts/addons/mesh_tools/mesh_offset_edges.py 1157share/blender/${PKGVERSION}/scripts/addons/mesh_tools/mesh_offset_edges.py
 1158share/blender/${PKGVERSION}/scripts/addons/mesh_tools/mesh_relax.py
1090share/blender/${PKGVERSION}/scripts/addons/mesh_tools/mesh_vertex_chamfer.py 1159share/blender/${PKGVERSION}/scripts/addons/mesh_tools/mesh_vertex_chamfer.py
1091share/blender/${PKGVERSION}/scripts/addons/mesh_tools/pkhg_faces.py 1160share/blender/${PKGVERSION}/scripts/addons/mesh_tools/pkhg_faces.py
1092share/blender/${PKGVERSION}/scripts/addons/mesh_tools/random_vertices.py 1161share/blender/${PKGVERSION}/scripts/addons/mesh_tools/random_vertices.py
1093share/blender/${PKGVERSION}/scripts/addons/mesh_tools/split_solidify.py 1162share/blender/${PKGVERSION}/scripts/addons/mesh_tools/split_solidify.py
1094share/blender/${PKGVERSION}/scripts/addons/mesh_tools/vertex_align.py 1163share/blender/${PKGVERSION}/scripts/addons/mesh_tools/vertex_align.py
1095share/blender/${PKGVERSION}/scripts/addons/node_arrange.py 1164share/blender/${PKGVERSION}/scripts/addons/node_arrange.py
 1165share/blender/${PKGVERSION}/scripts/addons/node_presets.py
1096share/blender/${PKGVERSION}/scripts/addons/node_wrangler.py 1166share/blender/${PKGVERSION}/scripts/addons/node_wrangler.py
1097share/blender/${PKGVERSION}/scripts/addons/object_boolean_tools.py 1167share/blender/${PKGVERSION}/scripts/addons/object_boolean_tools.py
1098share/blender/${PKGVERSION}/scripts/addons/object_carver/__init__.py 1168share/blender/${PKGVERSION}/scripts/addons/object_carver/__init__.py
1099share/blender/${PKGVERSION}/scripts/addons/object_carver/carver_draw.py 1169share/blender/${PKGVERSION}/scripts/addons/object_carver/carver_draw.py
1100share/blender/${PKGVERSION}/scripts/addons/object_carver/carver_operator.py 1170share/blender/${PKGVERSION}/scripts/addons/object_carver/carver_operator.py
1101share/blender/${PKGVERSION}/scripts/addons/object_carver/carver_preferences.py 1171share/blender/${PKGVERSION}/scripts/addons/object_carver/carver_preferences.py
1102share/blender/${PKGVERSION}/scripts/addons/object_carver/carver_profils.py 1172share/blender/${PKGVERSION}/scripts/addons/object_carver/carver_profils.py
1103share/blender/${PKGVERSION}/scripts/addons/object_carver/carver_utils.py 1173share/blender/${PKGVERSION}/scripts/addons/object_carver/carver_utils.py
 1174share/blender/${PKGVERSION}/scripts/addons/object_collection_manager/__init__.py
 1175share/blender/${PKGVERSION}/scripts/addons/object_collection_manager/internals.py
 1176share/blender/${PKGVERSION}/scripts/addons/object_collection_manager/operators.py
 1177share/blender/${PKGVERSION}/scripts/addons/object_collection_manager/ui.py
1104share/blender/${PKGVERSION}/scripts/addons/object_color_rules.py 1178share/blender/${PKGVERSION}/scripts/addons/object_color_rules.py
1105share/blender/${PKGVERSION}/scripts/addons/object_edit_linked.py 1179share/blender/${PKGVERSION}/scripts/addons/object_edit_linked.py
1106share/blender/${PKGVERSION}/scripts/addons/object_fracture_cell/__init__.py 1180share/blender/${PKGVERSION}/scripts/addons/object_fracture_cell/__init__.py
1107share/blender/${PKGVERSION}/scripts/addons/object_fracture_cell/fracture_cell_calc.py 1181share/blender/${PKGVERSION}/scripts/addons/object_fracture_cell/fracture_cell_calc.py
1108share/blender/${PKGVERSION}/scripts/addons/object_fracture_cell/fracture_cell_setup.py 1182share/blender/${PKGVERSION}/scripts/addons/object_fracture_cell/fracture_cell_setup.py
1109share/blender/${PKGVERSION}/scripts/addons/object_print3d_utils/__init__.py 1183share/blender/${PKGVERSION}/scripts/addons/object_print3d_utils/__init__.py
1110share/blender/${PKGVERSION}/scripts/addons/object_print3d_utils/export.py 1184share/blender/${PKGVERSION}/scripts/addons/object_print3d_utils/export.py
1111share/blender/${PKGVERSION}/scripts/addons/object_print3d_utils/mesh_helpers.py 1185share/blender/${PKGVERSION}/scripts/addons/object_print3d_utils/mesh_helpers.py
1112share/blender/${PKGVERSION}/scripts/addons/object_print3d_utils/operators.py 1186share/blender/${PKGVERSION}/scripts/addons/object_print3d_utils/operators.py
1113share/blender/${PKGVERSION}/scripts/addons/object_print3d_utils/report.py 1187share/blender/${PKGVERSION}/scripts/addons/object_print3d_utils/report.py
1114share/blender/${PKGVERSION}/scripts/addons/object_print3d_utils/todo.rst 1188share/blender/${PKGVERSION}/scripts/addons/object_print3d_utils/todo.rst
1115share/blender/${PKGVERSION}/scripts/addons/object_print3d_utils/ui.py 1189share/blender/${PKGVERSION}/scripts/addons/object_print3d_utils/ui.py
1116share/blender/${PKGVERSION}/scripts/addons/object_scatter/__init__.py 1190share/blender/${PKGVERSION}/scripts/addons/object_scatter/__init__.py
@@ -1242,26 +1316,41 @@ share/blender/${PKGVERSION}/scripts/addo @@ -1242,26 +1316,41 @@ share/blender/${PKGVERSION}/scripts/addo
1242share/blender/${PKGVERSION}/scripts/addons/power_sequencer/scripts/BPSRender/bpsrender/bscripts/probe.py 1316share/blender/${PKGVERSION}/scripts/addons/power_sequencer/scripts/BPSRender/bpsrender/bscripts/probe.py
1243share/blender/${PKGVERSION}/scripts/addons/power_sequencer/scripts/BPSRender/bpsrender/bscripts/video.py 1317share/blender/${PKGVERSION}/scripts/addons/power_sequencer/scripts/BPSRender/bpsrender/bscripts/video.py
1244share/blender/${PKGVERSION}/scripts/addons/power_sequencer/scripts/BPSRender/bpsrender/calls.py 1318share/blender/${PKGVERSION}/scripts/addons/power_sequencer/scripts/BPSRender/bpsrender/calls.py
1245share/blender/${PKGVERSION}/scripts/addons/power_sequencer/scripts/BPSRender/bpsrender/commands.py 1319share/blender/${PKGVERSION}/scripts/addons/power_sequencer/scripts/BPSRender/bpsrender/commands.py
1246share/blender/${PKGVERSION}/scripts/addons/power_sequencer/scripts/BPSRender/bpsrender/config.py 1320share/blender/${PKGVERSION}/scripts/addons/power_sequencer/scripts/BPSRender/bpsrender/config.py
1247share/blender/${PKGVERSION}/scripts/addons/power_sequencer/scripts/BPSRender/bpsrender/helpers.py 1321share/blender/${PKGVERSION}/scripts/addons/power_sequencer/scripts/BPSRender/bpsrender/helpers.py
1248share/blender/${PKGVERSION}/scripts/addons/power_sequencer/scripts/BPSRender/bpsrender/setup.py 1322share/blender/${PKGVERSION}/scripts/addons/power_sequencer/scripts/BPSRender/bpsrender/setup.py
1249share/blender/${PKGVERSION}/scripts/addons/power_sequencer/scripts/BPSRender/setup.py 1323share/blender/${PKGVERSION}/scripts/addons/power_sequencer/scripts/BPSRender/setup.py
1250share/blender/${PKGVERSION}/scripts/addons/power_sequencer/ui/__init__.py 1324share/blender/${PKGVERSION}/scripts/addons/power_sequencer/ui/__init__.py
1251share/blender/${PKGVERSION}/scripts/addons/power_sequencer/ui/menu_contextual.py 1325share/blender/${PKGVERSION}/scripts/addons/power_sequencer/ui/menu_contextual.py
1252share/blender/${PKGVERSION}/scripts/addons/power_sequencer/ui/menu_toolbar.py 1326share/blender/${PKGVERSION}/scripts/addons/power_sequencer/ui/menu_toolbar.py
1253share/blender/${PKGVERSION}/scripts/addons/power_sequencer/utils/addon_auto_imports.py 1327share/blender/${PKGVERSION}/scripts/addons/power_sequencer/utils/addon_auto_imports.py
1254share/blender/${PKGVERSION}/scripts/addons/power_sequencer/utils/register_shortcuts.py 1328share/blender/${PKGVERSION}/scripts/addons/power_sequencer/utils/register_shortcuts.py
 1329share/blender/${PKGVERSION}/scripts/addons/precision_drawing_tools/__init__.py
 1330share/blender/${PKGVERSION}/scripts/addons/precision_drawing_tools/pdt_bix.py
 1331share/blender/${PKGVERSION}/scripts/addons/precision_drawing_tools/pdt_cad_module.py
 1332share/blender/${PKGVERSION}/scripts/addons/precision_drawing_tools/pdt_command.py
 1333share/blender/${PKGVERSION}/scripts/addons/precision_drawing_tools/pdt_command_functions.py
 1334share/blender/${PKGVERSION}/scripts/addons/precision_drawing_tools/pdt_design.py
 1335share/blender/${PKGVERSION}/scripts/addons/precision_drawing_tools/pdt_etof.py
 1336share/blender/${PKGVERSION}/scripts/addons/precision_drawing_tools/pdt_exception.py
 1337share/blender/${PKGVERSION}/scripts/addons/precision_drawing_tools/pdt_functions.py
 1338share/blender/${PKGVERSION}/scripts/addons/precision_drawing_tools/pdt_library.py
 1339share/blender/${PKGVERSION}/scripts/addons/precision_drawing_tools/pdt_menus.py
 1340share/blender/${PKGVERSION}/scripts/addons/precision_drawing_tools/pdt_msg_strings.py
 1341share/blender/${PKGVERSION}/scripts/addons/precision_drawing_tools/pdt_pivot_point.py
 1342share/blender/${PKGVERSION}/scripts/addons/precision_drawing_tools/pdt_view.py
 1343share/blender/${PKGVERSION}/scripts/addons/precision_drawing_tools/pdt_xall.py
1255share/blender/${PKGVERSION}/scripts/addons/presets/operator/curve.torus_knot_plus/13x8_wicker_globe.py 1344share/blender/${PKGVERSION}/scripts/addons/presets/operator/curve.torus_knot_plus/13x8_wicker_globe.py
1256share/blender/${PKGVERSION}/scripts/addons/presets/operator/curve.torus_knot_plus/7x6.py 1345share/blender/${PKGVERSION}/scripts/addons/presets/operator/curve.torus_knot_plus/7x6.py
1257share/blender/${PKGVERSION}/scripts/addons/presets/operator/curve.torus_knot_plus/9x9_color.py 1346share/blender/${PKGVERSION}/scripts/addons/presets/operator/curve.torus_knot_plus/9x9_color.py
1258share/blender/${PKGVERSION}/scripts/addons/presets/operator/curve.torus_knot_plus/braided_coil.py 1347share/blender/${PKGVERSION}/scripts/addons/presets/operator/curve.torus_knot_plus/braided_coil.py
1259share/blender/${PKGVERSION}/scripts/addons/presets/operator/curve.torus_knot_plus/flower_mesh_(2d).py 1348share/blender/${PKGVERSION}/scripts/addons/presets/operator/curve.torus_knot_plus/flower_mesh_(2d).py
1260share/blender/${PKGVERSION}/scripts/addons/presets/operator/curve.torus_knot_plus/slinky_knot.py 1349share/blender/${PKGVERSION}/scripts/addons/presets/operator/curve.torus_knot_plus/slinky_knot.py
1261share/blender/${PKGVERSION}/scripts/addons/presets/operator/curve.torus_knot_plus/snowflake_(2d).py 1350share/blender/${PKGVERSION}/scripts/addons/presets/operator/curve.torus_knot_plus/snowflake_(2d).py
1262share/blender/${PKGVERSION}/scripts/addons/presets/operator/curve.torus_knot_plus/sun_cross_(2d).py 1351share/blender/${PKGVERSION}/scripts/addons/presets/operator/curve.torus_knot_plus/sun_cross_(2d).py
1263share/blender/${PKGVERSION}/scripts/addons/presets/operator/curve.torus_knot_plus/tripple_dna.py 1352share/blender/${PKGVERSION}/scripts/addons/presets/operator/curve.torus_knot_plus/tripple_dna.py
1264share/blender/${PKGVERSION}/scripts/addons/presets/operator/curve.torus_knot_plus/wicker_basket.py 1353share/blender/${PKGVERSION}/scripts/addons/presets/operator/curve.torus_knot_plus/wicker_basket.py
1265share/blender/${PKGVERSION}/scripts/addons/presets/operator/mesh.bolt_add/default.py 1354share/blender/${PKGVERSION}/scripts/addons/presets/operator/mesh.bolt_add/default.py
1266share/blender/${PKGVERSION}/scripts/addons/presets/operator/mesh.bolt_add/m10.py 1355share/blender/${PKGVERSION}/scripts/addons/presets/operator/mesh.bolt_add/m10.py
1267share/blender/${PKGVERSION}/scripts/addons/presets/operator/mesh.bolt_add/m12.py 1356share/blender/${PKGVERSION}/scripts/addons/presets/operator/mesh.bolt_add/m12.py
@@ -1328,50 +1417,50 @@ share/blender/${PKGVERSION}/scripts/addo @@ -1328,50 +1417,50 @@ share/blender/${PKGVERSION}/scripts/addo
1328share/blender/${PKGVERSION}/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/hexahedron.py 1417share/blender/${PKGVERSION}/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/hexahedron.py
1329share/blender/${PKGVERSION}/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/hyperhelicoidal.py 1418share/blender/${PKGVERSION}/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/hyperhelicoidal.py
1330share/blender/${PKGVERSION}/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/klein.py 1419share/blender/${PKGVERSION}/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/klein.py
1331share/blender/${PKGVERSION}/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/moebius.py 1420share/blender/${PKGVERSION}/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/moebius.py
1332share/blender/${PKGVERSION}/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/pseudo_catenoid.py 1421share/blender/${PKGVERSION}/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/pseudo_catenoid.py
1333share/blender/${PKGVERSION}/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/pseudosphere.py 1422share/blender/${PKGVERSION}/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/pseudosphere.py
1334share/blender/${PKGVERSION}/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/ridged_torus.py 1423share/blender/${PKGVERSION}/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/ridged_torus.py
1335share/blender/${PKGVERSION}/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/shell.py 1424share/blender/${PKGVERSION}/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/shell.py
1336share/blender/${PKGVERSION}/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/sine.py 1425share/blender/${PKGVERSION}/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/sine.py
1337share/blender/${PKGVERSION}/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/snake.py 1426share/blender/${PKGVERSION}/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/snake.py
1338share/blender/${PKGVERSION}/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/sterosphere.py 1427share/blender/${PKGVERSION}/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/sterosphere.py
1339share/blender/${PKGVERSION}/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/torus.py 1428share/blender/${PKGVERSION}/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/torus.py
1340share/blender/${PKGVERSION}/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/twisted_torus.py 1429share/blender/${PKGVERSION}/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/twisted_torus.py
1341share/blender/${PKGVERSION}/scripts/addons/presets/pov/lamp/01_(5400K)_Direct_Sun.py 1430share/blender/${PKGVERSION}/scripts/addons/presets/pov/light/01_(5400K)_Direct_Sun.py
1342share/blender/${PKGVERSION}/scripts/addons/presets/pov/lamp/02_(5400K)_High_Noon_Sun.py 1431share/blender/${PKGVERSION}/scripts/addons/presets/pov/light/02_(5400K)_High_Noon_Sun.py
1343share/blender/${PKGVERSION}/scripts/addons/presets/pov/lamp/03_(6000K)_Daylight_Window.py 1432share/blender/${PKGVERSION}/scripts/addons/presets/pov/light/03_(6000K)_Daylight_Window.py
1344share/blender/${PKGVERSION}/scripts/addons/presets/pov/lamp/04_(6000K)_2500W_HMI_(Halogen_Metal_Iodide).py 1433share/blender/${PKGVERSION}/scripts/addons/presets/pov/light/04_(6000K)_2500W_HMI_(Halogen_Metal_Iodide).py
1345share/blender/${PKGVERSION}/scripts/addons/presets/pov/lamp/05_(4000K)_100W_Metal_Halide.py 1434share/blender/${PKGVERSION}/scripts/addons/presets/pov/light/05_(4000K)_100W_Metal_Halide.py
1346share/blender/${PKGVERSION}/scripts/addons/presets/pov/lamp/06_(3200K)_100W_Quartz_Halogen.py 1435share/blender/${PKGVERSION}/scripts/addons/presets/pov/light/06_(3200K)_100W_Quartz_Halogen.py
1347share/blender/${PKGVERSION}/scripts/addons/presets/pov/lamp/07_(2850K)_100w_Tungsten.py 1436share/blender/${PKGVERSION}/scripts/addons/presets/pov/light/07_(2850K)_100w_Tungsten.py
1348share/blender/${PKGVERSION}/scripts/addons/presets/pov/lamp/08_(2600K)_40w_Tungsten.py 1437share/blender/${PKGVERSION}/scripts/addons/presets/pov/light/08_(2600K)_40w_Tungsten.py
1349share/blender/${PKGVERSION}/scripts/addons/presets/pov/lamp/09_(5000K)_75W_Full_Spectrum_Fluorescent_T12.py 1438share/blender/${PKGVERSION}/scripts/addons/presets/pov/light/09_(5000K)_75W_Full_Spectrum_Fluorescent_T12.py
1350share/blender/${PKGVERSION}/scripts/addons/presets/pov/lamp/10_(4300K)_40W_Vintage_Fluorescent_T12.py 1439share/blender/${PKGVERSION}/scripts/addons/presets/pov/light/10_(4300K)_40W_Vintage_Fluorescent_T12.py
1351share/blender/${PKGVERSION}/scripts/addons/presets/pov/lamp/11_(5000K)_18W_Standard_Fluorescent_T8.py 1440share/blender/${PKGVERSION}/scripts/addons/presets/pov/light/11_(5000K)_18W_Standard_Fluorescent_T8.py
1352share/blender/${PKGVERSION}/scripts/addons/presets/pov/lamp/12_(4200K)_18W_Cool_White_Fluorescent_T8.py 1441share/blender/${PKGVERSION}/scripts/addons/presets/pov/light/12_(4200K)_18W_Cool_White_Fluorescent_T8.py
1353share/blender/${PKGVERSION}/scripts/addons/presets/pov/lamp/13_(3000K)_18W_Warm_Fluorescent_T8.py 1442share/blender/${PKGVERSION}/scripts/addons/presets/pov/light/13_(3000K)_18W_Warm_Fluorescent_T8.py
1354share/blender/${PKGVERSION}/scripts/addons/presets/pov/lamp/14_(6500K)_54W_Grow_Light_Fluorescent_T5-HO.py 1443share/blender/${PKGVERSION}/scripts/addons/presets/pov/light/14_(6500K)_54W_Grow_Light_Fluorescent_T5-HO.py
1355share/blender/${PKGVERSION}/scripts/addons/presets/pov/lamp/15_(3200K)_40W_Induction_Fluorescent.py 1444share/blender/${PKGVERSION}/scripts/addons/presets/pov/light/15_(3200K)_40W_Induction_Fluorescent.py
1356share/blender/${PKGVERSION}/scripts/addons/presets/pov/lamp/16_(2100K)_150W_High_Pressure_Sodium.py 1445share/blender/${PKGVERSION}/scripts/addons/presets/pov/light/16_(2100K)_150W_High_Pressure_Sodium.py
1357share/blender/${PKGVERSION}/scripts/addons/presets/pov/lamp/17_(1700K)_135W_Low_Pressure_Sodium.py 1446share/blender/${PKGVERSION}/scripts/addons/presets/pov/light/17_(1700K)_135W_Low_Pressure_Sodium.py
1358share/blender/${PKGVERSION}/scripts/addons/presets/pov/lamp/18_(6800K)_175W_Mercury_Vapor.py 1447share/blender/${PKGVERSION}/scripts/addons/presets/pov/light/18_(6800K)_175W_Mercury_Vapor.py
1359share/blender/${PKGVERSION}/scripts/addons/presets/pov/lamp/19_(5200K)_700W_Carbon_Arc.py 1448share/blender/${PKGVERSION}/scripts/addons/presets/pov/light/19_(5200K)_700W_Carbon_Arc.py
1360share/blender/${PKGVERSION}/scripts/addons/presets/pov/lamp/20_(6500K)_15W_LED_Spot.py 1449share/blender/${PKGVERSION}/scripts/addons/presets/pov/light/20_(6500K)_15W_LED_Spot.py
1361share/blender/${PKGVERSION}/scripts/addons/presets/pov/lamp/21_(2700K)_7W_OLED_Panel.py 1450share/blender/${PKGVERSION}/scripts/addons/presets/pov/light/21_(2700K)_7W_OLED_Panel.py
1362share/blender/${PKGVERSION}/scripts/addons/presets/pov/lamp/22_(30000K)_40W_Black_Light_Fluorescent.py 1451share/blender/${PKGVERSION}/scripts/addons/presets/pov/light/22_(30000K)_40W_Black_Light_Fluorescent.py
1363share/blender/${PKGVERSION}/scripts/addons/presets/pov/lamp/23_(30000K)_40W_Black_Light_Bulb.py 1452share/blender/${PKGVERSION}/scripts/addons/presets/pov/light/23_(30000K)_40W_Black_Light_Bulb.py
1364share/blender/${PKGVERSION}/scripts/addons/presets/pov/lamp/24_(1850K)_Candle.py 1453share/blender/${PKGVERSION}/scripts/addons/presets/pov/light/24_(1850K)_Candle.py
1365share/blender/${PKGVERSION}/scripts/addons/presets/pov/material/sss/apple.py 1454share/blender/${PKGVERSION}/scripts/addons/presets/pov/material/sss/apple.py
1366share/blender/${PKGVERSION}/scripts/addons/presets/pov/material/sss/chicken.py 1455share/blender/${PKGVERSION}/scripts/addons/presets/pov/material/sss/chicken.py
1367share/blender/${PKGVERSION}/scripts/addons/presets/pov/material/sss/cream.py 1456share/blender/${PKGVERSION}/scripts/addons/presets/pov/material/sss/cream.py
1368share/blender/${PKGVERSION}/scripts/addons/presets/pov/material/sss/ketchup.py 1457share/blender/${PKGVERSION}/scripts/addons/presets/pov/material/sss/ketchup.py
1369share/blender/${PKGVERSION}/scripts/addons/presets/pov/material/sss/marble.py 1458share/blender/${PKGVERSION}/scripts/addons/presets/pov/material/sss/marble.py
1370share/blender/${PKGVERSION}/scripts/addons/presets/pov/material/sss/potato.py 1459share/blender/${PKGVERSION}/scripts/addons/presets/pov/material/sss/potato.py
1371share/blender/${PKGVERSION}/scripts/addons/presets/pov/material/sss/skim_milk.py 1460share/blender/${PKGVERSION}/scripts/addons/presets/pov/material/sss/skim_milk.py
1372share/blender/${PKGVERSION}/scripts/addons/presets/pov/material/sss/skin1.py 1461share/blender/${PKGVERSION}/scripts/addons/presets/pov/material/sss/skin1.py
1373share/blender/${PKGVERSION}/scripts/addons/presets/pov/material/sss/skin2.py 1462share/blender/${PKGVERSION}/scripts/addons/presets/pov/material/sss/skin2.py
1374share/blender/${PKGVERSION}/scripts/addons/presets/pov/material/sss/whole_milk.py 1463share/blender/${PKGVERSION}/scripts/addons/presets/pov/material/sss/whole_milk.py
1375share/blender/${PKGVERSION}/scripts/addons/presets/pov/radiosity/01_Debug.py 1464share/blender/${PKGVERSION}/scripts/addons/presets/pov/radiosity/01_Debug.py
1376share/blender/${PKGVERSION}/scripts/addons/presets/pov/radiosity/02_Fast.py 1465share/blender/${PKGVERSION}/scripts/addons/presets/pov/radiosity/02_Fast.py
1377share/blender/${PKGVERSION}/scripts/addons/presets/pov/radiosity/03_Normal.py 1466share/blender/${PKGVERSION}/scripts/addons/presets/pov/radiosity/03_Normal.py
@@ -1477,26 +1566,28 @@ share/blender/${PKGVERSION}/scripts/addo @@ -1477,26 +1566,28 @@ share/blender/${PKGVERSION}/scripts/addo
1477share/blender/${PKGVERSION}/scripts/addons/rigify/metarigs/Animals/cat.py 1566share/blender/${PKGVERSION}/scripts/addons/rigify/metarigs/Animals/cat.py
1478share/blender/${PKGVERSION}/scripts/addons/rigify/metarigs/Animals/horse.py 1567share/blender/${PKGVERSION}/scripts/addons/rigify/metarigs/Animals/horse.py
1479share/blender/${PKGVERSION}/scripts/addons/rigify/metarigs/Animals/shark.py 1568share/blender/${PKGVERSION}/scripts/addons/rigify/metarigs/Animals/shark.py
1480share/blender/${PKGVERSION}/scripts/addons/rigify/metarigs/Animals/wolf.py 1569share/blender/${PKGVERSION}/scripts/addons/rigify/metarigs/Animals/wolf.py
1481share/blender/${PKGVERSION}/scripts/addons/rigify/metarigs/Basic/basic_human.py 1570share/blender/${PKGVERSION}/scripts/addons/rigify/metarigs/Basic/basic_human.py
1482share/blender/${PKGVERSION}/scripts/addons/rigify/metarigs/Basic/basic_quadruped.py 1571share/blender/${PKGVERSION}/scripts/addons/rigify/metarigs/Basic/basic_quadruped.py
1483share/blender/${PKGVERSION}/scripts/addons/rigify/metarigs/__init__.py 1572share/blender/${PKGVERSION}/scripts/addons/rigify/metarigs/__init__.py
1484share/blender/${PKGVERSION}/scripts/addons/rigify/metarigs/human.py 1573share/blender/${PKGVERSION}/scripts/addons/rigify/metarigs/human.py
1485share/blender/${PKGVERSION}/scripts/addons/rigify/rig_lists.py 1574share/blender/${PKGVERSION}/scripts/addons/rigify/rig_lists.py
1486share/blender/${PKGVERSION}/scripts/addons/rigify/rig_ui_template.py 1575share/blender/${PKGVERSION}/scripts/addons/rigify/rig_ui_template.py
1487share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/__init__.py 1576share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/__init__.py
1488share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/basic/__init__.py 1577share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/basic/__init__.py
1489share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/basic/copy_chain.py 1578share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/basic/copy_chain.py
 1579share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/basic/pivot.py
 1580share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/basic/raw_copy.py
1490share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/basic/super_copy.py 1581share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/basic/super_copy.py
1491share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/chain_rigs.py 1582share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/chain_rigs.py
1492share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/experimental/__init__.py 1583share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/experimental/__init__.py
1493share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/experimental/super_chain.py 1584share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/experimental/super_chain.py
1494share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/experimental/super_eye.py 1585share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/experimental/super_eye.py
1495share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/faces/__init__.py 1586share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/faces/__init__.py
1496share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/faces/super_face.py 1587share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/faces/super_face.py
1497share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/limbs/__init__.py 1588share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/limbs/__init__.py
1498share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/limbs/arm.py 1589share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/limbs/arm.py
1499share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/limbs/leg.py 1590share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/limbs/leg.py
1500share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/limbs/limb_rigs.py 1591share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/limbs/limb_rigs.py
1501share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/limbs/limb_utils.py 1592share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/limbs/limb_utils.py
1502share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/limbs/paw.py 1593share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/limbs/paw.py
@@ -1509,26 +1600,27 @@ share/blender/${PKGVERSION}/scripts/addo @@ -1509,26 +1600,27 @@ share/blender/${PKGVERSION}/scripts/addo
1509share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/spines/basic_spine.py 1600share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/spines/basic_spine.py
1510share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/spines/basic_tail.py 1601share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/spines/basic_tail.py
1511share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/spines/spine_rigs.py 1602share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/spines/spine_rigs.py
1512share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/spines/super_head.py 1603share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/spines/super_head.py
1513share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/spines/super_spine.py 1604share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/spines/super_spine.py
1514share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/utils.py 1605share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/utils.py
1515share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/widgets.py 1606share/blender/${PKGVERSION}/scripts/addons/rigify/rigs/widgets.py
1516share/blender/${PKGVERSION}/scripts/addons/rigify/rot_mode.py 1607share/blender/${PKGVERSION}/scripts/addons/rigify/rot_mode.py
1517share/blender/${PKGVERSION}/scripts/addons/rigify/ui.py 1608share/blender/${PKGVERSION}/scripts/addons/rigify/ui.py
1518share/blender/${PKGVERSION}/scripts/addons/rigify/utils/__init__.py 1609share/blender/${PKGVERSION}/scripts/addons/rigify/utils/__init__.py
1519share/blender/${PKGVERSION}/scripts/addons/rigify/utils/animation.py 1610share/blender/${PKGVERSION}/scripts/addons/rigify/utils/animation.py
1520share/blender/${PKGVERSION}/scripts/addons/rigify/utils/bones.py 1611share/blender/${PKGVERSION}/scripts/addons/rigify/utils/bones.py
1521share/blender/${PKGVERSION}/scripts/addons/rigify/utils/collections.py 1612share/blender/${PKGVERSION}/scripts/addons/rigify/utils/collections.py
 1613share/blender/${PKGVERSION}/scripts/addons/rigify/utils/components.py
1522share/blender/${PKGVERSION}/scripts/addons/rigify/utils/errors.py 1614share/blender/${PKGVERSION}/scripts/addons/rigify/utils/errors.py
1523share/blender/${PKGVERSION}/scripts/addons/rigify/utils/layers.py 1615share/blender/${PKGVERSION}/scripts/addons/rigify/utils/layers.py
1524share/blender/${PKGVERSION}/scripts/addons/rigify/utils/mechanism.py 1616share/blender/${PKGVERSION}/scripts/addons/rigify/utils/mechanism.py
1525share/blender/${PKGVERSION}/scripts/addons/rigify/utils/metaclass.py 1617share/blender/${PKGVERSION}/scripts/addons/rigify/utils/metaclass.py
1526share/blender/${PKGVERSION}/scripts/addons/rigify/utils/misc.py 1618share/blender/${PKGVERSION}/scripts/addons/rigify/utils/misc.py
1527share/blender/${PKGVERSION}/scripts/addons/rigify/utils/naming.py 1619share/blender/${PKGVERSION}/scripts/addons/rigify/utils/naming.py
1528share/blender/${PKGVERSION}/scripts/addons/rigify/utils/rig.py 1620share/blender/${PKGVERSION}/scripts/addons/rigify/utils/rig.py
1529share/blender/${PKGVERSION}/scripts/addons/rigify/utils/switch_parent.py 1621share/blender/${PKGVERSION}/scripts/addons/rigify/utils/switch_parent.py
1530share/blender/${PKGVERSION}/scripts/addons/rigify/utils/widgets.py 1622share/blender/${PKGVERSION}/scripts/addons/rigify/utils/widgets.py
1531share/blender/${PKGVERSION}/scripts/addons/rigify/utils/widgets_basic.py 1623share/blender/${PKGVERSION}/scripts/addons/rigify/utils/widgets_basic.py
1532share/blender/${PKGVERSION}/scripts/addons/rigify/utils/widgets_special.py 1624share/blender/${PKGVERSION}/scripts/addons/rigify/utils/widgets_special.py
1533share/blender/${PKGVERSION}/scripts/addons/space_clip_editor_refine_solution.py 1625share/blender/${PKGVERSION}/scripts/addons/space_clip_editor_refine_solution.py
1534share/blender/${PKGVERSION}/scripts/addons/space_view3d_3d_navigation.py 1626share/blender/${PKGVERSION}/scripts/addons/space_view3d_3d_navigation.py
@@ -1541,52 +1633,61 @@ share/blender/${PKGVERSION}/scripts/addo @@ -1541,52 +1633,61 @@ share/blender/${PKGVERSION}/scripts/addo
1541share/blender/${PKGVERSION}/scripts/addons/space_view3d_brush_menus/stroke_menu.py 1633share/blender/${PKGVERSION}/scripts/addons/space_view3d_brush_menus/stroke_menu.py
1542share/blender/${PKGVERSION}/scripts/addons/space_view3d_brush_menus/symmetry_menu.py 1634share/blender/${PKGVERSION}/scripts/addons/space_view3d_brush_menus/symmetry_menu.py
1543share/blender/${PKGVERSION}/scripts/addons/space_view3d_brush_menus/texture_menu.py 1635share/blender/${PKGVERSION}/scripts/addons/space_view3d_brush_menus/texture_menu.py
1544share/blender/${PKGVERSION}/scripts/addons/space_view3d_brush_menus/utils_core.py 1636share/blender/${PKGVERSION}/scripts/addons/space_view3d_brush_menus/utils_core.py
1545share/blender/${PKGVERSION}/scripts/addons/space_view3d_copy_attributes.py 1637share/blender/${PKGVERSION}/scripts/addons/space_view3d_copy_attributes.py
1546share/blender/${PKGVERSION}/scripts/addons/space_view3d_math_vis/__init__.py 1638share/blender/${PKGVERSION}/scripts/addons/space_view3d_math_vis/__init__.py
1547share/blender/${PKGVERSION}/scripts/addons/space_view3d_math_vis/draw.py 1639share/blender/${PKGVERSION}/scripts/addons/space_view3d_math_vis/draw.py
1548share/blender/${PKGVERSION}/scripts/addons/space_view3d_math_vis/utils.py 1640share/blender/${PKGVERSION}/scripts/addons/space_view3d_math_vis/utils.py
1549share/blender/${PKGVERSION}/scripts/addons/space_view3d_modifier_tools.py 1641share/blender/${PKGVERSION}/scripts/addons/space_view3d_modifier_tools.py
1550share/blender/${PKGVERSION}/scripts/addons/space_view3d_pie_menus/__init__.py 1642share/blender/${PKGVERSION}/scripts/addons/space_view3d_pie_menus/__init__.py
1551share/blender/${PKGVERSION}/scripts/addons/space_view3d_pie_menus/pie_align_menu.py 1643share/blender/${PKGVERSION}/scripts/addons/space_view3d_pie_menus/pie_align_menu.py
1552share/blender/${PKGVERSION}/scripts/addons/space_view3d_pie_menus/pie_animation_menu.py 1644share/blender/${PKGVERSION}/scripts/addons/space_view3d_pie_menus/pie_animation_menu.py
1553share/blender/${PKGVERSION}/scripts/addons/space_view3d_pie_menus/pie_apply_transform_menu.py 1645share/blender/${PKGVERSION}/scripts/addons/space_view3d_pie_menus/pie_apply_transform_menu.py
 1646share/blender/${PKGVERSION}/scripts/addons/space_view3d_pie_menus/pie_defaults_menu.py
1554share/blender/${PKGVERSION}/scripts/addons/space_view3d_pie_menus/pie_delete_menu.py 1647share/blender/${PKGVERSION}/scripts/addons/space_view3d_pie_menus/pie_delete_menu.py
1555share/blender/${PKGVERSION}/scripts/addons/space_view3d_pie_menus/pie_editor_switch_menu.py 1648share/blender/${PKGVERSION}/scripts/addons/space_view3d_pie_menus/pie_editor_switch_menu.py
1556share/blender/${PKGVERSION}/scripts/addons/space_view3d_pie_menus/pie_manipulator_menu.py 1649share/blender/${PKGVERSION}/scripts/addons/space_view3d_pie_menus/pie_manipulator_menu.py
1557share/blender/${PKGVERSION}/scripts/addons/space_view3d_pie_menus/pie_modes_menu.py 1650share/blender/${PKGVERSION}/scripts/addons/space_view3d_pie_menus/pie_modes_menu.py
1558share/blender/${PKGVERSION}/scripts/addons/space_view3d_pie_menus/pie_origin.py 1651share/blender/${PKGVERSION}/scripts/addons/space_view3d_pie_menus/pie_origin.py
 1652share/blender/${PKGVERSION}/scripts/addons/space_view3d_pie_menus/pie_proportional_menu.py
1559share/blender/${PKGVERSION}/scripts/addons/space_view3d_pie_menus/pie_save_open_menu.py 1653share/blender/${PKGVERSION}/scripts/addons/space_view3d_pie_menus/pie_save_open_menu.py
1560share/blender/${PKGVERSION}/scripts/addons/space_view3d_pie_menus/pie_sculpt_menu.py 1654share/blender/${PKGVERSION}/scripts/addons/space_view3d_pie_menus/pie_sculpt_menu.py
1561share/blender/${PKGVERSION}/scripts/addons/space_view3d_pie_menus/pie_select_menu.py 1655share/blender/${PKGVERSION}/scripts/addons/space_view3d_pie_menus/pie_select_menu.py
1562share/blender/${PKGVERSION}/scripts/addons/space_view3d_pie_menus/pie_shading_menu.py 1656share/blender/${PKGVERSION}/scripts/addons/space_view3d_pie_menus/pie_shading_menu.py
1563share/blender/${PKGVERSION}/scripts/addons/space_view3d_pie_menus/pie_views_numpad_menu.py 1657share/blender/${PKGVERSION}/scripts/addons/space_view3d_pie_menus/pie_views_numpad_menu.py
1564share/blender/${PKGVERSION}/scripts/addons/space_view3d_spacebar_menu/__init__.py 1658share/blender/${PKGVERSION}/scripts/addons/space_view3d_spacebar_menu/__init__.py
1565share/blender/${PKGVERSION}/scripts/addons/space_view3d_spacebar_menu/animation_menus.py 1659share/blender/${PKGVERSION}/scripts/addons/space_view3d_spacebar_menu/animation_menus.py
1566share/blender/${PKGVERSION}/scripts/addons/space_view3d_spacebar_menu/armature_menus.py 1660share/blender/${PKGVERSION}/scripts/addons/space_view3d_spacebar_menu/armature_menus.py
1567share/blender/${PKGVERSION}/scripts/addons/space_view3d_spacebar_menu/curve_menus.py 1661share/blender/${PKGVERSION}/scripts/addons/space_view3d_spacebar_menu/curve_menus.py
1568share/blender/${PKGVERSION}/scripts/addons/space_view3d_spacebar_menu/edit_mesh.py 1662share/blender/${PKGVERSION}/scripts/addons/space_view3d_spacebar_menu/edit_mesh.py
1569share/blender/${PKGVERSION}/scripts/addons/space_view3d_spacebar_menu/object_menus.py 1663share/blender/${PKGVERSION}/scripts/addons/space_view3d_spacebar_menu/object_menus.py
1570share/blender/${PKGVERSION}/scripts/addons/space_view3d_spacebar_menu/snap_origin_cursor.py 1664share/blender/${PKGVERSION}/scripts/addons/space_view3d_spacebar_menu/snap_origin_cursor.py
1571share/blender/${PKGVERSION}/scripts/addons/space_view3d_spacebar_menu/transform_menus.py 1665share/blender/${PKGVERSION}/scripts/addons/space_view3d_spacebar_menu/transform_menus.py
1572share/blender/${PKGVERSION}/scripts/addons/space_view3d_spacebar_menu/view_menus.py 1666share/blender/${PKGVERSION}/scripts/addons/space_view3d_spacebar_menu/view_menus.py
1573share/blender/${PKGVERSION}/scripts/addons/space_view3d_stored_views/__init__.py 1667share/blender/${PKGVERSION}/scripts/addons/space_view3d_stored_views/__init__.py
1574share/blender/${PKGVERSION}/scripts/addons/space_view3d_stored_views/core.py 1668share/blender/${PKGVERSION}/scripts/addons/space_view3d_stored_views/core.py
1575share/blender/${PKGVERSION}/scripts/addons/space_view3d_stored_views/io.py 1669share/blender/${PKGVERSION}/scripts/addons/space_view3d_stored_views/io.py
1576share/blender/${PKGVERSION}/scripts/addons/space_view3d_stored_views/operators.py 1670share/blender/${PKGVERSION}/scripts/addons/space_view3d_stored_views/operators.py
1577share/blender/${PKGVERSION}/scripts/addons/space_view3d_stored_views/properties.py 1671share/blender/${PKGVERSION}/scripts/addons/space_view3d_stored_views/properties.py
1578share/blender/${PKGVERSION}/scripts/addons/space_view3d_stored_views/stored_views_test.py 1672share/blender/${PKGVERSION}/scripts/addons/space_view3d_stored_views/stored_views_test.py
1579share/blender/${PKGVERSION}/scripts/addons/space_view3d_stored_views/ui.py 1673share/blender/${PKGVERSION}/scripts/addons/space_view3d_stored_views/ui.py
 1674share/blender/${PKGVERSION}/scripts/addons/sun_position/__init__.py
 1675share/blender/${PKGVERSION}/scripts/addons/sun_position/geo.py
 1676share/blender/${PKGVERSION}/scripts/addons/sun_position/hdr.py
 1677share/blender/${PKGVERSION}/scripts/addons/sun_position/north.py
 1678share/blender/${PKGVERSION}/scripts/addons/sun_position/properties.py
 1679share/blender/${PKGVERSION}/scripts/addons/sun_position/sun_calc.py
 1680share/blender/${PKGVERSION}/scripts/addons/sun_position/ui_sun.py
1580share/blender/${PKGVERSION}/scripts/addons/system_blend_info.py 1681share/blender/${PKGVERSION}/scripts/addons/system_blend_info.py
1581share/blender/${PKGVERSION}/scripts/addons/system_demo_mode/__init__.py 1682share/blender/${PKGVERSION}/scripts/addons/system_demo_mode/__init__.py
1582share/blender/${PKGVERSION}/scripts/addons/system_demo_mode/config.py 1683share/blender/${PKGVERSION}/scripts/addons/system_demo_mode/config.py
1583share/blender/${PKGVERSION}/scripts/addons/system_demo_mode/demo_mode.py 1684share/blender/${PKGVERSION}/scripts/addons/system_demo_mode/demo_mode.py
1584share/blender/${PKGVERSION}/scripts/addons/system_property_chart.py 1685share/blender/${PKGVERSION}/scripts/addons/system_property_chart.py
1585share/blender/${PKGVERSION}/scripts/addons/ui_translate/__init__.py 1686share/blender/${PKGVERSION}/scripts/addons/ui_translate/__init__.py
1586share/blender/${PKGVERSION}/scripts/addons/ui_translate/edit_translation.py 1687share/blender/${PKGVERSION}/scripts/addons/ui_translate/edit_translation.py
1587share/blender/${PKGVERSION}/scripts/addons/ui_translate/settings.py 1688share/blender/${PKGVERSION}/scripts/addons/ui_translate/settings.py
1588share/blender/${PKGVERSION}/scripts/addons/ui_translate/update_addon.py 1689share/blender/${PKGVERSION}/scripts/addons/ui_translate/update_addon.py
1589share/blender/${PKGVERSION}/scripts/addons/ui_translate/update_svn.py 1690share/blender/${PKGVERSION}/scripts/addons/ui_translate/update_svn.py
1590share/blender/${PKGVERSION}/scripts/addons/ui_translate/update_ui.py 1691share/blender/${PKGVERSION}/scripts/addons/ui_translate/update_ui.py
1591share/blender/${PKGVERSION}/scripts/freestyle/modules/freestyle/__init__.py 1692share/blender/${PKGVERSION}/scripts/freestyle/modules/freestyle/__init__.py
1592share/blender/${PKGVERSION}/scripts/freestyle/modules/freestyle/chainingiterators.py 1693share/blender/${PKGVERSION}/scripts/freestyle/modules/freestyle/chainingiterators.py
@@ -1850,27 +1951,26 @@ share/blender/${PKGVERSION}/scripts/star @@ -1850,27 +1951,26 @@ share/blender/${PKGVERSION}/scripts/star
1850share/blender/${PKGVERSION}/scripts/startup/bl_app_templates_system/VFX/startup.blend 1951share/blender/${PKGVERSION}/scripts/startup/bl_app_templates_system/VFX/startup.blend
1851share/blender/${PKGVERSION}/scripts/startup/bl_app_templates_system/Video_Editing/__init__.py 1952share/blender/${PKGVERSION}/scripts/startup/bl_app_templates_system/Video_Editing/__init__.py
1852share/blender/${PKGVERSION}/scripts/startup/bl_app_templates_system/Video_Editing/startup.blend 1953share/blender/${PKGVERSION}/scripts/startup/bl_app_templates_system/Video_Editing/startup.blend
1853share/blender/${PKGVERSION}/scripts/startup/bl_operators/__init__.py 1954share/blender/${PKGVERSION}/scripts/startup/bl_operators/__init__.py
1854share/blender/${PKGVERSION}/scripts/startup/bl_operators/add_mesh_torus.py 1955share/blender/${PKGVERSION}/scripts/startup/bl_operators/add_mesh_torus.py
1855share/blender/${PKGVERSION}/scripts/startup/bl_operators/anim.py 1956share/blender/${PKGVERSION}/scripts/startup/bl_operators/anim.py
1856share/blender/${PKGVERSION}/scripts/startup/bl_operators/bmesh/find_adjacent.py 1957share/blender/${PKGVERSION}/scripts/startup/bl_operators/bmesh/find_adjacent.py
1857share/blender/${PKGVERSION}/scripts/startup/bl_operators/clip.py 1958share/blender/${PKGVERSION}/scripts/startup/bl_operators/clip.py
1858share/blender/${PKGVERSION}/scripts/startup/bl_operators/console.py 1959share/blender/${PKGVERSION}/scripts/startup/bl_operators/console.py
1859share/blender/${PKGVERSION}/scripts/startup/bl_operators/constraint.py 1960share/blender/${PKGVERSION}/scripts/startup/bl_operators/constraint.py
1860share/blender/${PKGVERSION}/scripts/startup/bl_operators/file.py 1961share/blender/${PKGVERSION}/scripts/startup/bl_operators/file.py
1861share/blender/${PKGVERSION}/scripts/startup/bl_operators/freestyle.py 1962share/blender/${PKGVERSION}/scripts/startup/bl_operators/freestyle.py
1862share/blender/${PKGVERSION}/scripts/startup/bl_operators/image.py 1963share/blender/${PKGVERSION}/scripts/startup/bl_operators/image.py
1863share/blender/${PKGVERSION}/scripts/startup/bl_operators/mask.py 
1864share/blender/${PKGVERSION}/scripts/startup/bl_operators/mesh.py 1964share/blender/${PKGVERSION}/scripts/startup/bl_operators/mesh.py
1865share/blender/${PKGVERSION}/scripts/startup/bl_operators/node.py 1965share/blender/${PKGVERSION}/scripts/startup/bl_operators/node.py
1866share/blender/${PKGVERSION}/scripts/startup/bl_operators/object.py 1966share/blender/${PKGVERSION}/scripts/startup/bl_operators/object.py
1867share/blender/${PKGVERSION}/scripts/startup/bl_operators/object_align.py 1967share/blender/${PKGVERSION}/scripts/startup/bl_operators/object_align.py
1868share/blender/${PKGVERSION}/scripts/startup/bl_operators/object_quick_effects.py 1968share/blender/${PKGVERSION}/scripts/startup/bl_operators/object_quick_effects.py
1869share/blender/${PKGVERSION}/scripts/startup/bl_operators/object_randomize_transform.py 1969share/blender/${PKGVERSION}/scripts/startup/bl_operators/object_randomize_transform.py
1870share/blender/${PKGVERSION}/scripts/startup/bl_operators/presets.py 1970share/blender/${PKGVERSION}/scripts/startup/bl_operators/presets.py
1871share/blender/${PKGVERSION}/scripts/startup/bl_operators/rigidbody.py 1971share/blender/${PKGVERSION}/scripts/startup/bl_operators/rigidbody.py
1872share/blender/${PKGVERSION}/scripts/startup/bl_operators/screen_play_rendered_anim.py 1972share/blender/${PKGVERSION}/scripts/startup/bl_operators/screen_play_rendered_anim.py
1873share/blender/${PKGVERSION}/scripts/startup/bl_operators/sequencer.py 1973share/blender/${PKGVERSION}/scripts/startup/bl_operators/sequencer.py
1874share/blender/${PKGVERSION}/scripts/startup/bl_operators/userpref.py 1974share/blender/${PKGVERSION}/scripts/startup/bl_operators/userpref.py
1875share/blender/${PKGVERSION}/scripts/startup/bl_operators/uvcalc_follow_active.py 1975share/blender/${PKGVERSION}/scripts/startup/bl_operators/uvcalc_follow_active.py
1876share/blender/${PKGVERSION}/scripts/startup/bl_operators/uvcalc_lightmap.py 1976share/blender/${PKGVERSION}/scripts/startup/bl_operators/uvcalc_lightmap.py
@@ -1901,27 +2001,26 @@ share/blender/${PKGVERSION}/scripts/star @@ -1901,27 +2001,26 @@ share/blender/${PKGVERSION}/scripts/star
1901share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_material.py 2001share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_material.py
1902share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_material_gpencil.py 2002share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_material_gpencil.py
1903share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_object.py 2003share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_object.py
1904share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_output.py 2004share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_output.py
1905share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_paint_common.py 2005share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_paint_common.py
1906share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_particle.py 2006share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_particle.py
1907share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_physics_cloth.py 2007share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_physics_cloth.py
1908share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_physics_common.py 2008share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_physics_common.py
1909share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_physics_dynamicpaint.py 2009share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_physics_dynamicpaint.py
1910share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_physics_field.py 2010share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_physics_field.py
1911share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_physics_fluid.py 2011share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_physics_fluid.py
1912share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_physics_rigidbody.py 2012share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_physics_rigidbody.py
1913share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_physics_rigidbody_constraint.py 2013share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_physics_rigidbody_constraint.py
1914share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_physics_smoke.py 
1915share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_physics_softbody.py 2014share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_physics_softbody.py
1916share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_render.py 2015share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_render.py
1917share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_scene.py 2016share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_scene.py
1918share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_texture.py 2017share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_texture.py
1919share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_view_layer.py 2018share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_view_layer.py
1920share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_workspace.py 2019share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_workspace.py
1921share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_world.py 2020share/blender/${PKGVERSION}/scripts/startup/bl_ui/properties_world.py
1922share/blender/${PKGVERSION}/scripts/startup/bl_ui/space_clip.py 2021share/blender/${PKGVERSION}/scripts/startup/bl_ui/space_clip.py
1923share/blender/${PKGVERSION}/scripts/startup/bl_ui/space_console.py 2022share/blender/${PKGVERSION}/scripts/startup/bl_ui/space_console.py
1924share/blender/${PKGVERSION}/scripts/startup/bl_ui/space_dopesheet.py 2023share/blender/${PKGVERSION}/scripts/startup/bl_ui/space_dopesheet.py
1925share/blender/${PKGVERSION}/scripts/startup/bl_ui/space_filebrowser.py 2024share/blender/${PKGVERSION}/scripts/startup/bl_ui/space_filebrowser.py
1926share/blender/${PKGVERSION}/scripts/startup/bl_ui/space_graph.py 2025share/blender/${PKGVERSION}/scripts/startup/bl_ui/space_graph.py
1927share/blender/${PKGVERSION}/scripts/startup/bl_ui/space_image.py 2026share/blender/${PKGVERSION}/scripts/startup/bl_ui/space_image.py

cvs diff -r1.54 -r1.55 pkgsrc/graphics/blender/distinfo (expand / switch to unified diff)

--- pkgsrc/graphics/blender/distinfo 2019/11/23 23:47:14 1.54
+++ pkgsrc/graphics/blender/distinfo 2020/02/21 16:36:53 1.55
@@ -1,10 +1,12 @@ @@ -1,10 +1,12 @@
1$NetBSD: distinfo,v 1.54 2019/11/23 23:47:14 nia Exp $ 1$NetBSD: distinfo,v 1.55 2020/02/21 16:36:53 nia Exp $
2 2
3SHA1 (blender-2.81.tar.xz) = 59bab56b5c3cd8ff64be60f385adcc7e1dfcea61 3SHA1 (blender-2.82.tar.xz) = 06bc1304e2ba71f06be3effd1fa099e57c7893cb
4RMD160 (blender-2.81.tar.xz) = 1a85b4be065c2fa13d7ec75f77edcb779be72dfc 4RMD160 (blender-2.82.tar.xz) = 00126f9e15c0088ccbfdfef4adafc6ef68c0a7e6
5SHA512 (blender-2.81.tar.xz) = b7eed47afc4bdb87e9e8a579565935ae8489459197fb9b5978285cfe255ea4fc4151a1178526857921f3b2d54cf63b68dda66586565340f7bfd4274b82e7e9ff 5SHA512 (blender-2.82.tar.xz) = 4c96d3982ede3965212d6e67f1367d8eb15c835e922eb3c31fd961c306bb7b86079dc256bed69a197f1f316eda7ed40843721554a73c38d154b7d24a2e5112bc
6Size (blender-2.81.tar.xz) = 39241924 bytes 6Size (blender-2.82.tar.xz) = 39895660 bytes
7SHA1 (patch-extern_glog_src_base_mutex.h) = 5fceceefe83400967a59080eeb930d0f3a4b8e88 7SHA1 (patch-extern_glog_src_base_mutex.h) = 5fceceefe83400967a59080eeb930d0f3a4b8e88
8SHA1 (patch-extern_glog_src_config.h) = e445c911d4ebb1f7e378c3c46911b55f77ba5608 8SHA1 (patch-extern_glog_src_config.h) = e445c911d4ebb1f7e378c3c46911b55f77ba5608
9SHA1 (patch-extern_glog_src_config__netbsd.h) = f96dd9d6afed38466e5765c604efebcd78537a54 9SHA1 (patch-extern_glog_src_config__netbsd.h) = f96dd9d6afed38466e5765c604efebcd78537a54
 10SHA1 (patch-extern_wcwidth_wcwidth.h) = c6ebe1ec27cd9096621b26bd6b83560ea2c1770a
10SHA1 (patch-intern_guardedalloc_intern_mallocn__intern.h) = 81fb0fd1b34d550168a4bdf63f28b4e199717921 11SHA1 (patch-intern_guardedalloc_intern_mallocn__intern.h) = 81fb0fd1b34d550168a4bdf63f28b4e199717921
 12SHA1 (patch-source_blender_blenlib_BLI__sys__types.h) = c01af4c1c21e8cd0565205cfd58839b898ad83e8

File Added: pkgsrc/graphics/blender/patches/Attic/patch-extern_wcwidth_wcwidth.h
$NetBSD: patch-extern_wcwidth_wcwidth.h,v 1.1 2020/02/21 16:36:54 nia Exp $

NetBSD also does not have uchar.h.

--- extern/wcwidth/wcwidth.h.orig	2020-02-12 10:15:01.000000000 +0000
+++ extern/wcwidth/wcwidth.h
@@ -21,7 +21,7 @@
 #define __WCWIDTH_H__
 
 #ifndef __cplusplus
-#  if defined(__APPLE__)
+#  if defined(__APPLE__) || defined(__NetBSD__)
 /* The <uchar.h> standard header is missing on macOS. */
 #include <stddef.h>
 typedef unsigned int char32_t;

File Added: pkgsrc/graphics/blender/patches/Attic/patch-source_blender_blenlib_BLI__sys__types.h
$NetBSD: patch-source_blender_blenlib_BLI__sys__types.h,v 1.1 2020/02/21 16:36:54 nia Exp $

NetBSD also does not have uchar.h.

--- source/blender/blenlib/BLI_sys_types.h.orig	2020-02-21 13:50:55.328090564 +0000
+++ source/blender/blenlib/BLI_sys_types.h
@@ -73,7 +73,7 @@ typedef uint64_t u_int64_t;
 #include <stdbool.h>
 
 #ifndef __cplusplus
-#  if defined(__APPLE__)
+#  if defined(__APPLE__) || defined(__NetBSD__)
 /* The <uchar.h> standard header is missing on macOS. */
 typedef unsigned int char32_t;
 #  else