Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH] libproxy: add dependency on glib-2.0
@ 2012-08-13 22:43 Paul Gortmaker
  2012-08-17 16:57 ` Richard Purdie
  0 siblings, 1 reply; 9+ messages in thread
From: Paul Gortmaker @ 2012-08-13 22:43 UTC (permalink / raw)
  To: openembedded-core

Without this, you will get occasional build failures if libproxy
tries to build before the glib headers are placed in the sysroot.

Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>

diff --git a/meta/recipes-support/libproxy/libproxy_0.4.7.bb b/meta/recipes-support/libproxy/libproxy_0.4.7.bb
index 7e3cf27..a39e3a8 100644
--- a/meta/recipes-support/libproxy/libproxy_0.4.7.bb
+++ b/meta/recipes-support/libproxy/libproxy_0.4.7.bb
@@ -6,7 +6,7 @@ LICENSE = "LGPLv2.1+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=7d7044444a7b1b116e8783edcdb44ff4 \
                     file://utils/proxy.c;beginline=1;endline=18;md5=55152a1006d7dafbef32baf9c30a99c0"
 
-DEPENDS = "gconf"
+DEPENDS = "gconf glib-2.0"
 
 PR = "r4"
 
-- 
1.7.12.rc1.1.gbce1580




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

* Re: [PATCH] libproxy: add dependency on glib-2.0
  2012-08-13 22:43 [PATCH] libproxy: add dependency on glib-2.0 Paul Gortmaker
@ 2012-08-17 16:57 ` Richard Purdie
  2012-08-17 18:07   ` Paul Gortmaker
  0 siblings, 1 reply; 9+ messages in thread
From: Richard Purdie @ 2012-08-17 16:57 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Mon, 2012-08-13 at 18:43 -0400, Paul Gortmaker wrote:
> Without this, you will get occasional build failures if libproxy
> tries to build before the glib headers are placed in the sysroot.
> 
> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
> 
> diff --git a/meta/recipes-support/libproxy/libproxy_0.4.7.bb b/meta/recipes-support/libproxy/libproxy_0.4.7.bb
> index 7e3cf27..a39e3a8 100644
> --- a/meta/recipes-support/libproxy/libproxy_0.4.7.bb
> +++ b/meta/recipes-support/libproxy/libproxy_0.4.7.bb
> @@ -6,7 +6,7 @@ LICENSE = "LGPLv2.1+"
>  LIC_FILES_CHKSUM = "file://COPYING;md5=7d7044444a7b1b116e8783edcdb44ff4 \
>                      file://utils/proxy.c;beginline=1;endline=18;md5=55152a1006d7dafbef32baf9c30a99c0"
>  
> -DEPENDS = "gconf"
> +DEPENDS = "gconf glib-2.0"
>  

We've gone around in circles on this and had issues over circular
dependencies. The bottom line is that we don't need glib-2.0 here, we
want to disable the glib-2.0 using components of libproxy. I don't know
cmake well enough to know how to configure it to do this though (instead
of autodetecting)

Cheers,

Richard




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

* Re: [PATCH] libproxy: add dependency on glib-2.0
  2012-08-17 16:57 ` Richard Purdie
