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 12-01-2018, 02:37 PM   #2551
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,338

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930

sqlite-3.26.0

https://www.sqlite.org/2018/sqlite-a...3260000.tar.gz
 
1 members found this post helpful.
Old 12-01-2018, 03:41 PM   #2552
shastah
Member
 
Registered: Dec 2017
Posts: 52

Rep: Reputation: Disabled
How about this for net-snmp (plus a corresponding /etc/default/snmpd file)
Code:
--- /etc/rc.d/rc.snmpd	2018-12-01 22:33:28.490052069 +0100
+++ /etc/rc.d/rc.snmpd	2018-12-01 22:33:28.490052069 +0100
@@ -3,13 +3,14 @@
 # rc.snmpd	This shell script takes care of starting and stopping
 #		the net-snmp SNMP daemon
 
-OPTIONS="-A -p /var/run/snmpd -a"
+[ -r /etc/default/snmpd ] && . /etc/default/snmpd
+SNMPD_OPTIONS=${SNMPD_OPTIONS:-"-A -p /var/run/snmpd -a"}
 
 start() {
 	if [ -x /usr/sbin/snmpd -a -f /etc/snmp/snmpd.conf ]; then
 		echo -n "Starting snmpd: "
-		/usr/sbin/snmpd $OPTIONS -c /etc/snmp/snmpd.conf
-		echo " /usr/sbin/snmpd $OPTIONS -c /etc/snmp/snmpd.conf"
+		/usr/sbin/snmpd $SNMPD_OPTIONS -c /etc/snmp/snmpd.conf
+		echo " /usr/sbin/snmpd $SNMPD_OPTIONS -c /etc/snmp/snmpd.conf"
 	fi
 }
 
Old 12-01-2018, 04:00 PM   #2553
shastah
Member
 
Registered: Dec 2017
Posts: 52

Rep: Reputation: Disabled
And another one - to save us from reviewing /etc/sysstat/sysstat.new when only version number changes in there, can we get that version number dropped entirely?
Code:
--- sysstat.SlackBuild	2018-12-01 22:56:50.378360725 +0100
+++ sysstat.SlackBuild	2018-12-01 22:56:50.378360725 +0100
@@ -107,6 +107,7 @@
 make $NUMJOBS || make || exit 1
 make install IGNORE_MAN_GROUP=y DESTDIR=$PKG || exit 1
 
+sed -i -e '1s/sysstat-[0-9.]\+/systat/' $PKG/etc/sysstat/sysstat
 mv $PKG/etc/sysstat/sysstat $PKG/etc/sysstat/sysstat.new
 
 mkdir -p $PKG/etc/rc.d
 
1 members found this post helpful.
Old 12-02-2018, 06:10 AM   #2554
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,225

Rep: Reputation: 1015Reputation: 1015Reputation: 1015Reputation: 1015Reputation: 1015Reputation: 1015Reputation: 1015Reputation: 1015
gnutls-3.6.5:

https://lists.gnupg.org/pipermail/gn...er/004465.html
https://www.gnupg.org/ftp/gcrypt/gnu...s-3.6.5.tar.xz
 
1 members found this post helpful.
Old 12-02-2018, 02:27 PM   #2555
mats_b_tegner
Member
 
Registered: Nov 2009
Location: Gothenburg, Sweden
Distribution: Slackware
Posts: 946

Rep: Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649
ftp://ftp.mutt.org/pub/mutt/mutt-1.11.1.tar.gz
Quote:
Mutt 1.11.1 was released on December 1, 2018 (the "A Chorus Line" release). This is a bug-fix release, fixing a crash in the new $imap_qresync code.
 
1 members found this post helpful.
Old 12-03-2018, 11:00 AM   #2556
orbea
Senior Member
 
Registered: Feb 2015
Distribution: Slackware64-current
Posts: 1,950

Rep: Reputation: Disabled
Can this be applied to the libzip.SlackBuild?
Code:
--- libzip.SlackBuild.orig	2018-09-18 15:04:13.000000000 -0700
+++ libzip.SlackBuild	2018-12-03 08:50:32.030810067 -0800
@@ -85,7 +85,7 @@
     -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \
     -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \
     -DCMAKE_INSTALL_PREFIX=/usr \
-    -DCMAKE_INSTALL_LIBDIR=/usr/lib${LIBDIRSUFFIX} \
+    -DCMAKE_INSTALL_LIBDIR=lib${LIBDIRSUFFIX} \
     -DCMAKE_INSTALL_MANDIR=/usr/man \
     -DCMAKE_BUILD_TYPE=Release .. || exit 1
   make $NUMJOBS || make || exit 1
If fixes the libzip.pc pkgconfig file.
Code:
--- libzip.pc.orig      2018-12-03 08:28:27.318153619 -0800
+++ libzip.pc   2018-12-03 08:52:25.000000000 -0800
@@ -1,7 +1,7 @@
 prefix=/usr
 exec_prefix=${prefix}
 bindir=${exec_prefix}/bin
-libdir=${exec_prefix}//usr/lib64
+libdir=${exec_prefix}/lib64
 includedir=${prefix}/include
 
 zipcmp=${exec_prefix}/bin/zipcmp
