LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
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 10-13-2021, 03:01 PM   #4396
brobr
Member
 
Registered: Oct 2003
Location: uk
Distribution: Slackware
Posts: 974

Rep: Reputation: 239Reputation: 239Reputation: 239

From Slackbuilds-users list:
Quote:
"Just a suggestion here regarding any python packages that are distributed
via pypi. Any package there can be downloaded using this format:

https://pypi.python.org/packages/source/<package first letter>/<package name>/<package name-version.extension>
preferentially it would be:
Code:
https://pypi.python.org/packages/source/m/matplotlib/matplotlib-3.4.3.tar.gz

Last edited by brobr; 10-13-2021 at 03:04 PM.
 
1 members found this post helpful.
Old 10-13-2021, 09:23 PM   #4397
willysr
Senior Member
 
Registered: Jul 2004
Location: Jogja, Indonesia
Distribution: Slackware-Current
Posts: 4,662

Rep: Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784
Quote:
Originally Posted by ArTourter View Post
The url for python3-matplotlib 3.4.3 in master is wrong. it should be

Code:
https://files.pythonhosted.org/packages/21/37/197e68df384ff694f78d687a49ad39f96c67b8d75718bc61503e1676b617/matplotlib-3.4.3.tar.gz
not

Code:
https://files.pythonhosted.org/packages/eb/a0/31b6ba00bc4dcbc06f0b80d1ad6119a9cc3081ecb04a00117f6c1ca3a084/matplotlib-3.4.3.tar.gz
md5sum is correct

Cheers

Greg
Thanks fixed
 
Old 10-13-2021, 09:32 PM   #4398
RadicalDreamer
Senior Member
 
Registered: Jul 2016
Location: USA
Distribution: Slackware64-Current
Posts: 1,816

Rep: Reputation: 981Reputation: 981Reputation: 981Reputation: 981Reputation: 981Reputation: 981Reputation: 981Reputation: 981
Quote:
Originally Posted by USUARIONUEVO View Post
BeautifulSoup4 builds fine here , you see the README ?

python3-soupsieve is required.
I accidentally found out that soupsieve isn't required to build.
Code:
usr/lib64/python2.7/site-packages/bs4/tests/test_lxml.pyc
usr/lib64/python2.7/site-packages/bs4/tests/test_soup.py
usr/lib64/python2.7/site-packages/bs4/tests/test_soup.pyc
usr/lib64/python2.7/site-packages/bs4/tests/test_tree.py
usr/lib64/python2.7/site-packages/bs4/tests/test_tree.pyc

Slackware package /tmp/sbopkg.I5Zs5F/sbopkg-sbooutputdir/BeautifulSoup4-4.9.3-x86_64-2_SBo.tgz created.

Done building package for BeautifulSoup4.
Built package: BeautifulSoup4-4.9.3-x86_64-2_SBo.tgz
 
Old 10-14-2021, 12:17 AM   #4399
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,336

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
Quote:
Originally Posted by RadicalDreamer View Post
I accidentally found out that soupsieve isn't required to build.
Code:
usr/lib64/python2.7/site-packages/bs4/tests/test_lxml.pyc
usr/lib64/python2.7/site-packages/bs4/tests/test_soup.py
usr/lib64/python2.7/site-packages/bs4/tests/test_soup.pyc
usr/lib64/python2.7/site-packages/bs4/tests/test_tree.py
usr/lib64/python2.7/site-packages/bs4/tests/test_tree.pyc

Slackware package /tmp/sbopkg.I5Zs5F/sbopkg-sbooutputdir/BeautifulSoup4-4.9.3-x86_64-2_SBo.tgz created.

Done building package for BeautifulSoup4.
Built package: BeautifulSoup4-4.9.3-x86_64-2_SBo.tgz
SEE YOU LOG , you build only 2.7 python , to build 3.x binding need python3-soupsieve.
 
Old 10-14-2021, 03:56 AM   #4400
Lockywolf
Member
 
Registered: Jul 2007
Posts: 683

Rep: Reputation: 253Reputation: 253Reputation: 253
python3 -c "import sys; print(sys.version[:3])"

in Blender.SlackBuild is wrong.
 
Old 10-14-2021, 05:44 AM   #4401
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,336

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
Quote:
Originally Posted by Lockywolf View Post
python3 -c "import sys; print(sys.version[:3])"

in Blender.SlackBuild is wrong.
Yes ,

This is more accurate , and no fails

Print mayor and minor , never can fails.