@ 2012-08-17 18:07   ` Paul Gortmaker
  2012-08-17 18:19     ` McClintock Matthew-B29882
  2012-08-17 21:41     ` Richard Purdie
  0 siblings, 2 replies; 9+ messages in thread
From: Paul Gortmaker @ 2012-08-17 18:07 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On 12-08-17 12:57 PM, Richard Purdie wrote:
> On Mon, 2012-08-13 at 18:43 -0400, Paul Gortmaker wrote:
>> Without this, you will get occasional build failures if libproxy
>> tries to build before the glib headers are placed in the sysroot.
>>
>> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
>>
>> diff --git a/meta/recipes-support/libproxy/libproxy_0.4.7.bb b/meta/recipes-support/libproxy/libproxy_0.4.7.bb
>> index 7e3cf27..a39e3a8 100644
>> --- a/meta/recipes-support/libproxy/libproxy_0.4.7.bb
>> +++ b/meta/recipes-support/libproxy/libproxy_0.4.7.bb
>> @@ -6,7 +6,7 @@ LICENSE = "LGPLv2.1+"
>>  LIC_FILES_CHKSUM = "file://COPYING;md5=7d7044444a7b1b116e8783edcdb44ff4 \
>>                      file://utils/proxy.c;beginline=1;endline=18;md5=55152a1006d7dafbef32baf9c30a99c0"
>>  
>> -DEPENDS = "gconf"
>> +DEPENDS = "gconf glib-2.0"
>>  
> 
> We've gone around in circles on this and had issues over circular
> dependencies. The bottom line is that we don't need glib-2.0 here, we
> want to disable the glib-2.0 using components of libproxy. I don't know

Fair enough.

Can we _finally_ fix the mailing lists to not override the To/Cc lines
with crap Reply-To: lines?  Once again I almost missed seeing this reply,
since I was no longer on the To/Cc.

AFAICT, all were in agreement that it was broken, but it never got fixed.

Thanks,
Paul.
--

> cmake well enough to know how to configure it to do this though (instead
> of autodetecting)
> 
> Cheers,
> 
> Richard
> 
> 
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
> 
> 



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

* Re: [PATCH] libproxy: add dependency on glib-2.0
  2012-08-17 18:07   ` Paul Gortmaker
@ 2012-08-17 18:19     ` McClintock Matthew-B29882
  2012-08-17 21:41     ` Richard Purdie
  1 sibling, 0 replies; 9+ messages in thread
From: McClintock Matthew-B29882 @ 2012-08-17 18:19 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer, Paul Gortmaker,
	Richard Purdie

On Fri, Aug 17, 2012 at 1:07 PM, Paul Gortmaker
<paul.gortmaker@windriver.com> wrote:
> On 12-08-17 12:57 PM, Richard Purdie wrote:
>> On Mon, 2012-08-13 at 18:43 -0400, Paul Gortmaker wrote:
>>> Without this, you will get occasional build failures if libproxy
>>> tries to build before the glib headers are placed in the sysroot.
>>>
>>> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
>>>
>>> diff --git a/meta/recipes-support/libproxy/libproxy_0.4.7.bb b/meta/recipes-support/libproxy/libproxy_0.4.7.bb
>>> index 7e3cf27..a39e3a8 100644
>>> --- a/meta/recipes-support/libproxy/libproxy_0.4.7.bb
>>> +++ b/meta/recipes-support/libproxy/libproxy_0.4.7.bb
>>> @@ -6,7 +6,7 @@ LICENSE = "LGPLv2.1+"
>>>  LIC_FILES_CHKSUM = "file://COPYING;md5=7d7044444a7b1b116e8783edcdb44ff4 \
>>>                      file://utils/proxy.c;beginline=1;endline=18;md5=55152a1006d7dafbef32baf9c30a99c0"
>>>
>>> -DEPENDS = "gconf"
>>> +DEPENDS = "gconf glib-2.0"
>>>
>>
>> We've gone around in circles on this and had issues over circular
>> dependencies. The bottom line is that we don't need glib-2.0 here, we
>> want to disable the glib-2.0 using components of libproxy. I don't know
>
> Fair enough.
>
> Can we _finally_ fix the mailing lists to not override the To/Cc lines
> with crap Reply-To: lines?  Once again I almost missed seeing this reply,
> since I was no longer on the To/Cc.

PLEASE ;)

-M

>
> AFAICT, all were in agreement that it was broken, but it never got fixed.
>
> Thanks,
> Paul.
> --
>
>> cmake well enough to know how to configure it to do this though (instead
>> of autodetecting)
>>
>> Cheers,
>>
>> Richard
>>
>>
>> _______________________________________________
>> Openembedded-core mailing list
>> Openembedded-core@lists.openembedded.org
>> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>>
>>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core



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

