Bug 1213492 - python3-podman-compose.rpm bring 247 packages uneeded
Summary: python3-podman-compose.rpm bring 247 packages uneeded
Status: RESOLVED WONTFIX
Alias: None
Product: openSUSE Distribution
Classification: openSUSE
Component: Other (show other bugs)
Version: Leap 15.5
Hardware: Other Other
: P5 - None : Normal (vote)
Target Milestone: ---
Assignee: Johannes Kastl
QA Contact: E-mail List
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2023-07-19 15:43 UTC by Walddys Emmanuel Dorrejo Céspedes
Modified: 2023-12-13 18:55 UTC (History)
2 users (show)

See Also:
Found By: ---
Services Priority:
Business Priority:
Blocker: ---
Marketing QA Status: ---
IT Deployment: ---
opensuse_buildservice: needinfo? (dev.dorrejo)


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Walddys Emmanuel Dorrejo Céspedes 2023-07-19 15:43:24 UTC
Hello,

Today was installing python3-podman-compose, but when do the install the rpm bring 551.7 MB of packages a total of 247 packages.

i thinks is anormal this behavior.
Comment 1 Johannes Kastl 2023-09-08 14:11:57 UTC
Sorry for the late reply, vacation time kicked in.

Actually, in case you never had any python3.11 packages installed on your system, then this might be a completely normal number of packages.

python3-podman-compose uses the primary python on Tumbleweed (I guess we are talking tumbleweed here?). Currently this is python3.11, it was 3.10 before and 3.9 before that.

In my case, where lots of python3.11 packages are already present, it looks like this:

$ LANG=C sudo zypper in python3-podman-compose
Loading repository data...
Reading installed packages...
'python3-podman-compose' not found in package names. Trying capabilities.
Resolving package dependencies...

The following 2 NEW packages are going to be installed:
  python311-podman-compose python311-python-dotenv

2 new packages to install.
Overall download size: 138.0 KiB. Already cached: 0 B. After the operation, additional 370.1 KiB will be used.
Continue? [y/n/v/...? shows all options] (y): n
$ rpm -qa|grep python311|wc -l
214
$

As you see, 214 packages are already installed on my system.

So, to dig into this: Before the installation, which python packages were installed? "rpm -qa|grep python311" counts only 3.11 ones.

Also, depending on your setting you might also get some "recommended" or "suggested" packages during installation. There are zypper options to disable those, if desired.

Kind Regards,
Johannes
Comment 2 Walddys Emmanuel Dorrejo Céspedes 2023-12-13 18:55:39 UTC
Thanks for the info.