All of lore.kernel.org
 help / color / mirror / Atom feed
* mypaint: new recipe for version 0.9.1
@ 2011-04-29 15:43 C. Charreyre
  2011-04-29 15:43 ` [PATCH v2] " C. Charreyre
  2011-04-29 15:43 ` [PATCH v2] python-numpy: add missing release dependencies C. Charreyre
  0 siblings, 2 replies; 7+ messages in thread
From: C. Charreyre @ 2011-04-29 15:43 UTC (permalink / raw)
  To: openembedded-devel


Hi all,

this new recipe (corrected) will build the painting soft mypaint.

In order to correctly run on the target, it is necessary to add new recipes dependencies in python-numpy recipe.

Here are the two patches in version 2.

Hoping it will be valuable.




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

* [PATCH v2] mypaint: new recipe for version 0.9.1
  2011-04-29 15:43 mypaint: new recipe for version 0.9.1 C. Charreyre
@ 2011-04-29 15:43 ` C. Charreyre
  2011-04-30  7:22   ` Paul Menzel
  2011-04-29 15:43 ` [PATCH v2] python-numpy: add missing release dependencies C. Charreyre
  1 sibling, 1 reply; 7+ messages in thread
From: C. Charreyre @ 2011-04-29 15:43 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: C. Charreyre <christian.charreyre@cioinfoindus.fr>
---
 recipes/mypaint/files/scons-adapt.patch |   20 +++++++++++++++++
 recipes/mypaint/mypaint_0.9.1.bb        |   36 +++++++++++++++++++++++++++++++
 2 files changed, 56 insertions(+), 0 deletions(-)
 create mode 100644 recipes/mypaint/files/scons-adapt.patch
 create mode 100644 recipes/mypaint/mypaint_0.9.1.bb

diff --git a/recipes/mypaint/files/scons-adapt.patch b/recipes/mypaint/files/scons-adapt.patch
new file mode 100644
index 0000000..dcad6db
--- /dev/null
+++ b/recipes/mypaint/files/scons-adapt.patch
@@ -0,0 +1,20 @@
+Author: Christian Charreyre <christian.charreyre@cioinfoindus.fr>
+
+Adapt scons to OE
+Index: mypaint-0.9.1/lib/SConscript
+===================================================================
+--- mypaint-0.9.1.orig/lib/SConscript	2011-04-21 11:31:29.000000000 +0200
++++ mypaint-0.9.1/lib/SConscript	2011-04-21 11:35:30.000000000 +0200
+@@ -1,5 +1,11 @@
+ Import('env')
+-import sys
++import sys, os
++env.Replace(SHCXX = os.environ['CXX'])
++env.Replace(SHLINK = os.environ['CXX'])
++env.Replace(LDMODULEFLAGS = os.environ['TARGET_LDFLAGS'])
++env.Append(LDMODULEFLAGS = ['-Wl,--hash-style=gnu'])
++env.Append(LDMODULEFLAGS = ['-shared'])
++env.Replace(PATH = os.environ['PATH'])
+ 
+ # For the record: I know that scons supports swig. But it doesn't scan for #include in the generated code.
+ # 
diff --git a/recipes/mypaint/mypaint_0.9.1.bb b/recipes/mypaint/mypaint_0.9.1.bb
new file mode 100644
index 0000000..a7e5077
--- /dev/null
+++ b/recipes/mypaint/mypaint_0.9.1.bb
@@ -0,0 +1,31 @@
+DESCRIPTION="fast and easy open-source graphics application for digital painters"
+LICENSE="GPL"
+SECTION = "x11/applications"
+PRIORITY = "optional"
+HOMEPAGE = "http://mypaint.intilinux.com/"
+
+RDEPENDS_${PN} = "python-image python-json python-numpy"
+
+SRC_URI = "http://download.gna.org/mypaint/${PN}-${PV}.tar.bz2 \
+	file://scons-adapt.patch \
+"
+SRC_URI[md5sum] = "6249a16359a438d6dc658f5765b35515"
+SRC_URI[sha256sum] = "407b599f62fb0d6e711fee57d22e64d3aec88825364fb5f7f73b9f0940aa7aed"
+
+inherit distutils scons
+
+do_compile() {
+	STAGING_INCDIR=${STAGING_INCDIR} \
+       STAGING_LIBDIR=${STAGING_LIBDIR} \
+       BUILD_SYS=${BUILD_SYS} \
+	HOST_SYS=${HOST_SYS} \
+	PATH=${PATH} scons_do_compile
+}
+
+do_install() {
+	BUILD_SYS=${BUILD_SYS} \
+	HOST_SYS=${HOST_SYS} \
+	scons_do_install
+}
+
+FILES_${PN} += "${datadir}"
-- 
1.7.0.4




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

* [PATCH v2] python-numpy: add missing release dependencies
  2011-04-29 15:43 mypaint: new recipe for version 0.9.1 C. Charreyre
  2011-04-29 15:43 ` [PATCH v2] " C. Charreyre
