<div dir="ltr">I really honestly felt that this rebuttal was very unhelpful. I basically got from it:<div><ul><li>Lisp isn't designed for this kind of use.</li><li>Since Lisp wasn't designed for this, the problem is not Lisp, it's your use of Lisp.</li><li>To solve the problem (which is not Lisp's), fix (third party) inconsistencies yourself. Because it's not a Lisp problem, two systems depending on two Lisp-simultaneous-incompatible versions of a system is a problem. (Even though each system+dependency combination is perfectly valid in isolation.)</li><li>Or, in the end, change your entire operating system to a completely different one with completely different philosophies.</li></ul><div>This kind of response is just very practically a non-starter for most people. Maybe that means Lisp isn't the right tool for much of the world, like startups, then. Which advances my point, I think, in the original Quora post. (But I admit this thread is about package or system versioning, not the original Quora point.)</div><div><br></div><div>I wrote some stuff inline below.</div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, May 18, 2016 at 10:14 PM, Faré <span dir="ltr"><<a href="mailto:fahree@gmail.com" target="_blank">fahree@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On Wed, May 18, 2016 at 5:49 PM, Robert Smith <<a href="mailto:quad@symbo1ics.com">quad@symbo1ics.com</a>> wrote:<br>
><br>
> On Wed, May 18, 2016 at 4:57 AM, Alessio Stalla <<a href="mailto:alessiostalla@gmail.com">alessiostalla@gmail.com</a>><br>
> wrote:<br>
>><br>
>> The stance on packages found in the mentioned Quora post is based on the<br>
>> old misconception about packages being modules, or "software packages" in<br>
>> the Linux distribution sense. They're not. They are really just namespaces,<br>
>> containers of symbols. So it does not make any sense, to me, that they have<br>
>> versions. Software has versions, not names.<br>
><br>
<br>
<br>
</span><span class="">> Systems are what should get versioned but systems are not what are referred<br>
> to by source files. Systems largely coordinate the compilation and loading<br>
> of files. Source files generally have no notion of a system, actually, which<br>
> may be what is ultimately problematic. Packages are referred to by source<br>
> files, however. When I said packages, I meant it, and it was not a<br>
> conflation with the notion of a system.<br>
><br>
</span>Why should source files know about systems?<br>
Why should packages know about systems?<span class=""><br></span></blockquote><div><br></div><div>Maybe they should, maybe they shouldn't. But the crappy packages-as-namespaces system isn't cutting it for large programs, and modules usually naturally have an associated namespace, but there's no formal correspondence between packages and systems. But more often than not there is an implicit association, judging by how most modern Common Lisp libraries are written. So maybe there's value in taking advantage of that correspondence.</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">
> At the companies I have worked in, we rake in 100s of systems, which consist<br>
> of n*100s of systems where n is the average number of packages per system.<br>
> These version collisions happen enough, and we are lucky when they're not<br>
> silent.<br>
><br>
</span>Was it in CL? Was it all in the same process? CL is not designed for<br>
these kinds of things.<br>
<span class=""><br></span></blockquote><div><br></div><div>CL in the same process.</div><div><br></div><div>CL very clearly wasn't designed for a time where 100s of packages would be available and simultaneously usable.</div><div><br></div><div>But I'm not ready to concede and say "well, Lisp is only good for five or six massive packages or systems written by a few guys, like the good ol' days".</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">
> Often enough, it's an extremely subtle issue that system A depends<br>
> on {system B at time T1} and system C depends on {system B at time T2},<br>
> where T1 and T2 correspond to different versions of system B, even if not<br>
> explicitly labeled as such.<br>
><br>
</span>A and C are incompatible. You need to fix A, B and/or C.<br>
The build system can record this incompatibility and issue an early error<br>
when you try to build them together. It can't fix A, B and/or C for you.<br>
<span class=""><br></span></blockquote><div><br></div><div>A and C are incompatible only because of this whole thing we are talking about. Obviously they're incompatible. That's the whole problem. Saying "Fix A, B, C" is, to me, declaring that this whole thing isn't a problem, and the problem is library writers. Why can't A and C depend on whatever they want at some time? They of course can, but it's non-sense to think people will rename their namespaces every iteration of their software. That's just not how Lisp code has been written.</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">
> Let's suppose we simplify the problem however and assume that B has been<br>
> properly versioned in time, and systems A and C refer properly to the<br>
> correct version of system B as a dependency. Even then, they will not be<br>
> able to be simultaneously loaded in a functionally correct fashion. (They<br>
> *can* both be loaded, but you'll do some clobbering of state along the way.)<br>
><br>
</span>No. The build system can error out and<br>
tell you the easy way that you have to fix your bugs<br>
before you discover it the hard way<br></blockquote><div> </div><div>The build system erroring would be a step above the status quo. But maybe there's not actually a logical error. We are only considering it an error because of the way packages work in Lisp, no?</div><div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">
> Whether we think about modules as systems or as packages or as whatever, the<br>
> problem would need to be addressed at the package level, if we are not<br>
> assuming that we can't synchronize the universe of people writing Common<br>
> Lisp.<br>
><br>
</span>The packages have nothing to do with it, unless you fork B into B1 and B2<br>
(or B1 and B, or B and B2).<br>
<span class=""><br>
> Overall, I'd summarize as this. Whether we have the technology in the Common<br>
> Lisp ecosystem to accommodate this problem or not, it's my opinion and the<br>
> opinion of many of my colleagues that there is a problem for development<br>
> teams making extensive use of open and closed source code. There definitely<br>
> is not a discipline that you see with other languages and their ecosystems<br>
> (JS/npm, Clojure, etc.) about proper versioning of systems and furthermore<br>
> proper loading of the proper versions. I don't think that's debatable. The<br>
> closest we have to this solution is relying on the global nature of a<br>
> particular Quicklisp distribution, but not all Lisp software is free and<br>
> open source, and even software within Quicklisp has tons of implied version<br>
> dependencies.<br>
><br>
</span>This is not a very Lisp-specific problem.<br>
This is a problem with building software in general.<br>
The correct approach is to fix incompatibilities,<br>
not to try to deny their existence only to find out the hard way you can't.<br>
<br>
Google Bazel provides a good way to deterministically build software<br>
that follows the correct discipline. So does NixOS. There may be other<br>
such tools. Use them.<br>
<span class=""><br></span></blockquote><div><br></div><div>I don't know much about Bazel, and I know a little about NixOS. Regardless, this seems to be moving the problem into how we globally synchronize our systems. </div><div><br></div><div>I am absolutely boggled by this attitude. This is an issue that one runs into when writing Common Lisp code, and not an issue that one runs into writing in another language and associated ecosystem. To me, that's a Lisp problem. We can do some creative academic definitions, I think, but it's a problem when choosing Lisp as a tool.</div><div><br></div><div>I don't know. The original question I was answering was why Lisp isn't what we are all using today, and I think this weird thread serves as additional evidence.</div><div><br></div><div>Am I way off base here?</div><div><br></div><div>Cheers,</div><div><br></div><div>Robert</div></div></div></div></div>