public inbox for gentoo-dev@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-dev] How to deal with git sources?
@ 2018-03-11 18:05 Mike Auty
  2018-03-11 19:19 ` Mike Auty
  0 siblings, 1 reply; 18+ messages in thread
From: Mike Auty @ 2018-03-11 18:05 UTC (permalink / raw
  To: gentoo-dev


[-- Attachment #1.1: Type: text/plain, Size: 750 bytes --]

Hiya,

I'm trying to update/package up mypy for the main tree which, whilst it
provides a release tarball, relies upon a data library (typeshed) which
does not provide releases.  The recommended method of installation by
upstream is to use git submodules (which the ebuild will do happily),
but repoman rightly complains about LIVEVCS issues.

Is the current recommended method for dealing with this to manually
create a tarball and stash it on dev.gentoo.org somewhere accessible or
are there updated guidelines for this kind of scenario?  If so, where
would they be documented?  Searching for LIVECVS found a bunch of
repoman change discussions, but no documentation as to how to deal with
ebuilds that require this...

Mike  5:)


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 368 bytes --]

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

* Re: [gentoo-dev] How to deal with git sources?
  2018-03-11 18:05 [gentoo-dev] How to deal with git sources? Mike Auty
@ 2018-03-11 19:19 ` Mike Auty
  2018-03-12  4:30   ` [gentoo-dev] " Duncan
  0 siblings, 1 reply; 18+ messages in thread
From: Mike Auty @ 2018-03-11 19:19 UTC (permalink / raw
  To: gentoo-dev


[-- Attachment #1.1: Type: text/plain, Size: 1658 bytes --]

So,

tldr; Github will tarball up specific commits (or master) for you to add
to SRC_URI.

I ended up using the github API to pull down a tarball of the git repo,
rather than using git to pull it down.  I suppose that offers the
ability to Manifest it and check for changes, but I now have to encode
the fixed commit into every version of the ebuild because the only
location it's recorded is in the submodule commit hash of the package's
repo.

I could have it live in the PV, but I think that'd lead to potential
version sorting errors if people try and use copies of the ebuild.
Making typeshed its own package doesn't help because it's installed
under /usr/share/mypy/typeshed, not /usr/share/typeshed so it really is
part of mypy (for now).  So I'll see how this goes and listen for
feedback...

Mike  5:)

On 11/03/18 18:05, Mike Auty wrote:
> Hiya,
> 
> I'm trying to update/package up mypy for the main tree which, whilst it
> provides a release tarball, relies upon a data library (typeshed) which
> does not provide releases.  The recommended method of installation by
> upstream is to use git submodules (which the ebuild will do happily),
> but repoman rightly complains about LIVEVCS issues.
> 
> Is the current recommended method for dealing with this to manually
> create a tarball and stash it on dev.gentoo.org somewhere accessible or
> are there updated guidelines for this kind of scenario?  If so, where
> would they be documented?  Searching for LIVECVS found a bunch of
> repoman change discussions, but no documentation as to how to deal with
> ebuilds that require this...
> 
> Mike  5:)
> 



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 368 bytes --]

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

* [gentoo-dev] Re: How to deal with git sources?
  2018-03-11 19:19 ` Mike Auty
@ 2018-03-12  4:30   ` Duncan
  2018-03-12  8:29     ` Martin Vaeth
  0 siblings, 1 reply; 18+ messages in thread