Quote:
python3 -c 'import sys; print("{}.{}".format(sys.version_info.major, sys.version_info.minor))'
 
1 members found this post helpful.
Old 10-14-2021, 01:03 PM   #4402
camerabambai
Member
 
Registered: Mar 2010
Distribution: Slackware
Posts: 408

Rep: Reputation: 54
Bitcoin-qt exit with this error

Code:
  CXX      test/test_bitcoin-allocator_tests.o
  CXX      test/test_bitcoin-base32_tests.o
wallet/test/init_test_fixture.cpp: In constructor ‘InitWalletDirTestingSetup::InitWalletDirTestingSetup(const string&)’:
wallet/test/init_test_fixture.cpp:34:52: error: ‘std::map<std::__cxx11::basic_string<char>, boost::filesystem::path>::mapped_type’ {aka ‘class boost::filesystem::path’} has no member named ‘BOOST_FILESYSTEM_C_STR’
   34 |     std::ofstream f(m_walletdir_path_cases["file"].BOOST_FILESYSTEM_C_STR);
      |                                                    ^~~~~~~~~~~~~~~~~~~~~~
make[2]: *** [Makefile:18028: wallet/test/test_test_bitcoin-init_test_fixture.o] Errore 1
 
Old 10-14-2021, 01:22 PM   #4403
ponce
LQ Guru
 
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,100

Original Poster
Rep: Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177
build version 22.0
Code:
diff --git a/network/bitcoin/bitcoin.SlackBuild b/network/bitcoin/bitcoin.SlackBuild
index 25befbc3fa..e4f75b5d8d 100644
--- a/network/bitcoin/bitcoin.SlackBuild
+++ b/network/bitcoin/bitcoin.SlackBuild
@@ -25,7 +25,7 @@
 cd $(dirname $0) ; CWD=$(pwd)
 
 PRGNAM=bitcoin
-VERSION=${VERSION:-0.21.0}
+VERSION=${VERSION:-22.0}
 BUILD=${BUILD:-1}
 TAG=${TAG:-_SBo}
 PKGTYPE=${PKGTYPE:-tgz}
@@ -82,8 +82,6 @@ find -L . \
  \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
   -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
 
-sed -i '/^#include <QPainter>$/a #include <QPainterPath>' src/qt/trafficgraphwidget.cpp
-
 # build bitcoin-core
 [ -f autogen.sh ] && sh autogen.sh
 CFLAGS="$SLKCFLAGS" \
diff --git a/network/bitcoin/bitcoin.info b/network/bitcoin/bitcoin.info
index 3c65d14e79..ec58d5f8c5 100644
--- a/network/bitcoin/bitcoin.info
+++ b/network/bitcoin/bitcoin.info
@@ -1,10 +1,10 @@
 PRGNAM="bitcoin"
-VERSION="0.21.0"
+VERSION="22.0"
 HOMEPAGE="https://bitcoincore.org"
-DOWNLOAD="https://bitcoincore.org/bin/bitcoin-core-0.21.0/bitcoin-0.21.0.tar.gz"
-MD5SUM="a99c80d18243db0b8089882f9be1302a"
+DOWNLOAD="https://bitcoincore.org/bin/bitcoin-core-22.0/bitcoin-22.0.tar.gz"
+MD5SUM="f822f7e798fbdc36e8fc18b355ab446d"
 DOWNLOAD_x86_64=""
 MD5SUM_x86_64=""
-REQUIRES="protobuf"
+REQUIRES="protobuf3"
 MAINTAINER="nomnombtc"
 EMAIL="nomnombtc@arcor.de"
thanks for reporting it!

Last edited by ponce; 10-14-2021 at 01:27 PM.
 
1 members found this post helpful.
Old 10-14-2021, 06:27 PM   #4404
~red
Member
 
Registered: Feb 2021
Location: This planet
Distribution: Arch Linux + GNOME, Slackware Current
Posts: 34
Blog Entries: 4

Rep: Reputation: Disabled
Wink

Quote:
Originally Posted by sombragris View Post
This week´s addition, tauonmb, builds correctly but fails to run:

Code:
Tauon Music Box v6.5.4
Copyright 2015-2020 Taiko2k captain.gxj@gmail.com

