* [meta-raspberrypi][PATCH 0/2] minor fixes for current HEADs
@ 2013-01-24 21:57 Andreas Müller
2013-01-24 21:57 ` [meta-raspberrypi][PATCH 1/2] layer.conf: fix parse Andreas Müller
2013-01-24 21:57 ` [meta-raspberrypi][PATCH 2/2] xserver-xf86-config: fix do_install Andreas Müller
0 siblings, 2 replies; 9+ messages in thread
From: Andreas Müller @ 2013-01-24 21:57 UTC (permalink / raw)
To: yocto
The following changes since commit e3e92fe9035f872e619f56426414dd93e917f3cc:
README: Refactor (2013-01-24 21:34:48 +0200)
are available in the git repository at:
git://github.com/schnitzeltony/meta-raspberrypi.git work
Andreas Müller (2):
layer.conf: fix parse
xserver-xf86-config: fix do_install
conf/layer.conf | 2 +-
.../xorg-xserver/xserver-xf86-config_0.1.bbappend | 6 ++++--
2 files changed, 5 insertions(+), 3 deletions(-)
--
1.7.4.4
^ permalink raw reply [flat|nested] 9+ messages in thread* [meta-raspberrypi][PATCH 1/2] layer.conf: fix parse 2013-01-24 21:57 [meta-raspberrypi][PATCH 0/2] minor fixes for current HEADs Andreas Müller @ 2013-01-24 21:57 ` Andreas Müller 2013-01-26 23:03 ` Andrei Gherzan 2013-01-24 21:57 ` [meta-raspberrypi][PATCH 2/2] xserver-xf86-config: fix do_install Andreas Müller 1 sibling, 1 reply; 9+ messages in thread From: Andreas Müller @ 2013-01-24 21:57 UTC (permalink / raw) To: yocto after meta-systemd commit [1] the following error was thrown during parsing: ERROR: Unable to parse /home/Superandy/data/oe-core/sources/meta-raspberrypi/conf/layer.conf: Failure expanding variable BBFILES, expression was ... /home/Superandy/data/oe-core/sources/meta-openembedded/meta-systemd/recipes-*/*/*.bb /home/Superandy/data/oe-core/sources/meta-openembedded/meta-systemd/oe-core/recipes-*/*/*.bbappend /home/Superandy/data/oe-core/sources/meta-openembedded/meta-systemd/meta-oe/recipes-*/*/*.bbappend ${@base_contains('BBFILE_COLLECTIONS', 'systemd-layer','', '/home/Superandy/data/oe-core/sources/meta-openembedded/meta-systemd/invalid.bb', d)} ${@base_contains('BBFILE_COLLECTIONS', 'gnome-layer','/home/Superandy/data/oe-core/sources/meta-openembedded/meta-systemd/meta-gnome/recipes-*/*/*.bbappend', '', d)} ${@base_contains('BBFILE_COLLECTIONS', 'efl-layer','/home/Superandy/data/oe-core/sources/meta-openembedded/meta-systemd/meta-efl/recipes-*/*/*.bbappend', '', d)} ${@base_contains('BBFILE_COLLECTIONS', 'multimedia-layer','/home/Superandy/data/oe-core/sources/meta-openembedded/meta-systemd/meta-multimedia/recipes-*/*/*.bbappend', '', d)} ${@base_contains('BBFILE_COLLECTIONS', 'networking','/home/Superandy/data/oe-core/sources/meta-openembedded/meta-systemd/meta-networking/recipes-*/*/*.bbappend', '', d)} ${@base_contains('BBFILE_COLLECTIONS', 'xfce-layer','/home/Superandy/data/oe-core/sources/meta-openembedded/meta-systemd/meta-xfce/recipes-*/*/*.bbappend', '', d)} ... which triggered exception NameError: name 'base_contains' is not defined [1] http://cgit.openembedded.org/meta-openembedded/commit/?id=3c21a46020bd0816579648f684c41dbd6333583e Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> --- conf/layer.conf | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/conf/layer.conf b/conf/layer.conf index 32e1827..e8b87b2 100644 --- a/conf/layer.conf +++ b/conf/layer.conf @@ -2,7 +2,7 @@ BBPATH .= ":${LAYERDIR}" # We have a recipes directory containing .bb and .bbappend files, add to BBFILES -BBFILES := "${BBFILES} ${LAYERDIR}/recipes*/*/*.bb \ +BBFILES += "${LAYERDIR}/recipes*/*/*.bb \ ${LAYERDIR}/recipes*/*/*.bbappend" BBFILE_COLLECTIONS += "raspberrypi" -- 1.7.4.4 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [meta-raspberrypi][PATCH 1/2] layer.conf: fix parse 2013-01-24 21:57 ` [meta-raspberrypi][PATCH 1/2] layer.conf: fix parse Andreas Müller @ 2013-01-26 23:03 ` Andrei Gherzan 0 siblings, 0 replies; 9+ messages in thread From: Andrei Gherzan @ 2013-01-26 23:03 UTC (permalink / raw) To: Andreas Müller; +Cc: yocto On Thu, Jan 24, 2013 at 10:57:41PM +0100, Andreas Müller wrote: > after meta-systemd commit [1] the following error was thrown during parsing: > > ERROR: Unable to parse /home/Superandy/data/oe-core/sources/meta-raspberrypi/conf/layer.conf: > Failure expanding variable BBFILES, expression was > ... > /home/Superandy/data/oe-core/sources/meta-openembedded/meta-systemd/recipes-*/*/*.bb > /home/Superandy/data/oe-core/sources/meta-openembedded/meta-systemd/oe-core/recipes-*/*/*.bbappend > /home/Superandy/data/oe-core/sources/meta-openembedded/meta-systemd/meta-oe/recipes-*/*/*.bbappend > ${@base_contains('BBFILE_COLLECTIONS', 'systemd-layer','', '/home/Superandy/data/oe-core/sources/meta-openembedded/meta-systemd/invalid.bb', d)} > ${@base_contains('BBFILE_COLLECTIONS', 'gnome-layer','/home/Superandy/data/oe-core/sources/meta-openembedded/meta-systemd/meta-gnome/recipes-*/*/*.bbappend', '', d)} > ${@base_contains('BBFILE_COLLECTIONS', 'efl-layer','/home/Superandy/data/oe-core/sources/meta-openembedded/meta-systemd/meta-efl/recipes-*/*/*.bbappend', '', d)} > ${@base_contains('BBFILE_COLLECTIONS', 'multimedia-layer','/home/Superandy/data/oe-core/sources/meta-openembedded/meta-systemd/meta-multimedia/recipes-*/*/*.bbappend', '', d)} > ${@base_contains('BBFILE_COLLECTIONS', 'networking','/home/Superandy/data/oe-core/sources/meta-openembedded/meta-systemd/meta-networking/recipes-*/*/*.bbappend', '', d)} > ${@base_contains('BBFILE_COLLECTIONS', 'xfce-layer','/home/Superandy/data/oe-core/sources/meta-openembedded/meta-systemd/meta-xfce/recipes-*/*/*.bbappend', '', d)} > ... > which triggered exception NameError: name 'base_contains' is not defined > > [1] http://cgit.openembedded.org/meta-openembedded/commit/?id=3c21a46020bd0816579648f684c41dbd6333583e > > Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> > --- > conf/layer.conf | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/conf/layer.conf b/conf/layer.conf > index 32e1827..e8b87b2 100644 > --- a/conf/layer.conf > +++ b/conf/layer.conf > @@ -2,7 +2,7 @@ > BBPATH .= ":${LAYERDIR}" > > # We have a recipes directory containing .bb and .bbappend files, add to BBFILES > -BBFILES := "${BBFILES} ${LAYERDIR}/recipes*/*/*.bb \ > +BBFILES += "${LAYERDIR}/recipes*/*/*.bb \ > ${LAYERDIR}/recipes*/*/*.bbappend" > > BBFILE_COLLECTIONS += "raspberrypi" > -- > 1.7.4.4 > > _______________________________________________ > yocto mailing list > yocto@yoctoproject.org > https://lists.yoctoproject.org/listinfo/yocto Merged with a little commit message tweak. Thank you, -- Andrei Gherzan m: +40.744.478.414 | f: +40.31.816.28.12 ^ permalink raw reply [flat|nested] 9+ messages in thread
* [meta-raspberrypi][PATCH 2/2] xserver-xf86-config: fix do_install 2013-01-24 21:57 [meta-raspberrypi][PATCH 0/2] minor fixes for current HEADs Andreas Müller 2013-01-24 21:57 ` [meta-raspberrypi][PATCH 1/2] layer.conf: fix parse Andreas Müller @ 2013-01-24 21:57 ` Andreas Müller 2013-01-26 22:58 ` Andrei Gherzan 1 sibling, 1 reply; 9+ messages in thread From: Andreas Müller @ 2013-01-24 21:57 UTC (permalink / raw) To: yocto for some reason wildcards don't work in current head. Error message was: | DEBUG: Executing shell function do_install | install: cannot stat `/home/Superandy/tmp/oe-core-eglibc/work/raspberrypi-angstrom-linux-gnueabi/xserver-xf86-config/0.1-r18/xorg.conf.d/*': No such file or directory Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> --- .../xorg-xserver/xserver-xf86-config_0.1.bbappend | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend b/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend index 65931e2..a8b8e8c 100644 --- a/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend +++ b/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend @@ -1,12 +1,14 @@ FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" # Don't forget to bump PRINC if you update the extra files. -PRINC := "${@int(PRINC) + 5}" +PRINC := "${@int(PRINC) + 6}" THISDIR := "${@os.path.dirname(bb.data.getVar('FILE', d, True))}" FILESPATH =. "${@base_set_filespath(["${THISDIR}/${PN}"], d)}:" -SRC_URI_append_raspberrypi = " file://xorg.conf.d/* " +SRC_URI_append_raspberrypi = " \ + file://xorg.conf.d/10-evdev.conf \ +" do_install_append_raspberrypi () { install -d ${D}/${sysconfdir}/X11/xorg.conf.d/ -- 1.7.4.4 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [meta-raspberrypi][PATCH 2/2] xserver-xf86-config: fix do_install 2013-01-24 21:57 ` [meta-raspberrypi][PATCH 2/2] xserver-xf86-config: fix do_install Andreas Müller @ 2013-01-26 22:58 ` Andrei Gherzan 2013-01-27 14:35 ` Andreas Müller 0 siblings, 1 reply; 9+ messages in thread From: Andrei Gherzan @ 2013-01-26 22:58 UTC (permalink / raw) To: Andreas Müller; +Cc: yocto On Thu, Jan 24, 2013 at 10:57:42PM +0100, Andreas Müller wrote: > for some reason wildcards don't work in current head. Error message was: > > | DEBUG: Executing shell function do_install > | install: cannot stat `/home/Superandy/tmp/oe-core-eglibc/work/raspberrypi-angstrom-linux-gnueabi/xserver-xf86-config/0.1-r18/xorg.conf.d/*': No such file or directory > I can't reproduce your error. For me this works. Maybe was something broken in oe-core? Anyway it seems to be fixed now. Would you retest it please > Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> > --- > .../xorg-xserver/xserver-xf86-config_0.1.bbappend | 6 ++++-- > 1 files changed, 4 insertions(+), 2 deletions(-) > > diff --git a/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend b/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend > index 65931e2..a8b8e8c 100644 > --- a/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend > +++ b/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend > @@ -1,12 +1,14 @@ > FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" > > # Don't forget to bump PRINC if you update the extra files. > -PRINC := "${@int(PRINC) + 5}" > +PRINC := "${@int(PRINC) + 6}" > > THISDIR := "${@os.path.dirname(bb.data.getVar('FILE', d, True))}" > FILESPATH =. "${@base_set_filespath(["${THISDIR}/${PN}"], d)}:" > > -SRC_URI_append_raspberrypi = " file://xorg.conf.d/* " > +SRC_URI_append_raspberrypi = " \ > + file://xorg.conf.d/10-evdev.conf \ > +" > I don't find this lin ebreak necesssary here. And if it was, don't combine formating commits with other fixes. Thanks, -- Andrei Gherzan m: +40.744.478.414 | f: +40.31.816.28.12 ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [meta-raspberrypi][PATCH 2/2] xserver-xf86-config: fix do_install 2013-01-26 22:58 ` Andrei Gherzan @ 2013-01-27 14:35 ` Andreas Müller 2013-03-13 17:47 ` Andrei Gherzan 0 siblings, 1 reply; 9+ messages in thread From: Andreas Müller @ 2013-01-27 14:35 UTC (permalink / raw) To: Andrei Gherzan; +Cc: yocto On Sat, Jan 26, 2013 at 11:58 PM, Andrei Gherzan <andrei@gherzan.ro> wrote: > On Thu, Jan 24, 2013 at 10:57:42PM +0100, Andreas Müller wrote: >> for some reason wildcards don't work in current head. Error message was: >> >> | DEBUG: Executing shell function do_install >> | install: cannot stat `/home/Superandy/tmp/oe-core-eglibc/work/raspberrypi-angstrom-linux-gnueabi/xserver-xf86-config/0.1-r18/xorg.conf.d/*': No such file or directory >> > > I can't reproduce your error. For me this works. Maybe was something broken in > oe-core? Anyway it seems to be fixed now. Would you retest it please Will do that > >> Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> >> --- >> .../xorg-xserver/xserver-xf86-config_0.1.bbappend | 6 ++++-- >> 1 files changed, 4 insertions(+), 2 deletions(-) >> >> diff --git a/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend b/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend >> index 65931e2..a8b8e8c 100644 >> --- a/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend >> +++ b/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend >> @@ -1,12 +1,14 @@ >> FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" >> >> # Don't forget to bump PRINC if you update the extra files. >> -PRINC := "${@int(PRINC) + 5}" >> +PRINC := "${@int(PRINC) + 6}" >> >> THISDIR := "${@os.path.dirname(bb.data.getVar('FILE', d, True))}" >> FILESPATH =. "${@base_set_filespath(["${THISDIR}/${PN}"], d)}:" >> >> -SRC_URI_append_raspberrypi = " file://xorg.conf.d/* " >> +SRC_URI_append_raspberrypi = " \ >> + file://xorg.conf.d/10-evdev.conf \ >> +" >> > I don't find this lin ebreak necesssary here. And if it was, don't combine > formating commits with other fixes. > Oops this was left over from some testing. Andreas ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [meta-raspberrypi][PATCH 2/2] xserver-xf86-config: fix do_install 2013-01-27 14:35 ` Andreas Müller @ 2013-03-13 17:47 ` Andrei Gherzan 2013-05-03 9:33 ` Andrei Gherzan 0 siblings, 1 reply; 9+ messages in thread From: Andrei Gherzan @ 2013-03-13 17:47 UTC (permalink / raw) To: Andreas Müller; +Cc: Yocto Project [-- Attachment #1: Type: text/plain, Size: 2178 bytes --] Hey Andreas, Is this sill needed? Did you test this lately? On Sun, Jan 27, 2013 at 4:35 PM, Andreas Müller < schnitzeltony@googlemail.com> wrote: > On Sat, Jan 26, 2013 at 11:58 PM, Andrei Gherzan <andrei@gherzan.ro> > wrote: > > On Thu, Jan 24, 2013 at 10:57:42PM +0100, Andreas Müller wrote: > >> for some reason wildcards don't work in current head. Error message was: > >> > >> | DEBUG: Executing shell function do_install > >> | install: cannot stat > `/home/Superandy/tmp/oe-core-eglibc/work/raspberrypi-angstrom-linux-gnueabi/xserver-xf86-config/0.1-r18/xorg.conf.d/*': > No such file or directory > >> > > > > I can't reproduce your error. For me this works. Maybe was something > broken in > > oe-core? Anyway it seems to be fixed now. Would you retest it please > Will do that > > > >> Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> > >> --- > >> .../xorg-xserver/xserver-xf86-config_0.1.bbappend | 6 ++++-- > >> 1 files changed, 4 insertions(+), 2 deletions(-) > >> > >> diff --git > a/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend > b/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend > >> index 65931e2..a8b8e8c 100644 > >> --- a/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend > >> +++ b/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend > >> @@ -1,12 +1,14 @@ > >> FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" > >> > >> # Don't forget to bump PRINC if you update the extra files. > >> -PRINC := "${@int(PRINC) + 5}" > >> +PRINC := "${@int(PRINC) + 6}" > >> > >> THISDIR := "${@os.path.dirname(bb.data.getVar('FILE', d, True))}" > >> FILESPATH =. "${@base_set_filespath(["${THISDIR}/${PN}"], d)}:" > >> > >> -SRC_URI_append_raspberrypi = " file://xorg.conf.d/* " > >> +SRC_URI_append_raspberrypi = " \ > >> + file://xorg.conf.d/10-evdev.conf \ > >> +" > >> > > I don't find this lin ebreak necesssary here. And if it was, don't > combine > > formating commits with other fixes. > > > Oops this was left over from some testing. > > Andreas > -- *Andrei Gherzan* m: +40.744.478.414 | f: +40.31.816.28.12 [-- Attachment #2: Type: text/html, Size: 3498 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [meta-raspberrypi][PATCH 2/2] xserver-xf86-config: fix do_install 2013-03-13 17:47 ` Andrei Gherzan @ 2013-05-03 9:33 ` Andrei Gherzan 2013-05-03 9:55 ` Andreas Müller 0 siblings, 1 reply; 9+ messages in thread From: Andrei Gherzan @ 2013-05-03 9:33 UTC (permalink / raw) To: Andreas Müller; +Cc: Yocto Project [-- Attachment #1: Type: text/plain, Size: 2560 bytes --] Can't replicate this issue and somebody who experienced it in the past confirmed me that it was someway fixed. So I will drop this patch. Thanks. On Wed, Mar 13, 2013 at 6:47 PM, Andrei Gherzan <andrei@gherzan.ro> wrote: > Hey Andreas, > > Is this sill needed? Did you test this lately? > > > On Sun, Jan 27, 2013 at 4:35 PM, Andreas Müller < > schnitzeltony@googlemail.com> wrote: > >> On Sat, Jan 26, 2013 at 11:58 PM, Andrei Gherzan <andrei@gherzan.ro> >> wrote: >> > On Thu, Jan 24, 2013 at 10:57:42PM +0100, Andreas Müller wrote: >> >> for some reason wildcards don't work in current head. Error message >> was: >> >> >> >> | DEBUG: Executing shell function do_install >> >> | install: cannot stat >> `/home/Superandy/tmp/oe-core-eglibc/work/raspberrypi-angstrom-linux-gnueabi/xserver-xf86-config/0.1-r18/xorg.conf.d/*': >> No such file or directory >> >> >> > >> > I can't reproduce your error. For me this works. Maybe was something >> broken in >> > oe-core? Anyway it seems to be fixed now. Would you retest it please >> Will do that >> > >> >> Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> >> >> --- >> >> .../xorg-xserver/xserver-xf86-config_0.1.bbappend | 6 ++++-- >> >> 1 files changed, 4 insertions(+), 2 deletions(-) >> >> >> >> diff --git >> a/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend >> b/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend >> >> index 65931e2..a8b8e8c 100644 >> >> --- a/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend >> >> +++ b/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend >> >> @@ -1,12 +1,14 @@ >> >> FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" >> >> >> >> # Don't forget to bump PRINC if you update the extra files. >> >> -PRINC := "${@int(PRINC) + 5}" >> >> +PRINC := "${@int(PRINC) + 6}" >> >> >> >> THISDIR := "${@os.path.dirname(bb.data.getVar('FILE', d, True))}" >> >> FILESPATH =. "${@base_set_filespath(["${THISDIR}/${PN}"], d)}:" >> >> >> >> -SRC_URI_append_raspberrypi = " file://xorg.conf.d/* " >> >> +SRC_URI_append_raspberrypi = " \ >> >> + file://xorg.conf.d/10-evdev.conf \ >> >> +" >> >> >> > I don't find this lin ebreak necesssary here. And if it was, don't >> combine >> > formating commits with other fixes. >> > >> Oops this was left over from some testing. >> >> Andreas >> > > > > -- > *Andrei Gherzan* > m: +40.744.478.414 | f: +40.31.816.28.12 > -- *Andrei Gherzan* m: +40.744.478.414 | f: +40.31.816.28.12 [-- Attachment #2: Type: text/html, Size: 4750 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [meta-raspberrypi][PATCH 2/2] xserver-xf86-config: fix do_install 2013-05-03 9:33 ` Andrei Gherzan @ 2013-05-03 9:55 ` Andreas Müller 0 siblings, 0 replies; 9+ messages in thread From: Andreas Müller @ 2013-05-03 9:55 UTC (permalink / raw) To: Andrei Gherzan; +Cc: Yocto Project On Fri, May 3, 2013 at 11:33 AM, Andrei Gherzan <andrei@gherzan.ro> wrote: > Can't replicate this issue and somebody who experienced it in the past > confirmed me that it was someway fixed. So I will drop this patch. > > Thanks. > I think wildcards are qorking currently - you can drop this one Andreas ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2013-05-03 9:55 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2013-01-24 21:57 [meta-raspberrypi][PATCH 0/2] minor fixes for current HEADs Andreas Müller 2013-01-24 21:57 ` [meta-raspberrypi][PATCH 1/2] layer.conf: fix parse Andreas Müller 2013-01-26 23:03 ` Andrei Gherzan 2013-01-24 21:57 ` [meta-raspberrypi][PATCH 2/2] xserver-xf86-config: fix do_install Andreas Müller 2013-01-26 22:58 ` Andrei Gherzan 2013-01-27 14:35 ` Andreas Müller 2013-03-13 17:47 ` Andrei Gherzan 2013-05-03 9:33 ` Andrei Gherzan 2013-05-03 9:55 ` Andreas Müller
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.