LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
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-30-2017, 04:25 PM   #2251
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,058

Rep: Reputation: Disabled
Mozilla-Thunderbird 52.1.0


I just repackaged it (with 37 locales bundled, as usual). All I can say is it starts and seems to work[1]. Caveat: tested during less than 5 minutes
Release notes
System requirements (unchanged since 52.0)

[1]On Slint64-14.2 that has the same base packages as Slackware64-14.2

Last edited by Didier Spaier; 04-30-2017 at 04:43 PM.
 
1 members found this post helpful.
Old 04-30-2017, 06:12 PM   #2252
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,058

Rep: Reputation: Disabled
lxc 2.0.7 with a new Slackware template and cgmanager is obsolete

I have modified the template lxc-slackware.in at the root of the source lxc directory of Slackware64 14.2 in such a way that it allows to build and run unprivileged as well as privileged containers, see this post.

Please note that both /etc/rc.d/{rc.cgconfig,rc.cgred} have to be executable, and r.cgconfig started first for unprivileged containers.

---

Also, cgmanager is not needed for that and I think that it could be removed or moved to /pasture. All that is needed is to rebuild ConsoleKit2 with cgmanager not installed. As far as I know cgmanager is not a dependency of another package shipped in Slackware (see the discussion in this thread).

PS: template slightly modified on 01/05/2016, 09:58 UTC+2


PPS the template is now stored in http://slint.fr/forSlackware/lxc/

EDIT 03 May 2017: I forgot to upload the patch to lxc.SlackBuild proposed by Johannes Schöpfer (franzen @ LQ), see this post.
It is now in http://slint.fr/forSlackware/lxc/ too.
Attached Files
File Type: txt lxc-slackware.in.txt (17.3 KB, 8 views)

Last edited by Didier Spaier; 05-03-2017 at 08:02 AM. Reason: EDIT added
 
1 members found this post helpful.
Old 05-01-2017, 05:00 AM   #2253
Nille_kungen
Member
 
Registered: Jul 2005
Distribution: Slackware64-current
Posts: 587

