LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
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 01-16-2018, 05:58 PM   #241
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,057

Rep: Reputation: Disabled

gvim.desktop in the source dir for /xap/vim-gvim shows its age:
Code:
didier[/usr/share/applications]$ desktop-file-validate gvim.desktop
gvim.desktop: warning: key "Encoding" in group "Desktop Entry" is deprecated
gvim.desktop: error: (will be fatal in the future): value "gvim.png" for key "Icon" in group "Desktop Entry" is an icon name with an extension, but there should be no extension as described in the Icon Theme Specification if the value is not an absolute path
gvim.desktop: hint: value item "TextEditor" in key "Categories" in group "Desktop Entry" can be extended with another category among the following categories: Utility
gvim.desktop: hint: value "TextEditor;" for key "Categories" in group "Desktop Entry" does not contain a registered main category; application might only show up in a "catch-all" section of the application menu
This can be fixed by the patch below.
Code:
--- gvim.desktop    2018-01-17 00:49:23.604407320 +0100
+++ gvim.desktop.new    2018-01-17 00:50:22.486821498 +0100
@@ -1,5 +1,4 @@
 [Desktop Entry]
-Encoding=UTF-8
 Name=Vi IMproved
 Name[af]=Vi Verbeterde
 Name[ar]=في.أي المحسن
@@ -112,9 +111,9 @@
 GenericName[zu]=Umlungisi wombhalo
 MimeType=text/english;text/plain;text/x-makefile;text/x-c++hdr;text/x-c++src;text/x-chdr;text/x-csrc;text/x-java;text/x-moc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;text/x-c;text/x-c++;
 Exec=gvim -f %f
-Icon=gvim.png
+Icon=gvim
 Type=Application
 Terminal=false
 X-KDE-StartupNotify=true
 X-KDE-AuthorizeAction=shell_access
-Categories=TextEditor;
+Categories=Utility;TextEditor;
 
Old 01-16-2018, 07:59 PM   #242
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
bind-9.11.2-p1
https://ftp.isc.org/isc/bind9/9.11.2...11.2-P1.tar.gz
 
2 members found this post helpful.
Old 01-17-2018, 01:37 AM   #243
audriusk
Member
 
Registered: Mar 2011
Location: Klaipėda, Lithuania
Distribution: Slackware
Posts: 360

Rep: Reputation: 199Reputation: 199
Quote:
Originally Posted by ArTourter View Post
following the update to mpfr and the bump in .so-version, the new version of libmpfr needs to be added to aaa_elflibs as gawk is used by the package management scripts.
Haven't investigated this thoroughly, but I believe it was due to slackpkg+, because the errors were showing up after each package upgrade and I don't think that plain slackpkg calls awk during upgrade part of the whole process. These two lines of /usr/libexec/slackpkg/functions.d/slackpkgplus.sh seem to be the culprit.
 
Old 01-17-2018, 06:20 AM   #244
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,212

Rep: Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998
libsigsegv-2.12:

http://savannah.gnu.org/projects/libsigsegv/
https://ftp.gnu.org/gnu/libsigsegv/l...gv-2.12.tar.gz
 
Old 01-18-2018, 01:54 AM   #246
orbea
Senior Member
 
Registered: Feb 2015
Distribution: Slackware64-current
Posts: 1,950

Rep: Reputation: Disabled
Is there any good reasons to build gegl with ffmpeg? I am testing a git version of ffmpeg now where the API version was changed so when I went to rebuild gegl which now links against ffmpeg I found it of course doesn't build... I suppose gegl was included in Slackware without ffmpeg support for a while without issue so unless there are good reasons to build with ffmpeg maybe '--without-libavformat' should be used? Its not a big deal, but its just another annoyance for those that build their own ffmpeg versions.
 
1 members found this post helpful.
Old 01-18-2018, 08:19 AM   #247
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 orbea View Post
Is there any good reasons to build gegl with ffmpeg?
gegl with ffmpeg allows loading or saving of video frames.

http://gegl.org/operations/gegl-ff-load.html
http://gegl.org/operations/gegl-ff-save.html

Now, how likely those are used is another question entirely...
 
2 members found this post helpful.
Old 01-18-2018, 12:23 PM   #248
orbea
Senior Member
 
Registered: Feb 2015
Distribution: Slackware64-current
Posts: 1,950

Rep: Reputation: Disabled
Thanks for the info, not something I personally have a current use for, but that doesn't mean its not useful for other people?
 
Old 01-18-2018, 12:40 PM   #249
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,212

Rep: Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998
cmake-3.10.2:

https://blog.kitware.com/cmake-3-10-...-for-download/
https://cmake.org/files/v3.10/cmake-3.10.2.tar.gz

git-2.16.0:

https://git.kernel.org/pub/scm/git/git.git/
https://www.kernel.org/pub/software/...-2.16.0.tar.xz

Last edited by gmgf; 01-18-2018 at 12:45 PM.
 
1 members found this post helpful.
Old 01-18-2018, 01:51 PM   #250
solarfields
Senior Member
 
Registered: Feb 2006
Location: slackalaxy.com
Distribution: Slackware, CRUX
Posts: 1,449

Rep: Reputation: 997Reputation: 997Reputation: 997Reputation: 997Reputation: 997Reputation: 997Reputation: 997Reputation: 997
some icons are missing in the Xfce menus and the Settings Manager (Keyboard, for example). It seems Tango and Adwaita icon themes still expect gnome-icon-theme.
 
1 members found this post helpful.
Old 01-19-2018, 06:14 AM   #251
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,212

Rep: Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998
libunwind-1.2.1-x86_64-1.txz: Added.

just for info, it seem some packages can be recompiled with libunwind support:

gstreamer, strace, mesa, xorg-server.
 
Old 01-19-2018, 06:16 AM   #252
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,212

Rep: Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998
mesa-17.3.3:

https://mesa3d.org/relnotes/17.3.3.html
ftp://ftp.freedesktop.org/pub/mesa/mesa-17.3.3.tar.xz
 
1 members found this post helpful.
Old 01-19-2018, 07:53 AM   #253
ivandi
Member
 
Registered: Jul 2009
Location: Québec, Canada
Distribution: CRUX, Debian
Posts: 528

Rep: Reputation: 866Reputation: 866Reputation: 866Reputation: 866Reputation: 866Reputation: 866Reputation: 866
Please consider the diff below for the next kernel package upgrade.
The important option is:
Code:
CONFIG_CIFS_UPCALL=y
It allows cifs-utils to mount shares with sec=krb5. The others are good to have.

Code:
--- /boot/config-generic-4.14.14	2018-01-17 13:44:50.000000000 -0500
+++ .config	2018-01-18 21:23:57.289000000 -0500
@@ -7293,7 +7293,13 @@
 # CONFIG_NFS_V3_ACL is not set
 CONFIG_NFS_V4=y
 CONFIG_NFS_SWAP=y
-# CONFIG_NFS_V4_1 is not set
+CONFIG_NFS_V4_1=y
+# CONFIG_NFS_V4_2 is not set
+CONFIG_PNFS_FILE_LAYOUT=y
+CONFIG_PNFS_BLOCK=y
+CONFIG_PNFS_FLEXFILE_LAYOUT=m
+CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org"
+# CONFIG_NFS_V4_1_MIGRATION is not set
 # CONFIG_NFS_USE_LEGACY_DNS is not set
 CONFIG_NFS_USE_KERNEL_DNS=y
 CONFIG_NFSD=m
@@ -7312,6 +7318,7 @@
 CONFIG_NFS_COMMON=y
 CONFIG_SUNRPC=y
 CONFIG_SUNRPC_GSS=y
+CONFIG_SUNRPC_BACKCHANNEL=y
 CONFIG_SUNRPC_SWAP=y
 CONFIG_RPCSEC_GSS_KRB5=m
 # CONFIG_SUNRPC_DEBUG is not set
@@ -7322,11 +7329,11 @@
 CONFIG_CIFS=m
 # CONFIG_CIFS_STATS is not set
 CONFIG_CIFS_WEAK_PW_HASH=y
-# CONFIG_CIFS_UPCALL is not set
-# CONFIG_CIFS_XATTR is not set
-CONFIG_CIFS_DEBUG=y
-# CONFIG_CIFS_DEBUG2 is not set
-# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set
+CONFIG_CIFS_UPCALL=y
+CONFIG_CIFS_XATTR=y
+CONFIG_CIFS_POSIX=y
+CONFIG_CIFS_ACL=y
+# CONFIG_CIFS_DEBUG is not set
 CONFIG_CIFS_DFS_UPCALL=y
 # CONFIG_CIFS_SMB311 is not set
 CONFIG_CIFS_FSCACHE=y

Cheers
 
3 members found this post helpful.
Old 01-19-2018, 08:01 AM   #254
r1w1s1
Member
 
Registered: Mar 2004
Location: São Paulo - Brazil
Distribution: Slackware
Posts: 61
Blog Entries: 1

Rep: Reputation: 37
I'm back to slackware as my primary desktop.



I really miss Docker package
 
Old 01-19-2018, 08:13 AM   #255
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 ricardson View Post
I really miss Docker package
https://slackbuilds.org/repository/14.2/system/docker/
 
  


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
[SOLVED] Requests for -current (20151216) rworkman Slackware 3441 12-28-2017 03:50 PM

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

All times are GMT -5. The time now is 06:18 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