Earlier quoted context omitted.
> update the shared library, restart affected services ... look for programs to break at runtime because of some unrelated API change in the shared library.
That's why Debian Stable and RHEL exist. Security patches don't break the API.
Nuitka Progress in 2015 – Python Compiler
51–55 of 55 posts
Re: Nuitka Progress in 2015 – Python Compiler
#52Re: Nuitka Progress in 2015 – Python Compiler
#53Earlier quoted context omitted.
I find the way software is packaged in Go to be a terrible regression, but I'm more interested in why you think pip and venv's don't solve the problem for Python already? Edit: I see from your reply that we're talking at cross purposes. I thought you meant source distribution, but you mean binary distribution to end users or deployment to production systems, and in that case I agree with you.
Being able to ship a self contained binary of your application is a very powerful concept, on which many seem to agree. The way I see it, pip and virtualenv are not practical for deployment or distribution. You shouldn't have to download and install things during a production deployment. I even created a tool ( https://github.com/objectified/vdist ) to mitigate this problem, but it will always be a hack when doing it…
Re: Nuitka Progress in 2015 – Python Compiler
#54Earlier quoted context omitted.
Remember that critical Go security update? Usual procedure - update the shared library, restart affected services. Go - recompile everything.
Yeah that's the usual refrain, but the only situation where you have shared libraries is on Linux with a package manager. In that case it is trivial to recompile all packages that depend on the insecure library anyway. On Windows you have to package most shared libraries with your app anyway so you have to get a new version of it anyway.
Re: Nuitka Progress in 2015 – Python Compiler
#55Earlier quoted context omitted.
Remember that critical Go security update? Usual procedure - update the shared library, restart affected services. Go - recompile everything.
Yeah, but... that's not really the "usual procedure" though. Nobody who knows what they are doing literally downloads openssl manually, compiles the new shared library, manually installs it, and manually restarts the affected services, on the grounds that if you do that you have just proved you don't know what you are doing. (Most charitably, you're doing a "Linux From Scratch" for educational purposes, but that's ju…
What's the issue with that?