@ 2011-04-29 15:43 ` C. Charreyre
  2011-05-06  8:24   ` Paul Menzel
  1 sibling, 1 reply; 7+ messages in thread
From: C. Charreyre @ 2011-04-29 15:43 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: C. Charreyre <christian.charreyre@cioinfoindus.fr>
---
 recipes/python/python-numpy_1.1.1.bb |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/recipes/python/python-numpy_1.1.1.bb b/recipes/python/python-numpy_1.1.1.bb
index f5c23e0..9dda508 100644
--- a/recipes/python/python-numpy_1.1.1.bb
+++ b/recipes/python/python-numpy_1.1.1.bb
@@ -4,6 +4,8 @@ PRIORITY = "optional"
 LICENSE = "PSF"
 PR = "ml0"
 
+RDEPENDS_${PN} = "python-compiler python-mmap python-pkgutil python-pydoc python-unittest"
+
 SRC_URI = "${SOURCEFORGE_MIRROR}/numpy/numpy-${PV}.tar.gz \
            file://unbreak-assumptions.diff \
 	   file://trycompile.diff \
-- 
1.7.0.4




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

* Re: [PATCH v2] mypaint: new recipe for version 0.9.1
  2011-04-29 15:43 ` [PATCH v2] " C. Charreyre
@ 2011-04-30  7:22   ` Paul Menzel
  2011-05-02 16:09     ` Christian Charreyre
  0 siblings, 1 reply; 7+ messages in thread
From: Paul Menzel @ 2011-04-30  7:22 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 3883 bytes --]

Dear Christian,


thank you for your improved patch.

Am Freitag, den 29.04.2011, 17:43 +0200 schrieb C. Charreyre:

What distribution and machine do you use to build this?

I applied your patches. Unfortunately task compile fails with the
following error using `angstrom-2010.x` or `minimal` with `MACHINE =
"beagleboard".

        + scons_do_compile
        + '[' '' = 1 ']'
        + /oe/build-angstrom-next/angstrom-dev/sysroots/i686-linux/usr/bin/scons -j4 'CXX=arm-angstrom-linux-gnueabi-g++ -march=armv7-a -mtune=cortex-a8 -mfpu=neon -mfloat-abi=softfp -mthumb-interwork -mno-thumb --sysroot=/oe/build-angstrom-next/angstrom-dev/sysroots/armv7a-angstrom-linux-gnueabi' PREFIX=/usr prefix=/usr
        scons: Reading SConscript files ...
        Building for python2.6
        You need to have numpy installed.
        
        ImportError: No module named numpy:
          File "/oe/build-angstrom-next/angstrom-dev/work/armv7a-angstrom-linux-gnueabi/mypaint-0.9.1-r0/mypaint-0.9.1/SConstruct", line 15:
            import numpy
        + oefatal 'scons build

> Signed-off-by: C. Charreyre <christian.charreyre@cioinfoindus.fr>

Maybe spell out you first name.

        git config user.name "Christian Charreyre" # maybe even
        `--global`

