Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Workaround for esl-erlang package issue #3211

Merged
merged 1 commit into from
Jul 7, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,9 @@ def get_package_dependencies(self, package: str) -> List[str]:
dep = dep.split('Depends:')[-1] # remove "Depends:

if not virt_pkg and dep != package: # avoid adding package itself
# workaround for https://elixirforum.com/t/installing-erlang-elixir-on-ubuntu-20-04-is-failing-esl-erlang-25-0-2-1-ubuntu-focal-amd64-deb-file-has-unexpected-size/48754
# TODO: verify after issues 3210 and 3209 are fixed # pylint: disable=fixme
if dep != 'esl-erlang': # for rabbitmq-server
deps.append(dep)

return list(set(deps))