* Re: [PATCH] libproxy: add dependency on glib-2.0
  2012-08-17 18:07   ` Paul Gortmaker
  2012-08-17 18:19     ` McClintock Matthew-B29882
@ 2012-08-17 21:41     ` Richard Purdie
  2012-08-20 13:50       ` Paul Gortmaker
  1 sibling, 1 reply; 9+ messages in thread
From: Richard Purdie @ 2012-08-17 21:41 UTC (permalink / raw)
  To: Paul Gortmaker; +Cc: Patches and discussions about the oe-core layer

On Fri, 2012-08-17 at 14:07 -0400, Paul Gortmaker wrote:
> On 12-08-17 12:57 PM, Richard Purdie wrote:
> > On Mon, 2012-08-13 at 18:43 -0400, Paul Gortmaker wrote:
> >> Without this, you will get occasional build failures if libproxy
> >> tries to build before the glib headers are placed in the sysroot.
> >>
> >> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
> >>
> >> diff --git a/meta/recipes-support/libproxy/libproxy_0.4.7.bb b/meta/recipes-support/libproxy/libproxy_0.4.7.bb
> >> index 7e3cf27..a39e3a8 100644
> >> --- a/meta/recipes-support/libproxy/libproxy_0.4.7.bb
> >> +++ b/meta/recipes-support/libproxy/libproxy_0.4.7.bb
> >> @@ -6,7 +6,7 @@ LICENSE = "LGPLv2.1+"
> >>  LIC_FILES_CHKSUM = "file://COPYING;md5=7d7044444a7b1b116e8783edcdb44ff4 \
> >>                      file://utils/proxy.c;beginline=1;endline=18;md5=55152a1006d7dafbef32baf9c30a99c0"
> >>  
> >> -DEPENDS = "gconf"
> >> +DEPENDS = "gconf glib-2.0"
> >>  
> > 
> > We've gone around in circles on this and had issues over circular
> > dependencies. The bottom line is that we don't need glib-2.0 here, we
> > want to disable the glib-2.0 using components of libproxy. I don't know
> 
> Fair enough.
> 
> Can we _finally_ fix the mailing lists to not override the To/Cc lines
> with crap Reply-To: lines?  Once again I almost missed seeing this reply,
> since I was no longer on the To/Cc.
> 
> AFAICT, all were in agreement that it was broken, but it never got fixed.

There were a few things causing problems here such as lost admin access.
Those have been resolved and I just changed the setting that I think was
causing the problems. Let me know if there are still issues...

Cheers,

Richard




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