> ---
>  recipes/mypaint/files/scons-adapt.patch |   20 +++++++++++++++++
>  recipes/mypaint/mypaint_0.9.1.bb        |   36 +++++++++++++++++++++++++++++++
>  2 files changed, 56 insertions(+), 0 deletions(-)
>  create mode 100644 recipes/mypaint/files/scons-adapt.patch
>  create mode 100644 recipes/mypaint/mypaint_0.9.1.bb
> 
> diff --git a/recipes/mypaint/files/scons-adapt.patch b/recipes/mypaint/files/scons-adapt.patch
> new file mode 100644
> index 0000000..dcad6db
> --- /dev/null
> +++ b/recipes/mypaint/files/scons-adapt.patch
> @@ -0,0 +1,20 @@
> +Author: Christian Charreyre <christian.charreyre@cioinfoindus.fr>
> +
> +Adapt scons to OE
> +Index: mypaint-0.9.1/lib/SConscript
> +===================================================================
> +--- mypaint-0.9.1.orig/lib/SConscript	2011-04-21 11:31:29.000000000 +0200
> ++++ mypaint-0.9.1/lib/SConscript	2011-04-21 11:35:30.000000000 +0200
> +@@ -1,5 +1,11 @@
> + Import('env')
> +-import sys
> ++import sys, os
> ++env.Replace(SHCXX = os.environ['CXX'])
> ++env.Replace(SHLINK = os.environ['CXX'])
> ++env.Replace(LDMODULEFLAGS = os.environ['TARGET_LDFLAGS'])
> ++env.Append(LDMODULEFLAGS = ['-Wl,--hash-style=gnu'])
> ++env.Append(LDMODULEFLAGS = ['-shared'])
> ++env.Replace(PATH = os.environ['PATH'])
> + 
> + # For the record: I know that scons supports swig. But it doesn't scan for #include in the generated code.
> + # 
> diff --git a/recipes/mypaint/mypaint_0.9.1.bb b/recipes/mypaint/mypaint_0.9.1.bb
> new file mode 100644
> index 0000000..a7e5077
> --- /dev/null
> +++ b/recipes/mypaint/mypaint_0.9.1.bb
> @@ -0,0 +1,31 @@
> +DESCRIPTION="fast and easy open-source graphics application for digital painters"
> +LICENSE="GPL"
> +SECTION = "x11/applications"
> +PRIORITY = "optional"
> +HOMEPAGE = "http://mypaint.intilinux.com/"
> +
> +RDEPENDS_${PN} = "python-image python-json python-numpy"
> +
> +SRC_URI = "http://download.gna.org/mypaint/${PN}-${PV}.tar.bz2 \
> +	file://scons-adapt.patch \
> +"
> +SRC_URI[md5sum] = "6249a16359a438d6dc658f5765b35515"
> +SRC_URI[sha256sum] = "407b599f62fb0d6e711fee57d22e64d3aec88825364fb5f7f73b9f0940aa7aed"
> +
> +inherit distutils scons
> +
> +do_compile() {
> +	STAGING_INCDIR=${STAGING_INCDIR} \
> +       STAGING_LIBDIR=${STAGING_LIBDIR} \
> +       BUILD_SYS=${BUILD_SYS} \
> +	HOST_SYS=${HOST_SYS} \
> +	PATH=${PATH} scons_do_compile
> +}
> +
> +do_install() {
> +	BUILD_SYS=${BUILD_SYS} \
> +	HOST_SYS=${HOST_SYS} \
> +	scons_do_install
> +}
> +
> +FILES_${PN} += "${datadir}"


Thanks,

Paul

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: [PATCH v2] mypaint: new recipe for version 0.9.1
  2011-04-30  7:22   ` Paul Menzel
@ 2011-05-02 16:09     ` Christian Charreyre
  0 siblings, 0 replies; 7+ messages in thread
From: Christian Charreyre @ 2011-05-02 16:09 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 5133 bytes --]

Dear Paul,

my configuration is MACHINE="beagleboard" and DISTRO="angstrom-2008.1".

I've successfully reproduced your problem, that is explained by missing 
dependencies in mypaint recipe.
In fact scons normally uses python-numpy (native version) to define 
parts of the include path.
As python-numpy is not availbale in native version, I first made a 
receipe to generate it, but with Arm target and X86_64 host troubles may 
happen regarding type's length, so I patched Sconscript to give the 
correct path without python-numpy-native.

