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 03-31-2024, 01:36 PM   #5866
fourtysixandtwo
Member
 
Registered: Jun 2021
Location: Alberta
Distribution: Slackware...mostly
Posts: 322

Rep: Reputation: 216Reputation: 216Reputation: 216

Quote:
Originally Posted by Daedra View Post
Slightly off topic, but I am noticing a lot of python 3.11 builds are now defaulting to /usr/lib now instead of /usr/lib64 on x86_64. Is this something that we should be concerned with? I am guessing this might be happening since Pat's setuptools package is in /usr/lib?
From the python-setuptools slackbuild:
# After Python 3.9, we will not mess with the upstream module layout again.

Hopefully nothing to be concerned with other than the /usr/lib location is last in the search list if one somehow installed two versions of the same module in both locations.

Code:
# python3 -c "import sys; print('\n'.join(sys.path))"

/usr/lib64/python311.zip
/usr/lib64/python3.11
/usr/lib64/python3.11/lib-dynload
/usr/lib64/python3.11/site-packages
/usr/lib/python3.11/site-packages
 
1 members found this post helpful.
Old 03-31-2024, 01:41 PM   #5867
Daedra
Senior Member
 
Registered: Dec 2005
Location: Springfield, MO
Distribution: Slackware64-15.0
Posts: 2,693

Rep: Reputation: 1378Reputation: 1378Reputation: 1378Reputation: 1378Reputation: 1378Reputation: 1378Reputation: 1378Reputation: 1378Reputation: 1378Reputation: 1378
Quote:
Originally Posted by fourtysixandtwo View Post
From the python-setuptools slackbuild:
# After Python 3.9, we will not mess with the upstream module layout again.

Hopefully nothing to be concerned with other than the /usr/lib location is last in the search list if one somehow installed two versions of the same module in both locations.

Code:
# python3 -c "import sys; print('\n'.join(sys.path))"

/usr/lib64/python311.zip
/usr/lib64/python3.11
/usr/lib64/python3.11/lib-dynload
/usr/lib64/python3.11/site-packages
/usr/lib/python3.11/site-packages
Thank you, I did not see that comment in Pat's SlackBuild
 
1 members found this post helpful.
Old 03-31-2024, 01:43 PM   #5868
sombragris
Member
 
Registered: Jul 2004
Location: Asuncion, Paraguay, South America
Distribution: Slackware
Posts: 878

Rep: Reputation: 400Reputation: 400Reputation: 400Reputation: 400Reputation: 400
Quote:
Originally Posted by willysr View Post
Thank you Wily!
 
Old 03-31-2024, 01:43 PM   #5869
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,338

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
@willys , dont miss this one

https://www.linuxquestions.org/quest...ml#post6492925
 
Old 03-31-2024, 06:27 PM   #5870
willysr
Senior Member
 
Registered: Jul 2004
Location: Jogja, Indonesia
Distribution: Slackware-Current
Posts: 4,670

Rep: Reputation: 1786Reputation: 1786Reputation: 1786Reputation: 1786Reputation: 1786Reputation: 1786Reputation: 1786Reputation: 1786Reputation: 1786Reputation: 1786Reputation: 1786
Quote:
Originally Posted by USUARIONUEVO View Post
i got it fixed but i'm testing it on stable now
https://github.com/SlackBuildsOrg/slackbuilds/pull/5725

it seems to be ok for stable

Last edited by willysr; 03-31-2024 at 06:44 PM.
 
Old 04-01-2024, 12:14 AM   #5871
Daedra
Senior Member
 
Registered: Dec 2005
Location: Springfield, MO
Distribution: Slackware64-15.0
Posts: 2,693

Rep: Reputation: 1378Reputation: 1378Reputation: 1378Reputation: 1378Reputation: 1378Reputation: 1378Reputation: 1378Reputation: 1378Reputation: 1378Reputation: 1378
Not sure if this has been reported, but fontforge has a brozen link to the cidmaps.tgz. An alternative download link is http://fontforge.sf.net/cidmaps.tgz. Also it needs a patch for gettext >= 0.22 located here
 
Old 04-01-2024, 12:19 AM   #5872
ponce
LQ Guru
 
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,111

Original Poster
Rep: Reputation: 4183Reputation: 4183Reputation: 4183Reputation: 4183Reputation: 4183Reputation: 4183Reputation: 4183Reputation: 4183Reputation: 4183Reputation: 4183Reputation: 4183
hi Matt,

I actually patched fontforge for the newer gettext in this repository since june last year ;-)

https://cgit.ponce.cc/slackbuilds/commit/?h=fontforge

I'll fix the broken download but please report those to the slackbuilds-users mailing list putting the maintainer in cc, thanks!
 
Old 04-05-2024, 08:07 AM   #5873
bigbadaboum
Member
 
Registered: Apr 2023
Posts: 146

Rep: Reputation: 60
Hello Ponce,

there is a problem with x265-3.6 SBo
https://slackbuilds.org/repository/1...ltimedia/x265/

Quote:
...
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf ${PRGNAM}_${VERSION}
mkdir ${PRGNAM}_${VERSION}
cd ${PRGNAM}_${VERSION}
tar xvf $CWD/${PRGNAM}_${VERSION}.tar.gz
chown -R root:root .
...
CMake Error: The source directory "/tmp/SBo/x265_3.6/source" does not exist.