Running from installed location
User files location: /home/eduardo/.local/share/TauonMusicBox
Clearing old cache directory
/home/eduardo/.cache/TauonMusicBox
Found XDG-Downloads: /home/eduardo/Downloads
Found XDG-Music: /home/eduardo/
Install directory: /opt/tauon-music-box
No previous window state
Traceback (most recent call last):
  File "/usr/lib64/python3.9/site-packages/PyLyrics/classes.py", line 3, in <module>
    from .functions import *
  File "/usr/lib64/python3.9/site-packages/PyLyrics/functions.py", line 2, in <module>
    from bs4 import BeautifulSoup, Comment, NavigableString
ModuleNotFoundError: No module named 'bs4'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/usr/lib64/python3.9/site-packages/PyLyrics/__init__.py", line 6, in <module>
    from .classes import *
  File "/usr/lib64/python3.9/site-packages/PyLyrics/classes.py", line 5, in <module>
    from functions import *
ModuleNotFoundError: No module named 'functions'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/tauon-music-box/tauon.py", line 747, in <module>
    from t_modules.t_lyrics import *
  File "/opt/tauon-music-box/t_modules/t_lyrics.py", line 22, in <module>
    from PyLyrics import PyLyrics
  File "/usr/lib64/python3.9/site-packages/PyLyrics/__init__.py", line 10, in <module>
    from classes import *
ModuleNotFoundError: No module named 'classes'
Looks like PyLyrics has some issue with BeautifulSoup4. Just to be sure I rebuild BeautifulSoup4, PyLyrics and tauonmb (in that order) but still I get this error.
Ah right, I was browsing around sorry saw this late..
I'm not much active around.
Yeah this is bs4 problem,
I've pushed condition for PyLyrics's SlackBuild alongside v6.7.1 on current if commits approve, probably gonna push my own builder for bs4 binary in case of further failures.

Although pip is really really messy.. that I brought all of em as builders from binaries;
You can temporary install BeautifulSoup4 via pip3 for now after satisfying other new dependencies or package it.

Last edited by ~red; 10-14-2021 at 06:35 PM.
 
Old 10-15-2021, 04:16 AM   #4405
Lockywolf
Member
 
Registered: Jul 2007
Posts: 683

Rep: Reputation: 253Reputation: 253Reputation: 253
systemtap 4.1

Code:
sed -i '451,456s/width/(int)width/g' staprun/monitor.c

sed -i '469s/width/(int)width/g' staprun/monitor.c
sed -i '471s/width/(int)width/g' staprun/monitor.c
sed -i '473s/width/(int)width/g' staprun/monitor.c
sed -i '475s/width/(int)width/g' staprun/monitor.c
sed -i '477s/width/(int)width/g' staprun/monitor.c
sed -i '479s/width/(int)width/g' staprun/monitor.c
 
Old 10-15-2021, 05:02 AM   #4406
ponce
LQ Guru
 
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,100

Original Poster
Rep: Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177
Quote:
Originally Posted by Lockywolf View Post
systemtap 4.1

Code:
sed -i '451,456s/width/(int)width/g' staprun/monitor.c

sed -i '469s/width/(int)width/g' staprun/monitor.c
sed -i '471s/width/(int)width/g' staprun/monitor.c
sed -i '473s/width/(int)width/g' staprun/monitor.c
sed -i '475s/width/(int)width/g' staprun/monitor.c
sed -i '477s/width/(int)width/g' staprun/monitor.c
sed -i '479s/width/(int)width/g' staprun/monitor.c
thanks, pushed!

https://git.slackbuilds.org/slackbui...it/?id=6a891d6
 
Old 10-15-2021, 05:05 AM   #4407
ponce
LQ Guru
 
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,100

Original Poster
Rep: Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177
Quote:
Originally Posted by Lockywolf View Post
opencolorio is cloning git repos for pystring and imath at build time.

I thought that was not appreciated.

You can ensure that the CMAKE script does not download anything by setting -DOCIO_INSTALL_EXT_PACKAGES=NONE
please report this to the maintainer so that he can evaluate the proposed cmake option...
 
1 members found this post helpful.
Old 10-15-2021, 08:52 PM   #4408
kingbeowulf
Senior Member
 
Registered: Oct 2003
Location: WA
Distribution: Slackware
Posts: 1,266
Blog Entries: 11