* Re: [PATCH] libproxy: add dependency on glib-2.0
  2012-08-17 21:41     ` Richard Purdie
@ 2012-08-20 13:50       ` Paul Gortmaker
  2012-08-20 16:15         ` McClintock Matthew-B29882
  0 siblings, 1 reply; 9+ messages in thread
From: Paul Gortmaker @ 2012-08-20 13:50 UTC (permalink / raw)
  To: Richard Purdie; +Cc: Patches and discussions about the oe-core layer

On 12-08-17 05:41 PM, Richard Purdie wrote:
> On Fri, 2012-08-17 at 14:07 -0400, Paul Gortmaker wrote:
>> On 12-08-17 12:57 PM, Richard Purdie wrote:
>>> On Mon, 2012-08-13 at 18:43 -0400, Paul Gortmaker wrote:
>>>> Without this, you will get occasional build failures if libproxy
>>>> tries to build before the glib headers are placed in the sysroot.
>>>>
>>>> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
>>>>
>>>> diff --git a/meta/recipes-support/libproxy/libproxy_0.4.7.bb b/meta/recipes-support/libproxy/libproxy_0.4.7.bb
>>>> index 7e3cf27..a39e3a8 100644
>>>> --- a/meta/recipes-support/libproxy/libproxy_0.4.7.bb
>>>> +++ b/meta/recipes-support/libproxy/libproxy_0.4.7.bb
>>>> @@ -6,7 +6,7 @@ LICENSE = "LGPLv2.1+"
>>>>  LIC_FILES_CHKSUM = "file://COPYING;md5=7d7044444a7b1b116e8783edcdb44ff4 \
>>>>                      file://utils/proxy.c;beginline=1;endline=18;md5=55152a1006d7dafbef32baf9c30a99c0"
>>>>  
>>>> -DEPENDS = "gconf"
>>>> +DEPENDS = "gconf glib-2.0"
>>>>  
>>>
>>> We've gone around in circles on this and had issues over circular
>>> dependencies. The bottom line is that we don't need glib-2.0 here, we
>>> want to disable the glib-2.0 using components of libproxy. I don't know
>>
>> Fair enough.
>>
>> Can we _finally_ fix the mailing lists to not override the To/Cc lines
>> with crap Reply-To: lines?  Once again I almost missed seeing this reply,
>> since I was no longer on the To/Cc.
>>
>> AFAICT, all were in agreement that it was broken, but it never got fixed.
> 
> There were a few things causing problems here such as lost admin access.
> Those have been resolved and I just changed the setting that I think was
> causing the problems. Let me know if there are still issues...

Looks good now, thanks a lot. Much appreciated by many, I'm sure.

Paul.
--

> 
> Cheers,
> 
> Richard
> 



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

* Re: [PATCH] libproxy: add dependency on glib-2.0
  2012-08-20 13:50       ` Paul Gortmaker