it works with.
Quote:
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf ${PRGNAM}_${VERSION}
mkdir ${PRGNAM}_${VERSION}
tar xvf $CWD/${PRGNAM}_${VERSION}.tar.gz
cd ${PRGNAM}_${VERSION}
chown -R root:root .
 
Old 04-05-2024, 10:17 AM   #5874
ponce
LQ Guru
 
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,111

Original Poster
Rep: Reputation: 4183Reputation: 4183Reputation: 4183Reputation: 4183Reputation: 4183Reputation: 4183Reputation: 4183Reputation: 4183Reputation: 4183Reputation: 4183Reputation: 4183
Quote:
Originally Posted by bigbadaboum View Post
Hello Ponce,

there is a problem with x265-3.6 SBo
https://slackbuilds.org/repository/1...ltimedia/x265/


CMake Error: The source directory "/tmp/SBo/x265_3.6/source" does not exist.

it works with.
hi bigbadaboum,

this is not an error current-specific, you should report this directly to the x265 maintainer: his mail address is in the x265.info file.
 
1 members found this post helpful.
Old 04-05-2024, 01:38 PM   #5875
willysr
Senior Member
 
Registered: Jul 2004
Location: Jogja, Indonesia
Distribution: Slackware-Current
Posts: 4,670

Rep: Reputation: 1786Reputation: 1786Reputation: 1786Reputation: 1786Reputation: 1786Reputation: 1786Reputation: 1786Reputation: 1786Reputation: 1786Reputation: 1786Reputation: 1786
upstream has made incorrect tarball packaging and reuploaded a new source
i fixed it already on my branch https://git.slackbuilds.org/slackbui.../?id=3ac132648
 
2 members found this post helpful.
Old 04-06-2024, 12:16 PM   #5876
sombragris
Member
 
Registered: Jul 2004
Location: Asuncion, Paraguay, South America
Distribution: Slackware
Posts: 878

Rep: Reputation: 400Reputation: 400Reputation: 400Reputation: 400Reputation: 400
Got a problem trying to build jupyter_ipykernel:

Code:
ipykernel-6.29.4/README.md
ipykernel-6.29.4/hatch_build.py
ipykernel-6.29.4/pyproject.toml
ipykernel-6.29.4/PKG-INFO
* Getting build dependencies for sdist...

ERROR Missing dependencies:
        jupyter_client>=6
        tornado>=6.2
The problem is that I have built and install those packages (jupyter_client, python3-tornado) several times over. I have no clue about what I could do.
 
Old 04-06-2024, 12:37 PM   #5877
ponce
LQ Guru
 
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,111

Original Poster
Rep: Reputation: 4183Reputation: 4183Reputation: 4183Reputation: 4183Reputation: 4183Reputation: 4183Reputation: 4183Reputation: 4183Reputation: 4183Reputation: 4183Reputation: 4183
Quote:
Originally Posted by sombragris View Post
Got a problem trying to build jupyter_ipykernel:

Code:
ipykernel-6.29.4/README.md
ipykernel-6.29.4/hatch_build.py
ipykernel-6.29.4/pyproject.toml
ipykernel-6.29.4/PKG-INFO
* Getting build dependencies for sdist...

ERROR Missing dependencies:
        jupyter_client>=6
        tornado>=6.2
The problem is that I have built and install those packages (jupyter_client, python3-tornado) several times over. I have no clue about what I could do.
have you rebuilt them after the upgrade to python 3.11?
 
Old 04-06-2024, 12:58 PM   #5878
sombragris
Member
 
Registered: Jul 2004
Location: Asuncion, Paraguay, South America
Distribution: Slackware
Posts: 878

Rep: Reputation: 400Reputation: 400Reputation: 400Reputation: 400Reputation: 400
Quote:
Originally Posted by ponce View Post
have you rebuilt them after the upgrade to python 3.11?
Yes I did. In fact, initially ipykernel reported only jupyter_client as a missing dependency. After building jupyter_client, I tried to build and it gave a me an even bigger list of unmet dependencies, I rebuilt them one by one and only these two left. I rebuilt them against Python 3.11 several times, had no trouble doing so, but even then ipykernel complains about this.
 
Old 04-06-2024, 04:09 PM   #5879
ponce
LQ Guru
 
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,111

Original Poster
Rep: Reputation: 4183Reputation: 4183Reputation: 4183Reputation: 4183Reputation: 4183Reputation: 4183Reputation: 4183Reputation: 4183Reputation: 4183Reputation: 4183Reputation: 4183
FWIW I just built jupyter-notebook and all of its dependencies from scratch and I had a fault just with jupyter-nbclassic (but I pushed a fix), everything else built fine...
 
Old 04-06-2024, 05:29 PM   #5880
sombragris
Member
 
Registered: Jul 2004
Location: Asuncion, Paraguay, South America
Distribution: Slackware
Posts: 878

Rep: Reputation: 400Reputation: 400Reputation: 400Reputation: 400Reputation: 400
Quote:
Originally Posted by ponce View Post
FWIW I just built jupyter-notebook and all of its dependencies from scratch and I had a fault just with jupyter-nbclassic (but I pushed a fix), everything else built fine...
I will attempt a full rebuild then...
 
  


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 04:11 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