In my environment it seems to work correctly.

I will submit a new version (v3) that I hope will work better in a 
second mail.

Concerning my first name, I don't understand what happens because git 
config user.name returns "Christian Charreyre".
I have manually corrected in the v3 patch.

Regards

Le 30/04/2011 09:22, Paul Menzel a écrit :
> Dear Christian,
>
>
> thank you for your improved patch.
>
> Am Freitag, den 29.04.2011, 17:43 +0200 schrieb C. Charreyre:
>
> What distribution and machine do you use to build this?
>
> I applied your patches. Unfortunately task compile fails with the
> following error using `angstrom-2010.x` or `minimal` with `MACHINE =
> "beagleboard".
>
>          + scons_do_compile
>          + '[' '' = 1 ']'
>          + /oe/build-angstrom-next/angstrom-dev/sysroots/i686-linux/usr/bin/scons -j4 'CXX=arm-angstrom-linux-gnueabi-g++ -march=armv7-a -mtune=cortex-a8 -mfpu=neon -mfloat-abi=softfp -mthumb-interwork -mno-thumb --sysroot=/oe/build-angstrom-next/angstrom-dev/sysroots/armv7a-angstrom-linux-gnueabi' PREFIX=/usr prefix=/usr
>          scons: Reading SConscript files ...
>          Building for python2.6
>          You need to have numpy installed.
>
>          ImportError: No module named numpy:
>            File "/oe/build-angstrom-next/angstrom-dev/work/armv7a-angstrom-linux-gnueabi/mypaint-0.9.1-r0/mypaint-0.9.1/SConstruct", line 15:
>              import numpy
>          + oefatal 'scons build
>
>> Signed-off-by: C. Charreyre<christian.charreyre@cioinfoindus.fr>
> Maybe spell out you first name.
>
>          git config user.name "Christian Charreyre" # maybe even
>          `--global`
>
>> ---
>>   recipes/mypaint/files/scons-adapt.patch |   20 +++++++++++++++++
>>   recipes/mypaint/mypaint_0.9.1.bb        |   36 +++++++++++++++++++++++++++++++
>>   2 files changed, 56 insertions(+), 0 deletions(-)
>>   create mode 100644 recipes/mypaint/files/scons-adapt.patch
>>   create mode 100644 recipes/mypaint/mypaint_0.9.1.bb
>>
>> diff --git a/recipes/mypaint/files/scons-adapt.patch b/recipes/mypaint/files/scons-adapt.patch
>> new file mode 100644
>> index 0000000..dcad6db
>> --- /dev/null
>> +++ b/recipes/mypaint/files/scons-adapt.patch
>> @@ -0,0 +1,20 @@
>> +Author: Christian Charreyre<christian.charreyre@cioinfoindus.fr>
>> +
>> +Adapt scons to OE
>> +Index: mypaint-0.9.1/lib/SConscript
>> +===================================================================
>> +--- mypaint-0.9.1.orig/lib/SConscript	2011-04-21 11:31:29.000000000 +0200
>> ++++ mypaint-0.9.1/lib/SConscript	2011-04-21 11:35:30.000000000 +0200
>> +@@ -1,5 +1,11 @@
>> + Import('env')
>> +-import sys
>> ++import sys, os
>> ++env.Replace(SHCXX = os.environ['CXX'])
>> ++env.Replace(SHLINK = os.environ['CXX'])
>> ++env.Replace(LDMODULEFLAGS = os.environ['TARGET_LDFLAGS'])
>> ++env.Append(LDMODULEFLAGS = ['-Wl,--hash-style=gnu'])
>> ++env.Append(LDMODULEFLAGS = ['-shared'])
>> ++env.Replace(PATH = os.environ['PATH'])
>> +
>> + # For the record: I know that scons supports swig. But it doesn't scan for #include in the generated code.
>> + #
>> diff --git a/recipes/mypaint/mypaint_0.9.1.bb b/recipes/mypaint/mypaint_0.9.1.bb
>> new file mode 100644
>> index 0000000..a7e5077
>> --- /dev/null
>> +++ b/recipes/mypaint/mypaint_0.9.1.bb
>> @@ -0,0 +1,31 @@
>> +DESCRIPTION="fast and easy open-source graphics application for digital painters"
>> +LICENSE="GPL"
>> +SECTION = "x11/applications"
>> +PRIORITY = "optional"
>> +HOMEPAGE = "http://mypaint.intilinux.com/"
>> +
>> +RDEPENDS_${PN} = "python-image python-json python-numpy"
>> +
>> +SRC_URI = "http://download.gna.org/mypaint/${PN}-${PV}.tar.bz2 \
>> +	file://scons-adapt.patch \
>> +"
>> +SRC_URI[md5sum] = "6249a16359a438d6dc658f5765b35515"
>> +SRC_URI[sha256sum] = "407b599f62fb0d6e711fee57d22e64d3aec88825364fb5f7f73b9f0940aa7aed"
>> +
>> +inherit distutils scons
>> +
>> +do_compile() {
>> +	STAGING_INCDIR=${STAGING_INCDIR} \
>> +       STAGING_LIBDIR=${STAGING_LIBDIR} \
>> +       BUILD_SYS=${BUILD_SYS} \
>> +	HOST_SYS=${HOST_SYS} \
>> +	PATH=${PATH} scons_do_compile
>> +}
>> +
>> +do_install() {
>> +	BUILD_SYS=${BUILD_SYS} \
>> +	HOST_SYS=${HOST_SYS} \
>> +	scons_do_install
>> +}
>> +
>> +FILES_${PN} += "${datadir}"
>
> Thanks,
>
> Paul
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[-- Attachment #2: christian_charreyre.vcf --]
[-- Type: text/x-vcard, Size: 278 bytes --]

begin:vcard
fn:Christian  Charreyre
n:Charreyre;Christian 
org:CIO Informatique Industrielle
adr;dom:;;11 Avenue Marigny;Marseille;;13014
email;internet:christian.charreyre@cioinfoindus.fr
tel;work:04 95 05 19 41
url:http://www.cioinfoindus.fr
version:2.1
end:vcard


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

* Re: [PATCH v2] python-numpy: add missing release dependencies
  2011-04-29 15:43 ` [PATCH v2] python-numpy: add missing release dependencies C. Charreyre