Rep: Reputation: 201Reputation: 201Reputation: 201
Quote:
Originally Posted by GazL View Post
If you want to use the ncurses version of vim on a terminal within X and still use the X selections you can add set mouse="" to your vimrc and then you can cut/paste into the terminal in the usual manner. You just have to remember to enter input mode before you paste. I got into the habit of doing it that way with elvis (which didn't have direct access to the X selections) and I still tend to do it with vim. It's not quite the same as using the "* and "+ to access the buffers, but if you're running in X anyway you might as well use gvim, which has them enabled.

There's value in shipping a version of vim that isn't dependent on X11 libraries for those that don't install X.
I never use gvim it's not an option since i work in konsole.
Setting 'set mouse=""' won't do anything since the support isn't compiled in.
Try "vim --version | grep clipboard" and you will see that the support isn't compiled in so you need to recompile it before 'set mouse=""' will work.
 
Old 05-01-2017, 06:00 AM   #2254
GazL
LQ Veteran
 
Registered: May 2008
Posts: 6,897

Rep: Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019
Without set mouse="" in .vim/vimrc pressing mouse button 2 will just paste whatever is already in vim's cut buffer.

With set mouse="" in .vim/vimrc pressing mouse button 2 doesn't do that. Instead the "X11 PRIMARY selection" is pasted. (note: not the same as the clipboard)

Vim doesn't need to access the X11 selection itself because the selection is actually being pasted by xterm. My assumption is that when you use any other mouse value, vim uses some sort of escape sequence to configure xterm not to paste when button 2 is pressed, but I don't know for certain, that's just a guess. From the xterm man-page:
Quote:
Xterm allows character-based applications to receive mouse events (currently button-press and release events, and button-motion events) as keyboard control sequences. See Xterm Control Sequences for details.
Anyway, if you're not seeing a difference then maybe konsole doesn't support the feature, but it certainly makes a difference on xterm.

edit:

see http://vimdoc.sourceforge.net/htmldo...tml#'mouse'
so... my reading of that is that setting mouse="" disables mouse support in vim which allows xterm to do it's normal mouse handling. It seems you can also allow xterm to do its thing by holding the shift key down while doing your mouse operations if you haven't disabled mouse support, which I didn't know, so I've just learnt something too.

Last edited by GazL; 05-01-2017 at 06:37 AM.
 
Old 05-01-2017, 09:46 AM   #2255
montagdude
Senior Member
 
Registered: Apr 2016
Distribution: Slackware
Posts: 2,011

Rep: Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619
Quote:
Originally Posted by GazL View Post
see http://vimdoc.sourceforge.net/htmldo...tml#'mouse'
so... my reading of that is that setting mouse="" disables mouse support in vim which allows xterm to do it's normal mouse handling. It seems you can also allow xterm to do its thing by holding the shift key down while doing your mouse operations if you haven't disabled mouse support, which I didn't know, so I've just learnt something too.
Yes, this is a normal ncurses thing. If mouse support is enabled, you have to hold shift in order to select and copy text. It's the same way with mc and others, I'm sure.
 
1 members found this post helpful.
Old 05-01-2017, 11:10 AM   #2256
Nille_kungen
Member
 
Registered: Jul 2005
Distribution: Slackware64-current
Posts: 587

Rep: Reputation: 201Reputation: 201Reputation: 201
Quote:
Originally Posted by GazL View Post
Without set mouse="" in .vim/vimrc pressing mouse button 2 will just paste whatever is already in vim's cut buffer.

With set mouse="" in .vim/vimrc pressing mouse button 2 doesn't do that. Instead the "X11 PRIMARY selection" is pasted. (note: not the same as the clipboard)

Vim doesn't need to access the X11 selection itself because the selection is actually being pasted by xterm. My assumption is that when you use any other mouse value, vim uses some sort of escape sequence to configure xterm not to paste when button 2 is pressed, but I don't know for certain, that's just a guess. From the xterm man-page:

Anyway, if you're not seeing a difference then maybe konsole doesn't support the feature, but it certainly makes a difference on xterm.

edit:

see http://vimdoc.sourceforge.net/htmldo...tml#'mouse'
so... my reading of that is that setting mouse="" disables mouse support in vim which allows xterm to do it's normal mouse handling. It seems you can also allow xterm to do its thing by holding the shift key down while doing your mouse operations if you haven't disabled mouse support, which I didn't know, so I've just learnt something too.
The thing is that without --with-x there is no support for clipboard or xterm_clipboard.
If you check "vim --version" you will see that there's -clipboard and -xterm_clipboard that means that the support isn't compiled in.
Without this i can copy and paste between different vim sessions but i can't copy and paste from other programs like firefox.
It works with vi but not vim.

I had some time now so i looked a bit deeper into this and it turns out that configure says that --enable-gui=auto is default but it turns out that's wrong (bug?), so adding --enable-gui=auto to vim.SlackBuild fixes it.
The problem was that it doesn't enable gui.
 
Old 05-01-2017, 01:16 PM   #2257
dugan
LQ Guru
 
Registered: Nov 2003
Location: Canada
Distribution: distro hopper
Posts: 11,226

Rep: Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320
I'm not asking for this to be done in the Slackware package, but what I usually do is rebuild vim with "--with-x", then set the following in .vimrc:

Code:
set ttymouse=xterm2
 
1 members found this post helpful.
Old 05-01-2017, 05:05 PM   #2258
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,058

Rep: Reputation: Disabled
Better handling of NVMe devices

I have modified the Slackware installer (scripts /usr/sbin/probe and /usr/lib/setup/SeTEFI) and /sbin/eliloconfig so that Slackware be able to:
  • Install Slackware on an NVMe device's partition
  • Install a bootloader in an ESP on a NVMe device
  • Install a boot entry for Slackware in the firmware's boot menu in case where the boot image is in an ESP on a NVMe device.
I have had few testing reports but all positive, cf.
http://www.linuxquestions.org/questi...ng-4175597516/

So I am proposing this stuff here:
http://slint.fr/forSlackware/NVMe/

A good support of these devices is important as their usage is increasing.
It is already included in Slint version 14.2.
 
4 members found this post helpful.
Old 05-01-2017, 05:27 PM   #2259
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,058

Rep: Reputation: Disabled
Added and updated internationalized man pages for pkgtools and slackpkg

I suggest to add/update the internationalized man pages included in the slackpkg and pkgtools packages, still in http://slint.fr/forSlackware/man_l10n/

Since the initial shipment, Swedish has been udated, Serbian and Japanese added, Cf.
http://slint.fr/forSlackware/man_l10n/ChangeLog
 
1 members found this post helpful.
Old 05-02-2017, 07:28 AM   #2260
GazL
LQ Veteran
 
Registered: May 2008
Posts: 6,897

Rep: Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019
Nice to see continued refinement of fontconfig in current. While we're on the subject, perhaps it's time to get rid of 'speedo'? I'm not sure there's even a way to use these any more.
 
1 members found this post helpful.
Old 05-02-2017, 12:57 PM   #2261
qunying
Member
 
Registered: Jun 2002
Distribution: Slackware
Posts: 257

Rep: Reputation: 147Reputation: 147
GCC 7.1 is released.
https://gcc.gnu.org/gcc-7/
 
2 members found this post helpful.
Old 05-02-2017, 01:59 PM   #2262
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 qunying View Post
GCC 7.1 is released.
https://gcc.gnu.org/gcc-7/
I confess, though I usually view compiler releases with suspicion, the new "-fsanitize-address-use-after-scope" feature looks genuinely valuable. Compiling packages with this flag enabled could expose a lot of heretofore unknown bugs.
 
2 members found this post helpful.
Old 05-02-2017, 07:19 PM   #2263
Kirill Smirnov
LQ Newbie
 
Registered: Jan 2016
Posts: 6

Rep: Reputation: Disabled
Current version of flex breaks a lot of packages:
https://github.com/westes/flex/issues/162

Please downgrade to 2.6.2 or upgrade to commit 7e4d538 (Jan 23, 2017). The last might be risky, though.
 
2 members found this post helpful.
Old 05-02-2017, 08:13 PM   #2264
willysr
Senior Member
 
Registered: Jul 2004
Location: Jogja, Indonesia
Distribution: Slackware-Current
Posts: 4,661

Rep: Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784
Which package? Slackware packages or packages built form third party repositories such as SBo?
 
Old 05-04-2017, 10:38 AM   #2265
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,213

Rep: Reputation: 999Reputation: 999Reputation: 999Reputation: 999Reputation: 999Reputation: 999Reputation: 999Reputation: 999
cups-filters-1.13.5:

http://bzr.linuxfoundation.org/logge...ate/head:/NEWS

http://openprinting.org/download/cup...-1.13.5.tar.xz

hdparm-9.52:

https://sourceforge.net/projects/hdparm/
 
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 01:27 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