* [PATCH] libomxil-0.9.3: Move .so files to main package. @ 2014-07-10 19:18 Drew Moseley 2014-07-15 0:03 ` Saul Wold 0 siblings, 1 reply; 5+ messages in thread From: Drew Moseley @ 2014-07-10 19:18 UTC (permalink / raw) To: openembedded-core The omxregister-bellagio app scans the libdir for the '*.so' files to get them properly registered. Make sure they are included in the base package rather than the dev. Signed-off-by: Drew Moseley <drew_moseley@mentor.com> --- meta/recipes-multimedia/libomxil/libomxil_0.9.3.bb | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/meta/recipes-multimedia/libomxil/libomxil_0.9.3.bb b/meta/recipes-multimedia/libomxil/libomxil_0.9.3.bb index 103d789..e11febc 100644 --- a/meta/recipes-multimedia/libomxil/libomxil_0.9.3.bb +++ b/meta/recipes-multimedia/libomxil/libomxil_0.9.3.bb @@ -24,12 +24,14 @@ inherit autotools EXTRA_OECONF += "--disable-doc --disable-Werror" FILES_${PN} += "${libdir}/bellagio/*${SOLIBS} \ - ${libdir}/omxloaders/*${SOLIBS}" + ${libdir}/bellagio/*${SOLIBSDEV} \ + ${libdir}/omxloaders/*${SOLIBS} \ + ${libdir}/omxloaders/*${SOLIBSDEV}" FILES_${PN}-staticdev += "${libdir}/bellagio/*.a \ ${libdir}/omxloaders/*.a" FILES_${PN}-dev += "${libdir}/bellagio/*.la \ - ${libdir}/bellagio/*${SOLIBSDEV} \ - ${libdir}/omxloaders/*.la \ - ${libdir}/omxloaders/*${SOLIBSDEV}" + ${libdir}/omxloaders/*.la" FILES_${PN}-dbg += "${libdir}/bellagio/.debug/ \ ${libdir}/omxloaders/.debug/" + +INSANE_SKIP_${PN} += "dev-so" -- 1.9.1 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] libomxil-0.9.3: Move .so files to main package. 2014-07-10 19:18 [PATCH] libomxil-0.9.3: Move .so files to main package Drew Moseley @ 2014-07-15 0:03 ` Saul Wold 2014-07-15 8:46 ` Burton, Ross 0 siblings, 1 reply; 5+ messages in thread From: Saul Wold @ 2014-07-15 0:03 UTC (permalink / raw) To: Drew Moseley, openembedded-core On 07/10/2014 12:18 PM, Drew Moseley wrote: > The omxregister-bellagio app scans the libdir for the '*.so' > files to get them properly registered. Make sure they are > included in the base package rather than the dev. > Would it be better to patch the register app to have a more generic search for .so*?? Something to check with the libomxil upstream? I am not saying no to this, just want to check out options. Thanks Sau! > Signed-off-by: Drew Moseley <drew_moseley@mentor.com> > --- > meta/recipes-multimedia/libomxil/libomxil_0.9.3.bb | 10 ++++++---- > 1 file changed, 6 insertions(+), 4 deletions(-) > > diff --git a/meta/recipes-multimedia/libomxil/libomxil_0.9.3.bb b/meta/recipes-multimedia/libomxil/libomxil_0.9.3.bb > index 103d789..e11febc 100644 > --- a/meta/recipes-multimedia/libomxil/libomxil_0.9.3.bb > +++ b/meta/recipes-multimedia/libomxil/libomxil_0.9.3.bb > @@ -24,12 +24,14 @@ inherit autotools > EXTRA_OECONF += "--disable-doc --disable-Werror" > > FILES_${PN} += "${libdir}/bellagio/*${SOLIBS} \ > - ${libdir}/omxloaders/*${SOLIBS}" > + ${libdir}/bellagio/*${SOLIBSDEV} \ > + ${libdir}/omxloaders/*${SOLIBS} \ > + ${libdir}/omxloaders/*${SOLIBSDEV}" > FILES_${PN}-staticdev += "${libdir}/bellagio/*.a \ > ${libdir}/omxloaders/*.a" > FILES_${PN}-dev += "${libdir}/bellagio/*.la \ > - ${libdir}/bellagio/*${SOLIBSDEV} \ > - ${libdir}/omxloaders/*.la \ > - ${libdir}/omxloaders/*${SOLIBSDEV}" > + ${libdir}/omxloaders/*.la" > FILES_${PN}-dbg += "${libdir}/bellagio/.debug/ \ > ${libdir}/omxloaders/.debug/" > + > +INSANE_SKIP_${PN} += "dev-so" > ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] libomxil-0.9.3: Move .so files to main package. 2014-07-15 0:03 ` Saul Wold @ 2014-07-15 8:46 ` Burton, Ross 2014-07-20 20:13 ` [PATCH v2] libomxil-0.9.3: Remove versioning for .so files Drew Moseley 0 siblings, 1 reply; 5+ messages in thread From: Burton, Ross @ 2014-07-15 8:46 UTC (permalink / raw) To: Saul Wold; +Cc: OE-core On 15 July 2014 01:03, Saul Wold <sgw@linux.intel.com> wrote: > On 07/10/2014 12:18 PM, Drew Moseley wrote: >> >> The omxregister-bellagio app scans the libdir for the '*.so' >> files to get them properly registered. Make sure they are >> included in the base package rather than the dev. >> > Would it be better to patch the register app to have a more generic search > for .so*?? Searching for .so is fine if you're looking for loadable modules, but as the package contains versioned real files and lots of symlinks they're Doing It Wrong. A better fix would be to fix the build so that it installs unversioned loadable modules, and then ensure that they're in the main package (a real .so file in $PN shoudn't kick a QA error, either). I think the magic libtool options are -avoid-version -module -shared. Ross ^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH v2] libomxil-0.9.3: Remove versioning for .so files. 2014-07-15 8:46 ` Burton, Ross @ 2014-07-20 20:13 ` Drew Moseley 2014-07-21 10:59 ` Burton, Ross 0 siblings, 1 reply; 5+ messages in thread From: Drew Moseley @ 2014-07-20 20:13 UTC (permalink / raw) To: openembedded-core The so files installed by libomxil are not versioned and should be installed without version-based symlinks so that omxregister-bellagio can properly find and register them. Signed-off-by: Drew Moseley <drew_moseley@mentor.com> --- .../libomxil-0.9.3/disable-so-versioning.patch | 69 ++++++++++++++++++++++ meta/recipes-multimedia/libomxil/libomxil_0.9.3.bb | 17 ++++-- 2 files changed, 80 insertions(+), 6 deletions(-) create mode 100644 meta/recipes-multimedia/libomxil/libomxil-0.9.3/disable-so-versioning.patch diff --git a/meta/recipes-multimedia/libomxil/libomxil-0.9.3/disable-so-versioning.patch b/meta/recipes-multimedia/libomxil/libomxil-0.9.3/disable-so-versioning.patch new file mode 100644 index 0000000..9c63b4d --- /dev/null +++ b/meta/recipes-multimedia/libomxil/libomxil-0.9.3/disable-so-versioning.patch @@ -0,0 +1,69 @@ +Disable so versioning since they are really not a versioned shared lib. + +Upstream-Status: Submitted @ https://sourceforge.net/p/omxil/bugs/59/ + +Signed-off-by: Drew Moseley <drew_moseley@mentor.com> + +diff -rub libomxil-bellagio-0.9.3-orig/src/components/audio_effects/Makefile.am libomxil-bellagio-0.9.3/src/components/audio_effects/Makefile.am +--- libomxil-bellagio-0.9.3-orig/src/components/audio_effects/Makefile.am 2014-07-20 15:22:00.858425234 -0400 ++++ libomxil-bellagio-0.9.3/src/components/audio_effects/Makefile.am 2014-07-20 15:25:42.687525225 -0400 +@@ -10,4 +10,5 @@ + libomxaudio_effects_la_CFLAGS = -I$(top_srcdir)/include \ + -I$(top_srcdir)/src \ + -I$(top_srcdir)/src/base ++libomxaudio_effects_la_LDFLAGS = -avoid-version + +diff -rub libomxil-bellagio-0.9.3-orig/src/components/clocksrc/Makefile.am libomxil-bellagio-0.9.3/src/components/clocksrc/Makefile.am +--- libomxil-bellagio-0.9.3-orig/src/components/clocksrc/Makefile.am 2014-07-20 15:22:00.858425234 -0400 ++++ libomxil-bellagio-0.9.3/src/components/clocksrc/Makefile.am 2014-07-20 15:24:49.151259753 -0400 +@@ -10,4 +10,4 @@ + -I$(top_srcdir)/include \ + -I$(top_srcdir)/src \ + -I$(top_srcdir)/src/base +- ++libomxclocksrc_la_LDFLAGS = -avoid-version +diff -rub libomxil-bellagio-0.9.3-orig/src/components/videoscheduler/Makefile.am libomxil-bellagio-0.9.3/src/components/videoscheduler/Makefile.am +--- libomxil-bellagio-0.9.3-orig/src/components/videoscheduler/Makefile.am 2014-07-20 15:22:00.862425254 -0400 ++++ libomxil-bellagio-0.9.3/src/components/videoscheduler/Makefile.am 2014-07-20 15:22:36.462601786 -0400 +@@ -6,7 +6,7 @@ + library_entry_point.c + + libomxvideosched_la_LIBADD = $(top_builddir)/src/libomxil-bellagio.la +-libomxvideosched_la_LDFLAGS = ++libomxvideosched_la_LDFLAGS = -avoid-version + libomxvideosched_la_CFLAGS = -I$(top_srcdir)/include \ + -I$(top_srcdir)/src \ + -I$(top_srcdir)/src/base +diff -rub libomxil-bellagio-0.9.3-orig/src/dynamic_loader/Makefile.am libomxil-bellagio-0.9.3/src/dynamic_loader/Makefile.am +--- libomxil-bellagio-0.9.3-orig/src/dynamic_loader/Makefile.am 2014-07-20 15:22:00.862425254 -0400 ++++ libomxil-bellagio-0.9.3/src/dynamic_loader/Makefile.am 2014-07-20 15:22:36.462601786 -0400 +@@ -3,7 +3,7 @@ + omxdynamicloader_LTLIBRARIES = libomxdynamicloader.la + libomxdynamicloader_la_SOURCES = ste_dynamic_component_loader.c ste_dynamic_component_loader.h + +-libomxdynamicloader_la_LDFLAGS = -lomxil-bellagio -L$(top_builddir)/src/.libs ++libomxdynamicloader_la_LDFLAGS = -lomxil-bellagio -L$(top_builddir)/src/.libs -avoid-version + libomxdynamicloader_la_CFLAGS = -I$(top_srcdir)/include \ + -I$(top_srcdir)/src \ + -I$(top_srcdir)/src/base \ +diff -rub libomxil-bellagio-0.9.3-orig/src/Makefile.am libomxil-bellagio-0.9.3/src/Makefile.am +--- libomxil-bellagio-0.9.3-orig/src/Makefile.am 2014-07-20 15:22:00.862425254 -0400 ++++ libomxil-bellagio-0.9.3/src/Makefile.am 2014-07-20 15:22:36.462601786 -0400 +@@ -8,7 +8,7 @@ + omxregister_bellagio_CFLAGS = -DOMXILCOMPONENTSPATH=\"$(plugindir)/\" \ + -I$(top_srcdir)/include + omxregister_bellagio_LDADD = $(lib_LTLIBRARIES) +-omxregister_bellagio_LDFLAGS = -lomxil-bellagio -L$(builddir) ++omxregister_bellagio_LDFLAGS = -lomxil-bellagio -L$(builddir) -avoid-version + + lib_LTLIBRARIES = libomxil-bellagio.la + libomxil_bellagio_la_SOURCES = component_loader.h \ +@@ -29,7 +29,7 @@ + libomxil_bellagio_la_CFLAGS = -I$(top_srcdir)/include -I$(srcdir)/base -I$(srcdir)/core_extensions \ + -DINSTALL_PATH_STR=\"$(plugindir)\" -DOMX_LOADERS_DIRNAME=\"$(libdir)/omxloaders\/\" + libomxil_bellagio_la_LIBADD = base/libomxbase.la core_extensions/libomxcoreext.la -lpthread +-libomxil_bellagio_la_LDFLAGS = -version-info @SHARED_VERSION_INFO@ ++libomxil_bellagio_la_LDFLAGS = -avoid-version + + include_extradir = $(includedir)/bellagio + diff --git a/meta/recipes-multimedia/libomxil/libomxil_0.9.3.bb b/meta/recipes-multimedia/libomxil/libomxil_0.9.3.bb index 103d789..ba3d491 100644 --- a/meta/recipes-multimedia/libomxil/libomxil_0.9.3.bb +++ b/meta/recipes-multimedia/libomxil/libomxil_0.9.3.bb @@ -12,7 +12,8 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/omxil/libomxil-bellagio-${PV}.tar.gz \ file://configure-fix.patch \ file://parallel-make.patch \ file://makefile-docdir-fix.patch \ - file://dynamicloader-linking.patch" + file://dynamicloader-linking.patch \ + file://disable-so-versioning.patch" SRC_URI[md5sum] = "a1de827fdb75c02c84e55f740ca27cb8" SRC_URI[sha256sum] = "593c0729c8ef8c1467b3bfefcf355ec19a46dd92e31bfc280e17d96b0934d74c" @@ -23,13 +24,17 @@ inherit autotools EXTRA_OECONF += "--disable-doc --disable-Werror" -FILES_${PN} += "${libdir}/bellagio/*${SOLIBS} \ - ${libdir}/omxloaders/*${SOLIBS}" +# +# The .so files populated by libomxil are not intended to be versioned and symlinked. +# Make sure they get packaged in the main package. +# +FILES_SOLIBSDEV = "" +FILES_${PN} += "${libdir}/*.so \ + ${libdir}/bellagio/*.so \ + ${libdir}/omxloaders/*.so" FILES_${PN}-staticdev += "${libdir}/bellagio/*.a \ ${libdir}/omxloaders/*.a" FILES_${PN}-dev += "${libdir}/bellagio/*.la \ - ${libdir}/bellagio/*${SOLIBSDEV} \ - ${libdir}/omxloaders/*.la \ - ${libdir}/omxloaders/*${SOLIBSDEV}" + ${libdir}/omxloaders/*.la" FILES_${PN}-dbg += "${libdir}/bellagio/.debug/ \ ${libdir}/omxloaders/.debug/" -- 1.9.1 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH v2] libomxil-0.9.3: Remove versioning for .so files. 2014-07-20 20:13 ` [PATCH v2] libomxil-0.9.3: Remove versioning for .so files Drew Moseley @ 2014-07-21 10:59 ` Burton, Ross 0 siblings, 0 replies; 5+ messages in thread From: Burton, Ross @ 2014-07-21 10:59 UTC (permalink / raw) To: Drew Moseley; +Cc: OE-core Acked-by: Ross Burton <ross.burton@intel.com> On 20 July 2014 21:13, Drew Moseley <drew_moseley@mentor.com> wrote: > The so files installed by libomxil are not versioned and should > be installed without version-based symlinks so that omxregister-bellagio > can properly find and register them. > > Signed-off-by: Drew Moseley <drew_moseley@mentor.com> > --- > .../libomxil-0.9.3/disable-so-versioning.patch | 69 ++++++++++++++++++++++ > meta/recipes-multimedia/libomxil/libomxil_0.9.3.bb | 17 ++++-- > 2 files changed, 80 insertions(+), 6 deletions(-) > create mode 100644 meta/recipes-multimedia/libomxil/libomxil-0.9.3/disable-so-versioning.patch > > diff --git a/meta/recipes-multimedia/libomxil/libomxil-0.9.3/disable-so-versioning.patch b/meta/recipes-multimedia/libomxil/libomxil-0.9.3/disable-so-versioning.patch > new file mode 100644 > index 0000000..9c63b4d > --- /dev/null > +++ b/meta/recipes-multimedia/libomxil/libomxil-0.9.3/disable-so-versioning.patch > @@ -0,0 +1,69 @@ > +Disable so versioning since they are really not a versioned shared lib. > + > +Upstream-Status: Submitted @ https://sourceforge.net/p/omxil/bugs/59/ > + > +Signed-off-by: Drew Moseley <drew_moseley@mentor.com> > + > +diff -rub libomxil-bellagio-0.9.3-orig/src/components/audio_effects/Makefile.am libomxil-bellagio-0.9.3/src/components/audio_effects/Makefile.am > +--- libomxil-bellagio-0.9.3-orig/src/components/audio_effects/Makefile.am 2014-07-20 15:22:00.858425234 -0400 > ++++ libomxil-bellagio-0.9.3/src/components/audio_effects/Makefile.am 2014-07-20 15:25:42.687525225 -0400 > +@@ -10,4 +10,5 @@ > + libomxaudio_effects_la_CFLAGS = -I$(top_srcdir)/include \ > + -I$(top_srcdir)/src \ > + -I$(top_srcdir)/src/base > ++libomxaudio_effects_la_LDFLAGS = -avoid-version > + > +diff -rub libomxil-bellagio-0.9.3-orig/src/components/clocksrc/Makefile.am libomxil-bellagio-0.9.3/src/components/clocksrc/Makefile.am > +--- libomxil-bellagio-0.9.3-orig/src/components/clocksrc/Makefile.am 2014-07-20 15:22:00.858425234 -0400 > ++++ libomxil-bellagio-0.9.3/src/components/clocksrc/Makefile.am 2014-07-20 15:24:49.151259753 -0400 > +@@ -10,4 +10,4 @@ > + -I$(top_srcdir)/include \ > + -I$(top_srcdir)/src \ > + -I$(top_srcdir)/src/base > +- > ++libomxclocksrc_la_LDFLAGS = -avoid-version > +diff -rub libomxil-bellagio-0.9.3-orig/src/components/videoscheduler/Makefile.am libomxil-bellagio-0.9.3/src/components/videoscheduler/Makefile.am > +--- libomxil-bellagio-0.9.3-orig/src/components/videoscheduler/Makefile.am 2014-07-20 15:22:00.862425254 -0400 > ++++ libomxil-bellagio-0.9.3/src/components/videoscheduler/Makefile.am 2014-07-20 15:22:36.462601786 -0400 > +@@ -6,7 +6,7 @@ > + library_entry_point.c > + > + libomxvideosched_la_LIBADD = $(top_builddir)/src/libomxil-bellagio.la > +-libomxvideosched_la_LDFLAGS = > ++libomxvideosched_la_LDFLAGS = -avoid-version > + libomxvideosched_la_CFLAGS = -I$(top_srcdir)/include \ > + -I$(top_srcdir)/src \ > + -I$(top_srcdir)/src/base > +diff -rub libomxil-bellagio-0.9.3-orig/src/dynamic_loader/Makefile.am libomxil-bellagio-0.9.3/src/dynamic_loader/Makefile.am > +--- libomxil-bellagio-0.9.3-orig/src/dynamic_loader/Makefile.am 2014-07-20 15:22:00.862425254 -0400 > ++++ libomxil-bellagio-0.9.3/src/dynamic_loader/Makefile.am 2014-07-20 15:22:36.462601786 -0400 > +@@ -3,7 +3,7 @@ > + omxdynamicloader_LTLIBRARIES = libomxdynamicloader.la > + libomxdynamicloader_la_SOURCES = ste_dynamic_component_loader.c ste_dynamic_component_loader.h > + > +-libomxdynamicloader_la_LDFLAGS = -lomxil-bellagio -L$(top_builddir)/src/.libs > ++libomxdynamicloader_la_LDFLAGS = -lomxil-bellagio -L$(top_builddir)/src/.libs -avoid-version > + libomxdynamicloader_la_CFLAGS = -I$(top_srcdir)/include \ > + -I$(top_srcdir)/src \ > + -I$(top_srcdir)/src/base \ > +diff -rub libomxil-bellagio-0.9.3-orig/src/Makefile.am libomxil-bellagio-0.9.3/src/Makefile.am > +--- libomxil-bellagio-0.9.3-orig/src/Makefile.am 2014-07-20 15:22:00.862425254 -0400 > ++++ libomxil-bellagio-0.9.3/src/Makefile.am 2014-07-20 15:22:36.462601786 -0400 > +@@ -8,7 +8,7 @@ > + omxregister_bellagio_CFLAGS = -DOMXILCOMPONENTSPATH=\"$(plugindir)/\" \ > + -I$(top_srcdir)/include > + omxregister_bellagio_LDADD = $(lib_LTLIBRARIES) > +-omxregister_bellagio_LDFLAGS = -lomxil-bellagio -L$(builddir) > ++omxregister_bellagio_LDFLAGS = -lomxil-bellagio -L$(builddir) -avoid-version > + > + lib_LTLIBRARIES = libomxil-bellagio.la > + libomxil_bellagio_la_SOURCES = component_loader.h \ > +@@ -29,7 +29,7 @@ > + libomxil_bellagio_la_CFLAGS = -I$(top_srcdir)/include -I$(srcdir)/base -I$(srcdir)/core_extensions \ > + -DINSTALL_PATH_STR=\"$(plugindir)\" -DOMX_LOADERS_DIRNAME=\"$(libdir)/omxloaders\/\" > + libomxil_bellagio_la_LIBADD = base/libomxbase.la core_extensions/libomxcoreext.la -lpthread > +-libomxil_bellagio_la_LDFLAGS = -version-info @SHARED_VERSION_INFO@ > ++libomxil_bellagio_la_LDFLAGS = -avoid-version > + > + include_extradir = $(includedir)/bellagio > + > diff --git a/meta/recipes-multimedia/libomxil/libomxil_0.9.3.bb b/meta/recipes-multimedia/libomxil/libomxil_0.9.3.bb > index 103d789..ba3d491 100644 > --- a/meta/recipes-multimedia/libomxil/libomxil_0.9.3.bb > +++ b/meta/recipes-multimedia/libomxil/libomxil_0.9.3.bb > @@ -12,7 +12,8 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/omxil/libomxil-bellagio-${PV}.tar.gz \ > file://configure-fix.patch \ > file://parallel-make.patch \ > file://makefile-docdir-fix.patch \ > - file://dynamicloader-linking.patch" > + file://dynamicloader-linking.patch \ > + file://disable-so-versioning.patch" > > SRC_URI[md5sum] = "a1de827fdb75c02c84e55f740ca27cb8" > SRC_URI[sha256sum] = "593c0729c8ef8c1467b3bfefcf355ec19a46dd92e31bfc280e17d96b0934d74c" > @@ -23,13 +24,17 @@ inherit autotools > > EXTRA_OECONF += "--disable-doc --disable-Werror" > > -FILES_${PN} += "${libdir}/bellagio/*${SOLIBS} \ > - ${libdir}/omxloaders/*${SOLIBS}" > +# > +# The .so files populated by libomxil are not intended to be versioned and symlinked. > +# Make sure they get packaged in the main package. > +# > +FILES_SOLIBSDEV = "" > +FILES_${PN} += "${libdir}/*.so \ > + ${libdir}/bellagio/*.so \ > + ${libdir}/omxloaders/*.so" > FILES_${PN}-staticdev += "${libdir}/bellagio/*.a \ > ${libdir}/omxloaders/*.a" > FILES_${PN}-dev += "${libdir}/bellagio/*.la \ > - ${libdir}/bellagio/*${SOLIBSDEV} \ > - ${libdir}/omxloaders/*.la \ > - ${libdir}/omxloaders/*${SOLIBSDEV}" > + ${libdir}/omxloaders/*.la" > FILES_${PN}-dbg += "${libdir}/bellagio/.debug/ \ > ${libdir}/omxloaders/.debug/" > -- > 1.9.1 > > -- > _______________________________________________ > Openembedded-core mailing list > Openembedded-core@lists.openembedded.org > http://lists.openembedded.org/mailman/listinfo/openembedded-core ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2014-07-21 10:59 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2014-07-10 19:18 [PATCH] libomxil-0.9.3: Move .so files to main package Drew Moseley 2014-07-15 0:03 ` Saul Wold 2014-07-15 8:46 ` Burton, Ross 2014-07-20 20:13 ` [PATCH v2] libomxil-0.9.3: Remove versioning for .so files Drew Moseley 2014-07-21 10:59 ` Burton, Ross
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.