Re: [Slackbuilds-users] Automating re-compilation of all packages

2017-08-21 Thread Andreas Guldstrand
Den 21 aug. 2017 6:27 fm skrev "Daniil Bratashov" : The main problem with ыгср automatic rebuild is that dependencies for packages are changing between major versions, so you need tools to rebuild dependency tree and build packages in right order. WBR, Daniil Bratashov. On

Re: [Slackbuilds-users] Automating re-compilation of all packages

2017-08-21 Thread Rich Shepard
On Mon, 21 Aug 2017, B Watson wrote: http://idlemoor.github.io/slackrepo/ Thanks for the pointer. Reading everone's replies I acknowledge that manually upgrading each non-distribution application that requires it makes more sense. Some don't so I'll upgrade each as I encounter a need for

Re: [Slackbuilds-users] Automating re-compilation of all packages

2017-08-21 Thread Rich Shepard
On Mon, 21 Aug 2017, Daniil Bratashov wrote: The main problem with automatic rebuild is that dependencies for packages are changing between major versions, so you need tools to rebuild dependency tree and build packages in right order. Daniil, I had not considered this. Manually

Re: [Slackbuilds-users] Automating re-compilation of all packages

2017-08-20 Thread B Watson
On 8/20/17, Rich Shepard wrote: >Has anyone written a script that will go through each directory tree > (e.g., Databases/, Developent/, GIS/) and recompile each package in there? I think this might do what you want: http://idlemoor.github.io/slackrepo/

Re: [Slackbuilds-users] Automating re-compilation of all packages

2017-08-20 Thread Eric Pratt
Yeah, that was a quick and dirty. I don't do it that way myself. When I upgrade, I go through the dependency trees and update my queue files. I have a script that configures my system after installation that runs sbopkg with these updated queues. But it does take a lot of time and effort to

Re: [Slackbuilds-users] Automating re-compilation of all packages

2017-08-20 Thread Daniil Bratashov
The main problem with ыгср automatic rebuild is that dependencies for packages are changing between major versions, so you need tools to rebuild dependency tree and build packages in right order. WBR, Daniil Bratashov. On Mon, Aug 21, 2017 at 12:32 AM, Andreas Guldstrand <

Re: [Slackbuilds-users] Automating re-compilation of all packages

2017-08-20 Thread Andreas Guldstrand
I think I'd solve it by something like: pkgs=$(ls /var/log/packages/*_SBo | sed 's/-[^-]*-[^-]*-[^-]*$//' | sed 's/.*\///') removepkg $pkgs sboinstall $pkgs ... of course, I'm a bit biased since I'm the current maintainer of sbotools. ___

Re: [Slackbuilds-users] Automating re-compilation of all packages

2017-08-20 Thread Christoph Willing
On 20/08/17 22:57, Rich Shepard wrote: > I've just upgraded my desktop server/workstation from 14.1 to 14.2. I > have > 180 SBo packages installed and all (except postfix which I upgraded to get > mail working again) need to be recompiled with the new libraries. This is > separate from upgrading

Re: [Slackbuilds-users] Automating re-compilation of all packages

2017-08-20 Thread Rich Shepard
On Sun, 20 Aug 2017, Eric Pratt wrote: I have not done this. But here's a quick and dirty that should do the job for you: Eric, Thanks for the idea and a working shell script. I've learned that not all SBo packages need to be rebuilt. So, as I encounter a tool that won't run I'll rebuild

Re: [Slackbuilds-users] Automating re-compilation of all packages

2017-08-20 Thread Rich Shepard
On Sun, 20 Aug 2017, Didier Spaier wrote: My guess is that your upgrade to 14.2 mentionned in this post: ... didn't completely succeed, Didier, Actually, it did completely succeed. The hardcoded library in postfix was fixed by rebuilding postfix (which hardcoded the updated libgui) and

Re: [Slackbuilds-users] Automating re-compilation of all packages

2017-08-20 Thread Didier Spaier
Hello Rich, Le 20/08/2017 à 17:52, Rich Shepard a écrit : > On Sun, 20 Aug 2017, Dimitris Zlatanidis wrote: > >> It is impossible to do it for all packages. You can try with slpkg but. > > Dimitris, > > I was afraid this is the answer. My guess is that your upgrade to 14.2 mentionned in

Re: [Slackbuilds-users] Automating re-compilation of all packages

2017-08-20 Thread Eric Pratt
On Sun, Aug 20, 2017 at 8:57 AM, Rich Shepard wrote: > I've just upgraded my desktop server/workstation from 14.1 to 14.2. I > have > 180 SBo packages installed and all (except postfix which I upgraded to get > mail working again) need to be recompiled with the new