@ 2012-08-20 16:15         ` McClintock Matthew-B29882
  0 siblings, 0 replies; 9+ messages in thread
From: McClintock Matthew-B29882 @ 2012-08-20 16:15 UTC (permalink / raw)
  To: Paul Gortmaker; +Cc: Patches, discussions about the oe-core layer

On Mon, Aug 20, 2012 at 8:50 AM, Paul Gortmaker
<paul.gortmaker@windriver.com> wrote:
> On 12-08-17 05:41 PM, Richard Purdie wrote:
>> On Fri, 2012-08-17 at 14:07 -0400, Paul Gortmaker wrote:
>>> On 12-08-17 12:57 PM, Richard Purdie wrote:
>>>> On Mon, 2012-08-13 at 18:43 -0400, Paul Gortmaker wrote:
>>>>> Without this, you will get occasional build failures if libproxy
>>>>> tries to build before the glib headers are placed in the sysroot.
>>>>>
>>>>> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
>>>>>
>>>>> diff --git a/meta/recipes-support/libproxy/libproxy_0.4.7.bb b/meta/recipes-support/libproxy/libproxy_0.4.7.bb
>>>>> index 7e3cf27..a39e3a8 100644
>>>>> --- a/meta/recipes-support/libproxy/libproxy_0.4.7.bb
>>>>> +++ b/meta/recipes-support/libproxy/libproxy_0.4.7.bb
>>>>> @@ -6,7 +6,7 @@ LICENSE = "LGPLv2.1+"
>>>>>  LIC_FILES_CHKSUM = "file://COPYING;md5=7d7044444a7b1b116e8783edcdb44ff4 \
>>>>>                      file://utils/proxy.c;beginline=1;endline=18;md5=55152a1006d7dafbef32baf9c30a99c0"
>>>>>
>>>>> -DEPENDS = "gconf"
>>>>> +DEPENDS = "gconf glib-2.0"
>>>>>
>>>>
>>>> We've gone around in circles on this and had issues over circular
>>>> dependencies. The bottom line is that we don't need glib-2.0 here, we
>>>> want to disable the glib-2.0 using components of libproxy. I don't know
>>>
>>> Fair enough.
>>>
>>> Can we _finally_ fix the mailing lists to not override the To/Cc lines
>>> with crap Reply-To: lines?  Once again I almost missed seeing this reply,
>>> since I was no longer on the To/Cc.
>>>
>>> AFAICT, all were in agreement that it was broken, but it never got fixed.
>>
>> There were a few things causing problems here such as lost admin access.
>> Those have been resolved and I just changed the setting that I think was
>> causing the problems. Let me know if there are still issues...
>
> Looks good now, thanks a lot. Much appreciated by many, I'm sure.

Awesome, looks to be working for me too. Did you do oe-devel as well?

-M



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

* [PATCH] libproxy: add dependency on glib-2.0
  2013-04-03 12:23 [PATCH] libproxy: add dependency on libffi Alex DAMIAN
@ 2013-04-03 15:20 ` Alex DAMIAN
  2013-04-03 15:33   ` Saul Wold
  0 siblings, 1 reply; 9+ messages in thread
From: Alex DAMIAN @ 2013-04-03 15:20 UTC (permalink / raw)
  To: sgw, richard.purdie, openembedded-core, ross.burton; +Cc: Alexandru DAMIAN

From: Alexandru DAMIAN <alexandru.damian@intel.com>

libproxy uses glib-2.0, but the depends is missing

Fixes intermittent build errors.

Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
---
 meta/classes/core-image.bbclass                 |    4 ++--
 meta/recipes-support/libproxy/libproxy_0.4.7.bb |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta/classes/core-image.bbclass b/meta/classes/core-image.bbclass
index 86df91d..2bd5c12 100644
--- a/meta/classes/core-image.bbclass
+++ b/meta/classes/core-image.bbclass
@@ -41,8 +41,8 @@ PACKAGE_GROUP_tools-profile = "packagegroup-core-tools-profile"
 PACKAGE_GROUP_tools-testapps = "packagegroup-core-tools-testapps"
 PACKAGE_GROUP_tools-sdk = "packagegroup-core-sdk packagegroup-core-standalone-sdk-target"
 PACKAGE_GROUP_nfs-server = "packagegroup-core-nfs-server"
-PACKAGE_GROUP_ssh-server-dropbear = "packagegroup-core-ssh-dropbear"
-PACKAGE_GROUP_ssh-server-openssh = "packagegroup-core-ssh-openssh"
+#PACKAGE_GROUP_ssh-server-dropbear = "packagegroup-core-ssh-dropbear"
+#PACKAGE_GROUP_ssh-server-openssh = "packagegroup-core-ssh-openssh"
 PACKAGE_GROUP_package-management = "${ROOTFS_PKGMANAGE}"
 PACKAGE_GROUP_qt4-pkgs = "packagegroup-core-qt-demoapps"
 PACKAGE_GROUP_hwcodecs = "${MACHINE_HWCODECS}"
diff --git a/meta/recipes-support/libproxy/libproxy_0.4.7.bb b/meta/recipes-support/libproxy/libproxy_0.4.7.bb
index 510c6b7..89f22b8 100644
--- a/meta/recipes-support/libproxy/libproxy_0.4.7.bb
+++ b/meta/recipes-support/libproxy/libproxy_0.4.7.bb
@@ -6,7 +6,7 @@ LICENSE = "LGPLv2.1+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=7d7044444a7b1b116e8783edcdb44ff4 \
                     file://utils/proxy.c;beginline=1;endline=18;md5=55152a1006d7dafbef32baf9c30a99c0"
 
-DEPENDS = "gconf"
+DEPENDS = "gconf glib-2.0"
 
 PR = "r5"
 
-- 
1.7.10.4




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

* Re: [PATCH] libproxy: add dependency on glib-2.0
  2013-04-03 15:20 ` [PATCH] libproxy: add dependency on glib-2.0 Alex DAMIAN
