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 04-23-2024, 02:37 PM   #4306
teoberi
Member
 
Registered: Jan 2018
Location: Romania
Distribution: Slackware64-current (servers)/Windows 11/Ubuntu (workstations)
Posts: 610

Rep: Reputation: 355Reputation: 355Reputation: 355Reputation: 355

I'm building Postfix from the sources, I haven't followed the official Slackware sources and as such I missed the patch. The message appears only in this case, it is a false alarm for the Slackware package. Sorry.
 
4 members found this post helpful.
Old 04-25-2024, 06:25 AM   #4307
sombragris
Member
 
Registered: Jul 2004
Location: Asuncion, Paraguay, South America
Distribution: Slackware
Posts: 859

Rep: Reputation: 383Reputation: 383Reputation: 383Reputation: 383
Please consider reverting to bluez-5.73 until a suitable fix appears:

https://www.linuxquestions.org/quest...4/#post6498196

https://github.com/bluez/bluez/issues/815
 
Old 04-25-2024, 06:34 AM   #4308
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,222

Rep: Reputation: 1010Reputation: 1010Reputation: 1010Reputation: 1010Reputation: 1010Reputation: 1010Reputation: 1010Reputation: 1010
libarchive-3.7.3, 'CVE-2024-26256' .

https://github.com/advisories/GHSA-2jc9-36w4-pmqw

the patch:

https://github.com/libarchive/libarc...e9dc9237.patch

Last edited by gmgf; 04-25-2024 at 06:36 AM.
 
Old 04-25-2024, 08:04 PM   #4309
dcb_tahoe
LQ Newbie
 
Registered: Apr 2016
Distribution: Slackware , Mint , Ubuntu
Posts: 19

Rep: Reputation: Disabled
openzfs-2.2.3 on slackware-current kernel 6.6.28

openzfs-2.2.3 on slackware-current kernel 6.6.28 setup.py barfs ERROR

Hopefully this is a good place to post on this ...

I finally got it built and installed slackware-64 current . Python3.9

Two build scripts need to be altered ... :

I'm no python guy so this may not be perfectly correct .... but make and make install went thru ...

root@Slack15t2:~# lsmod | grep zfs
zfs 6438912 0
spl 151552 1 zfs
root@Slack15t2:~#

root@Slack15t2:~# modinfo zfs
filename: /lib/modules/6.6.28/extra/zfs.ko
version: 2.2.3-1
license: CDDL
license: Dual BSD/GPL
license: Dual MIT/GPL
author: OpenZFS
description: ZFS



| - - - - -

/Makefile.in

replace :

@CONFIG_USER_TRUE@@PYZFS_ENABLED_TRUE@pyzfs-all-local: contrib/pyzfs/setup.py
@CONFIG_USER_TRUE@@PYZFS_ENABLED_TRUE@ cd contrib/pyzfs && $(PYTHON) setup.py -q $(pyzfs_V_$(V)) egg_info -e . build

with:

@CONFIG_USER_TRUE@@PYZFS_ENABLED_TRUE@pyzfs-all-local: contrib/pyzfs/setup.py
@CONFIG_USER_TRUE@@PYZFS_ENABLED_TRUE@ cd contrib/pyzfs && $(PYTHON) -m build $(pyzfs_V_$(V))

...

replace:

@CONFIG_USER_TRUE@@PYZFS_ENABLED_TRUE@install-exec-local:
@CONFIG_USER_TRUE@@PYZFS_ENABLED_TRUE@ cd contrib/pyzfs && $(PYTHON) setup.py egg_info -e . install \
@CONFIG_USER_TRUE@@PYZFS_ENABLED_TRUE@ --prefix $(prefix) \
@CONFIG_USER_TRUE@@PYZFS_ENABLED_TRUE@ --root $(DESTDIR)/ \
@CONFIG_USER_TRUE@@PYZFS_ENABLED_TRUE@ --install-lib $(pythonsitedir) \
@CONFIG_USER_TRUE@@PYZFS_ENABLED_TRUE@ --single-version-externally-managed \
@CONFIG_USER_TRUE@@PYZFS_ENABLED_TRUE@ --verbose

with:


@CONFIG_USER_TRUE@@PYZFS_ENABLED_TRUE@install-exec-local:
@CONFIG_USER_TRUE@@PYZFS_ENABLED_TRUE@ cd contrib/pyzfs && pip install . -v
#@CONFIG_USER_TRUE@@PYZFS_ENABLED_TRUE@ --prefix $(prefix) \
#@CONFIG_USER_TRUE@@PYZFS_ENABLED_TRUE@ --root $(DESTDIR)/ \
#@CONFIG_USER_TRUE@@PYZFS_ENABLED_TRUE@ --install-lib $(pythonsitedir) \
#@CONFIG_USER_TRUE@@PYZFS_ENABLED_TRUE@ --single-version-externally-managed \
#@CONFIG_USER_TRUE@@PYZFS_ENABLED_TRUE@ --verbose
#@CONFIG_USER_TRUE@@PYZFS_ENABLED_TRUE@pyzfs-clean-local:
#@CONFIG_USER_TRUE@@PYZFS_ENABLED_TRUE@ -$(RM) -r contrib/pyzfs/build/ contrib/pyzfs/pyzfs.egg-info/


