LinuxQuestions.org
Visit Jeremy's Blog.
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 07-14-2019, 04:36 PM   #3451
mats_b_tegner
Member
 
Registered: Nov 2009
Location: Gothenburg, Sweden
Distribution: Slackware
Posts: 946

Rep: Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649

Bzip2 1.0.8
https://sourceware.org/pub/bzip2/bzip2-1.0.8.tar.gz
Quote:
1.0.8 (13 Jul 19)
~~~~~~~~~~~~~~~~~

* Accept as many selectors as the file format allows.
This relaxes the fix for CVE-2019-12900 from 1.0.7
so that bzip2 allows decompression of bz2 files that
use (too) many selectors again.

* Fix handling of large (> 4GB) files on Windows.

* Cleanup of bzdiff and bzgrep scripts so they don't use
any bash extensions and handle multiple archives correctly.

* There is now a bz2-files test suite at
https://sourceware.org/git/bzip2-tests.git
1.0.8 seems to build fine on -current as long as you change the version numbers in the patch file

Last edited by mats_b_tegner; 07-14-2019 at 04:56 PM.
 
Old 07-15-2019, 11:14 AM   #3452
orbea
Senior Member
 
Registered: Feb 2015
Distribution: Slackware64-current
Posts: 1,950

Rep: Reputation: Disabled
Would it be possible to not hard code ninja in current's build scripts?

For example:

Code:
"${NINJA:=ninja}" -C build
DESTDIR=$PKG "$NINJA" -C build install
This sets the NINJA variable to according to the environment or falls back to "ninja" if its an unset or blank variable. This will allow users to set which ninja implementation to use, for example an already viable alternative is samurai.

https://github.com/michaelforney/samurai
http://slackbuilds.org/repository/14...pment/samurai/
 
2 members found this post helpful.
Old 07-16-2019, 04:18 PM   #3453
arcctgx
Member
 
Registered: Mar 2006
Location: EU
Distribution: Slackware, Gentoo
Posts: 58

Rep: Reputation: 23
Hi,

Recently I started using lm_sensors with enabled support for sensord, which is a handy way of collecting data from the onboard sensors over time.

Enabling sensord requires tweaking lm_sensors Makefile, and introduces the dependency on rrdtool: https://oss.oetiker.ch/rrdtool/. I'm reading that rrdtool can also be used to create graphs, but so far I haven't had the time to set it up and test this feature.

I was wondering if rrdtool could be considered for inclusion in Slackware 15? (along with enabling sensord in lm_sensors).
 
1 members found this post helpful.
Old 07-16-2019, 11:10 PM   #3454
Lockywolf
Member
 
Registered: Jul 2007
Posts: 683

Rep: Reputation: 253Reputation: 253Reputation: 253
I have a bit of a strange request...

In Emacs' Slackbuild, the default Emacs toolkit is gtk3, which makes sense, because that's what most users would choose.

However, I often use Emacs compiled with Motif (one reasons being, it's free of the random crash when launched as --daemon, and the other one being that it's more usable through ssh -X like this).

I wonder if it would be possible to add a $VAR-like option to the slackbuild, so that if I run it like:

Code:
 X_TOOLKIT=motif ./emacs.SlackBuild
,
it would build me a motif version of Emacs.
 
Old 07-17-2019, 07:42 PM   #3455
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
Thanks for the ffmpeg update.!!!

I see in configure time a BIG WARNING , arround libavresample is DEPRECATED , we need for something ?

Its safe remove this part of slackbuild ?

Quote:
--enable-avresample
 
Old 07-17-2019, 10:25 PM   #3456
volkerdi
Slackware Maintainer
 
Registered: Dec 2002
Location: Minnesota
Distribution: Slackware! :-)
Posts: 2,504

Rep: Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461
Quote:
Originally Posted by USUARIONUEVO View Post
Thanks for the ffmpeg update.!!!

I see in configure time a BIG WARNING , arround libavresample is DEPRECATED , we need for something ?

Its safe remove this part of slackbuild ?
Nothing using it outside of an alsa-plugins resampling plugin. But typically I don't see removing "deprecated" things as helpful if we've supported them before and upstream still offers the option to compile them in.
 
2 members found this post helpful.
Old 07-18-2019, 03:22 PM   #3457
orbea
Senior Member
 
Registered: Feb 2015
Distribution: Slackware64-current
Posts: 1,950

Rep: Reputation: Disabled
Maybe its worth adding perl-Archive-Zip to current for its crc32 binary? I have not found another good way of generating crc32 sums on linux and they are very useful for comparison with documentation from some online communities that still (Only) use crc32 sums... Its also a build dependency for libreoffice.

