LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
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


Closed Thread
  Search this Thread
Old 04-10-2017, 05:46 PM   #2161
dugan
LQ Guru
 
Registered: Nov 2003
Location: Canada
Distribution: distro hopper
Posts: 11,223

Rep: Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320

Quote:
Originally Posted by USUARIONUEVO View Post
bc is updated today... Thanks!
Hopefully that's what was holding up the 4.9 kernel, and we'll see it soon...
 
1 members found this post helpful.
Old 04-10-2017, 06:15 PM   #2162
dugan
LQ Guru
 
Registered: Nov 2003
Location: Canada
Distribution: distro hopper
Posts: 11,223

Rep: Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320
Quote:
Originally Posted by bassmadrigal View Post
(I have no idea how likely it is to completely switch to python3 way down the line).
Oh, I can imagine Python 2 being kept around as a legacy technology for a while. Like SDL1, GTK1, GTK2 and QT4.

Mercurial and Calibre are two important projects that won't move to Python 3 for the foreseeable future.

Last edited by dugan; 04-10-2017 at 06:16 PM.
 
1 members found this post helpful.
Old 04-11-2017, 01:21 AM   #2163
ttk
Senior Member
 
Registered: May 2012
Location: Sebastopol, CA
Distribution: Slackware64
Posts: 1,038
Blog Entries: 27

Rep: Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484
Quote:
Originally Posted by dugan View Post
Oh, I can imagine Python 2 being kept around as a legacy technology for a while. Like SDL1, GTK1, GTK2 and QT4.
.. and jdk6! There's still a lot of mission-critical corporate infrastructure out there which breaks under jdk7, so companies keep jvm6 going on their servers.

The python folks are really pushing to "deprecate" py2, but I expect it will remain in use for a decade or more.
 
1 members found this post helpful.
Old 04-11-2017, 01:36 AM   #2164
dugan
LQ Guru
 
Registered: Nov 2003
Location: Canada
Distribution: distro hopper
Posts: 11,223

Rep: Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320
Quote:
Originally Posted by ttk View Post
The python folks are really pushing to "deprecate" py2.
The timeframe is for 4 more years of support.

A long time in Slackware-releases time.

Not a long time in enterprise-time.
 
Old 04-11-2017, 07:23 AM   #2165
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656
Quote:
Originally Posted by dugan View Post
A long time in Slackware-releases time.
If Pat keeps a similar gap between 14.1 and 14.2 for future releases (hopefully not), then it may only be two releases away.
 
Old 04-11-2017, 07:56 AM   #2166
saxa
Senior Member
 
Registered: Aug 2004
Location: Nova Gorica, Salvador
Distribution: Slackware
Posts: 1,213

Rep: Reputation: 297Reputation: 297Reputation: 297
Quote:
Originally Posted by bassmadrigal View Post
Or maybe start transitioning to a /usr/bin/python2 and /usr/bin/python3 programs with a symlink for /usr/bin/python -> /usr/bin/python2. Then you could run all python scripts using python2 to help the possible full transition to python3 (I have no idea how likely it is to completely switch to python3 way down the line).
Probably as an initial include of python3 would mean IMHO firstly how much slackware stuff can be run on py3. Then decide what is
better to do if use the python symlink or just leave py2 as default and py3 as an option. AFAIK most py3 stuff is programmed with
/usr/bin/python3 in the first line.
 
Old 04-11-2017, 09:27 AM   #2167
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656
Quote:
Originally Posted by saxa View Post
Probably as an initial include of python3 would mean IMHO firstly how much slackware stuff can be run on py3. Then decide what is
better to do if use the python symlink or just leave py2 as default and py3 as an option. AFAIK most py3 stuff is programmed with
/usr/bin/python3 in the first line.
I'm pretty sure I read that the shebang is based on how the installer was called. So, if you use /usr/bin/python2 setup.py install, it would have #!/usr/bin/python2 as the shebang at the top of the script.
 
Old 04-11-2017, 11:21 AM   #2168
saxa
Senior Member
 
Registered: Aug 2004
Location: Nova Gorica, Salvador
Distribution: Slackware
Posts: 1,213

Rep: Reputation: 297Reputation: 297Reputation: 297
Ups, i never noticed that bassmadrigal .
 
Old 04-11-2017, 12:57 PM   #2169
dugan
LQ Guru
 
Registered: Nov 2003
Location: Canada
Distribution: distro hopper
Posts: 11,223

Rep: Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320
Quote:
Originally Posted by bassmadrigal View Post
I'm pretty sure I read that the shebang is based on how the installer was called. So, if you use /usr/bin/python2 setup.py install, it would have #!/usr/bin/python2 as the shebang at the top of the script.
Yes that is the case.
 
1 members found this post helpful.
Old 04-11-2017, 05:23 PM   #2170
qunying
Member
 
Registered: Jun 2002
Distribution: Slackware
Posts: 257

Rep: Reputation: 147Reputation: 147
motif 2.3.7, fixed segmentation faults associated with option menus or other popup windows
 
Old 04-12-2017, 03:14 AM   #2171
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,095

Rep: Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273
Quote:
Originally Posted by bassmadrigal View Post
If Pat keeps a similar gap between 14.1 and 14.2 for future releases (hopefully not), then it may only be two releases away.
Or, about 5 years?


(He said, tongue in cheek )
https://en.wikipedia.org/wiki/Tongue-in-cheek

Last edited by cwizardone; 04-12-2017 at 03:17 AM.
 
Old 04-13-2017, 12:17 AM   #2172
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,057

Rep: Reputation: Disabled
nano 2.8.1 "Ellert" As they say "Don't sit on your hands." (I'll remember this one).

Last edited by Didier Spaier; 04-13-2017 at 12:23 AM.
 
1 members found this post helpful.
Old 04-13-2017, 06:46 PM   #2173
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
gnutls-3.5.11
release info --> https://lists.gnupg.org/pipermail/gn...il/008393.html
sources --> ftp://ftp.gnutls.org/gcrypt/gnutls/v...-3.5.11.tar.xz

ethtool-4.10
https://www.kernel.org/pub/software/...ol-4.10.tar.xz

git-2.12.2
https://github.com/git/git/archive/v2.12.2.tar.gz

sudo-1.8.19p2
https://www.sudo.ws/dist/sudo-1.8.19p2.tar.gz

Last edited by USUARIONUEVO; 04-13-2017 at 07:02 PM.
 
1 members found this post helpful.
Old 04-13-2017, 11:20 PM   #2174
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
ffmpeg-3.3
https://ffmpeg.org/releases/ffmpeg-3.3.tar.xz

*** Little extract from release notes: "that add important bug fixes but no new features"
 
1 members found this post helpful.
Old 04-14-2017, 01:56 AM   #2175
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,211

Rep: Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998
libgphoto2 2.5.13:

http://gphoto.org/news/

https://sourceforge.net/projects/gph...gphoto/2.5.13/
 
1 members found this post helpful.
  


Closed Thread



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
[SOLVED] how to show the current time at the top in the current shell Always ? rohitchauhan Linux - General 5 04-09-2014 03:05 PM
Slackware ARM (current) epic mistake: the current Android kernels are kicked out! Darth Vader Slackware 16 08-25-2013 04:36 PM
[SOLVED] setup fails on most current Slackware-current March 26, 2012 AlleyTrotter Slackware 15 04-09-2012 06:05 AM
Observation of Feb -current vs March -current Hangaber Slackware 14 03-12-2010 08:26 AM
cvs diff the most current and second last current version powah Linux - Software 1 03-30-2006 01:02 PM

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

All times are GMT -5. The time now is 12:59 AM.

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