From: Duncan @ 2018-03-12  4:30 UTC (permalink / raw
  To: gentoo-dev

Mike Auty posted on Sun, 11 Mar 2018 19:19:00 +0000 as excerpted:

> tldr; Github will tarball up specific commits (or master) for you to add
> to SRC_URI.
> 
> I ended up using the github API to pull down a tarball of the git repo,
> rather than using git to pull it down.  I suppose that offers the
> ability to Manifest it and check for changes, but I now have to encode
> the fixed commit into every version of the ebuild because the only
> location it's recorded is in the submodule commit hash of the package's
> repo.

Please check...

If I'm recalling correctly a warning posted on this list, repeated calls 
to the github tarballing API for the same commit will result in delivery 
of tarballs with differing checksums.  How/why wasn't explained as I 
recall, possibly part of the reason I'm not sure I'm recalling things 
correctly as that would have internally flagged it as unreliable/needing-
verification, but that was the warning as I remember it.

If it's correct, you can pull the tarball from github to store on devspace 
and link it as the checksummed tarball, as that's static and won't 
change, but you can't link the github tarballing API directly, as that 
/will/ change and thus will fail sources checksum verification at least 
some of the time.

But (assuming avoiding linking devspace is worth the trouble in the first 
place if possible) either verify it yourself or wait for verification/
negation from others, as I'm not entirely sure I'm recalling that warning 
post correctly.  It might have been for other than github, or I might 
have misunderstood, or maybe they've fixed that problem by now, or...

-- 
Duncan - List replies preferred.   No HTML msgs.
"Every nonfree program has a lord, a master --
and if you use the program, he is your master."  Richard Stallman



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

* [gentoo-dev] Re: How to deal with git sources?
  2018-03-12  4:30   ` [gentoo-dev] " Duncan
@ 2018-03-12  8:29     ` Martin Vaeth
  2018-03-12 13:20       ` Michael Orlitzky
  0 siblings, 1 reply; 18+ messages in thread
From: Martin Vaeth @ 2018-03-12  8:29 UTC (permalink / raw
  To: gentoo-dev

Duncan <1i5t5.duncan@cox.net> wrote:
>
> If I'm recalling correctly a warning posted on this list, repeated calls
> to the github tarballing API for the same commit will result in delivery
> of tarballs with differing checksums.

This was so many many years ago in the beginning of github.
This has long been fixed since then.
Actually, github is just using "git archive" which produces
always the same tarball.
Only possible exception is if you use .zip instead of .tar.gz
because the former (due to FAT compatibility in the format)
has to store the timezone. So if the timezone of the github
server ever changes, the .zip "tar"ball might also change.



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

* Re: [gentoo-dev] Re: How to deal with git sources?
  2018-03-12  8:29     ` Martin Vaeth
@ 2018-03-12 13:20       ` Michael Orlitzky
  2018-03-13 13:33         ` Martin Vaeth
  0 siblings, 1 reply; 18+ messages in thread
From: Michael Orlitzky @ 2018-03-12 13:20 UTC (permalink / raw
  To: gentoo-dev

On 03/12/2018 04:29 AM, Martin Vaeth wrote:
> Duncan <1i5t5.duncan@cox.net> wrote:
>>
>> If I'm recalling correctly a warning posted on this list, repeated calls
>> to the github tarballing API for the same commit will result in delivery
>> of tarballs with differing checksums.
> 
> This was so many many years ago in the beginning of github.
> This has long been fixed since then.

Every once in a while they still change. This is from a few weeks ago:

https://marc.info/?l=openbsd-ports&m=151973450514279&w=2


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

* [gentoo-dev] Re: How to deal with git sources?
  2018-03-12 13:20       ` Michael Orlitzky
@ 2018-03-13 13:33         ` Martin Vaeth
  2018-03-15 16:48           ` Vadim A. Misbakh-Soloviov
  0 siblings, 1 reply; 18+ messages in thread
From: Martin Vaeth @ 2018-03-13 13:33 UTC (permalink / raw
  To: gentoo-dev

Michael Orlitzky <mjo@gentoo.org> wrote:
> On 03/12/2018 04:29 AM, Martin Vaeth wrote:
>> This was so many many years ago in the beginning of github.
>> This has long been fixed since then.
>
> Every once in a while they still change. This is from a few weeks ago:
>
> https://marc.info/?l=openbsd-ports&m=151973450514279&w=2

As mentioned, github uses "git archive" to generate the tarballs.
So - theoretically - if a new version of git should have "git archive"
implemented differently (which might happen indirectly by new versions
of tar/zlib), there  might indeed be change.

However, this is purely theoretical: I just upgrade to most current
git-2.16.2 and tar-1.30, and checked: The generated tarballs still match
with that from 2014. So I really do not know which change
"a few months ago" the above message refers to: I could not detect any
change (and I really checked a lot of packages now).

Perhaps they refer to .zip instead of .tar.gz which as mentioned is
a less stable format due to the inclusion of the timezone.



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

* Re: [gentoo-dev] Re: How to deal with git sources?
  2018-03-13 13:33         ` Martin Vaeth
@ 2018-03-15 16:48           ` Vadim A. Misbakh-Soloviov
  2018-03-15 23:20             ` Martin Vaeth
  0 siblings, 1 reply; 18+ messages in thread
From: Vadim A. Misbakh-Soloviov @ 2018-03-15 16:48 UTC (permalink / raw
  To: gentoo-dev

> Perhaps they refer to .zip instead of .tar.gz which as mentioned is
> a less stable format due to the inclusion of the timezone.

Nope. I myself also faced tarballs checksum difference (even between few 
calls).

GH support answered me (in TL;DR version) "that's because we've upgraded git 
on *some* of our nodes" (means, some other using older git), and "we've never 
guaranteed same checksums".




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

* [gentoo-dev] Re: How to deal with git sources?
  2018-03-15 16:48           ` Vadim A. Misbakh-Soloviov
@ 2018-03-15 23:20             ` Martin Vaeth
  2018-03-16  4:03               ` NP-Hardass
  2018-03-16  7:19               ` Ulrich Mueller
  0 siblings, 2 replies; 18+ messages in thread
From: Martin Vaeth @ 2018-03-15 23:20 UTC (permalink / raw
  To: gentoo-dev

Vadim A. Misbakh-Soloviov <gentoo@mva.name> wrote:
>
> GH support answered me (in TL;DR version) "that's because we've upgraded git
> on *some* of our nodes" (means, some other using older git)

That would still require that the "git archive" output would have
changed in some recent git versions. And at least between the most
current 2.16.2 and comparing with all my git tarballs (some as
mentioned rather old), I could not produce any difference.
So I still do not understand what should be going on.



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

* Re: [gentoo-dev] Re: How to deal with git sources?
  2018-03-15 23:20             ` Martin Vaeth
@ 2018-03-16  4:03               ` NP-Hardass
  2018-03-16  9:28                 ` Martin Vaeth
  2018-03-16  7:19               ` Ulrich Mueller
  1 sibling, 1 reply; 18+ messages in thread
From: NP-Hardass @ 2018-03-16  4:03 UTC (permalink / raw
  To: gentoo-dev


[-- Attachment #1.1: Type: text/plain, Size: 711 bytes --]

On 03/15/2018 07:20 PM, Martin Vaeth wrote:
> Vadim A. Misbakh-Soloviov <gentoo@mva.name> wrote:
>>
>> GH support answered me (in TL;DR version) "that's because we've upgraded git
>> on *some* of our nodes" (means, some other using older git)
> 
> That would still require that the "git archive" output would have
> changed in some recent git versions. And at least between the most
> current 2.16.2 and comparing with all my git tarballs (some as
> mentioned rather old), I could not produce any difference.
> So I still do not understand what should be going on.
> 
> 

IIRC, it was attributed to
https://github.com/git/git/commit/22f0dcd9634a818a0c83f23ea1a48f2d620c0546

-- 
NP-Hardass


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* [gentoo-dev] Re: How to deal with git sources?
  2018-03-15 23:20             ` Martin Vaeth
  2018-03-16  4:03               ` NP-Hardass
@ 2018-03-16  7:19               ` Ulrich Mueller
  2018-03-16  7:27                 ` Ulrich Mueller
  2018-03-16 10:03                 ` Martin Vaeth
  1 sibling, 2 replies; 18+ messages in thread
From: Ulrich Mueller @ 2018-03-16  7:19 UTC (permalink / raw
  To: gentoo-dev

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

>>>>> On Thu, 15 Mar 2018, Martin Vaeth wrote:

> Vadim A. Misbakh-Soloviov <gentoo@mva.name> wrote:
>> 
>> GH support answered me (in TL;DR version) "that's because we've
>> upgraded git on *some* of our nodes" (means, some other using older
>> git)

> That would still require that the "git archive" output would have
> changed in some recent git versions. And at least between the most
> current 2.16.2 and comparing with all my git tarballs (some as
> mentioned rather old), I could not produce any difference.
> So I still do not understand what should be going on.

I think the conclusion is that github generates tarballs on the fly,
and therefore we cannot rely on them being invariant over a long time.
They may be susceptible to changes in git, in tar, or in gzip.

Ulrich

[-- Attachment #2: Type: application/pgp-signature, Size: 490 bytes --]

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

* [gentoo-dev] Re: How to deal with git sources?
  2018-03-16  7:19               ` Ulrich Mueller
@ 2018-03-16  7:27                 ` Ulrich Mueller
  2018-03-16 10:03                 ` Martin Vaeth
  1 sibling, 0 replies; 18+ messages in thread
From: Ulrich Mueller @ 2018-03-16  7:27 UTC (permalink / raw
  To: gentoo-dev

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

>>>>> On Fri, 16 Mar 2018, Ulrich Mueller wrote:

> I think the conclusion is that github generates tarballs on the fly,
> and therefore we cannot rely on them being invariant over a long time.
> They may be susceptible to changes in git, in tar, or in gzip.

In fact, only git and gzip (because the tar archive is built by git
itself). This doesn't change the argument, though.

Ulrich

[-- Attachment #2: Type: application/pgp-signature, Size: 490 bytes --]

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

* [gentoo-dev] Re: How to deal with git sources?
  2018-03-16  4:03               ` NP-Hardass
@ 2018-03-16  9:28                 ` Martin Vaeth
  0 siblings, 0 replies; 18+ messages in thread
From: Martin Vaeth @ 2018-03-16  9:28 UTC (permalink / raw
  To: gentoo-dev

NP-Hardass <NP-Hardass@gentoo.org> wrote:
>
> IIRC, it was attributed to
> https://github.com/git/git/commit/22f0dcd9634a818a0c83f23ea1a48f2d620c0546

Thanks. That explains why I was not able to produce a difference:
It involves only the rather exotic case that a path in a git repository
is longer than 100 characters.



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

* [gentoo-dev] Re: How to deal with git sources?
  2018-03-16  7:19               ` Ulrich Mueller
  2018-03-16  7:27                 ` Ulrich Mueller
@ 2018-03-16 10:03                 ` Martin Vaeth
  2018-03-16 10:17                   ` James Le Cuirot
  2018-03-16 11:00                   ` Ulrich Mueller
  1 sibling, 2 replies; 18+ messages in thread
From: Martin Vaeth @ 2018-03-16 10:03 UTC (permalink / raw
  To: gentoo-dev

Ulrich Mueller <ulm@gentoo.org> wrote:
>
> I think the conclusion is that github generates tarballs on the fly,
> and therefore we cannot rely on them being invariant over a long time.

Yes, but with emphasis on _long_ time and theory.
In practice this was happening now exactly _once_ in a decade
(according to all we learnt so far) for the understandable
reason of fixing an annoying incompatibility in an exotic case.
And the existence of zopfli shows that other backward-compatible
improvements _would_ have been possible, but apparently non-changing
of the produced tarball was always rated higher than anything else
(up to this exception).

So I would not worry too much about it: It is not worth the cost of
hosting a huge number of tarballs permanently (or to convince
upstream to let them be hosted by github for every single version,
only because one cannot theoretically exclude that a similar thing
won't ever happen again). Yes, for the transition period (until all
github servers use a new enough version) a solution for the few involved
tarballs has to be found (like temporarily hosting on devspace).
But after this period it is only a question of updating the
checksum once for the involved packages.



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

* Re: [gentoo-dev] Re: How to deal with git sources?
  2018-03-16 10:03                 ` Martin Vaeth
@ 2018-03-16 10:17                   ` James Le Cuirot
  2018-03-16 11:00                   ` Ulrich Mueller
  1 sibling, 0 replies; 18+ messages in thread
From: James Le Cuirot @ 2018-03-16 10:17 UTC (permalink / raw
  To: gentoo-dev

On Fri, 16 Mar 2018 10:03:44 +0000 (UTC)
Martin Vaeth <martin@mvath.de> wrote:

> So I would not worry too much about it: It is not worth the cost of
> hosting a huge number of tarballs permanently (or to convince
> upstream to let them be hosted by github for every single version,
> only because one cannot theoretically exclude that a similar thing
> won't ever happen again). Yes, for the transition period (until all
> github servers use a new enough version) a solution for the few
> involved tarballs has to be found (like temporarily hosting on
> devspace). But after this period it is only a question of updating the
> checksum once for the involved packages.

Agreed. I use this GitHub feature quite a lot and I've only ever seen
this happen maybe once? Even then, I think it might have been one of
the additional downloads rather than the git archives, which upstream
had probably replaced without bumping.

-- 
James Le Cuirot (chewi)
Gentoo Linux Developer


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

* [gentoo-dev] Re: How to deal with git sources?
  2018-03-16 10:03                 ` Martin Vaeth
  2018-03-16 10:17                   ` James Le Cuirot
@ 2018-03-16 11:00                   ` Ulrich Mueller
  2018-03-16 11:04                     ` Michał Górny
  2018-03-16 17:21                     ` William Hubbs
  1 sibling, 2 replies; 18+ messages in thread
From: Ulrich Mueller @ 2018-03-16 11:00 UTC (permalink / raw
  To: gentoo-dev

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

>>>>> On Fri, 16 Mar 2018, Martin Vaeth wrote:

> Ulrich Mueller <ulm@gentoo.org> wrote:
>> 
>> I think the conclusion is that github generates tarballs on the
>> fly, and therefore we cannot rely on them being invariant over a
>> long time.

> So I would not worry too much about it: It is not worth the cost of
> hosting a huge number of tarballs permanently

I agree, because hosting tarballs of upstream packages is not a task
for us as a distro.

> (or to convince upstream to let them be hosted by github for every
> single version, only because one cannot theoretically exclude that a
> similar thing won't ever happen again). [...]

In the first place, upstream should make proper releases, which
includes creating a pristine tarball and permanently hosting it.
So, yell at them if they don't. And no, a git tag is not a release.

Ulrich

[-- Attachment #2: Type: application/pgp-signature, Size: 490 bytes --]

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

* Re: [gentoo-dev] Re: How to deal with git sources?
  2018-03-16 11:00                   ` Ulrich Mueller
@ 2018-03-16 11:04                     ` Michał Górny
  2018-03-16 17:21                     ` William Hubbs
  1 sibling, 0 replies; 18+ messages in thread
From: Michał Górny @ 2018-03-16 11:04 UTC (permalink / raw
  To: gentoo-dev

W dniu pią, 16.03.2018 o godzinie 12∶00 +0100, użytkownik Ulrich Mueller
napisał:
> > > > > > On Fri, 16 Mar 2018, Martin Vaeth wrote:
> > Ulrich Mueller <ulm@gentoo.org> wrote:
> > > 
> > > I think the conclusion is that github generates tarballs on the
> > > fly, and therefore we cannot rely on them being invariant over a
> > > long time.
> > So I would not worry too much about it: It is not worth the cost of
> > hosting a huge number of tarballs permanently
> 
> I agree, because hosting tarballs of upstream packages is not a task
> for us as a distro.
> 
> > (or to convince upstream to let them be hosted by github for every
> > single version, only because one cannot theoretically exclude that a
> > similar thing won't ever happen again). [...]
> 
> In the first place, upstream should make proper releases, which
> includes creating a pristine tarball and permanently hosting it.
> So, yell at them if they don't. And no, a git tag is not a release.
> 

Feel free to convince Python upstreams to include tests in their
releases. Last I tried, I heard that tests are not useful for people who
install packages, and that they would make tarballs bigger.

-- 
Best regards,
Michał Górny



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

* Re: [gentoo-dev] Re: How to deal with git sources?
  2018-03-16 11:00                   ` Ulrich Mueller
  2018-03-16 11:04                     ` Michał Górny
@ 2018-03-16 17:21                     ` William Hubbs
  2018-03-16 17:34                       ` Rich Freeman
  1 sibling, 1 reply; 18+ messages in thread
From: William Hubbs @ 2018-03-16 17:21 UTC (permalink / raw
  To: gentoo-dev

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

On Fri, Mar 16, 2018 at 12:00:47PM +0100, Ulrich Mueller wrote:
> >>>>> On Fri, 16 Mar 2018, Martin Vaeth wrote:
> 
> > Ulrich Mueller <ulm@gentoo.org> wrote:
> >> 
> >> I think the conclusion is that github generates tarballs on the
> >> fly, and therefore we cannot rely on them being invariant over a
> >> long time.
> 
> > So I would not worry too much about it: It is not worth the cost of
> > hosting a huge number of tarballs permanently
> 
> I agree, because hosting tarballs of upstream packages is not a task
> for us as a distro.
> 
> > (or to convince upstream to let them be hosted by github for every
> > single version, only because one cannot theoretically exclude that a
> > similar thing won't ever happen again). [...]
> 
> In the first place, upstream should make proper releases, which
> includes creating a pristine tarball and permanently hosting it.
> So, yell at them if they don't. And no, a git tag is not a release.
> 
> Ulrich

Yelling at an upstream might get you somewhere, but you can't force
them, and in this case, they might tell you to create the pristine
tarball yourself using "git archive" if you want one.

I am in the same camp as Martin and James. I would rather see the issues
fixed for the specific packages involved than us try to host tarballs
for every package that doesn't create them.

William


[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 195 bytes --]

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

* Re: [gentoo-dev] Re: How to deal with git sources?
  2018-03-16 17:21                     ` William Hubbs
@ 2018-03-16 17:34                       ` Rich Freeman
  0 siblings, 0 replies; 18+ messages in thread
From: Rich Freeman @ 2018-03-16 17:34 UTC (permalink / raw
  To: gentoo-dev

On Fri, Mar 16, 2018 at 1:21 PM, William Hubbs <williamh@gentoo.org> wrote:
>
> I am in the same camp as Martin and James. I would rather see the issues
> fixed for the specific packages involved than us try to host tarballs
> for every package that doesn't create them.
>

++

If github didn't already provide a solution that works 95% of the time
I'd consider it more of a need.

And while a lot of people have issues with github, IMO this one part
of github is largely FOSS (they're just using git archive here).
Simply serving up git and git archive tarballs is something that could
be easily moved to another hosting provider if somebody stepped up to
offer the service.  If somebody were offering to build a homegrown
solution that would probably be fine, but I'm not really seeing
that...

-- 
Rich


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

end of thread, other threads:[~2018-03-16 17:34 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-03-11 18:05 [gentoo-dev] How to deal with git sources? Mike Auty
2018-03-11 19:19 ` Mike Auty
2018-03-12  4:30   ` [gentoo-dev] " Duncan
2018-03-12  8:29     ` Martin Vaeth
2018-03-12 13:20       ` Michael Orlitzky
2018-03-13 13:33         ` Martin Vaeth
2018-03-15 16:48           ` Vadim A. Misbakh-Soloviov
2018-03-15 23:20             ` Martin Vaeth
2018-03-16  4:03               ` NP-Hardass
2018-03-16  9:28                 ` Martin Vaeth
2018-03-16  7:19               ` Ulrich Mueller
2018-03-16  7:27                 ` Ulrich Mueller
2018-03-16 10:03                 ` Martin Vaeth
2018-03-16 10:17                   ` James Le Cuirot
2018-03-16 11:00                   ` Ulrich Mueller
2018-03-16 11:04                     ` Michał Górny
2018-03-16 17:21                     ` William Hubbs
2018-03-16 17:34                       ` Rich Freeman

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