https://slackbuilds.org/repository/1...l-Archive-Zip/
 
Old 07-18-2019, 03:57 PM   #3458
volkerdi
Slackware Maintainer
 
Registered: Dec 2002
Location: Minnesota
Distribution: Slackware! :-)
Posts: 2,504

Rep: Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461
Quote:
Originally Posted by orbea View Post
Maybe its worth adding perl-Archive-Zip to current for its crc32 binary? I have not found another good way of generating crc32 sums on linux and they are very useful for comparison with documentation from some online communities that still (Only) use crc32 sums... Its also a build dependency for libreoffice.
Generate decimal CRC32 sum:

Code:
echo -n 123456789 | python -c 'import sys;import zlib;print(zlib.crc32(sys.stdin.read())%(1<<32))'
Generate hex CRC32 sum:

Code:
echo -n 123456789 | python -c 'import sys;import zlib;print("%08x"%(zlib.crc32(sys.stdin.read())%(1<<32)))'
 
3 members found this post helpful.
Old 07-18-2019, 04:24 PM   #3459
individual
Member
 
Registered: Jul 2018
Posts: 315
Blog Entries: 1

Rep: Reputation: 233Reputation: 233Reputation: 233
Quote:
Originally Posted by volkerdi View Post
Generate decimal CRC32 sum:

Code:
echo -n 123456789 | python -c 'import sys;import zlib;print(zlib.crc32(sys.stdin.read())%(1<<32))'
Generate hex CRC32 sum:

Code:
echo -n 123456789 | python -c 'import sys;import zlib;print("%08x"%(zlib.crc32(sys.stdin.read())%(1<<32)))'
Or you can do it with Perl using the builtin Zlib module.
Code:
echo -n 123456789 | perl -mCompress::Zlib=crc32 -e 'printf "%08x", crc32(<>)'
 
1 members found this post helpful.
Old 07-18-2019, 07:27 PM   #3460
orbea
Senior Member
 
Registered: Feb 2015
Distribution: Slackware64-current
Posts: 1,950

Rep: Reputation: Disabled
Quote:
Originally Posted by volkerdi View Post
Generate hex CRC32 sum:

Code:
echo -n 123456789 | python -c 'import sys;import zlib;print("%08x"%(zlib.crc32(sys.stdin.read())%(1<<32)))'
Thank you!

Code:
cat file | python -c 'import sys;import zlib;print("%08x"%(zlib.crc32(sys.stdin.read())%(1<<32)))'
Seems to be equivalent to the crc32 executable from perl-Archive-Zip.

Edit: Or to avoid the useless cat.

Code:
python -c 'import sys;import zlib;print("%08x"%(zlib.crc32(sys.stdin.read())%(1<<32)))' < file

Last edited by orbea; 07-18-2019 at 07:33 PM.
 
Old 07-19-2019, 12:19 AM   #3461
drgibbon
Senior Member
 
Registered: Nov 2014
Distribution: Slackware64 15.0
Posts: 1,220

Rep: Reputation: 943Reputation: 943Reputation: 943Reputation: 943Reputation: 943Reputation: 943Reputation: 943Reputation: 943
RHash is nice too (on SBo):
Code:
rhash -C file

Last edited by drgibbon; 07-19-2019 at 12:20 AM.
 
1 members found this post helpful.
Old 07-19-2019, 05:00 PM   #3462
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
zstd-1.4.1

With enhanced speeds on compessions

see -> https://github.com/facebook/zstd/releases/tag/v1.4.1
sources --> https://github.com/facebook/zstd/rel...d-1.4.1.tar.gz
 
Old 07-19-2019, 10:24 PM   #3463
Willian
Member
 
Registered: Oct 2010
Location: Earth
Distribution: Slackware64
Posts: 38

Rep: Reputation: 2
Please, include love, as much as possible.

thanks
 
1 members found this post helpful.
Old 07-20-2019, 12:08 AM   #3464
Lockywolf
Member
 
Registered: Jul 2007
Posts: 683

Rep: Reputation: 253Reputation: 253Reputation: 253
XV's maintenance seems to have been taken over by David Griffith on his GitLab page:

https://gitlab.com/DavidGriffith/xv

It would be possible to reduce the amount of patches in the SlackBuild if using his git master:

https://gitlab.com/DavidGriffith/xv/...-master.tar.gz

The version, I believe, is still 3.10a, but now the patches are also integrated, and the last update is from 2018,
not 2009 as the original XV.
 
2 members found this post helpful.
Old 07-20-2019, 02:47 PM   #3465
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
llvm-8.0.1

http://releases.llvm.org/download.html#8.0.1
 
  


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 08:35 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