Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/3] libestr: new package
@ 2014-03-10 13:56 Clayton Shotwell
  2014-03-10 13:56 ` [Buildroot] [PATCH 2/3] libee: " Clayton Shotwell
  2014-03-10 13:56 ` [Buildroot] [PATCH 3/3] rsyslog: bump to version 6.3.8 Clayton Shotwell
  0 siblings, 2 replies; 10+ messages in thread
From: Clayton Shotwell @ 2014-03-10 13:56 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Clayton Shotwell <clshotwe@rockwellcollins.com>
---
 package/Config.in          |    1 +
 package/libestr/Config.in  |    6 ++++++
 package/libestr/libestr.mk |   13 +++++++++++++
 3 files changed, 20 insertions(+), 0 deletions(-)
 create mode 100644 package/libestr/Config.in
 create mode 100644 package/libestr/libestr.mk

diff --git a/package/Config.in b/package/Config.in
index 2b76a8e..ab82483 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -817,6 +817,7 @@ source "package/enchant/Config.in"
 source "package/icu/Config.in"
 source "package/libedit/Config.in"
 source "package/libenca/Config.in"
+source "package/libestr/Config.in"
 source "package/libfribidi/Config.in"
 source "package/libiconv/Config.in"
 source "package/linenoise/Config.in"
diff --git a/package/libestr/Config.in b/package/libestr/Config.in
new file mode 100644
index 0000000..b1ca2a5
--- /dev/null
+++ b/package/libestr/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_LIBESTR
+	bool "libestr"
+	help
+	  Some essentials for string handling (and a bit more)
+
+	  http://libestr.adiscon.com/
diff --git a/package/libestr/libestr.mk b/package/libestr/libestr.mk
new file mode 100644
index 0000000..9efe3b5
--- /dev/null
+++ b/package/libestr/libestr.mk
@@ -0,0 +1,13 @@
+################################################################################
+#
+# libestr
+#
+################################################################################
+
+LIBESTR_VERSION = 0.1.9
+LIBESTR_SITE = http://libestr.adiscon.com/files/download/
+LIBESTR_LICENSE = LGPLv2.1+
+LIBESTR_LICENSE_FILE = COPYING
+LIBESTR_INSTALL_STAGING = YES
+
+$(eval $(autotools-package))
-- 
1.7.1

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

* [Buildroot] [PATCH 2/3] libee: new package
  2014-03-10 13:56 [Buildroot] [PATCH 1/3] libestr: new package Clayton Shotwell
@ 2014-03-10 13:56 ` Clayton Shotwell
  2014-03-10 19:10   ` Baruch Siach
  2014-03-10 19:12   ` Baruch Siach
  2014-03-10 13:56 ` [Buildroot] [PATCH 3/3] rsyslog: bump to version 6.3.8 Clayton Shotwell
  1 sibling, 2 replies; 10+ messages in thread
From: Clayton Shotwell @ 2014-03-10 13:56 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Clayton Shotwell <clshotwe@rockwellcollins.com>
---
 package/Config.in       |    1 +
 package/libee/Config.in |   18 ++++++++++++++++++
 package/libee/libee.mk  |   16 ++++++++++++++++
 3 files changed, 35 insertions(+), 0 deletions(-)
 create mode 100644 package/libee/Config.in
 create mode 100644 package/libee/libee.mk

diff --git a/package/Config.in b/package/Config.in
index ab82483..42c21d8 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -767,6 +767,7 @@ source "package/libcap-ng/Config.in"
 source "package/libcgroup/Config.in"
 source "package/libcofi/Config.in"
 source "package/libdaemon/Config.in"
+source "package/libee/Config.in"
 source "package/libelf/Config.in"
 source "package/libev/Config.in"
 source "package/libevdev/Config.in"