@ 2013-04-03 15:33   ` Saul Wold
  0 siblings, 0 replies; 9+ messages in thread
From: Saul Wold @ 2013-04-03 15:33 UTC (permalink / raw)
  To: Alex DAMIAN; +Cc: openembedded-core

On 04/03/2013 08:20 AM, Alex DAMIAN wrote:
> From: Alexandru DAMIAN <alexandru.damian@intel.com>
>
> libproxy uses glib-2.0, but the depends is missing
>
> Fixes intermittent build errors.
>
> Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
> ---
>   meta/classes/core-image.bbclass                 |    4 ++--
>   meta/recipes-support/libproxy/libproxy_0.4.7.bb |    2 +-
>   2 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/meta/classes/core-image.bbclass b/meta/classes/core-image.bbclass
> index 86df91d..2bd5c12 100644
> --- a/meta/classes/core-image.bbclass
> +++ b/meta/classes/core-image.bbclass
> @@ -41,8 +41,8 @@ PACKAGE_GROUP_tools-profile = "packagegroup-core-tools-profile"
>   PACKAGE_GROUP_tools-testapps = "packagegroup-core-tools-testapps"
>   PACKAGE_GROUP_tools-sdk = "packagegroup-core-sdk packagegroup-core-standalone-sdk-target"
>   PACKAGE_GROUP_nfs-server = "packagegroup-core-nfs-server"
> -PACKAGE_GROUP_ssh-server-dropbear = "packagegroup-core-ssh-dropbear"
> -PACKAGE_GROUP_ssh-server-openssh = "packagegroup-core-ssh-openssh"
> +#PACKAGE_GROUP_ssh-server-dropbear = "packagegroup-core-ssh-dropbear"
> +#PACKAGE_GROUP_ssh-server-openssh = "packagegroup-core-ssh-openssh"
>   PACKAGE_GROUP_package-management = "${ROOTFS_PKGMANAGE}"
>   PACKAGE_GROUP_qt4-pkgs = "packagegroup-core-qt-demoapps"
>   PACKAGE_GROUP_hwcodecs = "${MACHINE_HWCODECS}"

You seem to have pulled in some other stuff also, please send a clean v2.

Thanks
    Sau!


> diff --git a/meta/recipes-support/libproxy/libproxy_0.4.7.bb b/meta/recipes-support/libproxy/libproxy_0.4.7.bb
> index 510c6b7..89f22b8 100644
> --- a/meta/recipes-support/libproxy/libproxy_0.4.7.bb
> +++ b/meta/recipes-support/libproxy/libproxy_0.4.7.bb
> @@ -6,7 +6,7 @@ LICENSE = "LGPLv2.1+"
>   LIC_FILES_CHKSUM = "file://COPYING;md5=7d7044444a7b1b116e8783edcdb44ff4 \
>                       file://utils/proxy.c;beginline=1;endline=18;md5=55152a1006d7dafbef32baf9c30a99c0"
>
> -DEPENDS = "gconf"
> +DEPENDS = "gconf glib-2.0"
>
>   PR = "r5"
>
>



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

end of thread, other threads:[~2013-04-03 15:50 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-13 22:43 [PATCH] libproxy: add dependency on glib-2.0 Paul Gortmaker
2012-08-17 16:57 ` Richard Purdie
2012-08-17 18:07   ` Paul Gortmaker
2012-08-17 18:19     ` McClintock Matthew-B29882
2012-08-17 21:41     ` Richard Purdie
2012-08-20 13:50       ` Paul Gortmaker
2012-08-20 16:15         ` McClintock Matthew-B29882
  -- strict thread matches above, loose matches on Subject: below --
2013-04-03 12:23 [PATCH] libproxy: add dependency on libffi Alex DAMIAN
2013-04-03 15:20 ` [PATCH] libproxy: add dependency on glib-2.0 Alex DAMIAN
2013-04-03 15:33   ` Saul Wold

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