Re: [Gimp-developer] libmypaint needs patching for recent GEGL

2019-03-12 Thread Øyvind Kolås
On Tue, Mar 12, 2019 at 1:26 PM Helmut Jarausch via
gimp-developer-list  wrote:

This looks mostly OK, though without even looking at the code I
suspect 100 is MUCH higher than necessary, this number allocates room
in the iterator datastructure for the maximum number of buffers that
are iterated in parallel. The old default was 8, the sum of
gegl_buffer_iterator_add calls + 1 is the minimum value that should be
set.

/pippin
>
> I'm using GEGL GIT 2019/06/03.
> libmypaint (1.3.0) does not compile with this version of GEGL.
>
> Can anybody please confirm that the following patch is OK ?
>
> --- a/gegl/mypaint-gegl-surface.c.ORIG  2016-06-02 17:43:32.0
> +0200
> +++ b/gegl/mypaint-gegl-surface.c   2019-03-12 13:16:31.626735235
> +0100
> @@ -78,7 +78,7 @@
>
>   if (buffer_is_native(self)) {
>   GeglBufferIterator *iterator =
> gegl_buffer_iterator_new(self->buffer, _bbox, 0, self->format,
> -  read_write_flags,
> GEGL_ABYSS_NONE);
> +  read_write_flags,
> GEGL_ABYSS_NONE,100);
>
>   // Read out
>   gboolean completed = gegl_buffer_iterator_next(iterator);
> @@ -88,7 +88,7 @@
>   g_critical("Unable to get tile aligned access to
> GeglBuffer");
>   request->buffer = NULL;
>   } else {
> -request->buffer = (uint16_t *)(iterator->data[0]);
> +request->buffer = (uint16_t *)(iterator->items[0].data);
>   }
>
>   // So we can finish the iterator in tile_request_end()
>
>
>
> Many thanks,
> Helmut
> ___
> gimp-developer-list mailing list
> List address:gimp-developer-list@gnome.org
> List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list
> List archives:   https://mail.gnome.org/archives/gimp-developer-list
___
gimp-developer-list mailing list
List address:gimp-developer-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list
List archives:   https://mail.gnome.org/archives/gimp-developer-list


[Gimp-developer] libmypaint needs patching for recent GEGL

2019-03-12 Thread Helmut Jarausch via gimp-developer-list

Hi,

I'm using GEGL GIT 2019/06/03.
libmypaint (1.3.0) does not compile with this version of GEGL.

Can anybody please confirm that the following patch is OK ?

--- a/gegl/mypaint-gegl-surface.c.ORIG	2016-06-02 17:43:32.0  
+0200
+++ b/gegl/mypaint-gegl-surface.c	2019-03-12 13:16:31.626735235  
+0100

@@ -78,7 +78,7 @@

 if (buffer_is_native(self)) {
 GeglBufferIterator *iterator =  
gegl_buffer_iterator_new(self->buffer, _bbox, 0, self->format,
-  read_write_flags,  
GEGL_ABYSS_NONE);
+  read_write_flags,  
GEGL_ABYSS_NONE,100);


 // Read out
 gboolean completed = gegl_buffer_iterator_next(iterator);
@@ -88,7 +88,7 @@
 g_critical("Unable to get tile aligned access to  
GeglBuffer");

 request->buffer = NULL;
 } else {
-request->buffer = (uint16_t *)(iterator->data[0]);
+request->buffer = (uint16_t *)(iterator->items[0].data);
 }

 // So we can finish the iterator in tile_request_end()



Many thanks,
Helmut
___
gimp-developer-list mailing list
List address:gimp-developer-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list
List archives:   https://mail.gnome.org/archives/gimp-developer-list


Re: [Gimp-developer] libmypaint version for building GIMP-2.10.0

2018-04-28 Thread Helmut Jarausch

On 04/27/2018 07:18:53 PM, Carmelo DrRaw wrote:

Dear all,

I am currently stuck with what seems to be a version dependency  
conflict between GIMP and libmypaint-1.3.0.


GIMP requires GEGL >= v0.4.0, however libmypaint still requires GEGL  
v0.3.x:


checking for GEGL... no
configure: error: Package requirements (gegl-0.3 >= 0.3) were not met:

No package 'gegl-0.3' found


This happens because GEGL v0.4.x only provides gegl-0.4.pc

