I don't mean any other language, but I do mean any other relatively modern one. Rust, JavaScript, Clojure are maybe some examples off the top of my head. Either modules are somehow first class (by way of having modules-as-function-dictionaries), or the respective packaging/loading/whatever systems will at least let you know that about unsatisfied/mismatched versions.<div><br></div><div>I think in light of this discussion you can boil down one's opinion on this matter to one of three alternatives:</div><br><div>1. Lisp+ecosystem and associated libraries are problematic in that it's not possible to load multiple versions of a library due to the way CL packages work. (Packages or systems aren't first-class modules. Namespace names are global and aren't late-bound.)</div><div><br></div><div>2. There's something like a SocialProblem (TM) where Lispers lack (a) versioning discipline, (b) dependency versioning discipline which exacerbates issues like inadvertent multiple loading, or incompatible loading of libraries. </div><div><br></div><div>3. There's actually no issue in principle: inconsistencies need to "just" get fixed by the library vendor/user, or better tooling needs to be used to track your project's direct and transitive dependencies. </div><div><br></div><div>It's my personal opinion, as is evident in previous messages, that I think 1 & 2 are issues.</div><div><br></div><div>Some additional food for thought:</div><div><br></div><div>* Lisp is old. Some libraries go back to the 80s.</div><div><br></div><div>* Not everything is very strictly maintained. Some useful libraries haven't been updated for some 5-10 years.</div><div><br></div><div>* Like many other languages, Java is continuously updated, and as are the libraries of its large standard set. While Java/etc libraries certainly can and do depend on third party libraries, the majority of depended-on libraries are standard ones. This is obviously not the case for Lisp. </div><div><br></div><div>* Because library distribution wasn't a relatively solved problem until recently in Lisp history, some library authors unfortunately include copies of Lisp libraries as a part of their library tree.</div><div><br></div><div>* Hot patching libraries makes this all a ton more complicated in principle. </div><div><br></div><div>* Visible libraries are global to the entire Lisp universe. (Unlike Python where you can, just within a file, import and late-bind a namespace.)</div><div><br></div><div>* Tangential: the whole name/nickname collision issue. Package-local nicknames are a language extension which could solve this, even if not (yet?) universally used. </div><div><br></div><div>Making it easier to work in this large, old, and diverse ecosystem of implementations and libraries seems important to me, and versioning is one useful and tangible way to make things easier. </div><div><br></div><div>Robert<br><br>On Wednesday, May 18, 2016, Scott L. Burson <<a href="mailto:Scott@sympoiesis.com">Scott@sympoiesis.com</a>> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div>I don't understand when you say this is "not an issue that one runs into writing in another language and associated ecosystem".  AFAIK, in Java, you can have only one version of a given package loaded into the JVM at any one time.  Am I missing something here?<br><br></div>-- Scott<br></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, May 18, 2016 at 11:41 PM, Robert Smith <span dir="ltr"><<a href="javascript:_e(%7B%7D,'cvml','quad@symbo1ics.com');" target="_blank">quad@symbo1ics.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><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"><span>On Wed, May 18, 2016 at 10:14 PM, Faré <span dir="ltr"><<a href="javascript:_e(%7B%7D,'cvml','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>On Wed, May 18, 2016 at 5:49 PM, Robert Smith <<a href="javascript:_e(%7B%7D,'cvml','quad@symbo1ics.com');" target="_blank">quad@symbo1ics.com</a>> wrote:<br>
><br>
> On Wed, May 18, 2016 at 4:57 AM, Alessio Stalla <<a href="javascript:_e(%7B%7D,'cvml','alessiostalla@gmail.com');" target="_blank">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>> 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><br></span></blockquote><div><br></div></span><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><span><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span>
> 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><br></span></blockquote><div><br></div></span><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><span><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span>
> 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><br></span></blockquote><div><br></div></span><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><span><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span>
> 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></span><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><span><div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span>
> 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><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><br></span></blockquote><div><br></div></span><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>
</blockquote></div><br></div>
</blockquote></div>