diff --git a/package/libee/Config.in b/package/libee/Config.in
new file mode 100644
index 0000000..fd48d56
--- /dev/null
+++ b/package/libee/Config.in
@@ -0,0 +1,18 @@
+config BR2_PACKAGE_LIBEE
+	bool "libee"
+	help
+	  An Event Expression Library inspired by CEE.
+
+	  CEE is an upcoming standard used to describe network
+	  events in a number of normalized formats. It's goal is
+	  to unify they currently many different representations
+	  that exist in the industry.
+
+	  The core idea of libee is to provide a small but hopefully
+	  convenient API layer above the CEE standard. However, CEE
+	  is not finished. At the time of this writing, CEE is under
+	  heavy development and even some of its core data structures
+	  (like the data dictionary and taxonmy) have not been fully
+	  specified.
+
+	  http://www.libee.org
diff --git a/package/libee/libee.mk b/package/libee/libee.mk
new file mode 100644
index 0000000..f9894d9
--- /dev/null
+++ b/package/libee/libee.mk
@@ -0,0 +1,16 @@
+################################################################################
+#
+# libee
+#
+################################################################################
+
+LIBEE_VERSION = 0.4.1
+LIBEE_SITE = http://www.libee.org/download/files/download/
+LIBEE_LICENSE = LGPLv2.1+
+LIBEE_LICENSE_FILE = COPYING
+LIBEE_DEPENDENCIES = libestr
+LIBEE_INSTALL_STAGING = YES
+
+LIBEE_MAKE = $(MAKE1)
+
+$(eval $(autotools-package))
-- 
1.7.1

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

* [Buildroot] [PATCH 3/3] rsyslog: bump to version 6.3.8
  2014-03-10 13:56 [Buildroot] [PATCH 1/3] libestr: new package Clayton Shotwell
  2014-03-10 13:56 ` [Buildroot] [PATCH 2/3] libee: " Clayton Shotwell
@ 2014-03-10 13:56 ` Clayton Shotwell
  2014-03-10 14:34   ` Ryan Barnett
                     ` (2 more replies)
  1 sibling, 3 replies; 10+ messages in thread
From: Clayton Shotwell @ 2014-03-10 13:56 UTC (permalink / raw)
  To: buildroot

Bumping version of rsyslog and adding new dependencies of libee and
libestr.

Signed-off-by: Clayton Shotwell <clshotwe@rockwellcollins.com>
---
 package/rsyslog/rsyslog.mk |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/rsyslog/rsyslog.mk b/package/rsyslog/rsyslog.mk
index daae010..3ca5eae 100644
--- a/package/rsyslog/rsyslog.mk
+++ b/package/rsyslog/rsyslog.mk
@@ -4,9 +4,9 @@
 #
 ################################################################################
 
-RSYSLOG_VERSION = 5.8.0
+RSYSLOG_VERSION = 6.3.8
 RSYSLOG_SITE = http://rsyslog.com/files/download/rsyslog/
-RSYSLOG_DEPENDENCIES = zlib
+RSYSLOG_DEPENDENCIES = zlib libestr libee
 
 # Build after Busybox
 ifeq ($(BR2_PACKAGE_BUSYBOX),y)
-- 
1.7.1

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

* [Buildroot] [PATCH 3/3] rsyslog: bump to version 6.3.8
  2014-03-10 13:56 ` [Buildroot] [PATCH 3/3] rsyslog: bump to version 6.3.8 Clayton Shotwell
@ 2014-03-10 14:34   ` Ryan Barnett
       [not found]   ` <OF14BFD3A2.E76317EC-ON86257C97.004F3333-86257C97.00500AF5@LocalDomain>
  2014-03-10 19:14   ` Baruch Siach
  2 siblings, 0 replies; 10+ messages in thread
From: Ryan Barnett @ 2014-03-10 14:34 UTC (permalink / raw)
  To: buildroot

Clayton,

Clayton Shotwell <clshotwe@rockwellcollins.com> wrote on 03/10/2014 
08:56:49 AM:

> 
################################################################################
> 
> -RSYSLOG_VERSION = 5.8.0
> +RSYSLOG_VERSION = 6.3.8
>  RSYSLOG_SITE = http://rsyslog.com/files/download/rsyslog/
> -RSYSLOG_DEPENDENCIES = zlib
> +RSYSLOG_DEPENDENCIES = zlib libestr libee
> 
>  # Build after Busybox
>  ifeq ($(BR2_PACKAGE_BUSYBOX),y)

Checking the website for rsyslog it appears that the latest version is 
7.6.0. Is there a reason to not bump to this version? Also could you add 
the license information since there doesn't appear to be any for this 
package?

Thanks,
-Ryan

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

* [Buildroot] [PATCH 3/3] rsyslog: bump to version 6.3.8
       [not found]   ` <OF14BFD3A2.E76317EC-ON86257C97.004F3333-86257C97.00500AF5@LocalDomain>
@ 2014-03-10 19:03     ` Clayton Shotwell
  0 siblings, 0 replies; 10+ messages in thread
From: Clayton Shotwell @ 2014-03-10 19:03 UTC (permalink / raw)
  To: buildroot

Ryan J Barnett/USA/RockwellCollins wrote on 03/10/2014 09:34:21 AM:

> From: Ryan J Barnett/USA/RockwellCollins
> To: Clayton Shotwell <clshotwe@rockwellcollins.com>
> Cc: buildroot at buildroot.org, buildroot-bounces at busybox.net
> Date: 03/10/2014 09:34 AM
> Subject: Re: [Buildroot] [PATCH 3/3] rsyslog: bump to version 6.3.8
> 
> Clayton,
> 
> Clayton Shotwell <clshotwe@rockwellcollins.com> wrote on 03/10/2014 
> 08:56:49 AM:
> 
> > 
> 
################################################################################
> > 
> > -RSYSLOG_VERSION = 5.8.0
> > +RSYSLOG_VERSION = 6.3.8
> >  RSYSLOG_SITE = http://rsyslog.com/files/download/rsyslog/
> > -RSYSLOG_DEPENDENCIES = zlib
> > +RSYSLOG_DEPENDENCIES = zlib libestr libee
> > 
> >  # Build after Busybox
> >  ifeq ($(BR2_PACKAGE_BUSYBOX),y)
> 
> Checking the website for rsyslog it appears that the latest version is 
> 7.6.0. Is there a reason to not bump to this version? Also could you add 

> the license information since there doesn't appear to be any for this 
> package?

I went with 6.3.8 initially because that was the version that contained 
the feature I need to use.  I didn't even check for a newer version.  I 
will get the 7.6.0 built and tested and then I will resubmit my patches.

Thanks,
Clayton

Clayton Shotwell
Software Engineer
clshotwe at rockwellcollins.com
www.rockwellcollins.com 

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

* [Buildroot] [PATCH 2/3] libee: new package
  2014-03-10 13:56 ` [Buildroot] [PATCH 2/3] libee: " Clayton Shotwell
@ 2014-03-10 19:10   ` Baruch Siach
  2014-03-10 20:12     ` Clayton Shotwell
  2014-03-10 19:12   ` Baruch Siach
  1 sibling, 1 reply; 10+ messages in thread
From: Baruch Siach @ 2014-03-10 19:10 UTC (permalink / raw)
  To: buildroot

Hi Clayton,

On Mon, Mar 10, 2014 at 08:56:48AM -0500, Clayton Shotwell wrote:
> 
> Signed-off-by: Clayton Shotwell <clshotwe@rockwellcollins.com>
> ---
>  package/Config.in       |    1 +
>  package/libee/Config.in |   18 ++++++++++++++++++
>  package/libee/libee.mk  |   16 ++++++++++++++++
>  3 files changed, 35 insertions(+), 0 deletions(-)
>  create mode 100644 package/libee/Config.in
>  create mode 100644 package/libee/libee.mk
> 
> diff --git a/package/Config.in b/package/Config.in
> index ab82483..42c21d8 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -767,6 +767,7 @@ source "package/libcap-ng/Config.in"
>  source "package/libcgroup/Config.in"
>  source "package/libcofi/Config.in"
>  source "package/libdaemon/Config.in"
> +source "package/libee/Config.in"
>  source "package/libelf/Config.in"
>  source "package/libev/Config.in"
>  source "package/libevdev/Config.in"
> diff --git a/package/libee/Config.in b/package/libee/Config.in
> new file mode 100644
> index 0000000..fd48d56
> --- /dev/null
> +++ b/package/libee/Config.in
> @@ -0,0 +1,18 @@
> +config BR2_PACKAGE_LIBEE
> +	bool "libee"

