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


Reply
  Search this Thread
Old 09-09-2019, 04:57 PM   #1
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
slackbuild dav1d , not build here under 14.2


I have a large number of extra packages , but i think , the problem is not mine , but not sure , error say nasm is low version than needed.

Code:
meson.build:344:16: ERROR: Problem encountered: nasm 2.13.02 or later is required, found nasm 2.13.01
slackware64-14.2 up-to-date

Problem is only for me ?

Thanks!
 
Old 09-09-2019, 05:16 PM   #2
abga
Senior Member
 
Registered: Jul 2017
Location: EU
Distribution: Slackware
Posts: 1,634

Rep: Reputation: 929Reputation: 929Reputation: 929Reputation: 929Reputation: 929Reputation: 929Reputation: 929Reputation: 929
The latest Slackware 14.2 package is indeed nasm-2.13.01 (only on -current you have nasm-2.14.02).
Try removing your actual nasm-2.13.01 and build & install 2.14.02 from source (as package, obviously):
https://www.nasm.us/pub/nasm/releasebuilds/2.14.02/
 
Old 09-09-2019, 05:28 PM   #3
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,057

Rep: Reputation: Disabled
Been there, done that:
http://slackware.uk/slint/x86_64/sli..._64-1slint.txz
http://slackware.uk/slint/x86_64/sli..._64-1slint.md5
 
1 members found this post helpful.
Old 09-09-2019, 05:33 PM   #4
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Original Poster
Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
Yea , thats cool , but not the way.

I think at least , something commented on README , and other question is

How test that slackbuilds updates ? ..ha ?
The problem is in the base (slackware) , im not understand how upgrade versions , when is not build under stock packages.

sometimes i think people, only change version number and pushed to repo , without test.

Other way , is request upgraded nasm for 14.2
 
1 members found this post helpful.
Old 09-09-2019, 07:20 PM   #5
Skaendo
Senior Member
 
Registered: Dec 2014
Location: West Texas, USA
Distribution: Slackware64-14.2
Posts: 1,445

Rep: Reputation: Disabled
Is there any fallout from self-upgrading nasm? Because I built and upgraded to 2.13.03 (on a test rig of course) and built dav1d-0.4.0 and then vlc with it and didn't see any immediate issues.

Last edited by Skaendo; 09-09-2019 at 07:22 PM.
 
1 members found this post helpful.
Old 09-09-2019, 07:43 PM   #6
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Original Poster
Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
Quote:
Originally Posted by Skaendo View Post
Is there any fallout from self-upgrading nasm? Because I built and upgraded to 2.13.03 (on a test rig of course) and built dav1d-0.4.0 and then vlc with it and didn't see any immediate issues.
I request nasm update for slackware-14.2 ... i hope get it soon.
 
1 members found this post helpful.
Old 09-09-2019, 07:55 PM   #7
orbea
Senior Member
 
Registered: Feb 2015
Distribution: Slackware64-current
Posts: 1,950

Rep: Reputation: Disabled
You should contact the maintainer and let them know that their build doesn't work on 14.2.
 
1 members found this post helpful.
Old 09-10-2019, 03:37 AM   #8
andrew.46
Senior Member
 
Registered: Oct 2007
Distribution: Slackware
Posts: 1,365

Rep: Reputation: 493Reputation: 493Reputation: 493Reputation: 493Reputation: 493
Hmmm... might be better to save Dav1d slackbuild on SBo for Slackware 15 as it takes a very early version of Dav1d to build on stock 14.2. Looks like I have been remiss in my testing on a clean VM of 14.2 for which my apologies...
 
Old 09-10-2019, 10:28 AM   #9
orbea
Senior Member
 
Registered: Feb 2015
Distribution: Slackware64-current
Posts: 1,950

Rep: Reputation: Disabled
Quote:
Originally Posted by andrew.46 View Post
Hmmm... might be better to save Dav1d slackbuild on SBo for Slackware 15 as it takes a very early version of Dav1d to build on stock 14.2. Looks like I have been remiss in my testing on a clean VM of 14.2 for which my apologies...
Does it work if you change the required nasm version with sed in the meson.build? Sometimes these requirements are bogus.
 
2 members found this post helpful.
Old 09-10-2019, 01:29 PM   #10
Alien Bob
Slackware Contributor
 
Registered: Sep 2005
Location: Eindhoven, The Netherlands
Distribution: Slackware
Posts: 8,559

Rep: Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106
I compile the latest dav1d codec on Slackware 14.2 for my VLC package.
This is what I do to make the compile succeed:
Code:
# Make it compile on 14.2:
sed -i meson.build -e 's/2.13.02/2.13.01/'
 
4 members found this post helpful.
Old 09-10-2019, 01:33 PM   #11
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Original Poster
Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
Probably test box run @current@ ...i use sed , at the moment . but when explicit version is required is for some good reason.

Thanks!
 
1 members found this post helpful.
Old 09-10-2019, 03:31 PM   #12
orbea
Senior Member
 
Registered: Feb 2015
Distribution: Slackware64-current
Posts: 1,950

Rep: Reputation: Disabled
Quote:
Originally Posted by USUARIONUEVO View Post
Probably test box run @current@ ...i use sed , at the moment . but when explicit version is required is for some good reason.

Thanks!
Sometimes the good reason is that its the oldest version the developer bothered to test. Other times its because everything breaks without that specific version. The point is there is only one way to find out.
 
1 members found this post helpful.
Old 09-10-2019, 03:33 PM   #13
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Original Poster
Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
Quote:
Originally Posted by orbea View Post
Sometimes the good reason is that its the oldest version the developer bothered to test. Other times its because everything breaks without that specific version. The point is there is only one way to find out.

ha ha ha , one two , one tw ..testing ..haha
 
Old 09-10-2019, 05:07 PM   #14
andrew.46
Senior Member
 
Registered: Oct 2007
Distribution: Slackware
Posts: 1,365

Rep: Reputation: 493Reputation: 493Reputation: 493Reputation: 493Reputation: 493
Build update submitted to SBo, a big thanks to Alien Bob for suggesting a fix. And a big thanks to USUARIONUEVO for showing me a big flaw in my testing of the slackbuilds I maintain...
 
  


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
LXer: Wireshark, Maru OS, man-pages, PureOS, Minetest, Skype Omits Linux, DAV1D | This Week in Linux 58 LXer Syndicated Linux News 0 03-11-2019 10:12 PM
[SOLVED] sbopkg installs "original" SlackBuild to /usr/doc/<pkg>/ instead of "local" SlackBuild drumz Slackware 29 01-20-2018 12:12 AM
[Patch and SlackBuild] Grub-2.02~beta2 SlackBuild and Patch. ReaperX7 Slackware 3 01-28-2015 09:30 AM
SBOPKG(8) not list/show/build dependencies of SlackBuild scripts to build Slackware p xavi_slacky Slackware 3 06-13-2013 07:53 PM
LXer: Build 'em Right, Build 'em Strong, Build 'em Linux LXer Syndicated Linux News 0 10-01-2007 09:51 PM

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

All times are GMT -5. The time now is 01:23 AM.

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