| - - - -

/contrib/pyzfs/Makefile.am :

replace:

pyzfs-all-local: %D%/setup.py
cd %D% && $(PYTHON) setup.py -q $(pyzfs_V_$(V)) egg_info -e . build

with:

pyzfs-all-local: %D%/setup.py
cd %D% && $(PYTHON) -m build $(pyzfs_V_$(V))
...

replace:

install-exec-local:
cd %D% && $(PYTHON) setup.py egg_info -e . install \
--prefix $(prefix) \
--root $(DESTDIR)/ \
--install-lib $(pythonsitedir) \
--single-version-externally-managed \
--verbose

with:

install-exec-local:
cd %D% && $(PYTHON) -m build $(pyzfs_V_$(V))
# cd %D% && $(PYTHON) setup.py egg_info -e . install \
# --prefix $(prefix) \
# --root $(DESTDIR)/ \
# --install-lib $(pythonsitedir) \
# --single-version-externally-managed \
# --verbose




vanilla install complains of setup.py scripts

cd contrib/pyzfs && /usr/bin/python3.11 setup.py -q egg_info -e . build
/usr/lib/python3.11/site-packages/setuptools/__init__.py:81: _DeprecatedInstaller: setuptools.installer and fetch_build_eggs are deprecated.
!!

********************************************************************************
Requirements should be satisfied by a PEP 517 installer.
If you are using pip, you can try `pip install --use-pep517`.
********************************************************************************

!!

Last edited by dcb_tahoe; 04-25-2024 at 08:08 PM.
 
3 members found this post helpful.
Old 04-26-2024, 06:59 AM   #4310
marav
LQ Sage
 
Registered: Sep 2018
Location: Gironde
Distribution: Slackware
Posts: 5,381

Rep: Reputation: 4097Reputation: 4097Reputation: 4097Reputation: 4097Reputation: 4097Reputation: 4097Reputation: 4097Reputation: 4097Reputation: 4097Reputation: 4097Reputation: 4097
Quote:
Originally Posted by dcb_tahoe View Post
Hopefully this is a good place to post on this ...
And what is your request exactly?
 
Old 04-26-2024, 09:18 AM   #4311
teoberi
Member
 
Registered: Jan 2018
Location: Romania
Distribution: Slackware64-current (servers)/Windows 11/Ubuntu (workstations)
Posts: 610

Rep: Reputation: 355Reputation: 355Reputation: 355Reputation: 355
PostgreSQL

https://www.timescale.com/blog/postgres-for-everything/
 
1 members found this post helpful.
Old 04-26-2024, 12:45 PM   #4312
glennmcc
Member
 
Registered: Jan 2021
Location: North Jackson, Ohio (USA)
Distribution: slackware64-15.0
Posts: 522

Rep: Reputation: 293Reputation: 293Reputation: 293
Quote:
Originally Posted by dcb_tahoe View Post
openzfs-2.2.3 on slackware-current kernel 6.6.28 setup.py barfs ERROR

Hopefully this is a good place to post on this ...

I finally got it built and installed slackware-64 current . Python3.9
If your request is to have openzfs added to -current and hence be in v15.1
then, yes this is the place for that request.

However... you'll need to upgrade python to what's presently in -current which is...

root@glennmcc-i7:~/build/openzfs# slackpkg search python3

Looking for python3 in package list. Please wait... DONE

The list below shows all packages with name matching "python3".

[ installed ] - python3-3.11.9-x86_64-1



This SBo https://slackbuilds.org/repository/15.0/system/openzfs/
builds perfectly on -current with just 2 lines modified in openzfs.SlackBuild

As-is...

--with-linux="/lib/modules/${KERNEL}/source" \
--with-linux-obj="/lib/modules/${KERNEL}/source" \

Change to...

--with-linux="/lib/modules/${KERNEL}/build" \
--with-linux-obj="/lib/modules/${KERNEL}/build" \

____________

Easy-peasy-done.

root@glennmcc-i7:~/build/openzfs# time ./openzfs.SlackBuild

<snip>


Slackware package /tmp/openzfs-2.2.3_6.6.28-x86_64-1_SBo.tgz created.


real 8m52.527s
user 12m35.470s
sys 1m29.667s
______________________
 