select BR2_PACKAGE_LIBESTR?

baruch

> +	help
> +	  An Event Expression Library inspired by CEE.
> +
> +	  CEE is an upcoming standard used to describe network
> +	  events in a number of normalized formats. It's goal is
> +	  to unify they currently many different representations
> +	  that exist in the industry.
> +
> +	  The core idea of libee is to provide a small but hopefully
> +	  convenient API layer above the CEE standard. However, CEE
> +	  is not finished. At the time of this writing, CEE is under
> +	  heavy development and even some of its core data structures
> +	  (like the data dictionary and taxonmy) have not been fully
> +	  specified.
> +
> +	  http://www.libee.org
> diff --git a/package/libee/libee.mk b/package/libee/libee.mk
> new file mode 100644
> index 0000000..f9894d9
> --- /dev/null
> +++ b/package/libee/libee.mk
> @@ -0,0 +1,16 @@
> +################################################################################
> +#
> +# libee
> +#
> +################################################################################
> +
> +LIBEE_VERSION = 0.4.1
> +LIBEE_SITE = http://www.libee.org/download/files/download/
> +LIBEE_LICENSE = LGPLv2.1+
> +LIBEE_LICENSE_FILE = COPYING
> +LIBEE_DEPENDENCIES = libestr
> +LIBEE_INSTALL_STAGING = YES
> +
> +LIBEE_MAKE = $(MAKE1)
> +
> +$(eval $(autotools-package))
> -- 
> 1.7.1

-- 
     http://baruch.siach.name/blog/                  ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch at tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -

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

* [Buildroot] [PATCH 2/3] libee: new package
  2014-03-10 13:56 ` [Buildroot] [PATCH 2/3] libee: " Clayton Shotwell
  2014-03-10 19:10   ` Baruch Siach
