all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#30384: additional inputs required for Blender plugins
@ 2018-02-07 21:43 Quiliro Ordonez Baca
  2018-02-07 22:05 ` Quiliro Ordonez Baca
  2018-02-16 10:22 ` Ludovic Courtès
  0 siblings, 2 replies; 6+ messages in thread
From: Quiliro Ordonez Baca @ 2018-02-07 21:43 UTC (permalink / raw)
  To: 30384


I was trying to install Sverchok plugin for Blender. It enables Blender
to change parameters in order to modify a wide range of values without
redrawing everything in case of a global change in something repetitive.

I checked the license. It is GPLv3. What else should i do to verify freedom?

When i tryed to install the Sverchok addon
https://wiki.blender.org/index.php/Extensions:2.6/Py/Scripts/Nodes/Sverchok
http://nikitron.cc.ua/sverch/html/main.html
I got the message:
ImportError: No module named ‘numpy’
so i installed python-numpy.
And then i got error:
ImportError: No module named ‘requests’
I then instaled python-requests. Both these dependencies are mentioned in Sverchok's documentation.
The Blender binary ships with:
idna, chardet, urllib3, certifi, requests and numpy
https://git.blender.org/gitweb/gitweb.cgi/blender.git/blob/HEAD:/build_files/build_environment/cmake/versions.cmake
It reports versions of numpy, requests and others
set(REQUESTS_VERSION 2.18.4)
set(NUMPY_VERSION v1.13.1)
set(NUMPY_SHORT_VERSION 1.13)
set(NUMPY_URI https://pypi.python.org/packages/c0/3a/40967d9f5675fbb097ffec170f59c2ba19fc96373e73ad47c2cae9a30aed/numpy-1.13.1.zip)
set(NUMPY_HASH 2c3c0f4edf720c3a7b525dacc825b9ae)

propagated-inputs

The NixOS package explicitly disables numpy at build time.

Those dependencies are not required for building the Guix package:
https://git.savannah.gnu.org/cgit/guix.git/tree/gnu/packages/graphics.scm?id=v0.14.0-1266-gd2a7170de#n79
It's better to just package these plugins separately rather than
propagating these (large) packages for every Blender user.
They are not necessary to run blender
https://wiki.blender.org/index.php/Dev:Doc/Building_Blender/Linux/dependencies
It is just that Blender's oficial binary ships with those plugins and
their dependencies by default. We need not do the same. If the user
needs those addons, she may install them with Guix solving the
dependencies.

I was helped by:
<bzztploink>
<Yaniel>
from #blender
and:
<mbakke>
from the Guix.
Thank you very much!

^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#30384: additional inputs required for Blender plugins
  2018-02-07 21:43 bug#30384: additional inputs required for Blender plugins Quiliro Ordonez Baca
@ 2018-02-07 22:05 ` Quiliro Ordonez Baca
  2018-02-07 22:14   ` Quiliro Ordonez Baca
  2018-02-16 10:22 ` Ludovic Courtès
  1 sibling, 1 reply; 6+ messages in thread
From: Quiliro Ordonez Baca @ 2018-02-07 22:05 UTC (permalink / raw)
  To: 30384


All addons in release/scripts/addons ship by default. The cmake list I
sent contains all the binary libs they build against as well. Side note
though: that is for current master, 2.79. Didn't have that file yet,
(bzztploink maintained it, but it wasn't added to the main repo yet). So
a couple of those versions are further ahead of what they shipped 2.79
with (from the top of bzztploink's head python 3.5 vs 3.6).

^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#30384: additional inputs required for Blender plugins
  2018-02-07 22:05 ` Quiliro Ordonez Baca
@ 2018-02-07 22:14   ` Quiliro Ordonez Baca
  0 siblings, 0 replies; 6+ messages in thread
From: Quiliro Ordonez Baca @ 2018-02-07 22:14 UTC (permalink / raw)
  To: 30384


flatpak had the same issues earlier this week
https://github.com/flathub/org.blender.Blender/issues/6

^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#30384: additional inputs required for Blender plugins
  2018-02-07 21:43 bug#30384: additional inputs required for Blender plugins Quiliro Ordonez Baca
  2018-02-07 22:05 ` Quiliro Ordonez Baca
@ 2018-02-16 10:22 ` Ludovic Courtès
  2018-02-17 22:13   ` Quiliro Ordonez Baca
  1 sibling, 1 reply; 6+ messages in thread
From: Ludovic Courtès @ 2018-02-16 10:22 UTC (permalink / raw)
  To: Quiliro Ordonez Baca; +Cc: 30384

Hello Quiliro,

Quiliro Ordonez Baca <quiliro@riseup.net> skribis:

> When i tryed to install the Sverchok addon
> https://wiki.blender.org/index.php/Extensions:2.6/Py/Scripts/Nodes/Sverchok
> http://nikitron.cc.ua/sverch/html/main.html
> I got the message:
> ImportError: No module named ‘numpy’
> so i installed python-numpy.
> And then i got error:
> ImportError: No module named ‘requests’
> I then instaled python-requests. Both these dependencies are mentioned in Sverchok's documentation.

Since installing these two packages solves the problem, can we consider
this bug closed?

My understanding of your message is that our ‘blender’ package already
does the right thing.

Thanks,
Ludo’.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#30384: additional inputs required for Blender plugins
  2018-02-16 10:22 ` Ludovic Courtès
@ 2018-02-17 22:13   ` Quiliro Ordonez Baca
  2018-02-18 13:47     ` Ludovic Courtès
  0 siblings, 1 reply; 6+ messages in thread
From: Quiliro Ordonez Baca @ 2018-02-17 22:13 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 30384

ludo@gnu.org (Ludovic Courtès) writes:

> Hello Quiliro,
>
> Quiliro Ordonez Baca <quiliro@riseup.net> skribis:
>
>> When i tryed to install the Sverchok addon
>> https://wiki.blender.org/index.php/Extensions:2.6/Py/Scripts/Nodes/Sverchok
>> http://nikitron.cc.ua/sverch/html/main.html
>> I got the message:
>> ImportError: No module named ‘numpy’
>> so i installed python-numpy.
>> And then i got error:
>> ImportError: No module named ‘requests’
>> I then instaled python-requests. Both these dependencies are mentioned in Sverchok's documentation.
>
> Since installing these two packages solves the problem,

Oh! That is right. It is not a problem of Blender. It is a problem of
dependencies of Sverchok. What is needed is a package definition for
Sverchok. Am I right?

> can we consider
> this bug closed?

Yes. Thank you. :-)

> My understanding of your message is that our ‘blender’ package already
> does the right thing.

Yes.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#30384: additional inputs required for Blender plugins
  2018-02-17 22:13   ` Quiliro Ordonez Baca
@ 2018-02-18 13:47     ` Ludovic Courtès
  0 siblings, 0 replies; 6+ messages in thread
From: Ludovic Courtès @ 2018-02-18 13:47 UTC (permalink / raw)
  To: Quiliro Ordonez Baca; +Cc: 30384-done

Quiliro Ordonez Baca <quiliro@riseup.net> skribis:

> ludo@gnu.org (Ludovic Courtès) writes:
>
>> Hello Quiliro,
>>
>> Quiliro Ordonez Baca <quiliro@riseup.net> skribis:
>>
>>> When i tryed to install the Sverchok addon
>>> https://wiki.blender.org/index.php/Extensions:2.6/Py/Scripts/Nodes/Sverchok
>>> http://nikitron.cc.ua/sverch/html/main.html
>>> I got the message:
>>> ImportError: No module named ‘numpy’
>>> so i installed python-numpy.
>>> And then i got error:
>>> ImportError: No module named ‘requests’
>>> I then instaled python-requests. Both these dependencies are mentioned in Sverchok's documentation.
>>
>> Since installing these two packages solves the problem,
>
> Oh! That is right. It is not a problem of Blender. It is a problem of
> dependencies of Sverchok. What is needed is a package definition for
> Sverchok. Am I right?

Not strictly required AIUI, but it wouldn’t hurt.

>> can we consider
>> this bug closed?
>
> Yes. Thank you. :-)

Done, thanks!

Ludo’.

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2018-02-18 13:48 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-07 21:43 bug#30384: additional inputs required for Blender plugins Quiliro Ordonez Baca
2018-02-07 22:05 ` Quiliro Ordonez Baca
2018-02-07 22:14   ` Quiliro Ordonez Baca
2018-02-16 10:22 ` Ludovic Courtès
2018-02-17 22:13   ` Quiliro Ordonez Baca
2018-02-18 13:47     ` Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.