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 11-19-2020, 05:43 AM   #5956
Fellype
Member
 
Registered: Jul 2013
Location: Guaratingueta / Brazil
Distribution: Slackware
Posts: 60

Rep: Reputation: 31

Quote:
Originally Posted by gmgf View Post
Please, stop the personnalized , demands.
Why? Are personalized requests forbidden?
 
Old 11-19-2020, 06:46 AM   #5957
ponce
LQ Guru
 
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,097

Rep: Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174
Quote:
Originally Posted by Fellype View Post
Why? Are personalized requests forbidden?
no, but this special request (categories and subcategories) has been answered quite a few times...

https://www.linuxquestions.org/quest...ml#post5920588
https://www.linuxquestions.org/quest...ml#post5856424
https://www.linuxquestions.org/quest...ml#post5766773

Last edited by ponce; 11-19-2020 at 06:49 AM.
 
Old 11-19-2020, 07:16 AM   #5958
GazL
LQ Veteran
 
Registered: May 2008
Posts: 6,897

Rep: Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018
If you want to only include a subset of packages on your system, then IMO package blacklist files are the only viable solution. The package sets have been something of a mess¹ for a long time now. Adding a KDE-GAMES set really isn't going to change that.

---
¹ 'l' set full of kde dependencies being a primary annoyance of mine as a non-kde user.
 
Old 11-19-2020, 10:04 AM   #5959
saxa
Senior Member
 
Registered: Aug 2004
Location: Nova Gorica, Salvador
Distribution: Slackware
Posts: 1,213

Rep: Reputation: 297Reputation: 297Reputation: 297
vala-0.50.2
https://download.gnome.org/sources/v...-0.50.2.tar.xz
 
Old 11-19-2020, 10:54 AM   #5960
mats_b_tegner
Member
 
Registered: Nov 2009
Location: Gothenburg, Sweden
Distribution: Slackware
Posts: 946

Rep: Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649
SeaMonkey 2.53.5.1
https://www.seamonkey-project.org/re...onkey2.53.5.1/
https://archive.mozilla.org/pub/seam....source.tar.xz

Mutt 2.0.2
https://gitlab.com/muttmua/mutt/raw/stable/UPDATING
ftp://ftp.mutt.org/pub/mutt/mutt-2.0.2.tar.gz

Last edited by mats_b_tegner; 11-20-2020 at 05:03 PM.
 
Old 11-20-2020, 02:16 AM   #5961
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,211

Rep: Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998
qt5-5.15.2:

https://download.qt.io/official_rele...-5.15.2.tar.xz
 
4 members found this post helpful.
Old 11-20-2020, 03:07 AM   #5962
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
I detect some issue under python2-module-collection ,same as python3 requests , arround urrlib3 (fixed for python 3 but remains under python2 section)


Quote:
pip2 check
 
Old 11-20-2020, 08:57 AM   #5963
montagdude
Senior Member
 
Registered: Apr 2016
Distribution: Slackware
Posts: 2,011

Rep: Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619
Quote:
Originally Posted by Fellype View Post
Why? Are personalized requests forbidden?
If you want to remove the KDE games, it's simple enough to identify them based on the launchers in /usr/share/applications:

Code:
cd /usr/share/applications; grep -l "Categories.*Game" org.kde* > $HOME/gameslist.txt; cd
Then find the packages containing the launchers:
Code:
for launcher in $(cat gameslist.txt); do
  grep -l $launcher /var/lib/pkgtools/packages/* >> game_packages.txt
done
Finally, uninstall the packages:
Code:
for package in $(cat game_packages.txt); do
  removepkg $package
done
 
3 members found this post helpful.
Old 11-20-2020, 12:20 PM   #5964
EdGr
Member
 
Registered: Dec 2010
Location: California, USA
Distribution: I run my own OS
Posts: 998

Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
Quote:
Originally Posted by Fellype View Post
Why? Are personalized requests forbidden?
They are allowed but result in no action.

Slackware is most easily personalized by writing scripts. For example, I install 9 of the 16 series, remove 19 packages, add 5 open-source programs, and then add 165 of my own programs. All steps after the first are scripted.
Ed
 
2 members found this post helpful.
Old 11-20-2020, 03:17 PM   #5965
Fellype
Member
 
Registered: Jul 2013
Location: Guaratingueta / Brazil
Distribution: Slackware
Posts: 60

Rep: Reputation: 31
Quote:
Originally Posted by montagdude View Post
If you want to remove the KDE games, it's simple enough to identify them based on the launchers in /usr/share/applications:

Code:
cd /usr/share/applications; grep -l "Categories.*Game" org.kde* > $HOME/gameslist.txt; cd
Then find the packages containing the launchers:
Code:
for launcher in $(cat gameslist.txt); do
  grep -l $launcher /var/lib/pkgtools/packages/* >> game_packages.txt
done
Finally, uninstall the packages:
Code:
for package in $(cat game_packages.txt); do
  removepkg $package
done
Thank you for the tip!
 
Old 11-20-2020, 04:18 PM   #5966
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
libX11-1.7.0
https://www.x.org/releases/individua...-1.7.0.tar.bz2
 
Old 11-20-2020, 04:37 PM   #5967
saxa
Senior Member
 
Registered: Aug 2004
Location: Nova Gorica, Salvador
Distribution: Slackware
Posts: 1,213

Rep: Reputation: 297Reputation: 297Reputation: 297
librsvg-2.50.2
https://download.gnome.org/sources/l...-2.50.2.tar.xz
 
Old 11-21-2020, 09:51 AM   #5968
saxa
Senior Member
 
Registered: Aug 2004
Location: Nova Gorica, Salvador
Distribution: Slackware
Posts: 1,213

Rep: Reputation: 297Reputation: 297Reputation: 297
glibmm-2.64.4
https://download.gnome.org/sources/g...-2.64.4.tar.xz
 
Old 11-21-2020, 12:47 PM   #5969
mats_b_tegner
Member
 
Registered: Nov 2009
Location: Gothenburg, Sweden
Distribution: Slackware
Posts: 946

Rep: Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649
ImageMagick 7.0.10-41
https://imagemagick.org/script/changelog.php
https://imagemagick.org/download/Ima...0.10-41.tar.lz
 
Old 11-21-2020, 03:40 PM   #5970
CMartin
Member
 
Registered: Sep 2010
Distribution: Slackware
Posts: 48

Rep: Reputation: 22
Quote:
Originally Posted by LuckyCyborg View Post
As a Slackware user, I believe that Slackware 15.0 will be released.
Releasing Slackware 15.0 is strongly influenced by Samuel Beckett's famous work.
 
4 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] 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 10:44 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