@ 2014-03-10 19:12   ` Baruch Siach
  1 sibling, 0 replies; 10+ messages in thread
From: Baruch Siach @ 2014-03-10 19:12 UTC (permalink / raw)
  To: buildroot

Hi Clayton,

On Mon, Mar 10, 2014 at 08:56:48AM -0500, Clayton Shotwell wrote:
> 
> Signed-off-by: Clayton Shotwell <clshotwe@rockwellcollins.com>
> ---
>  package/Config.in       |    1 +
>  package/libee/Config.in |   18 ++++++++++++++++++
>  package/libee/libee.mk  |   16 ++++++++++++++++
>  3 files changed, 35 insertions(+), 0 deletions(-)
>  create mode 100644 package/libee/Config.in
>  create mode 100644 package/libee/libee.mk
> 
> diff --git a/package/Config.in b/package/Config.in
> index ab82483..42c21d8 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -767,6 +767,7 @@ source "package/libcap-ng/Config.in"
>  source "package/libcgroup/Config.in"
>  source "package/libcofi/Config.in"
>  source "package/libdaemon/Config.in"
> +source "package/libee/Config.in"
>  source "package/libelf/Config.in"
>  source "package/libev/Config.in"
>  source "package/libevdev/Config.in"
> diff --git a/package/libee/Config.in b/package/libee/Config.in
> new file mode 100644
> index 0000000..fd48d56
> --- /dev/null
> +++ b/package/libee/Config.in
> @@ -0,0 +1,18 @@
> +config BR2_PACKAGE_LIBEE
> +	bool "libee"

select BR2_PACKAGE_LIBEE?
select BR2_PACKAGE_LIBESTR?

baruch

> +	help
> +	  An Event Expression Library inspired by CEE.
> +
> +	  CEE is an upcoming standard used to describe network
> +	  events in a number of normalized formats. It's goal is
> +	  to unify they currently many different representations
> +	  that exist in the industry.
> +
> +	  The core idea of libee is to provide a small but hopefully
> +	  convenient API layer above the CEE standard. However, CEE
> +	  is not finished. At the time of this writing, CEE is under
> +	  heavy development and even some of its core data structures
> +	  (like the data dictionary and taxonmy) have not been fully
> +	  specified.
> +
> +	  http://www.libee.org
> diff --git a/package/libee/libee.mk b/package/libee/libee.mk
> new file mode 100644
> index 0000000..f9894d9
> --- /dev/null
> +++ b/package/libee/libee.mk
> @@ -0,0 +1,16 @@
> +################################################################################
> +#
> +# libee
> +#
> +################################################################################
> +
> +LIBEE_VERSION = 0.4.1
> +LIBEE_SITE = http://www.libee.org/download/files/download/
> +LIBEE_LICENSE = LGPLv2.1+
> +LIBEE_LICENSE_FILE = COPYING
> +LIBEE_DEPENDENCIES = libestr
> +LIBEE_INSTALL_STAGING = YES
> +
> +LIBEE_MAKE = $(MAKE1)
> +
> +$(eval $(autotools-package))
> -- 
> 1.7.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
     http://baruch.siach.name/blog/                  ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch at tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -

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

* [Buildroot] [PATCH 3/3] rsyslog: bump to version 6.3.8
  2014-03-10 13:56 ` [Buildroot] [PATCH 3/3] rsyslog: bump to version 6.3.8 Clayton Shotwell
  2014-03-10 14:34   ` Ryan Barnett
       [not found]   ` <OF14BFD3A2.E76317EC-ON86257C97.004F3333-86257C97.00500AF5@LocalDomain>
@ 2014-03-10 19:14   ` Baruch Siach
  2014-03-10 20:12     ` Clayton Shotwell
  2 siblings, 1 reply; 10+ messages in thread
From: Baruch Siach @ 2014-03-10 19:14 UTC (permalink / raw)
  To: buildroot

Hi Clayton,

On Mon, Mar 10, 2014 at 08:56:49AM -0500, Clayton Shotwell wrote:
> Bumping version of rsyslog and adding new dependencies of libee and
> libestr.
> 
> Signed-off-by: Clayton Shotwell <clshotwe@rockwellcollins.com>
> ---
>  package/rsyslog/rsyslog.mk |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/package/rsyslog/rsyslog.mk b/package/rsyslog/rsyslog.mk
> index daae010..3ca5eae 100644
> --- a/package/rsyslog/rsyslog.mk
> +++ b/package/rsyslog/rsyslog.mk
> @@ -4,9 +4,9 @@
>  #
>  ################################################################################
>  
> -RSYSLOG_VERSION = 5.8.0
> +RSYSLOG_VERSION = 6.3.8
>  RSYSLOG_SITE = http://rsyslog.com/files/download/rsyslog/
> -RSYSLOG_DEPENDENCIES = zlib
> +RSYSLOG_DEPENDENCIES = zlib libestr libee

Shouldn't you also select these packages in Config.in to make sure they are 
available?

baruch

>  # Build after Busybox
>  ifeq ($(BR2_PACKAGE_BUSYBOX),y)
> -- 
> 1.7.1

-- 
     http://baruch.siach.name/blog/                  ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch at tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -

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

* [Buildroot] [PATCH 2/3] libee: new package
  2014-03-10 19:10   ` Baruch Siach
@ 2014-03-10 20:12     ` Clayton Shotwell
  0 siblings, 0 replies; 10+ messages in thread