I am using the latest official release of libmypaint:  
https://github.com/mypaint/libmypaint/releases/download/v1.3.0/libmypaint-1.3.0.tar.xz  



I have applied the following "patches"
With these libmypaint compiles fine.

Helmut

sed -i -e'/gegl_required_version/ s/0.3/0.4/' configure.ac
sed -i -e's/gegl-0.3/gegl-0.4/g' gegl/Makefile.in
sed -i -e's/gegl-0.3/gegl-0.4/g' gegl/Makefile.am
sed -i -e's/gegl-0.3/gegl-0.4/g' gegl/libmypaint-gegl.pc.in
sed -i -e's/Gegl-0.3/Gegl-0.4/g' gegl/Makefile.am
sed -i -e's/Gegl-0.3/Gegl-0.4/g' gegl/Makefile.in
sed -i -e's/gegl-0.3 >= 0.3/gegl-0.4 >= 0.4/g' configure
___
gimp-developer-list mailing list
List address:gimp-developer-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list
List archives:   https://mail.gnome.org/archives/gimp-developer-list


Re: [Gimp-developer] libmypaint version for building GIMP-2.10.0

2018-04-27 Thread Jehan Pagès
Hi!

On Fri, Apr 27, 2018 at 7:18 PM, Carmelo DrRaw 
wrote:

> Dear all,
>
> I am currently stuck with what seems to be a version dependency conflict
> between GIMP and libmypaint-1.3.0.
>
> GIMP requires GEGL >= v0.4.0, however libmypaint still requires GEGL
> v0.3.x:
>
> checking for GEGL... no
> configure: error: Package requirements (gegl-0.3 >= 0.3) were not met:
>
> No package 'gegl-0.3' found
>
>
> This happens because GEGL v0.4.x only provides gegl-0.4.pc
>
>
Which is normal, since it is GEGL 0.4, not 0.3. ;-)

And yes, you are right. The GEGL dependency in libmypaint is GEGL v0.3, and
I am not sure that will change soon, since libmypaint developers are mostly
working on libmypaint v2 now. You can still ask them if they would make a
libmypaint v1 with updated GEGL dep.

BUT for the time being, it is not much a problem because (1) GEGL v0.3 and
v0.4 can be installed next to each other (hence the different namespace)
and (2) you don't have to build libmypaint with GEGL. libmypaint-gegl is
not used by GIMP in any way to this day.
So just build libmypaint with --disable-gegl and don't care about
installing GEGL v0.3.


> I am using the latest official release of libmypaint:
> https://github.com/mypaint/libmypaint/releases/download/
> v1.3.0/libmypaint-1.3.0.tar.xz  libmypaint/releases/download/v1.3.0/libmypaint-1.3.0.tar.xz>
>
>
libmypaint version is right. This is the GEGL version whose version you did
not correctly installed.

Jehan


> Should I use a specific commit instead?
>
> Thanks a lot!
> ___
> gimp-developer-list mailing list
> List address:gimp-developer-list@gnome.org
> List membership: https://mail.gnome.org/mailman/listinfo/gimp-
> developer-list
> List archives:   https://mail.gnome.org/archives/gimp-developer-list
>



-- 
ZeMarmot open animation film
http://film.zemarmot.net
Liberapay: https://liberapay.com/ZeMarmot/
Patreon: https://patreon.com/zemarmot
Tipeee: https://www.tipeee.com/zemarmot
___
gimp-developer-list mailing list
List address:gimp-developer-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list
List archives:   https://mail.gnome.org/archives/gimp-developer-list


[Gimp-developer] libmypaint version for building GIMP-2.10.0

2018-04-27 Thread Carmelo DrRaw
Dear all,

I am currently stuck with what seems to be a version dependency conflict 
between GIMP and libmypaint-1.3.0.

GIMP requires GEGL >= v0.4.0, however libmypaint still requires GEGL v0.3.x:

checking for GEGL... no
configure: error: Package requirements (gegl-0.3 >= 0.3) were not met:

No package 'gegl-0.3' found


This happens because GEGL v0.4.x only provides gegl-0.4.pc

I am using the latest official release of libmypaint: 
https://github.com/mypaint/libmypaint/releases/download/v1.3.0/libmypaint-1.3.0.tar.xz
 


Should I use a specific commit instead?

