chipsalliance / verible

Verible is a suite of SystemVerilog developer tools, including a parser, style-linter, formatter and language server
https://chipsalliance.github.io/verible/
Other
1.38k stars 214 forks source link

Travis build fails on Ubuntu 20.04 LTS (Focal Fossa) due to missing python-gflags package #345

Open mithro opened 4 years ago

mithro commented 4 years ago

From https://github.com/google/verible/pull/342#issuecomment-653420870_

apt-get install python-gflags # fails on Ubuntu 20.04 LTS (Focal Fossa) google/python-gflags#44 apt-get install -y bazel build-essential gcc g++ file lsb-release python-gflags wget E: Unable to locate package python-gflags

mithro commented 4 years ago

We can probably solve this by instead installing python-gflags using pip.

fangism commented 4 years ago

According to the front-page: https://github.com/google/python-gflags

this should now be part of absl: https://github.com/abseil/abseil-py

fangism commented 4 years ago

Fixed by https://github.com/google/verible/commit/a1f54754ba26815bbfddf0280e9cb165f2b9d579 ?