@ 2011-05-06  8:24   ` Paul Menzel
  2011-05-17 20:03     ` Christian Charreyre
  0 siblings, 1 reply; 7+ messages in thread
From: Paul Menzel @ 2011-05-06  8:24 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1585 bytes --]

Dear Christian,


I just wanted to commit your patches, but looking at this patch again I
have one more question. (I am sorry.)

Am Freitag, den 29.04.2011, 17:43 +0200 schrieb C. Charreyre:
> Signed-off-by: C. Charreyre <christian.charreyre@cioinfoindus.fr>
> ---
>  recipes/python/python-numpy_1.1.1.bb |    2 ++
>  1 files changed, 2 insertions(+), 0 deletions(-)
> 
> diff --git a/recipes/python/python-numpy_1.1.1.bb b/recipes/python/python-numpy_1.1.1.bb
> index f5c23e0..9dda508 100644
> --- a/recipes/python/python-numpy_1.1.1.bb
> +++ b/recipes/python/python-numpy_1.1.1.bb
> @@ -4,6 +4,8 @@ PRIORITY = "optional"
>  LICENSE = "PSF"
>  PR = "ml0"
>  
> +RDEPENDS_${PN} = "python-compiler python-mmap python-pkgutil python-pydoc python-unittest"
> +

Why are those runtime dependencies needed. Does not `python-numpy` start
at all or are just some features of it not working? Depending on that it
should maybe be a `RRECOMMENDS_${PN}`? I am wondering why the original
recipe author did not put them in.

>  SRC_URI = "${SOURCEFORGE_MIRROR}/numpy/numpy-${PV}.tar.gz \
>             file://unbreak-assumptions.diff \
>  	   file://trycompile.diff \


Thanks,

Paul


PS: Do you get the message delivered directly or just the digest? I am
asking because the threading is broken. If you do get the messages,
could you please use the reply to list option of Thunderbird. Then
everything should be fine.