Before some programs such as the game antares would fail to compile with errors like the following.
Code:
clang-7: error: no such file or directory: '../../../ext/libzipxx/-L/usr/usr/lib64'
I have not checked yet, but I suspect 14.2 is unaffected because libzip uses autotools instead of cmake.

Last edited by orbea; 12-03-2018 at 07:10 PM.
 
1 members found this post helpful.
Old 12-03-2018, 07:06 PM   #2557
Ellendhel
Member
 
Registered: Aug 2015
Location: Wilmington, NC
Distribution: Slackware
Posts: 64

Rep: Reputation: 51
Quote:
Originally Posted by birdboy View Post
Also, BIND -> nsd/unbound (and maybe add ldns/drill too, as dig substitute).
Unbound doesn't provide the same features than BIND (Unbound does recursive DNS only, not authoritative). It would be nice to get it added, but BIND should remain. Same thing with drill and dig, drill is really oriented for DNSSEC troubleshooting, dig is more common and accessible.
 
2 members found this post helpful.
Old 12-04-2018, 02:48 AM   #2558
PROBLEMCHYLD
Senior Member
 
Registered: Apr 2015
Posts: 1,201

Rep: Reputation: Disabled
Is there any reason Gutenprint hasn't been updated? Can you add this patch?

https://www.nikhef.nl/~janjust/ppp/documentation.html

It is needed to properly use certificates.
 
1 members found this post helpful.
Old 12-04-2018, 11:19 AM   #2559
birdboy
Member
 
Registered: Aug 2018
Distribution: CRUX
Posts: 46

Rep: Reputation: 67
Quote:
Originally Posted by Ellendhel View Post
Unbound doesn't provide the same features than BIND (Unbound does recursive DNS only, not authoritative). It would be nice to get it added, but BIND should remain. Same thing with drill and dig, drill is really oriented for DNSSEC troubleshooting, dig is more common and accessible.
Unbound is recursive only, yes, which is why I wrote nsd/unbound. nsd is authorative.

As for drill, I use it as a drop in replacement for dig and don't miss anything.
 
Old 12-04-2018, 07:08 PM   #2560
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,338

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
dbus-1.12.12
https://dbus.freedesktop.org/release...1.12.12.tar.gz
 
Old 12-05-2018, 03:07 AM   #2561
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,225

Rep: Reputation: 1015Reputation: 1015Reputation: 1015Reputation: 1015Reputation: 1015Reputation: 1015Reputation: 1015Reputation: 1015
hplip-3.18.12:

https://developers.hp.com/hp-linux-i.../release_notes
https://sourceforge.net/projects/hpl...hplip/3.18.12/

libpng-1.6.36:

http://www.libpng.org/pub/png/src/li....36-README.txt
https://download.sourceforge.net/lib...-1.6.36.tar.xz

mercurial-4.8.1:

https://www.mercurial-scm.org/releas...l-4.8.1.tar.gz
 
1 members found this post helpful.
Old 12-05-2018, 06:25 AM   #2562
Ellendhel
Member
 
Registered: Aug 2015
Location: Wilmington, NC
Distribution: Slackware
Posts: 64

Rep: Reputation: 51
Quote:
Originally Posted by birdboy View Post
Unbound is recursive only, yes, which is why I wrote nsd/unbound. nsd is authorative.

As for drill, I use it as a drop in replacement for dig and don't miss anything.
My bad, I read your initial post too quickly and I missed the mention about nsd (that provides an authoritative service indeed).

Nevertheless, BIND is actively maintained and works properly. When it would be nice to have some extra options for DNS services, there is probably more important priorities to add or replace other pieces of software in Slackware.
 
2 members found this post helpful.
Old 12-05-2018, 06:36 AM   #2563
_gin
Member
 
Registered: Aug 2012
Distribution: Oracle Linux
Posts: 106

Rep: Reputation: Disabled
Qt5-5.12.0 has been released, Mr Volkerding, can you add It with KDE 5 (or enough libraries for Eric to build It) and actually freeze current?

http://download.qt.io/official_relea...-5.12.0.tar.xz
 
3 members found this post helpful.
Old 12-05-2018, 07:12 AM   #2564
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,376

Rep: Reputation: 2756Reputation: 2756Reputation: 2756Reputation: 2756Reputation: 2756Reputation: 2756Reputation: 2756Reputation: 2756Reputation: 2756Reputation: 2756Reputation: 2756
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
Quote:
error: error running non-shared postrotate script for /var/log/ntp of '/var/log/ntp '
 
2 members found this post helpful.
Old 12-05-2018, 11:30 AM   #2565
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,225

Rep: Reputation: 1015Reputation: 1015Reputation: 1015Reputation: 1015Reputation: 1015Reputation: 1015Reputation: 1015Reputation: 1015
nettle-3.4.1:

https://git.lysator.liu.se/nettle/ne...ster/ChangeLog
ftp://ftp.gnu.org/gnu/nettle/nettle-3.4.1.tar.gz
 
1 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:37 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