Rep: Reputation: 744Reputation: 744Reputation: 744Reputation: 744Reputation: 744Reputation: 744Reputation: 744
Botan-2.17.3 (in repo and ponce's looks the same) and Botan-2.18.1 (upstream latest stable) buildscripts do not complete - at least based on Current updates as of 7 days ago (I'm getting week's new update batch). Botan compiles fine but gets stuck on "make check" with XMSS. This is both on the Ryzen 9 3800X (Slackware64-current-multilib) and the Lenovo T510 Intel i7-620M laptop (Slackware64-current clean).

Code:
xmss_keygen:
XMSS XMSS-SHA2_10_256 keygen ran 26 tests in 207.60 msec all ok
xmss_sign:
XMSS/SHAKE_10_256 signature generation ran 27 tests in 704.97 msec all ok
xmss_verify:
XMSS/SHA2_10_256 signature verification ran 21 tests in 8.33 msec all ok
XMSS/SHA2_10_512 signature verification ran 21 tests in 72.98 msec all ok
XMSS/SHA2_16_256 signature verification ran 21 tests in 8.37 msec all ok
XMSS/SHA2_16_512 signature verification ran 21 tests in 61.08 msec all ok
XMSS/SHA2_20_256 signature verification ran 21 tests in 7.26 msec all ok
XMSS/SHA2_20_512 signature verification ran 21 tests in 68.28 msec all ok
XMSS/SHAKE_10_256 signature verification ran 21 tests in 23.87 msec all ok
XMSS/SHAKE_10_512 signature verification ran 21 tests in 86.68 msec all ok
XMSS/SHAKE_16_256 signature verification ran 21 tests in 24.48 msec all ok
XMSS/SHAKE_16_512 signature verification ran 21 tests in 87.97 msec all ok
XMSS/SHAKE_20_256 signature verification ran 21 tests in 27.32 msec all ok
XMSS/SHAKE_20_512 signature verification ran 21 tests in 73.21 msec all ok
xmss_verify_invalid:
XMSS/SHA2_10_256 verify invalid signature ran 28 tests in 8.79 msec all ok
XMSS/SHA2_10_512 verify invalid signature ran 28 tests in 90.58 msec all ok
XMSS/SHA2_16_256 verify invalid signature ran 28 tests in 9.12 msec all ok
XMSS/SHA2_16_512 verify invalid signature ran 28 tests in 61.64 msec all ok
XMSS/SHA2_20_256 verify invalid signature ran 28 tests in 8.03 msec all ok
XMSS/SHA2_20_512 verify invalid signature ran 28 tests in 64.22 msec all ok
XMSS/SHAKE_10_256 verify invalid signature ran 28 tests in 18.72 msec all ok
XMSS/SHAKE_10_512 verify invalid signature ran 28 tests in 57.02 msec all ok
XMSS/SHAKE_16_256 verify invalid signature ran 28 tests in 20.87 msec all ok
XMSS/SHAKE_16_512 verify invalid signature ran 28 tests in 73.10 msec all ok
XMSS/SHAKE_20_256 verify invalid signature ran 28 tests in 18.53 msec all ok
XMSS/SHAKE_20_512 verify invalid signature ran 28 tests in 73.52 msec all ok
Tests complete ran 2701825 tests in 8.20 sec 6 tests failed
ERROR:root:Error running ./botan-test --data-dir=src/tests/data
make: *** [Makefile:61: check] Error 1
[Aside: Botan2 is a dependency for corectrl I'm testing out. I have no idea why a hardware monitoring program needs a cryptography library]

I'm not sure what is stopping the tests and would like a bit of clarity here before I go ask upstream.
 
Old 10-15-2021, 10:44 PM   #4409
willysr
Senior Member
 
Registered: Jul 2004
Location: Jogja, Indonesia
Distribution: Slackware-Current
Posts: 4,662

Rep: Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784
i think you can safely remove make check and it will build properly
 
Old 10-16-2021, 03:13 PM   #4410
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,336

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
Some chance to kodi ?

I can build a matrix version 19.2 ,but need extra work , and extra slackbuilds.

Version on SBo not build cause i think gcc upgrades and error says not support c++17

Last edited by USUARIONUEVO; 10-16-2021 at 03:15 PM.
 
  


Reply

Tags
current, sbo, sbopkg, slackrepo



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] Error building gst1-plugins-good 1.4.1 from SBO l0rddarkf0rce Slackware 4 10-06-2014 05:58 PM
[SOLVED] Failure building nvidia-kernel Slackbuild from SBo sysfce2 Slackware 7 07-02-2011 01:10 AM
problems building fontforge from SBo gtludwig Slackware 7 05-12-2010 01:52 PM
Pls help me take my 1st step! verysoon Fedora - Installation 2 12-12-2005 07:49 AM

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

All times are GMT -5. The time now is 01:50 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