Thanks a lot!
___
gimp-developer-list mailing list
List address:gimp-developer-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list
List archives:   https://mail.gnome.org/archives/gimp-developer-list


Re: [Gimp-developer] Libmypaint-gegl.so

2015-10-13 Thread Hans Petter Birkeland
Right. Well, thanks anyway :-)

Hans Petter

http://hpbirkeland.com

2015-10-13 9:33 GMT+02:00 Thorsten Stettin :

> Am 13.10.2015 um 09:01 schrieb Hans Petter Birkeland:
>
> I solved it. The question seems rather unnecessary now, but it got my
> brain going. Funny how I often seem to relax once I have asked a question,
> and then I suddenly find a solution. I thought "maybe there is a
> libmypaint-package in Synaptic". I searched, found it and installed it, and
> voila! Gimp was up and running again. Thanks!
>
> The joke was on me. For some reasons there was no libmypaint runtime
> dependency. It have something to do with a library version issue I think.
> This should be fixed in the next GIMP version which is building right now.
>
> Nobody is perfect. :-D
>
>
> Hans Petter
>
> http://hpbirkeland.com
>
> 2015-10-12 21:04 GMT+02:00 Thorsten Stettin :
>
>> Just try sudo apt-get update && sudo apt-get upgrade..It should work, I
>> hope.
>> Sorry for that but you are standing on the edge.O:-)
>>
>> Best regards
>>
>> Thorsten
>>
>>
>> --
>> Lao-Tse sagt: Nichtstun ist besser, als mit viel Mühe nichts zu schaffen.
>> Und er sagt auch: Ich habe drei Schätze, die ich hüte und hege.
>> Der eine ist die Liebe, der zweite ist die Genügsamkeit, der dritte ist
>> die Demut.
>> Nur der Liebende ist mutig, nur der Genügsame ist großzügig, nur der
>> Demütige ist fähig zu herrschen
>>
>>
>>
>
>
> --
> Lao-Tse sagt: Nichtstun ist besser, als mit viel Mühe nichts zu schaffen.
> Und er sagt auch: Ich habe drei Schätze, die ich hüte und hege.
> Der eine ist die Liebe, der zweite ist die Genügsamkeit, der dritte ist die 
> Demut.
> Nur der Liebende ist mutig, nur der Genügsame ist großzügig, nur der Demütige 
> ist fähig zu herrschen.
>
>
___
gimp-developer-list mailing list
List address:gimp-developer-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list
List archives:   https://mail.gnome.org/archives/gimp-developer-list


Re: [Gimp-developer] Libmypaint-gegl.so

2015-10-13 Thread Hans Petter Birkeland
I solved it. The question seems rather unnecessary now, but it got my brain
going. Funny how I often seem to relax once I have asked a question, and
then I suddenly find a solution. I thought "maybe there is a
libmypaint-package in Synaptic". I searched, found it and installed it, and
voila! Gimp was up and running again. Thanks!

Hans Petter

http://hpbirkeland.com

2015-10-12 21:04 GMT+02:00 Thorsten Stettin :

> Just try sudo apt-get update && sudo apt-get upgrade..It should work, I
> hope.
> Sorry for that but you are standing on the edge.O:-)
>
> Best regards
>
> Thorsten
>
>
> --
> Lao-Tse sagt: Nichtstun ist besser, als mit viel Mühe nichts zu schaffen.
> Und er sagt auch: Ich habe drei Schätze, die ich hüte und hege.
> Der eine ist die Liebe, der zweite ist die Genügsamkeit, der dritte ist
> die Demut.
> Nur der Liebende ist mutig, nur der Genügsame ist großzügig, nur der
> Demütige ist fähig zu herrschen
>
>
>
___
gimp-developer-list mailing list
List address:gimp-developer-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list
List archives:   https://mail.gnome.org/archives/gimp-developer-list


Re: [Gimp-developer] Libmypaint-gegl.so

2015-10-13 Thread Thorsten Stettin

Am 13.10.2015 um 09:01 schrieb Hans Petter Birkeland:
I solved it. The question seems rather unnecessary now, but it got my 
brain going. Funny how I often seem to relax once I have asked a 
question, and then I suddenly find a solution. I thought "maybe there 
is a libmypaint-package in Synaptic". I searched, found it and 
installed it, and voila! Gimp was up and running again. Thanks!
The joke was on me. For some reasons there was no libmypaint runtime 
dependency. It have something to do with a library version issue I think.

This should be fixed in the next GIMP version which is building right now.

Nobody is perfect. :-D


Hans Petter

http://hpbirkeland.com

2015-10-12 21:04 GMT+02:00 Thorsten Stettin 
>:


Just try sudo apt-get update && sudo apt-get upgrade..It should
work, I hope.
Sorry for that but you are standing on the edge.O:-)

Best regards

Thorsten


-- 
Lao-Tse sagt: Nichtstun ist besser, als mit viel Mühe nichts zu

schaffen.
Und er sagt auch: Ich habe drei Schätze, die ich hüte und hege.
Der eine ist die Liebe, der zweite ist die Genügsamkeit, der
dritte ist die Demut.
Nur der Liebende ist mutig, nur der Genügsame ist großzügig, nur
der Demütige ist fähig zu herrschen






--
Lao-Tse sagt: Nichtstun ist besser, als mit viel Mühe nichts zu schaffen.
Und er sagt auch: Ich habe drei Schätze, die ich hüte und hege.
Der eine ist die Liebe, der zweite ist die Genügsamkeit, der dritte ist die 
Demut.
Nur der Liebende ist mutig, nur der Genügsame ist großzügig, nur der Demütige 
ist fähig zu herrschen.

___
gimp-developer-list mailing list
List address:gimp-developer-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list
List archives:   https://mail.gnome.org/archives/gimp-developer-list


[Gimp-developer] libmypaint-gegl.so

2015-10-13 Thread Jörn Eisenkrätzer
 Hans Petter Birkeland wrote it yesterday and I can confirm, is it a unresoved 
dependency to libmypaint-gegl.so.Yesterday I got an update of gimp, gmic and 
gegl. Following this I gort an update of gegl again.
Gimp is not starting, it it missing libmypaint-gegl.so. And I can't find it 
too.apt-get update is not a solution. Whitch packet contains this library?
Best regardsJörn
___
gimp-developer-list mailing list
List address:gimp-developer-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list
List archives:   https://mail.gnome.org/archives/gimp-developer-list


Re: [Gimp-developer] libmypaint-gegl.so

2015-10-13 Thread Thorsten Stettin

Am 13.10.2015 um 08:43 schrieb Jörn Eisenkrätzer:

  Hans Petter Birkeland wrote it yesterday and I can confirm, is it a unresoved 
dependency to libmypaint-gegl.so.Yesterday I got an update of gimp, gmic and 
gegl. Following this I gort an update of gegl again.
Gimp is not starting, it it missing libmypaint-gegl.so. And I can't find it 
too.apt-get update is not a solution. Whitch packet contains this library?
Best regardsJörn

It should be fixed.

___
gimp-developer-list mailing list
List address:gimp-developer-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list
List archives:   https://mail.gnome.org/archives/gimp-developer-list



--
Lao-Tse sagt: Nichtstun ist besser, als mit viel Mühe nichts zu schaffen.
Und er sagt auch: Ich habe drei Schätze, die ich hüte und hege.
Der eine ist die Liebe, der zweite ist die Genügsamkeit, der dritte ist die 
Demut.
Nur der Liebende ist mutig, nur der Genügsame ist großzügig, nur der Demütige 
ist fähig zu herrschen.


___
gimp-developer-list mailing list
List address:gimp-developer-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list
List archives:   https://mail.gnome.org/archives/gimp-developer-list


[Gimp-developer] Libmypaint-gegl.so

2015-10-12 Thread Hans Petter Birkeland
Hi,
As this is the only place I have managed to find any mentioning of
libmypaint I'll put my question here.

I use Gimp 2.9.x on Linux Mint, from otto-kesselgulasch/gimp-edge. After
update today of Gegl, Gimp will not start anymore. starting from a terminal
gives this:

hpb@hp-Acer ~ $ gimp
gimp: error while loading shared libraries: libmypaint-gegl.so: cannot open
shared object file: No such file or directory

What can I do to make it work again?

Best regards,

Hans Petter Birkeland

http://hpbirkeland.com
___
gimp-developer-list mailing list
List address:gimp-developer-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list
List archives:   https://mail.gnome.org/archives/gimp-developer-list


Re: [Gimp-developer] Libmypaint-gegl.so