2 members found this post helpful.
Old 04-26-2024, 02:03 PM   #4313
marav
LQ Sage
 
Registered: Sep 2018
Location: Gironde
Distribution: Slackware
Posts: 5,381

Rep: Reputation: 4097Reputation: 4097Reputation: 4097Reputation: 4097Reputation: 4097Reputation: 4097Reputation: 4097Reputation: 4097Reputation: 4097Reputation: 4097Reputation: 4097
Quote:
Originally Posted by glennmcc View Post
If your request is to have openzfs added to -current and hence be in v15.1
then, yes this is the place for that request.
Not really
This has been discussed a couple of times
openzfs is licensed under CDDL, which is not compatible with GPL

Last edited by marav; 04-26-2024 at 02:12 PM. Reason: typo
 
2 members found this post helpful.
Old 04-26-2024, 02:23 PM   #4314
glennmcc
Member
 
Registered: Jan 2021
Location: North Jackson, Ohio (USA)
Distribution: slackware64-15.0
Posts: 522

Rep: Reputation: 293Reputation: 293Reputation: 293
Quote:
Originally Posted by marav View Post
Not really
This has been discussed a couple of times
openzfs is licensed under CDDL, which is not compatible with GPL
Well then, in that case, it will just need to remain available to slackware users via SBo.
 
1 members found this post helpful.
Old 04-26-2024, 03:12 PM   #4315
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,061

Rep: Reputation: Disabled
Quote:
Originally Posted by marav View Post
Not really
This has been discussed a couple of times
openzfs is licensed under CDDL, which is not compatible with GPL
Actually, an upstream linux source tarball may not include openzfs, but this does not preclude a distribution to provide it. Many do, including Debian, as shown here.
 
1 members found this post helpful.
Old 04-26-2024, 04:54 PM   #4316
rizitis
Member
 
Registered: Mar 2009
Location: Greece,Crete
Distribution: Slackware64-current, Slint
Posts: 651

Rep: Reputation: 491Reputation: 491Reputation: 491Reputation: 491Reputation: 491
Its not request just information. ffmpeg7.0 need vulkan 1.3.277 else not building and not support VK_KHR_VIDEO_DECODE_AV1
 
Old 04-27-2024, 12:20 AM   #4317
TurboBlaze
Member
 
Registered: Jan 2018
Location: Russian Federation, Lipetsk region, Dankov
Distribution: Porteus
Posts: 196

Rep: Reputation: Disabled
CUPS 2.4.8
https://github.com/OpenPrinting/cups...ses/tag/v2.4.8
 
Old 04-27-2024, 02:21 PM   #4318
gian_d
Member
 
Registered: Nov 2019
Location: Cagliari, Sardinia (Italy)
Distribution: Slackware
Posts: 74

Rep: Reputation: Disabled
issue with a dependency of python-sphinx-rtd-theme

Hi, I don't know how it is important, but pip check returns this:

sphinx-rtd-theme 2.0.0 has requirement docutils<0.21, but you have docutils 0.21.2
 
Old 04-27-2024, 02:26 PM   #4319
volkerdi
Slackware Maintainer
 
Registered: Dec 2002
Location: Minnesota
Distribution: Slackware! :-)
Posts: 2,512

Rep: Reputation: 8478Reputation: 8478Reputation: 8478Reputation: 8478Reputation: 8478Reputation: 8478Reputation: 8478Reputation: 8478Reputation: 8478Reputation: 8478Reputation: 8478
Quote:
Originally Posted by gian_d View Post
Hi, I don't know how it is important, but pip check returns this:

sphinx-rtd-theme 2.0.0 has requirement docutils<0.21, but you have docutils 0.21.2
Yes, I noticed that as well, but there's not much that can be done except to wait.

FWIW, only btrfs-progs requires sphinx-rtd-theme, and it still builds in spite of pip3's complaint.
 
Old 04-27-2024, 06:00 PM   #4320
fourtysixandtwo
Member
 
Registered: Jun 2021
Location: Alberta
Distribution: Slackware...mostly
Posts: 321

Rep: Reputation: 215Reputation: 215Reputation: 215
Quote:
Originally Posted by volkerdi View Post
Yes, I noticed that as well, but there's not much that can be done except to wait.

FWIW, only btrfs-progs requires sphinx-rtd-theme, and it still builds in spite of pip3's complaint.
If you want to get rid of the pip3 complaint and the "# Package would be ignored #" build warnings, here's a patch.

https://slackware.uk/~fourtysixandtw...td_theme.patch
 
  


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
Apache 2.4 requests to non-SSL site with "Upgrade-Insecure-Requests: 1" and no trailing / get redirected to default site owendelong Linux - Server 2 06-22-2021 02:08 PM
[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 07:43 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