PPS: I am putting you in CC, so that you maybe get my message earlier
and we will be able to commit your patches before the weekend.

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: [PATCH v2] python-numpy: add missing release dependencies
  2011-05-06  8:24   ` Paul Menzel
@ 2011-05-17 20:03     ` Christian Charreyre
  0 siblings, 0 replies; 7+ messages in thread
From: Christian Charreyre @ 2011-05-17 20:03 UTC (permalink / raw)
  To: Paul Menzel; +Cc: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2444 bytes --]

Dear Paul,

sorry for late reply, I missed you last mail.

Without these dependencies, I got errors on the target when executing 
mypaint, because python-numpy code calls
import from the distinct packages.

When I install python-numpy alone, there are errors. I'm not an expert 
of python packages splits, that was the way I've
found to force installation of the necessary packages. Perhaps you right 
to replace RDEPENDS by RRECOMMENDS.

Perhaps you can ask someone that does know how relationship between 
python packages must be described in recipes.

Regards.

PS : you suggested in previous mail you will commit the last correction. 
Can you commit the final version after deciding
between RDEPENDS and RRECOMENDS.

Thanks.

Le 06/05/2011 10:24, Paul Menzel a écrit :
> Dear Christian,
>
>
> I just wanted to commit your patches, but looking at this patch again I
> have one more question. (I am sorry.)
>
> Am Freitag, den 29.04.2011, 17:43 +0200 schrieb C. Charreyre:
>> Signed-off-by: C. Charreyre<christian.charreyre@cioinfoindus.fr>
>> ---
>>   recipes/python/python-numpy_1.1.1.bb |    2 ++
>>   1 files changed, 2 insertions(+), 0 deletions(-)
>>
>> diff --git a/recipes/python/python-numpy_1.1.1.bb b/recipes/python/python-numpy_1.1.1.bb
>> index f5c23e0..9dda508 100644
>> --- a/recipes/python/python-numpy_1.1.1.bb
>> +++ b/recipes/python/python-numpy_1.1.1.bb
>> @@ -4,6 +4,8 @@ PRIORITY = "optional"
>>   LICENSE = "PSF"
>>   PR = "ml0"
>>
>> +RDEPENDS_${PN} = "python-compiler python-mmap python-pkgutil python-pydoc python-unittest"
>> +
> Why are those runtime dependencies needed. Does not `python-numpy` start
> at all or are just some features of it not working? Depending on that it
> should maybe be a `RRECOMMENDS_${PN}`? I am wondering why the original
> recipe author did not put them in.
>
>>   SRC_URI = "${SOURCEFORGE_MIRROR}/numpy/numpy-${PV}.tar.gz \
>>              file://unbreak-assumptions.diff \
>>   	   file://trycompile.diff \
>
> Thanks,
>
> Paul
>
>
> PS: Do you get the message delivered directly or just the digest? I am
> asking because the threading is broken. If you do get the messages,
> could you please use the reply to list option of Thunderbird. Then
> everything should be fine.
>
> PPS: I am putting you in CC, so that you maybe get my message earlier
> and we will be able to commit your patches before the weekend.


[-- Attachment #2: christian_charreyre.vcf --]
[-- Type: text/x-vcard, Size: 278 bytes --]

begin:vcard
fn:Christian  Charreyre
n:Charreyre;Christian 
org:CIO Informatique Industrielle
adr;dom:;;11 Avenue Marigny;Marseille;;13014
email;internet:christian.charreyre@cioinfoindus.fr
tel;work:04 95 05 19 41
url:http://www.cioinfoindus.fr
version:2.1
end:vcard


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

end of thread, other threads:[~2011-05-17 20:26 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-04-29 15:43 mypaint: new recipe for version 0.9.1 C. Charreyre
2011-04-29 15:43 ` [PATCH v2] " C. Charreyre
2011-04-30  7:22   ` Paul Menzel
2011-05-02 16:09     ` Christian Charreyre
2011-04-29 15:43 ` [PATCH v2] python-numpy: add missing release dependencies C. Charreyre
2011-05-06  8:24   ` Paul Menzel
2011-05-17 20:03     ` Christian Charreyre

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.