LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 04-19-2018, 02:58 AM   #16
RadicalDreamer
Senior Member
 
Registered: Jul 2016
Location: USA
Distribution: Slackware64-Current
Posts: 1,816

Rep: Reputation: 981Reputation: 981Reputation: 981Reputation: 981Reputation: 981Reputation: 981Reputation: 981Reputation: 981

Edit: More updates are available than what I initially installed.

Last edited by RadicalDreamer; 04-19-2018 at 04:13 AM.
 
Old 04-19-2018, 03:42 AM   #17
dive
Senior Member
 
Registered: Aug 2003
Location: UK
Distribution: Slackware
Posts: 3,467

Rep: Reputation: Disabled
Quote:
Originally Posted by hitest View Post
One -current box upgraded so far. All is well. On to the next one.
I hope you didn't have any problems with the changelog email?

I just checked my Sent folder and it's 1562 lines long. The subject alone is 190 lines!
 
Old 04-19-2018, 04:15 AM   #18
ruario
Senior Member
 
Registered: Jan 2011
Location: Oslo, Norway
Distribution: Slackware
Posts: 2,557

Rep: Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761
OK, that is a lot of work! I think a visit the official Slackware store to give back a little might be in order!

My suggestion would be a donation. There are actually two ways to do this. Either the PayPal donation button (found in the top left panel of the store, if you don't trust my link) or use the store's donation item (increase the quantity to donate more than $1). The PayPal option is nice because you could choose to make it recurring if you so desire but I know that some people don't like to use PayPal, so it is also great to have another option.

A CD/DVD subscription might be another option (if you don't have this already) but you should note that it starts from 14.2. Also I am not sure how many people still use these for install. Personally I use a USB stick.

If you want t-shirts and stuff, remember that in addition to the official Slackware Store, Patrick has a Cafe Press account for fans of the “Flippy Logo”!

Last edited by ruario; 04-19-2018 at 04:22 AM.
 
5 members found this post helpful.
Old 04-19-2018, 04:23 AM   #19
3rensho
Senior Member
 
Registered: Mar 2008
Location: Deutschland
Distribution: Slackware64-current
Posts: 1,019

Rep: Reputation: 615Reputation: 615Reputation: 615Reputation: 615Reputation: 615Reputation: 615
I'm running -current64 with Eric's Plasma5 packages. Any comments from Eric or others on how this will affect the upgrade??
 
Old 04-19-2018, 04:31 AM   #20
Darth Vader
Senior Member
 
Registered: May 2008
Location: Romania
Distribution: DARKSTAR Linux 2008.1
Posts: 2,727

Rep: Reputation: 1247Reputation: 1247Reputation: 1247Reputation: 1247Reputation: 1247Reputation: 1247Reputation: 1247Reputation: 1247Reputation: 1247
Quote:
Originally Posted by 3rensho View Post
I'm running -current64 with Eric's Plasma5 packages. Any comments from Eric or others on how this will affect the upgrade??
Most likely your Plasma5 will sink like the Titanic, because my old eyes sighted a new Poppler in the crowd.

Be good kid and wait a bit, also Eric intends to release this week a fresh build of Plasma5.

So, for the Plasma5 users, I believe that's better for them to open the gifts no earlier than this weekend.

And sincere congratulations to the Slackware Team! That's a glorious ChangeLog!

Last edited by Darth Vader; 04-19-2018 at 06:51 AM.
 
Old 04-19-2018, 05:03 AM   #21
RadicalDreamer
Senior Member
 
Registered: Jul 2016
Location: USA
Distribution: Slackware64-Current
Posts: 1,816

Rep: Reputation: 981Reputation: 981Reputation: 981Reputation: 981Reputation: 981Reputation: 981Reputation: 981Reputation: 981
Quote:
Originally Posted by Darth Vader View Post
Most likely your Plasma5 will sink like the Titanic, because my old eyes sighted a new Poppler in the croud.

Be good kid and wait a bit, also Eric intends to release this week a fresh build of Plasma5.

So, for the Plasma5 users, I believe that's better for them to open the gifts no earlier than this weekend.

And sincere congratulations to the Slackware Team! That's a glorious ChangeLog!
The Titanic didn't sink but it has a few minor leaks like Gwenview. QMPlay2 didn't sink. Blender is a goner though. Rebuild time.

Last edited by RadicalDreamer; 04-19-2018 at 05:09 AM.
 
2 members found this post helpful.
Old 04-19-2018, 05:04 AM   #22
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,057

Rep: Reputation: Disabled
Quote:
Originally Posted by orbea View Post
I just want to point out that brace expansions are a bash feature.

Code:
#!/bin/sh
rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la
Code:
$ checkbashisms test.sh 
possible bashism in test.sh line 2 (brace expansion):
rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la
Right:
Code:
didier[~]$ PKG=somepackage
didier[~]$ set -B
didier[~]$ echo $PKG/{,usr/}
somepackage/ somepackage/usr/
didier[~]$ set +B
didier[~]$ echo $PKG/{,usr/}
somepackage/{,usr/}
didier[~]$
However, "set -o posix" doesn't change the default behavior.

There are more bashisms in the Slackware scripts and there have been threads about that in the past:
https://www.linuxquestions.org/quest...-s-4175507325/
https://www.linuxquestions.org/quest...on-4175502351/
https://www.linuxquestions.org/quest...ten-in-849052/
https://www.linuxquestions.org/quest...13-0-a-778084/

Those who want their scripts to behave as sh will rewrite the command, no big deal.

Last edited by Didier Spaier; 04-19-2018 at 07:19 AM.
 
Old 04-19-2018, 05:10 AM   #23
chrisretusn
Senior Member
 
Registered: Dec 2005
Location: Philippines
Distribution: Slackware64-current
Posts: 2,969

Rep: Reputation: 1548Reputation: 1548Reputation: 1548Reputation: 1548Reputation: 1548Reputation: 1548Reputation: 1548Reputation: 1548Reputation: 1548Reputation: 1548Reputation: 1548
Quote:
Originally Posted by 3rensho View Post
I'm running -current64 with Eric's Plasma5 packages. Any comments from Eric or others on how this will affect the upgrade??
I also run Ktown. Plan to wait on Eric before updating to the "Tue Apr 19 01:04:06 UTC 2018" update; especially given that boost and poppler have been upgraded. That's gonna bust several of my non-slack packages.Been hoping for a purge of .la files in the LD_LIBRARY_PATH, figured it would happen soon or later, glad it be sooner. I plan to rebuild (or upgrade if applicable) most of my non-slack packages. Probably do the Slackware update first, then ktown, then start rebuilding my non-slack stuff. Let the fun begin, already preparing my SlackBuilds for this.

Last edited by chrisretusn; 04-19-2018 at 06:30 AM. Reason: changed all to most.
 
1 members found this post helpful.
Old 04-19-2018, 05:16 AM   #24
teoberi
Member
 
Registered: Jan 2018
Location: Romania
Distribution: Slackware64-current (servers)/Windows 11/Ubuntu (workstations)
Posts: 606

Rep: Reputation: 347Reputation: 347Reputation: 347Reputation: 347
From today ChangeLogs:
Quote:
IMPORTANT NOTE: If you have any third party or other packages installed on
your system that don't come with Slackware, and those packages have installed
any .la files, it is very likely that they refer to some .la files which we
have just removed, and that trying to compile against these packages will no
longer work. Luckily, the solution is simple: remove them. This command will
remove any stale .la files from the LD_LIBRARY_PATH:
rm /{,usr/}lib{,64}/*.la
The command:
Code:
rm /{,usr/}lib{,64}/*.la
is required after updating all packages?
I ask because I have 91 files with the extension ".la" in /usr/lib64
 
Old 04-19-2018, 07:13 AM   #25
slackb0t
Member
 
Registered: Apr 2005
Location: Canada
Distribution: Slackware64-current on Thinkpad Carbon X1
Posts: 264

Rep: Reputation: 63
Quote:
Originally Posted by cwizardone View Post
I think I'll sit this one out (until the dust settles).
I was thinking the same thing.. might just stay with the current -current until 15 comes out. However, I have done every other update with current since 14.2 and things have always worked. Blah.. ok I talked myself into it... I will try it :P
 
1 members found this post helpful.
Old 04-19-2018, 08:05 AM   #26
3rensho
Senior Member
 
Registered: Mar 2008
Location: Deutschland
Distribution: Slackware64-current
Posts: 1,019

Rep: Reputation: 615Reputation: 615Reputation: 615Reputation: 615Reputation: 615Reputation: 615
I'm going to wait and see what Eric does then give it a go. The new KDE Applications was released today so Eric will have a new release soon I'm sure.
 
Old 04-19-2018, 08:26 AM   #27
Paulo2
Member
 
Registered: Aug 2012
Distribution: Slackware64 15.0 (started with 13.37). Testing -current in a spare partition.
Posts: 928

Rep: Reputation: 515Reputation: 515Reputation: 515Reputation: 515Reputation: 515Reputation: 515
Thanks ponce and volkerdi, I will follow ponce's advice on desktop and Pat's advice on notebook.
 
Old 04-19-2018, 08:30 AM   #28
marrowsuck
Member
 
Registered: Sep 2006
Posts: 202

Rep: Reputation: 89
Just a heads up.

I dived right in only to find out that I couldn't compile anything.
Turns out I forgot that I have to upgrade alienbobs multilibpackages as well. Luckily they are allready available -- thanks for that!
 
Old 04-19-2018, 08:45 AM   #29
Darth Vader
Senior Member
 
Registered: May 2008
Location: Romania
Distribution: DARKSTAR Linux 2008.1
Posts: 2,727

Rep: Reputation: 1247Reputation: 1247Reputation: 1247Reputation: 1247Reputation: 1247Reputation: 1247Reputation: 1247Reputation: 1247Reputation: 1247
Did you guys noticed the source/make_world.sh ?

I bet that at least @nobodino enjoys it, like a cat playing with a fat mouse...

Last edited by Darth Vader; 04-19-2018 at 08:47 AM.
 
3 members found this post helpful.
Old 04-19-2018, 08:53 AM   #30
HQuest
Member
 
Registered: Jan 2018
Location: 2001:470:c2d0::/56
Distribution: Anyone that I can interface with
Posts: 87

Rep: Reputation: Disabled
I understand the removal of .la files from /{,usr/}lib{,64}/ folders. Great move - better sooner than later. What about the .la files from library files stored under other many folders inside /usr/lib64?
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Sweeet...........-current changelog. SqdnGuns Slackware 7 05-06-2012 03:42 PM
RSS feed of current-ChangeLog? grissiom Slackware 4 07-26-2009 10:18 PM
Intel Current Changelog hitest Slackware 3 05-06-2007 08:56 AM
Q&A in current changelog davidsrsb Slackware 1 11-10-2006 10:53 AM
Mirror of current changelog? Coldfirex Slackware 3 02-04-2003 07:30 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 07:59 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration