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 10-14-2023, 10:03 AM   #16
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,101

Original Poster
Rep: Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278

Quote:
+--------------------------+
Sat Oct 14 08:49:55 UTC 2023
chromium: updated 64bit to 118.0.5993.70 (Slackware 15.0 & onwards).
chromium-ungoogled: updated 64bit to 118.0.5993.70 (Slackware 15.0 & onwards)
http://www.slackware.com/~alien/slac.../ChangeLog.txt

A blog entry about the above updates,
https://alien.slackbook.org/blog/chr...curity-update/

Last edited by cwizardone; 10-14-2023 at 12:13 PM.
 
1 members found this post helpful.
Old 10-15-2023, 09:19 AM   #17
Byron
LQ Newbie
 
Registered: Mar 2022
Posts: 18

Rep: Reputation: 4
Anyone else having trouble with cmake for his ffmpeg build? Specifically ffmpeg 5.1.3 and building the game music emulator lib? I've never really used cmake before, but I think the problem lies in the version I'm using? Could someone confirm whether it's demanding I use an older/newer version of cmake for this?

A relevant extract from the CMakeLists.txt found in the build env for gme leads me to believe I need a version under 2.7:
Code:
# 2.6+ always assumes FATAL_ERROR, but 2.4 and below don't.
# Of course, 2.4 might work, in which case you're welcome to drop
# down the requirement, but I can't test that.
cmake_minimum_required(VERSION 2.6 FATAL_ERROR)
but then when I try running the cmake command in the build env itself, I get this warning:
Code:
CMake Deprecation Warning at CMakeLists.txt:12 (cmake_minimum_required):
  Compatibility with CMake < 2.8.12 will be removed from a future version of
  CMake.

  Update the VERSION argument <min> value or use a ...<max> suffix to tell
  CMake that the project does not need compatibility with older versions.


CMake Error at CMakeLists.txt:72 (if):
  if given arguments:

    "(" "VERSION_GREATER" "4.1" ")" "OR" "(" "VERSION_EQUAL" "4.1" ")"

  Unknown arguments specified
Which, in the larger context of its original stanza:
Code:
 # gcc <4.1 had poor support for symbol visibility
      if ((${_gcc_version} VERSION_GREATER "4.1") OR (${_gcc_version} VERSION_EQUAL "4.1"))
         set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fvisibility=hidden")
         set (ENABLE_VISIBILITY ON)
         add_definitions (-DLIBGME_VISIBILITY)

         # GCC >= 4.2 also correctly supports making inline members have hidden
         # visibility by default.
         if ((${_gcc_version} VERSION_GREATER "4.2") OR (${_gcc_version} VERSION_EQUAL "4.2"))
            set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fvisibility-inlines-hidden")
         endif()
      endif()
   endif() # test visibility
leads me to believe that versions greater than 2.6 should work.

I'm currently using cmake 3.21.4 and just updated and upgraded my system yesterday. I'm on 15.0 stable. Was this package built with slackware -current in mind maybe?
 
1 members found this post helpful.
Old 10-17-2023, 05:45 PM   #18
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,101

Original Poster
Rep: Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278
Alienbob has been kind enough to update his VLC package.
Quote:
Tue Oct 17 12:15:40 UTC 2023
vlc: updated to 3.0.19 for Slackware 15.0 and -current.
Removed the package for Slackware 14.2.
Added 4K HDR tone-mapping support via libplacebo.
Added soxr as audio resampling engine.
Updated internal libs: dav1d, ffmpeg, libva, shout, upnp, vpx.
http://www.slackware.com/~alien/slac.../ChangeLog.txt

https://us.slackware.nl/people/alien/slackbuilds/vlc/
 
2 members found this post helpful.
Old 10-19-2023, 05:23 AM   #19
marav
LQ Sage
 
Registered: Sep 2018
Location: Gironde
Distribution: Slackware
Posts: 5,362

Rep: Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075
Code:
Thu Oct 19 06:48:27 UTC 2023
chromium: updated to 118.0.5993.88 (Slackware 15.0 & onwards).
But
Code:
chromium-118.0.5993.70-x86_64-1alien.txz
https://slackware.nl/people/alien/sb...6_64/chromium/

 
Old 10-19-2023, 06:12 AM   #20
MDKDIO
Member
 
Registered: Mar 2004
Location: Sweden
Distribution: Slackware 15
Posts: 521

Rep: Reputation: 187Reputation: 187
I agree with your marav, looks bit odd

What is more odd, is that the directories storing these packages has been updated, date-wise. But not their content...

Am sure packages will arrive soon
 
1 members found this post helpful.
Old 10-19-2023, 06:40 AM   #21
marav
LQ Sage
 
Registered: Sep 2018
Location: Gironde
Distribution: Slackware
Posts: 5,362

Rep: Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075
Quote:
Originally Posted by MDKDIO View Post
I agree with your marav, looks bit odd

What is more odd, is that the directories storing these packages has been updated, date-wise. But not their content...

Am sure packages will arrive soon
The SlackBuild hasn't been updated either
Code:
SRCNAM=chromium
PRGNAM=${SRCNAM}${SRCEXT}     # chromium, chromium-dev, chromium-ungoogled, etc
VERSION=${VERSION:-118.0.5993.70}
UNGOOGLED=${UNGOOGLED:-118.0.5993.70-1}
BUILD=${BUILD:-1}
TAG=${TAG:-alien}
So, where does this changelog come from ?? :-)

Last edited by marav; 10-19-2023 at 06:42 AM.
 
Old 10-19-2023, 07:03 AM   #22
marav
LQ Sage
 
Registered: Sep 2018
Location: Gironde
Distribution: Slackware
Posts: 5,362

Rep: Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075
Code:
Thu Oct 19 10:28:16 UTC 2023
chromium: *really* updated to 118.0.5993.88 (Slackware 15.0 & onwards).
 
Old 10-19-2023, 07:15 AM   #23
MDKDIO
Member
 
Registered: Mar 2004
Location: Sweden
Distribution: Slackware 15
Posts: 521

Rep: Reputation: 187Reputation: 187
Quote:
Originally Posted by marav View Post
Code:
Thu Oct 19 10:28:16 UTC 2023
chromium: *really* updated to 118.0.5993.88 (Slackware 15.0 & onwards).
Missed the "trigger" (he found the Enter key eventually )
 
1 members found this post helpful.
Old 10-19-2023, 07:42 AM   #24
marav
LQ Sage
 
Registered: Sep 2018
Location: Gironde
Distribution: Slackware
Posts: 5,362

Rep: Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075
Anyway, he's fast

Many thanks to him
 
Old 10-20-2023, 08:45 AM   #25
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,101

Original Poster
Rep: Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278
Quote:
Fri Oct 20 06:04:57 UTC 2023
chromium-ungoogled: updated to 118.0.5993.88 (Slackware 15.0 & onwards).
http://www.slackware.com/~alien/slac.../ChangeLog.txt
 
1 members found this post helpful.
Old 10-25-2023, 04:36 PM   #26
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,101

Original Poster
Rep: Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278
For KDE-6 news, please see, https://www.linuxquestions.org/quest...ml#post6460905
 
1 members found this post helpful.
Old 10-25-2023, 05:08 PM   #27
Regnad Kcin
Member
 
Registered: Jan 2014
Location: Beijing
Distribution: Slackware 64 -current .
Posts: 663

Rep: Reputation: 460Reputation: 460Reputation: 460Reputation: 460Reputation: 460
Quote:
Originally Posted by cwizardone View Post
You might be happier with Bob's -restricted- version of vlc
 
1 members found this post helpful.
Old 10-26-2023, 03:02 AM   #28
kgha
Senior Member
 
Registered: May 2018
Location: Sweden
Distribution: Slackware 64 -current multilib from AlienBob's LiveSlak MATE
Posts: 1,070

Rep: Reputation: 742Reputation: 742Reputation: 742Reputation: 742Reputation: 742Reputation: 742Reputation: 742
Not an update as of yet, but an announcement that will excite quite a few, I guess:

https://alien.slackbook.org/blog/kde...4-megarelease/
 
2 members found this post helpful.
Old 10-30-2023, 11:21 AM   #29
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,101

Original Poster
Rep: Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278
For openjdk updates please see, https://www.linuxquestions.org/quest...4/#post6461779
 
Old 11-02-2023, 07:07 AM   #30
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,101

Original Poster
Rep: Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278Reputation: 7278
Quote:
Thu Nov 2 09:51:18 UTC 2023
chromium: updated to 119.0.6045.105 (Slackware 15.0 & onwards).
http://www.slackware.com/~alien/slac.../ChangeLog.txt

Ungoogled shouldn't be far behind.
 
1 members found this post helpful.
  


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] AlienBob's LibreOffice 7.2.0 fails to start in Slackware Current after all updates rsamurti Slackware 40 12-22-2021 10:48 AM
[ANN] Linux-PAM Updates to -current and AlienBob's KDE 4.8.0 vbatts Slackware 2 02-19-2012 01:31 PM
puppy thoughts after having a recent look see -- given recent developments .. jonyo Puppy 0 11-29-2011 08:45 PM
Help! - After recent updates keyboard not working! speedsix Linux - General 1 09-16-2005 06:28 PM

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

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