2015-10-12 Thread Thorsten Stettin

Am 12.10.2015 um 20:22 schrieb Hans Petter Birkeland:

Hi,
As this is the only place I have managed to find any mentioning of
libmypaint I'll put my question here.

I use Gimp 2.9.x on Linux Mint, from otto-kesselgulasch/gimp-edge. After
update today of Gegl, Gimp will not start anymore. starting from a terminal
gives this:

hpb@hp-Acer ~ $ gimp
gimp: error while loading shared libraries: libmypaint-gegl.so: cannot open
shared object file: No such file or directory

What can I do to make it work again?

When have you update? I'll do some changes within the last 22 minutes.
 https://launchpad.net/~otto-kesselgulasch/+archive/ubuntu/gimp-edge/+packages
Sorry for that but I'm on Ubuntu 15.10. I'm not able to reproduce that 
behavoir. :-(



Best regards,

Hans Petter Birkeland

http://hpbirkeland.com
___
gimp-developer-list mailing list
List address:gimp-developer-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list
List archives:   https://mail.gnome.org/archives/gimp-developer-list



--
Lao-Tse sagt: Nichtstun ist besser, als mit viel Mühe nichts zu schaffen.
Und er sagt auch: Ich habe drei Schätze, die ich hüte und hege.
Der eine ist die Liebe, der zweite ist die Genügsamkeit, der dritte ist die 
Demut.
Nur der Liebende ist mutig, nur der Genügsame ist großzügig, nur der Demütige 
ist fähig zu herrschen.


___
gimp-developer-list mailing list
List address:gimp-developer-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list
List archives:   https://mail.gnome.org/archives/gimp-developer-list


Re: [Gimp-developer] Libmypaint-gegl.so

2015-10-12 Thread Thorsten Stettin
Just try sudo apt-get update && sudo apt-get upgrade..It should work, I 
hope.

Sorry for that but you are standing on the edge.O:-)

Best regards

Thorsten

--
Lao-Tse sagt: Nichtstun ist besser, als mit viel Mühe nichts zu schaffen.
Und er sagt auch: Ich habe drei Schätze, die ich hüte und hege.
Der eine ist die Liebe, der zweite ist die Genügsamkeit, der dritte ist die 
Demut.
Nur der Liebende ist mutig, nur der Genügsame ist großzügig, nur der Demütige 
ist fähig zu herrschen


___
gimp-developer-list mailing list
List address:gimp-developer-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list
List archives:   https://mail.gnome.org/archives/gimp-developer-list


Re: [Gimp-developer] libmypaint

2015-10-06 Thread Michael Natterer
On Tue, 2015-10-06 at 15:59 +0200, Jehan Pagès wrote:
> Hi,
> 
> On Sun, Oct 4, 2015 at 2:55 PM, Thorsten Stettin
>  wrote:
> > Am 03.10.2015 um 11:49 schrieb Michael Natterer:
> > > 
> > > On Sat, 2015-10-03 at 00:47 +0200, Thorsten Stettin wrote:
> > > > 
> > > > Hello,
> > > > 
> > > > I'm just integrate my homebrew Ubuntu package called
> > > > libmypaint. But
> > > > what's the impact regarding Gimp-2.9.x?
> > > 
> > > With libmypaint it builds the mypaint brush tool which you need
> > > to enable in prefs -> playground. It's very experimental :)
> > 
> > Ok, I'll do my very best. :-D
> 
> I'd like to add that it is still very very slow, not really usable
> yet
> in real use cases. Just saying since I believe your purpose is to do
> a
> package, and users should be aware where they are getting into.

It has to be activated on a prefs page that says "experimental
playground", so who cares... If they activate it let them have it.

Regards,
--Mitch


___
gimp-developer-list mailing list
List address:gimp-developer-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list
List archives:   https://mail.gnome.org/archives/gimp-developer-list


Re: [Gimp-developer] libmypaint

2015-10-06 Thread Jehan Pagès
Hi,

On Sun, Oct 4, 2015 at 2:55 PM, Thorsten Stettin
 wrote:
> Am 03.10.2015 um 11:49 schrieb Michael Natterer:
>>
>> On Sat, 2015-10-03 at 00:47 +0200, Thorsten Stettin wrote:
>>>
>>> Hello,
>>>
>>> I'm just integrate my homebrew Ubuntu package called libmypaint. But
>>> what's the impact regarding Gimp-2.9.x?
>>
>> With libmypaint it builds the mypaint brush tool which you need
>> to enable in prefs -> playground. It's very experimental :)
>
> Ok, I'll do my very best. :-D