From: Clayton Shotwell @ 2014-03-10 20:12 UTC (permalink / raw)
  To: buildroot

Baruch Siach <baruch@tkos.co.il> wrote on 03/10/2014 02:10:58 PM:

> > --- /dev/null
> > +++ b/package/libee/Config.in
> > @@ -0,0 +1,18 @@
> > +config BR2_PACKAGE_LIBEE
> > +   bool "libee"
> 
> select BR2_PACKAGE_LIBESTR?
> 
> baruch

I'll add the select statement.

Thanks,
Clayton

Clayton Shotwell
Software Engineer
clshotwe at rockwellcollins.com
www.rockwellcollins.com 

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

* [Buildroot] [PATCH 3/3] rsyslog: bump to version 6.3.8
  2014-03-10 19:14   ` Baruch Siach
@ 2014-03-10 20:12     ` Clayton Shotwell
  0 siblings, 0 replies; 10+ messages in thread
From: Clayton Shotwell @ 2014-03-10 20:12 UTC (permalink / raw)
  To: buildroot

Baruch Siach <baruch@tkos.co.il> wrote on 03/10/2014 02:14:53 PM:

> From: Baruch Siach <baruch@tkos.co.il>
> To: Clayton Shotwell <clshotwe@rockwellcollins.com>
> Cc: buildroot at buildroot.org
> Date: 03/10/2014 02:14 PM
> Subject: Re: [Buildroot] [PATCH 3/3] rsyslog: bump to version 6.3.8
> 
> Hi Clayton,
> 
> On Mon, Mar 10, 2014 at 08:56:49AM -0500, Clayton Shotwell wrote:
> > Bumping version of rsyslog and adding new dependencies of libee and
> > libestr.
> > 
> > Signed-off-by: Clayton Shotwell <clshotwe@rockwellcollins.com>
> > ---
> >  package/rsyslog/rsyslog.mk |    4 ++--
> >  1 files changed, 2 insertions(+), 2 deletions(-)
> > 
> > diff --git a/package/rsyslog/rsyslog.mk b/package/rsyslog/rsyslog.mk
> > index daae010..3ca5eae 100644
> > --- a/package/rsyslog/rsyslog.mk
> > +++ b/package/rsyslog/rsyslog.mk
> > @@ -4,9 +4,9 @@
> >  #
> > 
> 
################################################################################
> > 
> > -RSYSLOG_VERSION = 5.8.0
> > +RSYSLOG_VERSION = 6.3.8
> >  RSYSLOG_SITE = http://rsyslog.com/files/download/rsyslog/
> > -RSYSLOG_DEPENDENCIES = zlib
> > +RSYSLOG_DEPENDENCIES = zlib libestr libee
> 
> Shouldn't you also select these packages in Config.in to make sure they 
are 
> available?
> 
> baruch

Yes I should. I'll make that change a resubmit.

Thanks,
Clayton

Clayton Shotwell
Software Engineer
clshotwe at rockwellcollins.com
www.rockwellcollins.com 

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

end of thread, other threads:[~2014-03-10 20:12 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-10 13:56 [Buildroot] [PATCH 1/3] libestr: new package Clayton Shotwell
2014-03-10 13:56 ` [Buildroot] [PATCH 2/3] libee: " Clayton Shotwell
2014-03-10 19:10   ` Baruch Siach
2014-03-10 20:12     ` Clayton Shotwell
2014-03-10 19:12   ` Baruch Siach
2014-03-10 13:56 ` [Buildroot] [PATCH 3/3] rsyslog: bump to version 6.3.8 Clayton Shotwell
2014-03-10 14:34   ` Ryan Barnett
     [not found]   ` <OF14BFD3A2.E76317EC-ON86257C97.004F3333-86257C97.00500AF5@LocalDomain>
2014-03-10 19:03     ` Clayton Shotwell
2014-03-10 19:14   ` Baruch Siach
2014-03-10 20:12     ` Clayton Shotwell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox