LinuxQuestions.org
Share your knowledge at the LQ Wiki.
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 06-18-2016, 01:12 PM   #1306
phenixia2003
Senior Member
 
Registered: May 2006
Location: France
Distribution: Slackware
Posts: 1,052

Rep: Reputation: 1008Reputation: 1008Reputation: 1008Reputation: 1008Reputation: 1008Reputation: 1008Reputation: 1008Reputation: 1008

Hello,

Quote:
Originally Posted by volkerdi View Post
I've had a SlackBuild for this here since it came out, but it hits an error in the docs and the compile fails. Anyway, it's a little too late to take a chance on breaking find to try to eliminate a warning.
Ok. Thanks for the clarification.

Anyway, I've built 4.6.0 with success here. Here is a patch in case you want upgrade findutils in the future, maybe for slackware 15.0 :

Code:
--- findutils.SlackBuild.orig	2016-06-18 19:53:15.988031367 +0200
+++ findutils.SlackBuild	2016-06-18 20:06:21.141066401 +0200
@@ -20,7 +20,7 @@
 #  OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 #  ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
-VERSION=4.4.2
+VERSION=4.6.0
 BUILD=${BUILD:-1}
 
 # Automatically determine the architecture we're building on:
@@ -61,27 +61,26 @@
   \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
   -exec chmod 644 {} \;
 
-# We use slocate instead of these:
-zcat $CWD/findutils.nolocate.diff.gz | patch -p1 --verbose || exit 1
+# We use slocate instead of these.
+#  from : https://git.archlinux.org/svntogit/packages.git/tree/trunk/PKGBUILD?h=packages/findutils
+#
+sed -i "/^SUBDIRS/s/locate//" Makefile.in
 
 # Don't output warnings by default.  Let's make the crazy assumption that the
 # user actually does know what they are doing, and will use -warn if they'd
 # like to be yelled at.
 zcat $CWD/findutils.no.default.options.warnings.diff.gz | patch -p1 --verbose || exit 1
 
-# Feel free to change the "--without-fts" if you like find to be faster and
-# less reliable.  With the current setting, "find" will be non-fts(), and
-# ftsfind will still be there if you want to use it.
+# Note:--without-fts & --disable-locate are no longer supported since 4.6.0
+#
 CFLAGS="$SLKCFLAGS" \
 ./configure \
   --prefix=/usr \
   --mandir=/usr/man \
   --infodir=/usr/info \
-  --disable-locate \
-  --without-fts \
   --build=$ARCH-slackware-linux
 
-make $NUMJOBS || make || exit 1
+make $NUMJOBS -C locate dblocation.texi || make || exit 1
 make install DESTDIR=$PKG || exit 1
 
 find $PKG | xargs file | grep -e "executable" -e "shared object" \
Diff between findutils packages 4.4.2 and 4.6.0 :

Code:
--- /tmp/fu.4.4.2       2016-06-18 20:01:50.488054324 +0200
+++ /tmp/fu.4.6.0       2016-06-18 20:07:21.866069110 +0200
@@ -4,19 +4,21 @@
 usr/
 usr/bin/
 usr/bin/find
-usr/bin/ftsfind
 usr/bin/xargs
 usr/doc/
-usr/doc/findutils-4.4.2/
-usr/doc/findutils-4.4.2/AUTHORS
-usr/doc/findutils-4.4.2/COPYING
-usr/doc/findutils-4.4.2/NEWS
-usr/doc/findutils-4.4.2/README
-usr/doc/findutils-4.4.2/README-hacking
-usr/doc/findutils-4.4.2/THANKS
-usr/doc/findutils-4.4.2/TODO
+usr/doc/findutils-4.6.0/
+usr/doc/findutils-4.6.0/AUTHORS
+usr/doc/findutils-4.6.0/COPYING
+usr/doc/findutils-4.6.0/NEWS
+usr/doc/findutils-4.6.0/README
+usr/doc/findutils-4.6.0/README-alpha
+usr/doc/findutils-4.6.0/README-hacking
+usr/doc/findutils-4.6.0/THANKS
+usr/doc/findutils-4.6.0/TODO
 usr/info/
 usr/info/find-maint.info.gz
+usr/info/find.info-1.gz
+usr/info/find.info-2.gz
 usr/info/find.info.gz
 usr/man/
 usr/man/man1/
@@ -93,6 +95,9 @@
 usr/share/locale/ms/
 usr/share/locale/ms/LC_MESSAGES/
 usr/share/locale/ms/LC_MESSAGES/findutils.mo
+usr/share/locale/nb/
+usr/share/locale/nb/LC_MESSAGES/
+usr/share/locale/nb/LC_MESSAGES/findutils.mo
 usr/share/locale/nl/
 usr/share/locale/nl/LC_MESSAGES/
 usr/share/locale/nl/LC_MESSAGES/findutils.mo
--
SeB
 
3 members found this post helpful.
Old 06-19-2016, 05:07 AM   #1307
csking
LQ Newbie
 
Registered: May 2013
Posts: 10

Rep: Reputation: Disabled
Looks like PCRE was updated to 8.39 the other day, mostly crash bugs and fixing odd behaviour but there was also a fix for a buffer overflow in there.
 
1 members found this post helpful.
Old 06-20-2016, 09:15 AM   #1308
WoefulNarvik
Member
 
Registered: Apr 2012
Distribution: Slackware, Salix
Posts: 41

Rep: Reputation: Disabled
libarchive 3.2.1 Security Release

https://groups.google.com/forum/#!to...ce/lyaOLoBI1Fs

The link above contains a link to the github issue tracker for libarchive.

Not sure of the scope to previous version or if 3.1.2 can be patched like last time. Sorry for not being much help.
 
Old 06-20-2016, 09:26 AM   #1309
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
On fdisk's output scrolling off the screen:

Why not just use cfdisk/cgdisk instead?
 
Old 06-20-2016, 09:59 AM   #1310
ReaperX7
LQ Guru
 
Registered: Jul 2011
Location: California
Distribution: Slackware64-15.0 Multilib
Posts: 6,558
Blog Entries: 15

Rep: Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097
Did they ever fix the partition alignment issue with cfdisk and sector 63 (if I got it correct)?

Last edited by ReaperX7; 06-20-2016 at 10:01 AM.
 
Old 06-20-2016, 10:08 AM   #1311
atelszewski
Member
 
Registered: Aug 2007
Distribution: Slackware
Posts: 948

Rep: Reputation: Disabled
Quote:
Originally Posted by ReaperX7 View Post
Did they ever fix the partition alignment issue with cfdisk and sector 63 (if I got it correct)?
If I recall correctly, then yes. There is a thread somewhere about this subject.

--
Best regards,
Andrzej Telszewski
 
Old 06-21-2016, 10:03 AM   #1312
lucasbuchala
LQ Newbie
 
Registered: Apr 2016
Posts: 6

Rep: Reputation: Disabled
Bash-4.3 patches 43 to 46 are available:

http://ftp.gnu.org/gnu/bash/bash-4.3-patches/

(I don't know if there's any time left, or if these patches are relevant...)
 
Old 06-22-2016, 03:50 AM   #1313
Toutatis
Member
 
Registered: Feb 2013
Posts: 412

Rep: Reputation: Disabled
Now lzip-1.18 and lrzip-0.630 are available
 
Old 06-22-2016, 09:51 AM   #1314
atelszewski
Member
 
Registered: Aug 2007
Distribution: Slackware
Posts: 948

Rep: Reputation: Disabled
Hi,

PulseAudio 9.0 Released :P

--
Best regards,
Andrzej Telszewski
 
1 members found this post helpful.
Old 06-22-2016, 10:08 AM   #1315
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,095

Rep: Reputation: 7272Reputation: 7272Reputation: 7272Reputation: 7272Reputation: 7272Reputation: 7272Reputation: 7272Reputation: 7272Reputation: 7272Reputation: 7272Reputation: 7272
Quote:
Originally Posted by atelszewski View Post
Hi,

PulseAudio 9.0 Released :P

--
Best regards,
Andrzej Telszewski
Thanks for the link.
Now this looks like a worthwhile upgrade,

Quote:
...Automatic routing improvements

In 8.0, PulseAudio started to automatically switch to another profile when the device associated with the current profile is unplugged. That seemingly smart thing had some serious unintended consequences. One typical issue was that when unplugging headphones, PulseAudio might switch to S/PDIF output and not switch back to headphones when they are plugged in again. Another issue was that HDMI in many cases appears to get temporarily unplugged when the monitor goes to sleep mode, or even when switching the refresh rate of the monitor - PulseAudio 8.0 would move audio away from the HDMI monitor in these cases and not move the audio back to HDMI when the monitor becomes available again. These issues are now fixed.

Last edited by cwizardone; 06-22-2016 at 10:38 AM. Reason: Typo.
 
2 members found this post helpful.
Old 06-22-2016, 10:32 AM   #1316
CTM
Member
 
Registered: Apr 2004
Distribution: Slackware
Posts: 308

Rep: Reputation: 287Reputation: 287Reputation: 287
Quote:
Originally Posted by cwizardone View Post
Now this looks like a worthwile upgrade

Quote:
...Automatic routing improvements
This seems to constitute well over half the complaints I've heard about PulseAudio in this forum since it was included in -current. Hopefully it's not too late to include this for 14.2.
 
2 members found this post helpful.
Old 06-22-2016, 11:07 AM   #1317
55020
Senior Member
 
Registered: Sep 2009
Location: Yorks. W.R. 167397
Distribution: Slackware
Posts: 1,307
Blog Entries: 4

Rep: Reputation: Disabled
Remember that old joke about seeing your mother-in-law drive over a cliff in your brand new car?
 
Old 06-22-2016, 11:46 AM   #1318
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,095

Rep: Reputation: 7272Reputation: 7272Reputation: 7272Reputation: 7272Reputation: 7272Reputation: 7272Reputation: 7272Reputation: 7272Reputation: 7272Reputation: 7272Reputation: 7272
Quote:
Originally Posted by CTM View Post
This seems to constitute well over half the complaints I've heard about PulseAudio in this forum since it was included in -current. Hopefully it's not too late to include this for 14.2.
I've built pulseaudio-9.0 using the slackware-source slackbuild script, minus all the patches, installed it, and so far, so good.
 
1 members found this post helpful.
Old 06-22-2016, 12:53 PM   #1319
slalik
Member
 
Registered: Nov 2014
Location: Moscow
Distribution: Slackware
Posts: 233

Rep: Reputation: 203Reputation: 203Reputation: 203
"nano 2.6.0 "Rubicon" fixes more than fifty little bugs -- and some of them not so little."
https://lists.gnu.org/archive/html/n.../msg00083.html
https://nano-editor.org/news.php

BTW, they end the announcement with "And, with this release, we take leave of the herd... Bye! And thanks for all the grass!"
 
Old 06-22-2016, 01:10 PM   #1320
ponce
LQ Guru
 
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,097

Rep: Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174
Quote:
Originally Posted by slalik View Post
BTW, they end the announcement with "And, with this release, we take leave of the herd... Bye! And thanks for all the grass!"
probably because of this.

I have no idea if I'm still in time but I'll try: should be nice to have sip updated to 4.18 as it's needed to build PyQt5-5.6 (we moved on version 5.6.1 of qt5 on SBo's master branch).
as qt-5.6.1 seems to work fine also with PyQt5-5.5.1 (PyQt5 is a calibre-2.x dependency) the sip upgrade is not essential (maybe it could be in the future but not now), but I have it installed here and seems safe (hope I'm not missing anything).

Last edited by ponce; 06-22-2016 at 01:17 PM.
 
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:23 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