I'd like to add that it is still very very slow, not really usable yet
in real use cases. Just saying since I believe your purpose is to do a
package, and users should be aware where they are getting into.

Jehan

>>
>> Regards,
>> Mitch
>>
>
>
> --
> Lao-Tse sagt: Nichtstun ist besser, als mit viel Mühe nichts zu schaffen.
> Und er sagt auch: Ich habe drei Schätze, die ich hüte und hege.
> Der eine ist die Liebe, der zweite ist die Genügsamkeit, der dritte ist die
> Demut.
> Nur der Liebende ist mutig, nur der Genügsame ist großzügig, nur der
> Demütige ist fähig zu herrschen.
>
>
> ___
> gimp-developer-list mailing list
> List address:gimp-developer-list@gnome.org
> List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list
> List archives:   https://mail.gnome.org/archives/gimp-developer-list
___
gimp-developer-list mailing list
List address:gimp-developer-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list
List archives:   https://mail.gnome.org/archives/gimp-developer-list


Re: [Gimp-developer] libmypaint

2015-10-05 Thread Thorsten Stettin

Am 04.10.2015 um 15:12 schrieb C R:


I'd love to see myPaint brushes come to GIMP. :) good luck!

Something went wrong. I'm able to build Gimp-2,9 against libmypaint on 
my Computer, but at Launchpad.net not. :'(


On 4 Oct 2015 1:55 pm, "Thorsten Stettin" > wrote:


Am 03.10.2015 um 11:49 schrieb Michael Natterer:

On Sat, 2015-10-03 at 00:47 +0200, Thorsten Stettin wrote:

Hello,

I'm just integrate my homebrew Ubuntu package called
libmypaint. But
what's the impact regarding Gimp-2.9.x?

With libmypaint it builds the mypaint brush tool which you need
to enable in prefs -> playground. It's very experimental :)

Ok, I'll do my very best. :-D


Regards,
Mitch



-- 
Lao-Tse sagt: Nichtstun ist besser, als mit viel Mühe nichts zu

schaffen.
Und er sagt auch: Ich habe drei Schätze, die ich hüte und hege.
Der eine ist die Liebe, der zweite ist die Genügsamkeit, der
dritte ist die Demut.
Nur der Liebende ist mutig, nur der Genügsame ist großzügig, nur
der Demütige ist fähig zu herrschen.


___
gimp-developer-list mailing list
List address: gimp-developer-list@gnome.org

List membership:
https://mail.gnome.org/mailman/listinfo/gimp-developer-list
List archives: https://mail.gnome.org/archives/gimp-developer-list




--
Lao-Tse sagt: Nichtstun ist besser, als mit viel Mühe nichts zu schaffen.
Und er sagt auch: Ich habe drei Schätze, die ich hüte und hege.
Der eine ist die Liebe, der zweite ist die Genügsamkeit, der dritte ist die 
Demut.
Nur der Liebende ist mutig, nur der Genügsame ist großzügig, nur der Demütige 
ist fähig zu herrschen.

___
gimp-developer-list mailing list
List address:gimp-developer-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list
List archives:   https://mail.gnome.org/archives/gimp-developer-list


Re: [Gimp-developer] libmypaint

2015-10-04 Thread C R
I'd love to see myPaint brushes come to GIMP. :) good luck!
On 4 Oct 2015 1:55 pm, "Thorsten Stettin" 
wrote:

> Am 03.10.2015 um 11:49 schrieb Michael Natterer:
>
>> On Sat, 2015-10-03 at 00:47 +0200, Thorsten Stettin wrote:
>>
>>> Hello,
>>>
>>> I'm just integrate my homebrew Ubuntu package called libmypaint. But
>>> what's the impact regarding Gimp-2.9.x?
>>>
>> With libmypaint it builds the mypaint brush tool which you need
>> to enable in prefs -> playground. It's very experimental :)
>>
> Ok, I'll do my very best. :-D
>
>
>> Regards,
>> Mitch
>>
>>
>
> --
> Lao-Tse sagt: Nichtstun ist besser, als mit viel Mühe nichts zu schaffen.
> Und er sagt auch: Ich habe drei Schätze, die ich hüte und hege.
> Der eine ist die Liebe, der zweite ist die Genügsamkeit, der dritte ist
> die Demut.
> Nur der Liebende ist mutig, nur der Genügsame ist großzügig, nur der
> Demütige ist fähig zu herrschen.
>
>
> ___
> gimp-developer-list mailing list
> List address:gimp-developer-list@gnome.org
> List membership:
> https://mail.gnome.org/mailman/listinfo/gimp-developer-list
> List archives:   https://mail.gnome.org/archives/gimp-developer-list
>
___
gimp-developer-list mailing list
List address:gimp-developer-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list
List archives:   https://mail.gnome.org/archives/gimp-developer-list


Re: [Gimp-developer] libmypaint

2015-10-04 Thread Thorsten Stettin

Am 04.10.2015 um 15:12 schrieb C R:


I'd love to see myPaint brushes come to GIMP. :) good luck!


I forgot Scons as build dependency. Shame on me. :'(
I'm only human born to make mistakes.
On 4 Oct 2015 1:55 pm, "Thorsten Stettin" > wrote:


Am 03.10.2015 um 11:49 schrieb Michael Natterer:

On Sat, 2015-10-03 at 00:47 +0200, Thorsten Stettin wrote:

Hello,

I'm just integrate my homebrew Ubuntu package called
libmypaint. But
what's the impact regarding Gimp-2.9.x?

With libmypaint it builds the mypaint brush tool which you need
to enable in prefs -> playground. It's very experimental :)

Ok, I'll do my very best. :-D


Regards,
Mitch



-- 
Lao-Tse sagt: Nichtstun ist besser, als mit viel Mühe nichts zu

schaffen.
Und er sagt auch: Ich habe drei Schätze, die ich hüte und hege.
Der eine ist die Liebe, der zweite ist die Genügsamkeit, der
dritte ist die Demut.
Nur der Liebende ist mutig, nur der Genügsame ist großzügig, nur
der Demütige ist fähig zu herrschen.


___
gimp-developer-list mailing list
List address: gimp-developer-list@gnome.org

List membership:
https://mail.gnome.org/mailman/listinfo/gimp-developer-list
List archives: https://mail.gnome.org/archives/gimp-developer-list




--
Lao-Tse sagt: Nichtstun ist besser, als mit viel Mühe nichts zu schaffen.
Und er sagt auch: Ich habe drei Schätze, die ich hüte und hege.
Der eine ist die Liebe, der zweite ist die Genügsamkeit, der dritte ist die 
Demut.
Nur der Liebende ist mutig, nur der Genügsame ist großzügig, nur der Demütige 
ist fähig zu herrschen.

___
gimp-developer-list mailing list
List address:gimp-developer-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list
List archives:   https://mail.gnome.org/archives/gimp-developer-list


Re: [Gimp-developer] libmypaint

2015-10-03 Thread Michael Natterer
On Sat, 2015-10-03 at 00:47 +0200, Thorsten Stettin wrote:
> Hello,
> 
> I'm just integrate my homebrew Ubuntu package called libmypaint. But 
> what's the impact regarding Gimp-2.9.x?

With libmypaint it builds the mypaint brush tool which you need
to enable in prefs -> playground. It's very experimental :)

Regards,
Mitch

___
gimp-developer-list mailing list
List address:gimp-developer-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list
List archives:   https://mail.gnome.org/archives/gimp-developer-list


[Gimp-developer] libmypaint

2015-10-02 Thread Thorsten Stettin

Hello,

I'm just integrate my homebrew Ubuntu package called libmypaint. But 
what's the impact regarding Gimp-2.9.x?


Any hints are welcome.

Best regards

--
Lao-Tse sagt: Nichtstun ist besser, als mit viel Mühe nichts zu schaffen.
Und er sagt auch: Ich habe drei Schätze, die ich hüte und hege.
Der eine ist die Liebe, der zweite ist die Genügsamkeit, der dritte ist die 
Demut.
Nur der Liebende ist mutig, nur der Genügsame ist großzügig, nur der Demütige 
ist fähig zu herrschen.


___
gimp-developer-list mailing list
List address:gimp-developer-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list
List archives:   https://mail.gnome.org/archives/gimp-developer-list