LinuxQuestions.org
Help answer threads with 0 replies.
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 12-05-2018, 03:48 PM   #2566
alex14641
Member
 
Registered: Feb 2016
Distribution: Slackware64_14.2, Slackware 15.0, Slackware64_current
Posts: 321

Rep: Reputation: Disabled

wpa supplicant 2.7
Source: https://w1.fi/releases/wpa_supplicant-2.7.tar.gz
Change log: https://w1.fi/cgit/hostap/plain/hostapd/ChangeLog
 
4 members found this post helpful.
Old 12-05-2018, 09:26 PM   #2567
Lockywolf
Member
 
Registered: Jul 2007
Posts: 683

Rep: Reputation: 253Reputation: 253Reputation: 253
Sysvinit

Source: http://download.savannah.nongnu.org/...it-2.93.tar.xz

From the `doc/ChangeLog'

Quote:
sysvinit (2.93) released; urgency=low

[ Jesse Smith ]

* Fixed typo in pidof which would prevent the -o (omit PID)
flag from working.
Fixes Debian bug ##913394.
The release 0.92 fixes 17 other bug too.
 
1 members found this post helpful.
Old 12-05-2018, 11:24 PM   #2568
rworkman
Slackware Contributor
 
Registered: Oct 2004
Location: Tuscaloosa, Alabama (USA)
Distribution: Slackware
Posts: 2,559

Original Poster
Rep: Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351
Quote:
Originally Posted by allend View Post
A minor nit.
Code:
--- /etc/logrotate.d/ntp.orig	2017-10-06 05:26:41.000000000 +1100
+++ /etc/logrotate.d/ntp	2018-12-05 23:30:53.807987265 +1100
@@ -1,6 +1,8 @@
 /var/log/ntp {
     notifempty
     missingok
+    rotate 3
     postrotate
     [ -x /etc/rc.d/rc.ntpd ] && /etc/rc.d/rc.ntpd restart
     endscript
+}
This prevents the buildup of /var/log/ntp.* files that causes /etc/cron.daily/logrotate to emit an error
I don't see the missed closing curly brace in our installed file here; is it me or you that's crazy? (okay, maybe both, right?) :-)
 
Old 12-05-2018, 11:25 PM   #2569
rworkman
Slackware Contributor
 
Registered: Oct 2004
Location: Tuscaloosa, Alabama (USA)
Distribution: Slackware
Posts: 2,559

Original Poster
Rep: Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351
Quote:
Originally Posted by Lockywolf View Post
Sysvinit

Source: http://download.savannah.nongnu.org/...it-2.93.tar.xz

From the `doc/ChangeLog'



The release 0.92 fixes 17 other bug too.
I've got this installed here, but for our purposes, nothing really changed. I like to run this sort of thing for a while, and on multiple machines, before I push it to Pat for inclusion...
 
1 members found this post helpful.
Old 12-06-2018, 04:01 AM   #2570
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,212

Rep: Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998
btrfs-progs-4.19.1:

https://git.kernel.org/pub/scm/linux...progs.git/log/
https://mirrors.edge.kernel.org/pub/...v4.19.1.tar.xz

cups-filters-1.21.5:

https://github.com/OpenPrinting/cups-filters/releases
http://openprinting.org/download/cup...-1.21.5.tar.xz
 
Old 12-06-2018, 06:13 AM   #2571
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,371

Rep: Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750
re: /etc/logrotate.d/ntp
Quote:
I don't see the missed closing curly brace in our installed file here; is it me or you that's crazy? (okay, maybe both, right?) :-)
Err - neither do I - and definitely me.

Second attempt
Code:
--- ntp.SlackBuild.orig	2018-12-06 23:01:30.091039232 +1100
+++ ntp.SlackBuild	2018-12-06 23:05:40.437045026 +1100
@@ -124,7 +124,7 @@
 #touch $PKG/etc/ntp/step-tickers
 
 mkdir -p $PKG/etc/logrotate.d
-cat $CWD/ntp.logrotate > $PKG/etc/logrotate.d/ntp.new
+sed "s/\(missingok\)/\1\n    rotate 3/" $CWD/ntp.logrotate > $PKG/etc/logrotate.d/ntp.new
 
 mkdir -p $PKG/etc/rc.d
 cat $CWD/rc.ntpd > $PKG/etc/rc.d/rc.ntpd.new

Last edited by allend; 12-06-2018 at 06:15 AM.
 
Old 12-06-2018, 12:53 PM   #2572
teoberi
Member
 
Registered: Jan 2018
Location: Romania
Distribution: Slackware64-current (servers)/Windows 11/Ubuntu (workstations)
Posts: 607

Rep: Reputation: 349Reputation: 349Reputation: 349Reputation: 349
PHP 7.3.0
http://php.net/downloads.php#v7.3.0
http://php.net/ChangeLog-7.php#7.3.0
or
PHP 7.2.13
http://php.net/downloads.php#v7.2.13
http://php.net/ChangeLog-7.php#7.2.13
 
Old 12-07-2018, 02:55 AM   #2573
Thom1b
Member
 
Registered: Mar 2010
Location: France
Distribution: Slackware
Posts: 484

Rep: Reputation: 337Reputation: 337Reputation: 337Reputation: 337
Quote:
Originally Posted by teoberi View Post
I tried php-7.3.0 and it works fine with :

dokuwiki
dolibarr
dotclear
drupal-7
drupal-8
matomo
nextcloud-15
phpbb
piwigo
pluxml
tiny-tiny-rss
wordpress
 
3 members found this post helpful.
Old 12-07-2018, 03:10 AM   #2574
teoberi
Member
 
Registered: Jan 2018
Location: Romania
Distribution: Slackware64-current (servers)/Windows 11/Ubuntu (workstations)
Posts: 607

Rep: Reputation: 349Reputation: 349Reputation: 349Reputation: 349
And Roundcube.
 
2 members found this post helpful.
Old 12-07-2018, 10:48 AM   #2575
TurboBlaze
Member
 
Registered: Jan 2018
Location: Russian Federation, Lipetsk region, Dankov
Distribution: Porteus
Posts: 195

Rep: Reputation: Disabled
Mesa 18.3

https://mesa.freedesktop.org/archive/mesa-18.3.0.tar.gz
or
https://mesa.freedesktop.org/archive/mesa-18.3.0.tar.xz

More info here: https://lists.freedesktop.org/archiv...er/000482.html
 
1 members found this post helpful.
Old 12-07-2018, 05:50 PM   #2576
alex14641
Member
 
Registered: Feb 2016
Distribution: Slackware64_14.2, Slackware 15.0, Slackware64_current
Posts: 321

Rep: Reputation: Disabled
Cups 2.2.10
Source: https://github.com/apple/cups/releas...-source.tar.gz
Change log: https://github.com/apple/cups/releases/tag/v2.2.10
 
1 members found this post helpful.
Old 12-08-2018, 05:27 AM   #2577
Lockywolf
Member
 
Registered: Jul 2007
Posts: 683

Rep: Reputation: 253Reputation: 253Reputation: 253
Suggestion:

gtk-xfce-engine only supports gtk2 themes, and is essentially declared obsolete.

(I found that while debugging an issue with the theme, called xfce-dusk, and found an answer in this bug:
https://bugzilla.xfce.org/show_bug.cgi?id=14533)

Perhaps it's time to remove it from Slackware too?

Quote:
Andre Miranda editbugs 2018-08-17 16:20:30 CEST

It's simply because Thunar 1.8.0+ is gtk3-based, therefore you need to use a gtk3-compatible theme.
Unfortunately Xfce themes (gtk-xfce-engine) were dropped, so they won't support gtk3 apps, probably distributions will remove them at some point.
I strongly suggest you to migrate to a well maintained gtk3 theme such as Adwaita or Greybird.
If you really want to stick to a gtk2 theme, you can workaround this by enforcing Thunar (or any other gtk3 app) to use a different theme as described in https://askubuntu.com/a/485662/452351.
I mean, I can probably just remove the package myself, but just thought that the upstream should know.


Although I'm not too sure, as there is something, called:

`gtk3-engines-xfce`, which Debian, for example, can use.
So maybe the package just needs to be replaced, rather than dropped entirely.

Last edited by Lockywolf; 12-08-2018 at 05:34 AM.
 
2 members found this post helpful.
Old 12-08-2018, 01:53 PM   #2578
orbea
Senior Member
 
Registered: Feb 2015
Distribution: Slackware64-current
Posts: 1,950

Rep: Reputation: Disabled
Kind of a niche issue, but I noticed after the update to SDL-2.0.9 that rumble with my Sony Dualshock3 controller no longer works with some programs, some examples are sdl2-jstest and mupen64plus.

I next confirmed that it still worked with SDL-2.0.8 and then used a git mirror to bisect between the two releases where I found the first bad commit.

http://hg.libsdl.org/SDL/rev/44a639b5f1af

I made a issue report.

https://bugzilla.libsdl.org/show_bug.cgi?id=4416

Which was fixed pretty fast.

https://hg.libsdl.org/SDL/rev/1f8d0b1afe07

Can the patch be applied to SDL-2.0.9 in current?

Code:
# HG changeset patch
# User Ethan Lee <flibitijibibo@flibitijibibo.com>
# Date 1544124378 18000
# Node ID 1f8d0b1afe07d1cef54d05b46770ac2c5c8f0c09
# Parent  99d8b18acf8a2a5f8344150ca55c3b3f382bab2f
Linux Haptic: Fix periodic.magnitude value

diff -r 99d8b18acf8a -r 1f8d0b1afe07 src/haptic/linux/SDL_syshaptic.c
--- a/src/haptic/linux/SDL_syshaptic.c	Sat Dec 08 11:22:50 2018 -0800
+++ b/src/haptic/linux/SDL_syshaptic.c	Thu Dec 06 14:26:18 2018 -0500
@@ -801,8 +801,7 @@
         else if (periodic->type == SDL_HAPTIC_SAWTOOTHDOWN)
             dest->u.periodic.waveform = FF_SAW_DOWN;
         dest->u.periodic.period = CLAMP(periodic->period);
-        /* Linux expects 0-65535, so multiply by 2 */
-        dest->u.periodic.magnitude = CLAMP(periodic->magnitude) * 2;
+        dest->u.periodic.magnitude = periodic->magnitude;
         dest->u.periodic.offset = periodic->offset;
         /* Linux phase is defined in interval "[0x0000, 0x10000[", corresponds with "[0deg, 360deg[" phase shift. */
         dest->u.periodic.phase = ((Uint32)periodic->phase * 0x10000U) / 36000;
For reference here are the build scripts I used and their respective repos.

sdl-jstest
http://slackbuilds.org/repository/14...em/sdl-jstest/
https://gitlab.com/sdl-jstest/sdl-jstest

mupen64plus
https://notabug.org/orbea/SlackBuild...es/mupen64plus
https://github.com/mupen64plus/mupen64plus-input-sdl
 
Old 12-09-2018, 02:26 AM   #2579
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,212

Rep: Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998
libgphoto2-2.5.21:

http://gphoto.org/news/
https://netcologne.dl.sourceforge.ne...2.5.21.tar.bz2
 
1 members found this post helpful.
Old 12-09-2018, 09:22 AM   #2580
RadicalDreamer
Senior Member
 
Registered: Jul 2016
Location: USA
Distribution: Slackware64-Current
Posts: 1,816

Rep: Reputation: 981Reputation: 981Reputation: 981Reputation: 981Reputation: 981Reputation: 981Reputation: 981Reputation: 981
This doesn't have anything to do with the Slackware build of FFMPEG but I had to upgrade FFMPEG to 4.1 because of this error caused by the new libfdk-aac (2.0.0) because I built FFMPEG from source with libfdk-aac enabled:
https://github.com/mstorsjo/fdk-aac/issues/93

I tried 3.4.5 first but it still gave the error. 4.0.3 also gave the error. I'm not requesting an upgrade because I'm not sure if 4.1 is an improvement over 3.4. I'm just reporting this.
 
2 members found this post helpful.
  


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 03:12 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